1.1.0
This commit is contained in:
parent
4773f735d3
commit
620207a49c
3 changed files with 33 additions and 10 deletions
|
@ -1,28 +1,22 @@
|
|||
package dev.zontreck.shapedaionresources;
|
||||
|
||||
import com.mojang.logging.LogUtils;
|
||||
import net.minecraft.world.level.block.Block;
|
||||
import net.minecraft.world.level.block.Blocks;
|
||||
|
||||
import net.minecraftforge.common.MinecraftForge;
|
||||
import net.minecraftforge.event.RegistryEvent;
|
||||
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
||||
import net.minecraftforge.fml.InterModComms;
|
||||
import net.minecraftforge.fml.common.Mod;
|
||||
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
|
||||
import net.minecraftforge.fml.event.lifecycle.InterModEnqueueEvent;
|
||||
import net.minecraftforge.fml.event.lifecycle.InterModProcessEvent;
|
||||
import net.minecraftforge.event.server.ServerStartingEvent;
|
||||
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
|
||||
import org.slf4j.Logger;
|
||||
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
// The value here should match an entry in the META-INF/mods.toml file
|
||||
@Mod("shapedaionresources")
|
||||
public class ShapedAionResources
|
||||
{
|
||||
// Directly reference a slf4j logger
|
||||
private static final Logger LOGGER = LogUtils.getLogger();
|
||||
public static final Logger LOGGER = LogUtils.getLogger();
|
||||
|
||||
|
||||
public ShapedAionResources()
|
||||
{
|
||||
|
@ -42,6 +36,8 @@ public class ShapedAionResources
|
|||
@SubscribeEvent
|
||||
public void onServerStarting(ServerStartingEvent event)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" I ",
|
||||
"IXI",
|
||||
" I "
|
||||
],
|
||||
"key": {
|
||||
"X": {
|
||||
"item": "minecraft:iron_block"
|
||||
},
|
||||
"I": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "tetra:holo",
|
||||
"count": 1,
|
||||
"nbt": {
|
||||
"id": "9503de92-046c-4d61-8afe-8c0d71c6afae",
|
||||
"holo/core": "holo/core",
|
||||
"holo/core_material": "core/dim",
|
||||
"holo/frame": "holo/frame",
|
||||
"holo/frame_material": "frame/ancient"
|
||||
}
|
||||
}
|
||||
}
|
Reference in a new issue