diff --git a/build.gradle b/build.gradle index a4b31ea..97a8984 100644 --- a/build.gradle +++ b/build.gradle @@ -38,23 +38,18 @@ dependencies { // or you may define them like so.. //compile "some.group:artifact:version:classifier" //compile "some.group:artifact:version" - // real examples //compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env //compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env - // the 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime. //provided 'com.mod-buildcraft:buildcraft:6.0.8:dev' - // the deobf configurations: 'deobfCompile' and 'deobfProvided' are the same as the normal compile and provided, // except that these dependencies get remapped to your current MCP mappings //deobfCompile 'com.mod-buildcraft:buildcraft:6.0.8:dev' //deobfProvided 'com.mod-buildcraft:buildcraft:6.0.8:dev' - // for more info... // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html // http://www.gradle.org/docs/current/userguide/dependency_management.html - } processResources { diff --git a/src/main/java/net/yseven/findyourway/Client/AngleGetter.java b/src/main/java/net/yseven/findyourway/Client/AngleGetter.java index 4817090..fef93ac 100644 --- a/src/main/java/net/yseven/findyourway/Client/AngleGetter.java +++ b/src/main/java/net/yseven/findyourway/Client/AngleGetter.java @@ -1,8 +1,10 @@ package net.yseven.findyourway.Client; +import net.minecraft.client.Minecraft; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.item.EntityItemFrame; +import net.minecraft.entity.passive.EntityChicken; import net.minecraft.item.IItemPropertyGetter; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; @@ -10,7 +12,7 @@ import net.minecraft.util.math.MathHelper; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; -import net.yseven.findyourway.item.ItemCompassBase; +import net.yseven.findyourway.CommonProxy; import javax.annotation.Nullable; import javax.annotation.ParametersAreNonnullByDefault; @@ -25,32 +27,58 @@ public class AngleGetter implements IItemPropertyGetter { @SideOnly(Side.CLIENT) private BlockPos blockPos; - @SideOnly(Side.CLIENT) - AngleGetter(ItemCompassBase compassBase) { - this.blockPos = compassBase.getStructurePos(); - } - @Override @ParametersAreNonnullByDefault @SideOnly(Side.CLIENT) public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) { - if (entityIn == null && !stack.isOnItemFrame()) return 0.0F; - final boolean entityExists = entityIn != null; + boolean isLiving = entityIn != null; + Entity errorChicken = new EntityChicken(Minecraft.getMinecraft().world); - final Entity entity = (Entity) (entityExists ? entityIn : stack.getItemFrame()); + Entity entity; + if(isLiving) { + entity = entityIn; + } else if(stack.getItemFrame() != null) { + entity = stack.getItemFrame(); + } else { + entity = errorChicken; + } if (worldIn == null) worldIn = entity.world; - double rotation = entityExists ? (double) entity.rotationYaw : getFrameAngle((EntityItemFrame) entity); - rotation %= 360.0D; + double angle; + setBlockPos(stack); - double adjusted = Math.PI - ((rotation - 90.0D) * 0.01745329238474369D - getAngle(worldIn, entity, stack)); + if(blockPos != null) { + if (blockPos.getY() == 0) return 0.0F; + double entityAngle; + if(isLiving) { + entityAngle = entity.rotationYaw; + } else if(stack.getItemFrame() != null) { + entityAngle = getFrameAngle((EntityItemFrame) entity); + } else { + return 0.0F; + } - if (entityExists) adjusted = wobble(worldIn, adjusted); + entityAngle /= 360.0D; + entityAngle = MathHelper.positiveModulo(entityAngle, 1.0D); + double posAngle = getAngle(blockPos, entity); + posAngle /= Math.PI * 2D; + angle = 0.5D - (entityAngle - 0.25D - posAngle); + } else { + if(!ClientProxy.hasAngleErrrored()) { + System.out.println("Compass angle is random due to an unexpected error"); + ClientProxy.AngleHasErrored(); + } + angle = 0.0D; + } - final float f = (float) (adjusted / (Math.PI * 2D)); - return MathHelper.positiveModulo(f, 1.0F); + if(isLiving) { + angle = wobble(worldIn, angle); + } + + + return MathHelper.positiveModulo((float) angle, 1.0F); } @SideOnly(Side.CLIENT) @@ -68,13 +96,21 @@ public class AngleGetter implements IItemPropertyGetter { } @SideOnly(Side.CLIENT) - private double getAngle(World world, Entity entity, ItemStack stack) { - if(blockPos != null) { - return Math.atan2((double) blockPos.getZ() - entity.posZ, (double) blockPos.getX() - entity.posX); - } else { - return (double) 0; + private void setBlockPos(ItemStack stack) { + for (int i = 0; i < CommonProxy.compassList.size(); i++) { + if (stack.getItem().getUnlocalizedName().equals(CommonProxy.compassList.get(i).getUnlocalizedName())) { + blockPos = CommonProxy.compassList.get(i).getStructurePos(); + } else { + if (!ClientProxy.hasAngleErrrored()) { + System.out.println("unable to get blockPos from compassList in AngleGetter class"); + } + } } + } + @SideOnly(Side.CLIENT) + private double getAngle(BlockPos pos, Entity ent) { + return MathHelper.atan2(pos.getZ() - ent.posZ, pos.getX() - ent.posX); } @SideOnly(Side.CLIENT) diff --git a/src/main/java/net/yseven/findyourway/Client/ClientProxy.java b/src/main/java/net/yseven/findyourway/Client/ClientProxy.java index 6fff1e1..b19ecb1 100644 --- a/src/main/java/net/yseven/findyourway/Client/ClientProxy.java +++ b/src/main/java/net/yseven/findyourway/Client/ClientProxy.java @@ -4,9 +4,7 @@ import net.minecraft.client.Minecraft; import net.minecraft.client.entity.EntityPlayerSP; import net.minecraft.client.multiplayer.WorldClient; import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.item.Item; import net.minecraft.util.ResourceLocation; -import net.minecraft.util.math.BlockPos; import net.minecraftforge.client.event.ModelRegistryEvent; import net.minecraftforge.client.model.ModelLoader; import net.minecraftforge.common.MinecraftForge; @@ -20,8 +18,9 @@ import net.minecraftforge.fml.common.gameevent.TickEvent; import net.minecraftforge.fml.relauncher.Side; import net.yseven.findyourway.CommonProxy; import net.yseven.findyourway.FindYourWay; -import net.yseven.findyourway.Network.PacketHandler; -import net.yseven.findyourway.Network.PacketSendKey; +import net.yseven.findyourway.Network.MessageHandlerOnClient; +import net.yseven.findyourway.Network.MessageToClient; +import net.yseven.findyourway.Network.MessageToServer; import net.yseven.findyourway.item.ItemCompassBase; import net.yseven.findyourway.item.ModItems; @@ -32,28 +31,30 @@ public class ClientProxy extends CommonProxy { public static Minecraft getMinecraft() { return FMLClientHandler.instance().getClient(); } - public static WorldClient getWorld() { return getMinecraft().world; } - public static EntityPlayerSP getPlayer() { return getMinecraft().player; } + private static boolean angleError = false; - //TO-DO fill out the following methods - public static boolean hasCompass(ItemCompassBase compass) { - return getPlayer() != null && CommonProxy.containsCompass(getPlayer().inventory, compass); + public static boolean hasAngleErrrored() { + return angleError; } - public static void setStructurePos(ItemCompassBase compassBase, BlockPos pos) { - compassBase.setStructurePos(pos); + public static void AngleHasErrored() { + angleError = true; + } + + public static boolean hasCompass(ItemCompassBase compass) { + return getPlayer() != null && CommonProxy.containsCompass(getPlayer().inventory, compass); } public static void resetStructurePos(ItemCompassBase compass) { compass.setStructurePos(null); compass.setStructureWorld(getWorld()); - PacketHandler.INSTANCE.sendToServer(new PacketSendKey(compass)); + CommonProxy.simpleNetworkWrapper.sendToServer(new MessageToServer(compass)); } //Proxy Info @@ -61,6 +62,7 @@ public class ClientProxy extends CommonProxy { public void preInit(FMLPreInitializationEvent event) { super.preInit(event); MinecraftForge.EVENT_BUS.register(this); + CommonProxy.simpleNetworkWrapper.registerMessage(MessageHandlerOnClient.class, MessageToClient.class, CommonProxy.MESSAGE_TO_CLIENT_ID, Side.CLIENT); } @Override @@ -73,23 +75,22 @@ public class ClientProxy extends CommonProxy { super.postInit(event); } - @Mod.EventBusSubscriber - public static class RegistrationHandler { - @SubscribeEvent - public static void registerModels(ModelRegistryEvent event) { + @SubscribeEvent + public static void registerModels(ModelRegistryEvent event) { ModItems.registerModels(); } - } @SubscribeEvent public void onModelRegistry(ModelRegistryEvent event) { registerModel(ModItems.ENDER_COMPASS); registerModel(ModItems.VILLAGE_COMPASS); + registerModel(ModItems.FORTRESS_COMPASS); + registerModel(ModItems.MONUMENT_COMPASS); } private void registerModel(ItemCompassBase compass) { - compass.addPropertyOverride(new ResourceLocation(compass.assetTag), new AngleGetter(compass)); - ModelLoader.setCustomModelResourceLocation(compass, 0, new ModelResourceLocation(FindYourWay.modId + ":" + compass.getUnlocalizedName(), "inventory")); + compass.addPropertyOverride(new ResourceLocation("angle"), new AngleGetter()); + ModelLoader.setCustomModelResourceLocation(compass, 0, new ModelResourceLocation(FindYourWay.modId + ":" + compass.getUnlocalizedName())); } @SubscribeEvent @@ -102,4 +103,4 @@ public class ClientProxy extends CommonProxy { } } } -} +} \ No newline at end of file diff --git a/src/main/java/net/yseven/findyourway/CommonProxy.java b/src/main/java/net/yseven/findyourway/CommonProxy.java index 3fa509c..170f0af 100644 --- a/src/main/java/net/yseven/findyourway/CommonProxy.java +++ b/src/main/java/net/yseven/findyourway/CommonProxy.java @@ -9,7 +9,13 @@ import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; -import net.yseven.findyourway.Network.PacketHandler; +import net.minecraftforge.fml.common.network.NetworkRegistry; +import net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper; +import net.minecraftforge.fml.relauncher.Side; +import net.yseven.findyourway.Network.MessageHandlerOnServer; +import net.yseven.findyourway.Network.MessageHandlerOnServerDummy; +import net.yseven.findyourway.Network.MessageToClient; +import net.yseven.findyourway.Network.MessageToServer; import net.yseven.findyourway.item.ItemCompassBase; import net.yseven.findyourway.item.ModItems; @@ -18,14 +24,21 @@ import java.util.ArrayList; @Mod.EventBusSubscriber public class CommonProxy { - public static ArrayList compassList = new ArrayList<>(); + public static ArrayList compassList = new ArrayList(); + public static SimpleNetworkWrapper simpleNetworkWrapper; + + public static final byte MESSAGE_TO_SERVER_ID = 71; + public static final byte MESSAGE_TO_CLIENT_ID = 72; public void preInit(FMLPreInitializationEvent event) { ModItems.init(); - PacketHandler.registerMessages(FindYourWay.modId); + + simpleNetworkWrapper = NetworkRegistry.INSTANCE.newSimpleChannel(FindYourWay.modId); + simpleNetworkWrapper.registerMessage(MessageHandlerOnServer.class, MessageToServer.class, MESSAGE_TO_SERVER_ID, Side.SERVER); + simpleNetworkWrapper.registerMessage(MessageHandlerOnServerDummy.class, MessageToClient.class, MESSAGE_TO_CLIENT_ID, Side.SERVER); } - public void init(FMLInitializationEvent event) { + public void init(FMLInitializationEvent event) { } @@ -33,12 +46,12 @@ public class CommonProxy { } - @SubscribeEvent public static void registerItems(RegistryEvent.Register event) { - event.getRegistry().registerAll( - ModItems.ENDER_COMPASS - ); + event.getRegistry().register(ModItems.ENDER_COMPASS); + event.getRegistry().register(ModItems.VILLAGE_COMPASS); + event.getRegistry().register(ModItems.FORTRESS_COMPASS); + event.getRegistry().register(ModItems.MONUMENT_COMPASS); } public static boolean containsCompass(IInventory inventory, ItemCompassBase compass) { @@ -55,6 +68,8 @@ public class CommonProxy { switch (compass.getStructureType()){ case "Stronghold": return 1; case "Village": return 2; + case "Fortress": return 3; + case "Monument": return 4; default: return 0; } } @@ -63,6 +78,8 @@ public class CommonProxy { switch (id) { case 1: return ModItems.ENDER_COMPASS; case 2: return ModItems.VILLAGE_COMPASS; + case 3: return ModItems.FORTRESS_COMPASS; + case 4: return ModItems.MONUMENT_COMPASS; default: ItemCompassBase ERROR_COMPASS = new ItemCompassBase("error", ""); return ERROR_COMPASS; diff --git a/src/main/java/net/yseven/findyourway/FindYourWay.java b/src/main/java/net/yseven/findyourway/FindYourWay.java index c34e4ee..ede858e 100644 --- a/src/main/java/net/yseven/findyourway/FindYourWay.java +++ b/src/main/java/net/yseven/findyourway/FindYourWay.java @@ -12,20 +12,16 @@ import net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper; public class FindYourWay { public static final String modId = "findyourway"; public static final String name = "Find Your Way"; - public static final String version = "1.0.0-beta"; + public static final String version = "1.0.0"; @Mod.Instance(modId) public static FindYourWay instance; @SidedProxy(serverSide = "net.yseven.findyourway.CommonProxy", clientSide = "net.yseven.findyourway.Client.ClientProxy") public static CommonProxy proxy; - public static SimpleNetworkWrapper network; @Mod.EventHandler public void preInit(FMLPreInitializationEvent event) { - System.out.println(name + " is loading!"); - System.out.println("FIND YOUR WAY TEST LINE -------------------------------------- TEST"); - proxy.preInit(event); } diff --git a/src/main/java/net/yseven/findyourway/Network/MessageHandlerOnClient.java b/src/main/java/net/yseven/findyourway/Network/MessageHandlerOnClient.java new file mode 100644 index 0000000..3dd4869 --- /dev/null +++ b/src/main/java/net/yseven/findyourway/Network/MessageHandlerOnClient.java @@ -0,0 +1,31 @@ +package net.yseven.findyourway.Network; + +import net.minecraft.client.Minecraft; +import net.minecraft.util.math.BlockPos; +import net.minecraftforge.fml.common.network.simpleimpl.IMessage; +import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler; +import net.minecraftforge.fml.common.network.simpleimpl.MessageContext; +import net.minecraftforge.fml.relauncher.Side; +import net.yseven.findyourway.item.ItemCompassBase; + +public class MessageHandlerOnClient implements IMessageHandler { + + public IMessage onMessage(final MessageToClient message, MessageContext ctx) { + if (ctx.side != Side.CLIENT) { + System.err.println("MessageToClient received on wrong side: " + ctx.side); + return null; + } + if(!message.isMessageIsValid()) { + System.err.println("MessageToClient is not valid: " + message.toString()); + return null; + } + + Minecraft minecraft = Minecraft.getMinecraft(); + minecraft.addScheduledTask(() -> processMessage(message.getCompass(), message.getStructurePos())); + return null; + } + + private void processMessage(ItemCompassBase compass, BlockPos pos) { + compass.setStructurePos(pos); + } +} \ No newline at end of file diff --git a/src/main/java/net/yseven/findyourway/Network/MessageHandlerOnServer.java b/src/main/java/net/yseven/findyourway/Network/MessageHandlerOnServer.java new file mode 100644 index 0000000..69ffe0b --- /dev/null +++ b/src/main/java/net/yseven/findyourway/Network/MessageHandlerOnServer.java @@ -0,0 +1,49 @@ +package net.yseven.findyourway.Network; + +import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.WorldServer; +import net.minecraftforge.fml.common.network.simpleimpl.IMessage; +import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler; +import net.minecraftforge.fml.common.network.simpleimpl.MessageContext; +import net.minecraftforge.fml.relauncher.Side; +import net.yseven.findyourway.CommonProxy; + +public class MessageHandlerOnServer implements IMessageHandler { + public IMessage onMessage(final MessageToServer message, MessageContext ctx) { + if(ctx.side != Side.SERVER) { + System.err.println("MessageToServer received on wrong side: " + ctx.side); + return null; + } + if(!message.isMessageIsValid()) { + System.err.println("MessageToServer is not valid: " + message.toString()); + } + + final EntityPlayerMP sendingPlayer = ctx.getServerHandler().player; + if(sendingPlayer == null) { + System.err.println("EntityPlayerMP was null MessageToServer was received!"); + return null; + } + final WorldServer playerWorldServer = sendingPlayer.getServerWorld(); + playerWorldServer.addScheduledTask(() -> processMessage(message, sendingPlayer)); + + return null; + } + + private void processMessage(MessageToServer message, EntityPlayerMP sendingPlayer) { + int dimension = sendingPlayer.dimension; + WorldServer world = (WorldServer)sendingPlayer.world; + BlockPos structurePos; + + if(world.getChunkProvider().getNearestStructurePos(world, message.getStructureType(), sendingPlayer.getPosition(), true) != null) { + structurePos = world.getChunkProvider().getNearestStructurePos(world, message.getStructureType(), sendingPlayer.getPosition(), true); + } else { + structurePos = new BlockPos(0, 0, 0); + } + + MessageToClient msg = new MessageToClient(structurePos, message.getCompass()); + if (dimension == sendingPlayer.dimension) { + CommonProxy.simpleNetworkWrapper.sendTo(msg, sendingPlayer); + } + } +} diff --git a/src/main/java/net/yseven/findyourway/Network/MessageHandlerOnServerDummy.java b/src/main/java/net/yseven/findyourway/Network/MessageHandlerOnServerDummy.java new file mode 100644 index 0000000..d55eb4b --- /dev/null +++ b/src/main/java/net/yseven/findyourway/Network/MessageHandlerOnServerDummy.java @@ -0,0 +1,12 @@ +package net.yseven.findyourway.Network; + +import net.minecraftforge.fml.common.network.simpleimpl.IMessage; +import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler; +import net.minecraftforge.fml.common.network.simpleimpl.MessageContext; + +public class MessageHandlerOnServerDummy implements IMessageHandler { + public IMessage onMessage(final MessageToClient message, MessageContext ctx) { + System.err.println("TargetEffectMessageToClient received on wrong side:" + ctx.side); + return null; + } +} diff --git a/src/main/java/net/yseven/findyourway/Network/MessageToClient.java b/src/main/java/net/yseven/findyourway/Network/MessageToClient.java new file mode 100644 index 0000000..41fb971 --- /dev/null +++ b/src/main/java/net/yseven/findyourway/Network/MessageToClient.java @@ -0,0 +1,63 @@ +package net.yseven.findyourway.Network; + +import io.netty.buffer.ByteBuf; +import net.minecraft.util.math.BlockPos; +import net.minecraftforge.fml.common.network.simpleimpl.IMessage; +import net.yseven.findyourway.item.ItemCompassBase; + +public class MessageToClient implements IMessage { + private ItemCompassBase compass; + private BlockPos structurePos; + private boolean messageIsValid; + + public boolean isMessageIsValid() { + return messageIsValid; + } + + public ItemCompassBase getCompass() { + return compass; + } + + public BlockPos getStructurePos() { + return structurePos; + } + + public MessageToClient() { + messageIsValid = false; + } + + public MessageToClient(BlockPos pos, ItemCompassBase compassBase) { + structurePos = pos; + compass = compassBase; + messageIsValid = true; + } + + @Override + public void fromBytes(ByteBuf buf) { + try { + double x = buf.readDouble(); + double y = buf.readDouble(); + double z = buf.readDouble(); + structurePos = new BlockPos(x, y, z); + compass = ItemCompassBase.fromBytes(buf); + } catch (IndexOutOfBoundsException ioe) { + System.err.println("Error while reading MessageToClient: " + ioe); + return; + } + messageIsValid = true; + } + + @Override + public void toBytes(ByteBuf buf) { + if(!isMessageIsValid()) return; + buf.writeDouble(structurePos.getX()); + buf.writeDouble(structurePos.getY()); + buf.writeDouble(structurePos.getZ()); + compass.toBytes(buf); + } + + @Override + public String toString() { + return "Structure Position is: " + structurePos.toString() + "!"; + } +} diff --git a/src/main/java/net/yseven/findyourway/Network/MessageToServer.java b/src/main/java/net/yseven/findyourway/Network/MessageToServer.java new file mode 100644 index 0000000..8807977 --- /dev/null +++ b/src/main/java/net/yseven/findyourway/Network/MessageToServer.java @@ -0,0 +1,55 @@ +package net.yseven.findyourway.Network; + +import io.netty.buffer.ByteBuf; +import net.minecraftforge.fml.common.network.simpleimpl.IMessage; +import net.yseven.findyourway.item.ItemCompassBase; + +public class MessageToServer implements IMessage { + private ItemCompassBase compass; + private String structureType; + private boolean messageIsValid; + + public MessageToServer(ItemCompassBase compassItem) { + compass = compassItem; + messageIsValid = true; + } + + public String getStructureType() { + return structureType; + } + + public ItemCompassBase getCompass() { + return compass; + } + + public boolean isMessageIsValid() { + return messageIsValid; + } + + public MessageToServer() { + messageIsValid = false; + } + + @Override + public void fromBytes(ByteBuf buf) { + try { + compass = ItemCompassBase.fromBytes(buf); + } catch (IndexOutOfBoundsException ioe) { + System.err.println("Exception while reading MessageToServer: " + ioe); + return; + } + structureType = compass.getStructureType(); + messageIsValid = true; + } + + @Override + public void toBytes(ByteBuf buf){ + if(!isMessageIsValid()) return; + compass.toBytes(buf); + } + + @Override + public String toString() { + return "MessageToServer[compass=" + String.valueOf(compass) + ", structurePos=]"; + } +} diff --git a/src/main/java/net/yseven/findyourway/Network/PacketGetKey.java b/src/main/java/net/yseven/findyourway/Network/PacketGetKey.java deleted file mode 100644 index c81fbf2..0000000 --- a/src/main/java/net/yseven/findyourway/Network/PacketGetKey.java +++ /dev/null @@ -1,41 +0,0 @@ -package net.yseven.findyourway.Network; - -import io.netty.buffer.ByteBuf; -import net.minecraft.util.math.BlockPos; -import net.minecraftforge.fml.common.network.simpleimpl.IMessage; -import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler; -import net.minecraftforge.fml.common.network.simpleimpl.MessageContext; -import net.yseven.findyourway.Client.ClientProxy; -import net.yseven.findyourway.CommonProxy; -import net.yseven.findyourway.item.ItemCompassBase; - -public class PacketGetKey implements IMessage, IMessageHandler { - private BlockPos structurePos; - private ItemCompassBase compass; - - public PacketGetKey() {} - - public PacketGetKey(BlockPos pos, int id) { - structurePos = pos; - compass = CommonProxy.getCompassId(id); - } - - @Override - public void toBytes(ByteBuf buf) { - buf.writeLong(structurePos.toLong()); - buf.writeInt(CommonProxy.setCompassId(compass)); - } - - @Override - public void fromBytes(ByteBuf buf) { - structurePos = BlockPos.fromLong(buf.readLong()); - compass = CommonProxy.getCompassId(buf.readInt()); - } - - @Override - public IMessage onMessage(PacketGetKey message, MessageContext ctx) { - //Client Code - ClientProxy.getMinecraft().addScheduledTask(() -> ClientProxy.setStructurePos(message.compass, message.structurePos)); - return null; - } -} diff --git a/src/main/java/net/yseven/findyourway/Network/PacketHandler.java b/src/main/java/net/yseven/findyourway/Network/PacketHandler.java deleted file mode 100644 index aee6a1c..0000000 --- a/src/main/java/net/yseven/findyourway/Network/PacketHandler.java +++ /dev/null @@ -1,30 +0,0 @@ -package net.yseven.findyourway.Network; - -import net.minecraftforge.fml.common.network.NetworkRegistry; -import net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper; -import net.minecraftforge.fml.relauncher.Side; - -@SuppressWarnings("WeakerAccess") -public class PacketHandler { - private static int packetId = 0; - - public static SimpleNetworkWrapper INSTANCE = null; - - public PacketHandler() { - } - - public static int nextID() { - return packetId++; - } - - public static void registerMessages(String channelName) { - INSTANCE = NetworkRegistry.INSTANCE.newSimpleChannel(channelName); - registerMessages(); - } - - public static void registerMessages() { - // Register messages which are sent from the client to the server here: - INSTANCE.registerMessage(PacketSendKey.Handler.class, PacketSendKey.class, nextID(), Side.SERVER); - INSTANCE.registerMessage(PacketGetKey.class, PacketGetKey.class, nextID(), Side.CLIENT); - } -} diff --git a/src/main/java/net/yseven/findyourway/Network/PacketSendKey.java b/src/main/java/net/yseven/findyourway/Network/PacketSendKey.java deleted file mode 100644 index fb3571e..0000000 --- a/src/main/java/net/yseven/findyourway/Network/PacketSendKey.java +++ /dev/null @@ -1,48 +0,0 @@ -package net.yseven.findyourway.Network; - -import io.netty.buffer.ByteBuf; -import net.minecraft.entity.player.EntityPlayerMP; -import net.minecraft.util.math.BlockPos; -import net.minecraft.world.WorldServer; -import net.minecraftforge.fml.common.network.simpleimpl.IMessage; -import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler; -import net.minecraftforge.fml.common.network.simpleimpl.MessageContext; -import net.yseven.findyourway.CommonProxy; -import net.yseven.findyourway.item.ItemCompassBase; - -public class PacketSendKey implements IMessage { - private BlockPos structurePos; - private final ItemCompassBase compass; - - @Override - public void fromBytes(ByteBuf buf) {} - - @Override - public void toBytes(ByteBuf buf) {} - - public PacketSendKey(ItemCompassBase compassBase) { - compass = compassBase; - } - - public static class Handler implements IMessageHandler { - @Override - public IMessage onMessage(PacketSendKey message, MessageContext ctx) { - final EntityPlayerMP player = ctx.getServerHandler().player; - if (CommonProxy.containsCompass(player.inventory, message.compass)) { - final WorldServer world = (WorldServer) player.world; - final int compassId = CommonProxy.setCompassId(message.compass); - final String structureType = message.compass.getStructureType(); - world.addScheduledTask(new Runnable() { - @Override - public void run() { - BlockPos pos = world.getChunkProvider().getNearestStructurePos(world, structureType, new BlockPos(player), true); - if (pos != null) { - PacketHandler.INSTANCE.sendTo(new PacketGetKey(message.structurePos, compassId), player); - } - } - }); - } - return null; - } - } -} diff --git a/src/main/java/net/yseven/findyourway/Util.java b/src/main/java/net/yseven/findyourway/Util.java deleted file mode 100644 index d4ff054..0000000 --- a/src/main/java/net/yseven/findyourway/Util.java +++ /dev/null @@ -1,17 +0,0 @@ -package net.yseven.findyourway; - -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.item.Item; -import net.minecraft.item.ItemStack; - -public class Util { - public static boolean checkInventoryForCompass(InventoryPlayer inventory, Item compass) { - for(int x = 0; x < inventory.getSizeInventory(); x++) { - ItemStack stack = inventory.getStackInSlot(x); - if(!stack.isEmpty() && stack.getItem() == compass) { - return true; - } - } - return false; - } -} diff --git a/src/main/java/net/yseven/findyourway/item/ItemCompassBase.java b/src/main/java/net/yseven/findyourway/item/ItemCompassBase.java index f14c6ff..23aa712 100644 --- a/src/main/java/net/yseven/findyourway/item/ItemCompassBase.java +++ b/src/main/java/net/yseven/findyourway/item/ItemCompassBase.java @@ -1,5 +1,6 @@ package net.yseven.findyourway.item; +import io.netty.buffer.ByteBuf; import net.minecraft.client.renderer.block.model.ModelResourceLocation; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.player.EntityPlayer; @@ -10,7 +11,9 @@ import net.minecraft.util.EnumActionResult; import net.minecraft.util.EnumHand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; +import net.minecraftforge.client.event.ModelRegistryEvent; import net.minecraftforge.client.model.ModelLoader; +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; import net.yseven.findyourway.Client.ClientProxy; @@ -20,10 +23,10 @@ import net.yseven.findyourway.FindYourWay; import javax.annotation.Nonnull; public class ItemCompassBase extends Item { - private final String structureType; + private String structureType; private BlockPos structurePos; private World structureWorld; - public final String assetTag; + private final int ItemCompassID; public ItemCompassBase(String name, String structureName) { setUnlocalizedName(FindYourWay.modId + "." + name); @@ -31,30 +34,60 @@ public class ItemCompassBase extends Item { structureType = structureName; setCreativeTab(CreativeTabs.TOOLS); setMaxStackSize(1); - assetTag = name + "_angle"; CommonProxy.compassList.add(this); + ItemCompassID = CommonProxy.compassList.indexOf(this); } + public String toString() { + return getUnlocalizedName(); + } + + //getters + public String getStructureType() { return structureType; } - - public void setStructurePos(BlockPos pos) { - structurePos = pos; - } - public BlockPos getStructurePos() { return structurePos; } + public World getStructureWorld() { + return structureWorld; + } + public int getCompassID() { + return ItemCompassID; + } + //setters + + public void setStructureType(String type) { + structureType= type; + } + public void setStructurePos(BlockPos pos) { + structurePos = pos; + } public void setStructureWorld(World world) { structureWorld = world; } - public World getStructureWorld() { - return structureWorld; + //netcode implementation + + public void toBytes(ByteBuf buf) { + if(CommonProxy.compassList.contains(this)) { + buf.writeInt(ItemCompassID); + } } + public static ItemCompassBase fromBytes(ByteBuf buf) { + int ID = buf.readInt(); + for(int i = 0; i <= CommonProxy.compassList.size(); i++) { + if(ID == CommonProxy.compassList.get(i).getCompassID()) return CommonProxy.compassList.get(i); + } + return null; + } + + //Client Code (mostly registration) + @SideOnly(Side.CLIENT) + @SubscribeEvent public void registerItemModel() { ModelLoader.setCustomModelResourceLocation(this, 0, new ModelResourceLocation(getRegistryName(), "inventory")); } diff --git a/src/main/java/net/yseven/findyourway/item/ModItems.java b/src/main/java/net/yseven/findyourway/item/ModItems.java index 0eec386..e5f92b9 100644 --- a/src/main/java/net/yseven/findyourway/item/ModItems.java +++ b/src/main/java/net/yseven/findyourway/item/ModItems.java @@ -1,20 +1,30 @@ package net.yseven.findyourway.item; +import net.minecraftforge.fml.common.registry.GameRegistry; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; +import net.yseven.findyourway.FindYourWay; + +import static net.yseven.findyourway.FindYourWay.modId; public class ModItems { public static ItemCompassBase ENDER_COMPASS; public static ItemCompassBase VILLAGE_COMPASS; + public static ItemCompassBase FORTRESS_COMPASS; + public static ItemCompassBase MONUMENT_COMPASS; public static void init(){ ENDER_COMPASS = new ItemCompassBase("ender_compass", "Stronghold"); VILLAGE_COMPASS = new ItemCompassBase("village_compass", "Village"); + FORTRESS_COMPASS = new ItemCompassBase("fortress_compass", "Fortress"); + MONUMENT_COMPASS = new ItemCompassBase("monument_compass", "Monument"); } @SideOnly(Side.CLIENT) public static void registerModels() { ENDER_COMPASS.registerItemModel(); VILLAGE_COMPASS.registerItemModel(); + FORTRESS_COMPASS.registerItemModel(); + MONUMENT_COMPASS.registerItemModel(); } -} +} \ No newline at end of file diff --git a/src/main/resources/assets/findyourway/lang/en_US.lang b/src/main/resources/assets/findyourway/lang/en_US.lang index 46457c2..cb5587d 100644 --- a/src/main/resources/assets/findyourway/lang/en_US.lang +++ b/src/main/resources/assets/findyourway/lang/en_US.lang @@ -1,2 +1,5 @@ # Items -item.ender_compass.name=Ender Compass \ No newline at end of file +item.findyourway.ender_compass.name=Ender Compass +item.findyourway.village_compass.name=Village Compass +item.findyourway.fortress_compass.name=Fortress Compass +item.findyourway.monument_compass.name=Monument Compass \ No newline at end of file diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass.json b/src/main/resources/assets/findyourway/models/item/ender_compass.json deleted file mode 100644 index af80b2a..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass" - }, - "overrides": [ - { "predicate": { "ender_compass_angle": 0.000000 }, "model": "findyourway:item/ender_compass" }, - { "predicate": { "ender_compass_angle": 0.015625 }, "model": "findyourway:item/ender_compass_17" }, - { "predicate": { "ender_compass_angle": 0.046875 }, "model": "findyourway:item/ender_compass_18" }, - { "predicate": { "ender_compass_angle": 0.078125 }, "model": "findyourway:item/ender_compass_19" }, - { "predicate": { "ender_compass_angle": 0.109375 }, "model": "findyourway:item/ender_compass_20" }, - { "predicate": { "ender_compass_angle": 0.140625 }, "model": "findyourway:item/ender_compass_21" }, - { "predicate": { "ender_compass_angle": 0.171875 }, "model": "findyourway:item/ender_compass_22" }, - { "predicate": { "ender_compass_angle": 0.203125 }, "model": "findyourway:item/ender_compass_23" }, - { "predicate": { "ender_compass_angle": 0.234375 }, "model": "findyourway:item/ender_compass_24" }, - { "predicate": { "ender_compass_angle": 0.265625 }, "model": "findyourway:item/ender_compass_25" }, - { "predicate": { "ender_compass_angle": 0.296875 }, "model": "findyourway:item/ender_compass_26" }, - { "predicate": { "ender_compass_angle": 0.328125 }, "model": "findyourway:item/ender_compass_27" }, - { "predicate": { "ender_compass_angle": 0.359375 }, "model": "findyourway:item/ender_compass_28" }, - { "predicate": { "ender_compass_angle": 0.390625 }, "model": "findyourway:item/ender_compass_29" }, - { "predicate": { "ender_compass_angle": 0.421875 }, "model": "findyourway:item/ender_compass_30" }, - { "predicate": { "ender_compass_angle": 0.453125 }, "model": "findyourway:item/ender_compass_31" }, - { "predicate": { "ender_compass_angle": 0.484375 }, "model": "findyourway:item/ender_compass_00" }, - { "predicate": { "ender_compass_angle": 0.515625 }, "model": "findyourway:item/ender_compass_01" }, - { "predicate": { "ender_compass_angle": 0.546875 }, "model": "findyourway:item/ender_compass_02" }, - { "predicate": { "ender_compass_angle": 0.578125 }, "model": "findyourway:item/ender_compass_03" }, - { "predicate": { "ender_compass_angle": 0.609375 }, "model": "findyourway:item/ender_compass_04" }, - { "predicate": { "ender_compass_angle": 0.640625 }, "model": "findyourway:item/ender_compass_05" }, - { "predicate": { "ender_compass_angle": 0.671875 }, "model": "findyourway:item/ender_compass_06" }, - { "predicate": { "ender_compass_angle": 0.703125 }, "model": "findyourway:item/ender_compass_07" }, - { "predicate": { "ender_compass_angle": 0.734375 }, "model": "findyourway:item/ender_compass_08" }, - { "predicate": { "ender_compass_angle": 0.765625 }, "model": "findyourway:item/ender_compass_09" }, - { "predicate": { "ender_compass_angle": 0.796875 }, "model": "findyourway:item/ender_compass_10" }, - { "predicate": { "ender_compass_angle": 0.828125 }, "model": "findyourway:item/ender_compass_11" }, - { "predicate": { "ender_compass_angle": 0.859375 }, "model": "findyourway:item/ender_compass_12" }, - { "predicate": { "ender_compass_angle": 0.890625 }, "model": "findyourway:item/ender_compass_13" }, - { "predicate": { "ender_compass_angle": 0.921875 }, "model": "findyourway:item/ender_compass_14" }, - { "predicate": { "ender_compass_angle": 0.953125 }, "model": "findyourway:item/ender_compass_15" }, - { "predicate": { "ender_compass_angle": 0.984375 }, "model": "findyourway:item/ender_compass" } - ] -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_04.json b/src/main/resources/assets/findyourway/models/item/ender_compass_04.json deleted file mode 100644 index 51944e7..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_04.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_04" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_05.json b/src/main/resources/assets/findyourway/models/item/ender_compass_05.json deleted file mode 100644 index cb15d53..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_05.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_05" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_06.json b/src/main/resources/assets/findyourway/models/item/ender_compass_06.json deleted file mode 100644 index d2d23f8..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_06.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_06" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_07.json b/src/main/resources/assets/findyourway/models/item/ender_compass_07.json deleted file mode 100644 index 6be1285..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_07.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_07" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_08.json b/src/main/resources/assets/findyourway/models/item/ender_compass_08.json deleted file mode 100644 index 7abc41f..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_08.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_08" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_09.json b/src/main/resources/assets/findyourway/models/item/ender_compass_09.json deleted file mode 100644 index f66c5d6..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_09.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_09" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_10.json b/src/main/resources/assets/findyourway/models/item/ender_compass_10.json deleted file mode 100644 index beaba9d..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_10.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_10" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_11.json b/src/main/resources/assets/findyourway/models/item/ender_compass_11.json deleted file mode 100644 index 70dcc3b..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_11.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_11" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_12.json b/src/main/resources/assets/findyourway/models/item/ender_compass_12.json deleted file mode 100644 index 324ea32..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_12.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_12" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_13.json b/src/main/resources/assets/findyourway/models/item/ender_compass_13.json deleted file mode 100644 index ab8b189..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_13.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_13" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_14.json b/src/main/resources/assets/findyourway/models/item/ender_compass_14.json deleted file mode 100644 index efa0f47..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_14.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_14" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_15.json b/src/main/resources/assets/findyourway/models/item/ender_compass_15.json deleted file mode 100644 index 7aeb2b4..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_15.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_15" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_16.json b/src/main/resources/assets/findyourway/models/item/ender_compass_16.json deleted file mode 100644 index 51944e7..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_16.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_04" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_17.json b/src/main/resources/assets/findyourway/models/item/ender_compass_17.json deleted file mode 100644 index 0ffb862..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_17.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_17" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_18.json b/src/main/resources/assets/findyourway/models/item/ender_compass_18.json deleted file mode 100644 index cb569e3..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_18.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_18" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_19.json b/src/main/resources/assets/findyourway/models/item/ender_compass_19.json deleted file mode 100644 index fcc5d5b..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_19.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_19" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_20.json b/src/main/resources/assets/findyourway/models/item/ender_compass_20.json deleted file mode 100644 index d32dc6b..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_20.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_20" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_21.json b/src/main/resources/assets/findyourway/models/item/ender_compass_21.json deleted file mode 100644 index 6868248..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_21.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_21" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_22.json b/src/main/resources/assets/findyourway/models/item/ender_compass_22.json deleted file mode 100644 index f164c2b..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_22.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_22" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_23.json b/src/main/resources/assets/findyourway/models/item/ender_compass_23.json deleted file mode 100644 index 6a566a9..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_23.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_23" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_24.json b/src/main/resources/assets/findyourway/models/item/ender_compass_24.json deleted file mode 100644 index c3faeb7..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_24.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_24" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_25.json b/src/main/resources/assets/findyourway/models/item/ender_compass_25.json deleted file mode 100644 index 948ad46..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_25.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_25" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_26.json b/src/main/resources/assets/findyourway/models/item/ender_compass_26.json deleted file mode 100644 index 96d2e99..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_26.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_26" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_27.json b/src/main/resources/assets/findyourway/models/item/ender_compass_27.json deleted file mode 100644 index b9350d6..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_27.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_27" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_28.json b/src/main/resources/assets/findyourway/models/item/ender_compass_28.json deleted file mode 100644 index face4ca..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_28.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_28" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_29.json b/src/main/resources/assets/findyourway/models/item/ender_compass_29.json deleted file mode 100644 index 684e505..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_29.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_29" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_30.json b/src/main/resources/assets/findyourway/models/item/ender_compass_30.json deleted file mode 100644 index b8b8f9e..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_30.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_30" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_31.json b/src/main/resources/assets/findyourway/models/item/ender_compass_31.json deleted file mode 100644 index cbb9c24..0000000 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_31.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "findyourway:item/ender_compass_31" - } -} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass.json new file mode 100644 index 0000000..ede5800 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass.json @@ -0,0 +1,52 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_16" + }, + "defaults": { + "textures": { + "layer0": "findyourway:items/ender_compass_16" + } + }, + "variants": { + "normal": [{ + }], + "inventory": [{ + }] + }, + "overrides": [ + { "predicate": { "angle": 0.000000 }, "model": "findyourway:item/item.findyourway.ender_compass_16" }, + { "predicate": { "angle": 0.015625 }, "model": "findyourway:item/item.findyourway.ender_compass_17" }, + { "predicate": { "angle": 0.046875 }, "model": "findyourway:item/item.findyourway.ender_compass_18" }, + { "predicate": { "angle": 0.078125 }, "model": "findyourway:item/item.findyourway.ender_compass_19" }, + { "predicate": { "angle": 0.109375 }, "model": "findyourway:item/item.findyourway.ender_compass_20" }, + { "predicate": { "angle": 0.140625 }, "model": "findyourway:item/item.findyourway.ender_compass_21" }, + { "predicate": { "angle": 0.171875 }, "model": "findyourway:item/item.findyourway.ender_compass_22" }, + { "predicate": { "angle": 0.203125 }, "model": "findyourway:item/item.findyourway.ender_compass_23" }, + { "predicate": { "angle": 0.234375 }, "model": "findyourway:item/item.findyourway.ender_compass_24" }, + { "predicate": { "angle": 0.265625 }, "model": "findyourway:item/item.findyourway.ender_compass_25" }, + { "predicate": { "angle": 0.296875 }, "model": "findyourway:item/item.findyourway.ender_compass_26" }, + { "predicate": { "angle": 0.328125 }, "model": "findyourway:item/item.findyourway.ender_compass_27" }, + { "predicate": { "angle": 0.359375 }, "model": "findyourway:item/item.findyourway.ender_compass_28" }, + { "predicate": { "angle": 0.390625 }, "model": "findyourway:item/item.findyourway.ender_compass_29" }, + { "predicate": { "angle": 0.421875 }, "model": "findyourway:item/item.findyourway.ender_compass_30" }, + { "predicate": { "angle": 0.453125 }, "model": "findyourway:item/item.findyourway.ender_compass_31" }, + { "predicate": { "angle": 0.484375 }, "model": "findyourway:item/item.findyourway.ender_compass_00" }, + { "predicate": { "angle": 0.515625 }, "model": "findyourway:item/item.findyourway.ender_compass_01" }, + { "predicate": { "angle": 0.546875 }, "model": "findyourway:item/item.findyourway.ender_compass_02" }, + { "predicate": { "angle": 0.578125 }, "model": "findyourway:item/item.findyourway.ender_compass_03" }, + { "predicate": { "angle": 0.609375 }, "model": "findyourway:item/item.findyourway.ender_compass_04" }, + { "predicate": { "angle": 0.640625 }, "model": "findyourway:item/item.findyourway.ender_compass_05" }, + { "predicate": { "angle": 0.671875 }, "model": "findyourway:item/item.findyourway.ender_compass_06" }, + { "predicate": { "angle": 0.703125 }, "model": "findyourway:item/item.findyourway.ender_compass_07" }, + { "predicate": { "angle": 0.734375 }, "model": "findyourway:item/item.findyourway.ender_compass_08" }, + { "predicate": { "angle": 0.765625 }, "model": "findyourway:item/item.findyourway.ender_compass_09" }, + { "predicate": { "angle": 0.796875 }, "model": "findyourway:item/item.findyourway.ender_compass_10" }, + { "predicate": { "angle": 0.828125 }, "model": "findyourway:item/item.findyourway.ender_compass_11" }, + { "predicate": { "angle": 0.859375 }, "model": "findyourway:item/item.findyourway.ender_compass_12" }, + { "predicate": { "angle": 0.890625 }, "model": "findyourway:item/item.findyourway.ender_compass_13" }, + { "predicate": { "angle": 0.921875 }, "model": "findyourway:item/item.findyourway.ender_compass_14" }, + { "predicate": { "angle": 0.953125 }, "model": "findyourway:item/item.findyourway.ender_compass_15" }, + { "predicate": { "angle": 0.984375 }, "model": "findyourway:item/item.findyourway.ender_compass_16" } + ] +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_00.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_00.json new file mode 100644 index 0000000..0304d40 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_00.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_00" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_00.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_01.json similarity index 52% rename from src/main/resources/assets/findyourway/models/item/ender_compass_00.json rename to src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_01.json index 5174066..e01990a 100644 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_00.json +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_01.json @@ -1,6 +1,6 @@ { "parent": "item/generated", "textures": { - "layer0": "findyourway:item/ender_compass_00" + "layer0": "findyourway:items/ender_compass_01" } } diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_01.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_02.json similarity index 52% rename from src/main/resources/assets/findyourway/models/item/ender_compass_01.json rename to src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_02.json index da3a209..1206c53 100644 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_01.json +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_02.json @@ -1,6 +1,6 @@ { "parent": "item/generated", "textures": { - "layer0": "findyourway:item/ender_compass_01" + "layer0": "findyourway:items/ender_compass_02" } } diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_02.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_03.json similarity index 52% rename from src/main/resources/assets/findyourway/models/item/ender_compass_02.json rename to src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_03.json index 3d9df98..5b672cc 100644 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_02.json +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_03.json @@ -1,6 +1,6 @@ { "parent": "item/generated", "textures": { - "layer0": "findyourway:item/ender_compass_02" + "layer0": "findyourway:items/ender_compass_03" } } diff --git a/src/main/resources/assets/findyourway/models/item/ender_compass_03.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_04.json similarity index 52% rename from src/main/resources/assets/findyourway/models/item/ender_compass_03.json rename to src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_04.json index 50815a1..5f9bc29 100644 --- a/src/main/resources/assets/findyourway/models/item/ender_compass_03.json +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_04.json @@ -1,6 +1,6 @@ { "parent": "item/generated", "textures": { - "layer0": "findyourway:item/ender_compass_03" + "layer0": "findyourway:items/ender_compass_04" } } diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_05.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_05.json new file mode 100644 index 0000000..3e6d948 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_05.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_05" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_06.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_06.json new file mode 100644 index 0000000..c0e2ae5 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_06.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_06" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_07.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_07.json new file mode 100644 index 0000000..befb89a --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_07.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_07" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_08.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_08.json new file mode 100644 index 0000000..d95dd3e --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_08.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_08" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_09.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_09.json new file mode 100644 index 0000000..1b28004 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_09.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_09" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_10.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_10.json new file mode 100644 index 0000000..1f2fbc9 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_10.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_10" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_11.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_11.json new file mode 100644 index 0000000..6951f24 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_11.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_11" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_12.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_12.json new file mode 100644 index 0000000..ef28a95 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_12.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_12" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_13.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_13.json new file mode 100644 index 0000000..d7fef17 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_13.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_13" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_14.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_14.json new file mode 100644 index 0000000..e4bf8a0 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_14.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_14" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_15.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_15.json new file mode 100644 index 0000000..921eb26 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_15.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_15" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_16.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_16.json new file mode 100644 index 0000000..516b702 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_16.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_16" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_17.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_17.json new file mode 100644 index 0000000..f50a8ad --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_17.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_17" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_18.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_18.json new file mode 100644 index 0000000..8debafa --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_18.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_18" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_19.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_19.json new file mode 100644 index 0000000..f045ade --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_19.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_19" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_20.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_20.json new file mode 100644 index 0000000..2c46c73 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_20.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_20" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_21.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_21.json new file mode 100644 index 0000000..ab3ff37 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_21.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_21" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_22.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_22.json new file mode 100644 index 0000000..e313bbb --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_22.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_22" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_23.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_23.json new file mode 100644 index 0000000..8d6cec1 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_23.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_23" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_24.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_24.json new file mode 100644 index 0000000..0f223e9 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_24.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_24" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_25.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_25.json new file mode 100644 index 0000000..399d5e5 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_25.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_25" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_26.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_26.json new file mode 100644 index 0000000..eddb7f0 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_26.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_26" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_27.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_27.json new file mode 100644 index 0000000..b8475a2 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_27.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_27" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_28.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_28.json new file mode 100644 index 0000000..7529dab --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_28.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_28" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_29.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_29.json new file mode 100644 index 0000000..252cfec --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_29.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_29" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_30.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_30.json new file mode 100644 index 0000000..43d8ca9 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_30.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_30" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_31.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_31.json new file mode 100644 index 0000000..1763319 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.ender_compass_31.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/ender_compass_31" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass.json new file mode 100644 index 0000000..e63c5a0 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass.json @@ -0,0 +1,52 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_16" + }, + "defaults": { + "textures": { + "layer0": "findyourway:items/fortress_compass_16" + } + }, + "variants": { + "normal": [{ + }], + "inventory": [{ + }] + }, + "overrides": [ + { "predicate": { "angle": 0.000000 }, "model": "findyourway:item/item.findyourway.fortress_compass_16" }, + { "predicate": { "angle": 0.015625 }, "model": "findyourway:item/item.findyourway.fortress_compass_17" }, + { "predicate": { "angle": 0.046875 }, "model": "findyourway:item/item.findyourway.fortress_compass_18" }, + { "predicate": { "angle": 0.078125 }, "model": "findyourway:item/item.findyourway.fortress_compass_19" }, + { "predicate": { "angle": 0.109375 }, "model": "findyourway:item/item.findyourway.fortress_compass_20" }, + { "predicate": { "angle": 0.140625 }, "model": "findyourway:item/item.findyourway.fortress_compass_21" }, + { "predicate": { "angle": 0.171875 }, "model": "findyourway:item/item.findyourway.fortress_compass_22" }, + { "predicate": { "angle": 0.203125 }, "model": "findyourway:item/item.findyourway.fortress_compass_23" }, + { "predicate": { "angle": 0.234375 }, "model": "findyourway:item/item.findyourway.fortress_compass_24" }, + { "predicate": { "angle": 0.265625 }, "model": "findyourway:item/item.findyourway.fortress_compass_25" }, + { "predicate": { "angle": 0.296875 }, "model": "findyourway:item/item.findyourway.fortress_compass_26" }, + { "predicate": { "angle": 0.328125 }, "model": "findyourway:item/item.findyourway.fortress_compass_27" }, + { "predicate": { "angle": 0.359375 }, "model": "findyourway:item/item.findyourway.fortress_compass_28" }, + { "predicate": { "angle": 0.390625 }, "model": "findyourway:item/item.findyourway.fortress_compass_29" }, + { "predicate": { "angle": 0.421875 }, "model": "findyourway:item/item.findyourway.fortress_compass_30" }, + { "predicate": { "angle": 0.453125 }, "model": "findyourway:item/item.findyourway.fortress_compass_31" }, + { "predicate": { "angle": 0.484375 }, "model": "findyourway:item/item.findyourway.fortress_compass_00" }, + { "predicate": { "angle": 0.515625 }, "model": "findyourway:item/item.findyourway.fortress_compass_01" }, + { "predicate": { "angle": 0.546875 }, "model": "findyourway:item/item.findyourway.fortress_compass_02" }, + { "predicate": { "angle": 0.578125 }, "model": "findyourway:item/item.findyourway.fortress_compass_03" }, + { "predicate": { "angle": 0.609375 }, "model": "findyourway:item/item.findyourway.fortress_compass_04" }, + { "predicate": { "angle": 0.640625 }, "model": "findyourway:item/item.findyourway.fortress_compass_05" }, + { "predicate": { "angle": 0.671875 }, "model": "findyourway:item/item.findyourway.fortress_compass_06" }, + { "predicate": { "angle": 0.703125 }, "model": "findyourway:item/item.findyourway.fortress_compass_07" }, + { "predicate": { "angle": 0.734375 }, "model": "findyourway:item/item.findyourway.fortress_compass_08" }, + { "predicate": { "angle": 0.765625 }, "model": "findyourway:item/item.findyourway.fortress_compass_09" }, + { "predicate": { "angle": 0.796875 }, "model": "findyourway:item/item.findyourway.fortress_compass_10" }, + { "predicate": { "angle": 0.828125 }, "model": "findyourway:item/item.findyourway.fortress_compass_11" }, + { "predicate": { "angle": 0.859375 }, "model": "findyourway:item/item.findyourway.fortress_compass_12" }, + { "predicate": { "angle": 0.890625 }, "model": "findyourway:item/item.findyourway.fortress_compass_13" }, + { "predicate": { "angle": 0.921875 }, "model": "findyourway:item/item.findyourway.fortress_compass_14" }, + { "predicate": { "angle": 0.953125 }, "model": "findyourway:item/item.findyourway.fortress_compass_15" }, + { "predicate": { "angle": 0.984375 }, "model": "findyourway:item/item.findyourway.fortress_compass_16" } + ] +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_00.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_00.json new file mode 100644 index 0000000..2c1bf1d --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_00.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_00" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_01.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_01.json new file mode 100644 index 0000000..7df92ce --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_01.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_01" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_02.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_02.json new file mode 100644 index 0000000..e815a01 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_02.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_02" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_03.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_03.json new file mode 100644 index 0000000..eb7c1fe --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_03.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_03" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_04.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_04.json new file mode 100644 index 0000000..614cdb3 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_04.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_04" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_05.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_05.json new file mode 100644 index 0000000..a1689c4 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_05.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_05" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_06.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_06.json new file mode 100644 index 0000000..dda10ab --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_06.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_06" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_07.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_07.json new file mode 100644 index 0000000..3482816 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_07.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_07" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_08.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_08.json new file mode 100644 index 0000000..35fb091 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_08.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_08" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_09.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_09.json new file mode 100644 index 0000000..7dd9bb9 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_09.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_09" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_10.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_10.json new file mode 100644 index 0000000..23fd78d --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_10.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_10" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_11.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_11.json new file mode 100644 index 0000000..b9019a6 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_11.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_11" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_12.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_12.json new file mode 100644 index 0000000..a8c8ecb --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_12.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_12" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_13.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_13.json new file mode 100644 index 0000000..53ea4ae --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_13.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_13" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_14.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_14.json new file mode 100644 index 0000000..b9ea064 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_14.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_14" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_15.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_15.json new file mode 100644 index 0000000..59d96c2 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_15.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_15" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_16.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_16.json new file mode 100644 index 0000000..d054287 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_16.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_16" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_17.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_17.json new file mode 100644 index 0000000..4f1c447 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_17.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_17" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_18.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_18.json new file mode 100644 index 0000000..433efe6 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_18.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_18" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_19.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_19.json new file mode 100644 index 0000000..03ed77a --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_19.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_19" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_20.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_20.json new file mode 100644 index 0000000..03249c7 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_20.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_20" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_21.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_21.json new file mode 100644 index 0000000..17bcd1e --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_21.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_21" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_22.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_22.json new file mode 100644 index 0000000..d43445e --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_22.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_22" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_23.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_23.json new file mode 100644 index 0000000..b34f2b4 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_23.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_23" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_24.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_24.json new file mode 100644 index 0000000..c377342 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_24.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_24" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_25.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_25.json new file mode 100644 index 0000000..9e8b249 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_25.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_25" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_26.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_26.json new file mode 100644 index 0000000..3cfcd8b --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_26.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_26" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_27.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_27.json new file mode 100644 index 0000000..80b80a1 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_27.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_27" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_28.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_28.json new file mode 100644 index 0000000..4753840 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_28.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_28" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_29.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_29.json new file mode 100644 index 0000000..f4d86f2 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_29.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_29" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_30.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_30.json new file mode 100644 index 0000000..572b85d --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_30.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_30" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_31.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_31.json new file mode 100644 index 0000000..5b1a8f6 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.fortress_compass_31.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/fortress_compass_31" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass.json new file mode 100644 index 0000000..c8086dd --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass.json @@ -0,0 +1,52 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_16" + }, + "defaults": { + "textures": { + "layer0": "findyourway:items/monument_compass_16" + } + }, + "variants": { + "normal": [{ + }], + "inventory": [{ + }] + }, + "overrides": [ + { "predicate": { "angle": 0.000000 }, "model": "findyourway:item/item.findyourway.monument_compass_16" }, + { "predicate": { "angle": 0.015625 }, "model": "findyourway:item/item.findyourway.monument_compass_17" }, + { "predicate": { "angle": 0.046875 }, "model": "findyourway:item/item.findyourway.monument_compass_18" }, + { "predicate": { "angle": 0.078125 }, "model": "findyourway:item/item.findyourway.monument_compass_19" }, + { "predicate": { "angle": 0.109375 }, "model": "findyourway:item/item.findyourway.monument_compass_20" }, + { "predicate": { "angle": 0.140625 }, "model": "findyourway:item/item.findyourway.monument_compass_21" }, + { "predicate": { "angle": 0.171875 }, "model": "findyourway:item/item.findyourway.monument_compass_22" }, + { "predicate": { "angle": 0.203125 }, "model": "findyourway:item/item.findyourway.monument_compass_23" }, + { "predicate": { "angle": 0.234375 }, "model": "findyourway:item/item.findyourway.monument_compass_24" }, + { "predicate": { "angle": 0.265625 }, "model": "findyourway:item/item.findyourway.monument_compass_25" }, + { "predicate": { "angle": 0.296875 }, "model": "findyourway:item/item.findyourway.monument_compass_26" }, + { "predicate": { "angle": 0.328125 }, "model": "findyourway:item/item.findyourway.monument_compass_27" }, + { "predicate": { "angle": 0.359375 }, "model": "findyourway:item/item.findyourway.monument_compass_28" }, + { "predicate": { "angle": 0.390625 }, "model": "findyourway:item/item.findyourway.monument_compass_29" }, + { "predicate": { "angle": 0.421875 }, "model": "findyourway:item/item.findyourway.monument_compass_30" }, + { "predicate": { "angle": 0.453125 }, "model": "findyourway:item/item.findyourway.monument_compass_31" }, + { "predicate": { "angle": 0.484375 }, "model": "findyourway:item/item.findyourway.monument_compass_00" }, + { "predicate": { "angle": 0.515625 }, "model": "findyourway:item/item.findyourway.monument_compass_01" }, + { "predicate": { "angle": 0.546875 }, "model": "findyourway:item/item.findyourway.monument_compass_02" }, + { "predicate": { "angle": 0.578125 }, "model": "findyourway:item/item.findyourway.monument_compass_03" }, + { "predicate": { "angle": 0.609375 }, "model": "findyourway:item/item.findyourway.monument_compass_04" }, + { "predicate": { "angle": 0.640625 }, "model": "findyourway:item/item.findyourway.monument_compass_05" }, + { "predicate": { "angle": 0.671875 }, "model": "findyourway:item/item.findyourway.monument_compass_06" }, + { "predicate": { "angle": 0.703125 }, "model": "findyourway:item/item.findyourway.monument_compass_07" }, + { "predicate": { "angle": 0.734375 }, "model": "findyourway:item/item.findyourway.monument_compass_08" }, + { "predicate": { "angle": 0.765625 }, "model": "findyourway:item/item.findyourway.monument_compass_09" }, + { "predicate": { "angle": 0.796875 }, "model": "findyourway:item/item.findyourway.monument_compass_10" }, + { "predicate": { "angle": 0.828125 }, "model": "findyourway:item/item.findyourway.monument_compass_11" }, + { "predicate": { "angle": 0.859375 }, "model": "findyourway:item/item.findyourway.monument_compass_12" }, + { "predicate": { "angle": 0.890625 }, "model": "findyourway:item/item.findyourway.monument_compass_13" }, + { "predicate": { "angle": 0.921875 }, "model": "findyourway:item/item.findyourway.monument_compass_14" }, + { "predicate": { "angle": 0.953125 }, "model": "findyourway:item/item.findyourway.monument_compass_15" }, + { "predicate": { "angle": 0.984375 }, "model": "findyourway:item/item.findyourway.monument_compass_16" } + ] +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_00.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_00.json new file mode 100644 index 0000000..515f6fb --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_00.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_00" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_01.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_01.json new file mode 100644 index 0000000..7bd8bbf --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_01.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_01" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_02.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_02.json new file mode 100644 index 0000000..c626b8a --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_02.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_02" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_03.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_03.json new file mode 100644 index 0000000..b730566 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_03.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_03" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_04.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_04.json new file mode 100644 index 0000000..553ed11 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_04.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_04" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_05.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_05.json new file mode 100644 index 0000000..63172f9 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_05.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_05" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_06.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_06.json new file mode 100644 index 0000000..17785bc --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_06.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_06" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_07.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_07.json new file mode 100644 index 0000000..d0b14dd --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_07.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_07" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_08.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_08.json new file mode 100644 index 0000000..98bb223 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_08.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_08" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_09.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_09.json new file mode 100644 index 0000000..9ce36e4 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_09.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_09" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_10.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_10.json new file mode 100644 index 0000000..4dddec1 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_10.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_10" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_11.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_11.json new file mode 100644 index 0000000..aec497a --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_11.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_11" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_12.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_12.json new file mode 100644 index 0000000..5042674 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_12.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_12" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_13.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_13.json new file mode 100644 index 0000000..43a753c --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_13.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_13" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_14.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_14.json new file mode 100644 index 0000000..6058a7f --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_14.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_14" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_15.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_15.json new file mode 100644 index 0000000..3111acf --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_15.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_15" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_16.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_16.json new file mode 100644 index 0000000..3980f41 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_16.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_16" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_17.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_17.json new file mode 100644 index 0000000..7bfa8e2 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_17.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_17" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_18.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_18.json new file mode 100644 index 0000000..7c4cdbc --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_18.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_18" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_19.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_19.json new file mode 100644 index 0000000..55f8977 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_19.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_19" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_20.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_20.json new file mode 100644 index 0000000..59a310b --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_20.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_20" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_21.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_21.json new file mode 100644 index 0000000..8d08b93 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_21.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_21" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_22.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_22.json new file mode 100644 index 0000000..37d8e16 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_22.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_22" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_23.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_23.json new file mode 100644 index 0000000..c5b2df9 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_23.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_23" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_24.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_24.json new file mode 100644 index 0000000..1a5277c --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_24.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_24" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_25.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_25.json new file mode 100644 index 0000000..7c0cb7e --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_25.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_25" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_26.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_26.json new file mode 100644 index 0000000..0cd1fd5 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_26.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_26" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_27.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_27.json new file mode 100644 index 0000000..62357e1 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_27.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_27" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_28.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_28.json new file mode 100644 index 0000000..35ef70c --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_28.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_28" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_29.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_29.json new file mode 100644 index 0000000..3e289f7 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_29.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_29" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_30.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_30.json new file mode 100644 index 0000000..f4fdccc --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_30.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_30" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_31.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_31.json new file mode 100644 index 0000000..a001364 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.monument_compass_31.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/monument_compass_31" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass.json new file mode 100644 index 0000000..76b0431 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass.json @@ -0,0 +1,52 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_16" + }, + "defaults": { + "textures": { + "layer0": "findyourway:items/village_compass_16" + } + }, + "variants": { + "normal": [{ + }], + "inventory": [{ + }] + }, + "overrides": [ + { "predicate": { "angle": 0.000000 }, "model": "findyourway:item/item.findyourway.village_compass_16" }, + { "predicate": { "angle": 0.015625 }, "model": "findyourway:item/item.findyourway.village_compass_17" }, + { "predicate": { "angle": 0.046875 }, "model": "findyourway:item/item.findyourway.village_compass_18" }, + { "predicate": { "angle": 0.078125 }, "model": "findyourway:item/item.findyourway.village_compass_19" }, + { "predicate": { "angle": 0.109375 }, "model": "findyourway:item/item.findyourway.village_compass_20" }, + { "predicate": { "angle": 0.140625 }, "model": "findyourway:item/item.findyourway.village_compass_21" }, + { "predicate": { "angle": 0.171875 }, "model": "findyourway:item/item.findyourway.village_compass_22" }, + { "predicate": { "angle": 0.203125 }, "model": "findyourway:item/item.findyourway.village_compass_23" }, + { "predicate": { "angle": 0.234375 }, "model": "findyourway:item/item.findyourway.village_compass_24" }, + { "predicate": { "angle": 0.265625 }, "model": "findyourway:item/item.findyourway.village_compass_25" }, + { "predicate": { "angle": 0.296875 }, "model": "findyourway:item/item.findyourway.village_compass_26" }, + { "predicate": { "angle": 0.328125 }, "model": "findyourway:item/item.findyourway.village_compass_27" }, + { "predicate": { "angle": 0.359375 }, "model": "findyourway:item/item.findyourway.village_compass_28" }, + { "predicate": { "angle": 0.390625 }, "model": "findyourway:item/item.findyourway.village_compass_29" }, + { "predicate": { "angle": 0.421875 }, "model": "findyourway:item/item.findyourway.village_compass_30" }, + { "predicate": { "angle": 0.453125 }, "model": "findyourway:item/item.findyourway.village_compass_31" }, + { "predicate": { "angle": 0.484375 }, "model": "findyourway:item/item.findyourway.village_compass_00" }, + { "predicate": { "angle": 0.515625 }, "model": "findyourway:item/item.findyourway.village_compass_01" }, + { "predicate": { "angle": 0.546875 }, "model": "findyourway:item/item.findyourway.village_compass_02" }, + { "predicate": { "angle": 0.578125 }, "model": "findyourway:item/item.findyourway.village_compass_03" }, + { "predicate": { "angle": 0.609375 }, "model": "findyourway:item/item.findyourway.village_compass_04" }, + { "predicate": { "angle": 0.640625 }, "model": "findyourway:item/item.findyourway.village_compass_05" }, + { "predicate": { "angle": 0.671875 }, "model": "findyourway:item/item.findyourway.village_compass_06" }, + { "predicate": { "angle": 0.703125 }, "model": "findyourway:item/item.findyourway.village_compass_07" }, + { "predicate": { "angle": 0.734375 }, "model": "findyourway:item/item.findyourway.village_compass_08" }, + { "predicate": { "angle": 0.765625 }, "model": "findyourway:item/item.findyourway.village_compass_09" }, + { "predicate": { "angle": 0.796875 }, "model": "findyourway:item/item.findyourway.village_compass_10" }, + { "predicate": { "angle": 0.828125 }, "model": "findyourway:item/item.findyourway.village_compass_11" }, + { "predicate": { "angle": 0.859375 }, "model": "findyourway:item/item.findyourway.village_compass_12" }, + { "predicate": { "angle": 0.890625 }, "model": "findyourway:item/item.findyourway.village_compass_13" }, + { "predicate": { "angle": 0.921875 }, "model": "findyourway:item/item.findyourway.village_compass_14" }, + { "predicate": { "angle": 0.953125 }, "model": "findyourway:item/item.findyourway.village_compass_15" }, + { "predicate": { "angle": 0.984375 }, "model": "findyourway:item/item.findyourway.village_compass_16" } + ] +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_00.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_00.json new file mode 100644 index 0000000..4bc72dd --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_00.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_00" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_01.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_01.json new file mode 100644 index 0000000..47a9e79 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_01.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_01" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_02.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_02.json new file mode 100644 index 0000000..b65e105 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_02.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_02" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_03.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_03.json new file mode 100644 index 0000000..e7a460f --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_03.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_03" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_04.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_04.json new file mode 100644 index 0000000..63617e9 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_04.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_04" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_05.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_05.json new file mode 100644 index 0000000..58b16fb --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_05.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_05" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_06.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_06.json new file mode 100644 index 0000000..78a5691 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_06.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_06" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_07.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_07.json new file mode 100644 index 0000000..a7b7130 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_07.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_07" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_08.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_08.json new file mode 100644 index 0000000..6217646 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_08.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_08" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_09.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_09.json new file mode 100644 index 0000000..fb79c72 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_09.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_09" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_10.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_10.json new file mode 100644 index 0000000..fbd5262 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_10.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_10" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_11.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_11.json new file mode 100644 index 0000000..5c416c4 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_11.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_11" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_12.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_12.json new file mode 100644 index 0000000..73cd5ca --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_12.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_12" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_13.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_13.json new file mode 100644 index 0000000..91fd97a --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_13.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_13" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_14.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_14.json new file mode 100644 index 0000000..3c51272 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_14.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_14" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_15.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_15.json new file mode 100644 index 0000000..1755696 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_15.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_15" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_16.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_16.json new file mode 100644 index 0000000..f93eb1c --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_16.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_16" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_17.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_17.json new file mode 100644 index 0000000..212da89 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_17.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_17" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_18.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_18.json new file mode 100644 index 0000000..cc74f0e --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_18.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_18" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_19.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_19.json new file mode 100644 index 0000000..13d3ff8 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_19.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_19" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_20.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_20.json new file mode 100644 index 0000000..613e38b --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_20.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_20" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_21.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_21.json new file mode 100644 index 0000000..bbf0c7c --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_21.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_21" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_22.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_22.json new file mode 100644 index 0000000..9259207 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_22.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_22" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_23.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_23.json new file mode 100644 index 0000000..86f2710 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_23.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_23" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_24.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_24.json new file mode 100644 index 0000000..aeff3d6 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_24.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_24" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_25.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_25.json new file mode 100644 index 0000000..a4b11f1 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_25.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_25" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_26.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_26.json new file mode 100644 index 0000000..7b85ebe --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_26.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_26" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_27.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_27.json new file mode 100644 index 0000000..20d0264 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_27.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_27" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_28.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_28.json new file mode 100644 index 0000000..13590c4 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_28.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_28" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_29.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_29.json new file mode 100644 index 0000000..1e626b4 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_29.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_29" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_30.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_30.json new file mode 100644 index 0000000..938a4fd --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_30.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_30" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_31.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_31.json new file mode 100644 index 0000000..e39f316 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.village_compass_31.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/village_compass_31" + } +} diff --git a/src/main/resources/assets/findyourway/recipes/ender_compass.json b/src/main/resources/assets/findyourway/recipes/item.findyourway.ender_compass.json similarity index 99% rename from src/main/resources/assets/findyourway/recipes/ender_compass.json rename to src/main/resources/assets/findyourway/recipes/item.findyourway.ender_compass.json index 5114101..1a8d86f 100644 --- a/src/main/resources/assets/findyourway/recipes/ender_compass.json +++ b/src/main/resources/assets/findyourway/recipes/item.findyourway.ender_compass.json @@ -7,10 +7,10 @@ ], "key": { "G": { - "item": "minecraft:gold_ingot" + "item": "minecraft:ender_eye" }, "E": { - "item": "minecraft:ender_eye" + "item": "minecraft:gold_ingot" }, "B": { "item": "minecraft:blaze_rod" diff --git a/src/main/resources/assets/findyourway/recipes/item.findyourway.fortress_compass.json b/src/main/resources/assets/findyourway/recipes/item.findyourway.fortress_compass.json new file mode 100644 index 0000000..97c65cb --- /dev/null +++ b/src/main/resources/assets/findyourway/recipes/item.findyourway.fortress_compass.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "GEG", + "EBE", + "GEG" + ], + "key": { + "G": { + "item": "minecraft:gold_nugget" + }, + "E": { + "item": "minecraft:netherbrick" + }, + "B": { + "item": "minecraft:glowstone_dust" + } + }, + "result": { + "item": "findyourway:fortress_compass" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/findyourway/recipes/item.findyourway.monument_compass.json b/src/main/resources/assets/findyourway/recipes/item.findyourway.monument_compass.json new file mode 100644 index 0000000..1579f5f --- /dev/null +++ b/src/main/resources/assets/findyourway/recipes/item.findyourway.monument_compass.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "GEG", + "EBE", + "GEG" + ], + "key": { + "G": { + "item": "minecraft:dye", + "data": 4 + }, + "E": { + "item": "minecraft:diamond" + }, + "B": { + "item": "minecraft:prismarine_crystals" + } + }, + "result": { + "item": "findyourway:monument_compass" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/findyourway/recipes/item.findyourway.village_compass.json b/src/main/resources/assets/findyourway/recipes/item.findyourway.village_compass.json new file mode 100644 index 0000000..3fc9199 --- /dev/null +++ b/src/main/resources/assets/findyourway/recipes/item.findyourway.village_compass.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "GEG", + "EBE", + "GEG" + ], + "key": { + "G": { + "item": "minecraft:redstone" + }, + "E": { + "item": "minecraft:brick" + }, + "B": { + "item": "minecraft:emerald" + } + }, + "result": { + "item": "findyourway:village_compass" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass.png b/src/main/resources/assets/findyourway/textures/item/ender_compass.png deleted file mode 100644 index 44c1d1a..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_00.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_00.png deleted file mode 100644 index 44c1d1a..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_00.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_01.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_01.png deleted file mode 100644 index 2c00488..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_01.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_02.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_02.png deleted file mode 100644 index 7ed3073..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_02.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_03.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_03.png deleted file mode 100644 index 6f4e166..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_03.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_04.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_04.png deleted file mode 100644 index e721770..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_04.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_05.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_05.png deleted file mode 100644 index 0620ea5..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_05.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_06.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_06.png deleted file mode 100644 index 21a8747..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_06.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_07.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_07.png deleted file mode 100644 index c2a347b..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_07.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_08.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_08.png deleted file mode 100644 index c2a347b..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_08.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_09.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_09.png deleted file mode 100644 index c2a347b..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_09.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_10.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_10.png deleted file mode 100644 index 7405ae8..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_10.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_11.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_11.png deleted file mode 100644 index 18d3e9f..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_11.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_12.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_12.png deleted file mode 100644 index 5405a62..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_12.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_13.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_13.png deleted file mode 100644 index 1c3354b..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_13.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_14.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_14.png deleted file mode 100644 index 76d48f3..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_14.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_15.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_15.png deleted file mode 100644 index bc0cd8b..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_15.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_16.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_16.png deleted file mode 100644 index a9e603b..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_16.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_17.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_17.png deleted file mode 100644 index 3680221..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_17.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_18.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_18.png deleted file mode 100644 index edbc2ed..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_18.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_19.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_19.png deleted file mode 100644 index 23c0c34..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_19.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_20.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_20.png deleted file mode 100644 index 5aaf8c5..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_20.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_21.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_21.png deleted file mode 100644 index 8a99abd..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_21.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_22.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_22.png deleted file mode 100644 index 9dd8423..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_22.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_23.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_23.png deleted file mode 100644 index 61d739e..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_23.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_24.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_24.png deleted file mode 100644 index 61d739e..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_24.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_25.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_25.png deleted file mode 100644 index 61d739e..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_25.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_26.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_26.png deleted file mode 100644 index eb5e802..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_26.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_27.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_27.png deleted file mode 100644 index 348dac2..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_27.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_28.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_28.png deleted file mode 100644 index 8d68198..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_28.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_29.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_29.png deleted file mode 100644 index b1683b2..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_29.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_30.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_30.png deleted file mode 100644 index ba9be61..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_30.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/item/ender_compass_31.png b/src/main/resources/assets/findyourway/textures/item/ender_compass_31.png deleted file mode 100644 index 2ae89a2..0000000 Binary files a/src/main/resources/assets/findyourway/textures/item/ender_compass_31.png and /dev/null differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass.png b/src/main/resources/assets/findyourway/textures/items/ender_compass.png new file mode 100644 index 0000000..e771567 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_00.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_00.png new file mode 100644 index 0000000..3baca05 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_00.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_01.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_01.png new file mode 100644 index 0000000..7f9cb0e Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_01.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_02.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_02.png new file mode 100644 index 0000000..167aa56 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_02.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_03.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_03.png new file mode 100644 index 0000000..c74f3b4 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_03.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_04.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_04.png new file mode 100644 index 0000000..ad42998 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_04.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_05.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_05.png new file mode 100644 index 0000000..26a6aab Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_05.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_06.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_06.png new file mode 100644 index 0000000..b8bc2f5 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_06.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_07.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_07.png new file mode 100644 index 0000000..02b4931 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_07.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_08.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_08.png new file mode 100644 index 0000000..02b4931 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_08.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_09.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_09.png new file mode 100644 index 0000000..02b4931 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_09.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_10.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_10.png new file mode 100644 index 0000000..2776f6d Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_10.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_11.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_11.png new file mode 100644 index 0000000..53eafa0 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_11.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_12.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_12.png new file mode 100644 index 0000000..d33fea2 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_12.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_13.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_13.png new file mode 100644 index 0000000..287699d Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_13.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_14.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_14.png new file mode 100644 index 0000000..b2df983 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_14.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_15.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_15.png new file mode 100644 index 0000000..d9d565e Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_15.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_16.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_16.png new file mode 100644 index 0000000..b717c51 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_16.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_17.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_17.png new file mode 100644 index 0000000..151d012 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_17.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_18.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_18.png new file mode 100644 index 0000000..b45a5f1 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_18.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_19.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_19.png new file mode 100644 index 0000000..a1c9d0a Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_19.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_20.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_20.png new file mode 100644 index 0000000..faa6518 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_20.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_21.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_21.png new file mode 100644 index 0000000..ce37e69 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_21.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_22.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_22.png new file mode 100644 index 0000000..14cdfed Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_22.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_23.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_23.png new file mode 100644 index 0000000..da8c134 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_23.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_24.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_24.png new file mode 100644 index 0000000..da8c134 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_24.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_25.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_25.png new file mode 100644 index 0000000..da8c134 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_25.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_26.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_26.png new file mode 100644 index 0000000..d071a67 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_26.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_27.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_27.png new file mode 100644 index 0000000..fd9af70 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_27.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_28.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_28.png new file mode 100644 index 0000000..103ec59 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_28.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_29.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_29.png new file mode 100644 index 0000000..4332a4d Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_29.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_30.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_30.png new file mode 100644 index 0000000..d8b7679 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_30.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/ender_compass_31.png b/src/main/resources/assets/findyourway/textures/items/ender_compass_31.png new file mode 100644 index 0000000..4b30340 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/ender_compass_31.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass.png new file mode 100644 index 0000000..f88e4df Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_00.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_00.png new file mode 100644 index 0000000..1e2e689 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_00.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_01.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_01.png new file mode 100644 index 0000000..6372a5a Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_01.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_02.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_02.png new file mode 100644 index 0000000..85783be Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_02.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_03.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_03.png new file mode 100644 index 0000000..7289182 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_03.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_04.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_04.png new file mode 100644 index 0000000..558d69a Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_04.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_05.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_05.png new file mode 100644 index 0000000..37b63ed Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_05.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_06.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_06.png new file mode 100644 index 0000000..bd21607 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_06.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_07.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_07.png new file mode 100644 index 0000000..e311b9e Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_07.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_08.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_08.png new file mode 100644 index 0000000..66b563a Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_08.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_09.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_09.png new file mode 100644 index 0000000..65b847b Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_09.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_10.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_10.png new file mode 100644 index 0000000..aafb47c Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_10.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_11.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_11.png new file mode 100644 index 0000000..62ec9f7 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_11.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_12.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_12.png new file mode 100644 index 0000000..28530c0 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_12.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_13.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_13.png new file mode 100644 index 0000000..105a5e4 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_13.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_14.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_14.png new file mode 100644 index 0000000..48a8d54 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_14.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_15.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_15.png new file mode 100644 index 0000000..71e1e77 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_15.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_16.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_16.png new file mode 100644 index 0000000..f858245 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_16.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_17.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_17.png new file mode 100644 index 0000000..5a35f28 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_17.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_18.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_18.png new file mode 100644 index 0000000..570423c Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_18.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_19.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_19.png new file mode 100644 index 0000000..15d4261 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_19.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_20.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_20.png new file mode 100644 index 0000000..f8fa45e Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_20.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_21.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_21.png new file mode 100644 index 0000000..a7f67ce Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_21.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_22.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_22.png new file mode 100644 index 0000000..22b3a9f Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_22.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_23.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_23.png new file mode 100644 index 0000000..57c6f7a Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_23.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_24.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_24.png new file mode 100644 index 0000000..57c6f7a Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_24.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_25.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_25.png new file mode 100644 index 0000000..57c6f7a Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_25.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_26.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_26.png new file mode 100644 index 0000000..b0fc464 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_26.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_27.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_27.png new file mode 100644 index 0000000..ff213e1 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_27.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_28.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_28.png new file mode 100644 index 0000000..dfb7948 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_28.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_29.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_29.png new file mode 100644 index 0000000..7da220a Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_29.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_30.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_30.png new file mode 100644 index 0000000..6659ff1 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_30.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/fortress_compass_31.png b/src/main/resources/assets/findyourway/textures/items/fortress_compass_31.png new file mode 100644 index 0000000..8b61c26 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/fortress_compass_31.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass.png b/src/main/resources/assets/findyourway/textures/items/monument_compass.png new file mode 100644 index 0000000..eef6bf5 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_00.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_00.png new file mode 100644 index 0000000..01e0257 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_00.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_01.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_01.png new file mode 100644 index 0000000..4bd9a05 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_01.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_02.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_02.png new file mode 100644 index 0000000..b558aac Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_02.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_03.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_03.png new file mode 100644 index 0000000..612cec0 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_03.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_04.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_04.png new file mode 100644 index 0000000..8c77978 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_04.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_05.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_05.png new file mode 100644 index 0000000..cb35084 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_05.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_06.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_06.png new file mode 100644 index 0000000..43260b2 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_06.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_07.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_07.png new file mode 100644 index 0000000..49aab86 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_07.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_08.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_08.png new file mode 100644 index 0000000..49aab86 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_08.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_09.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_09.png new file mode 100644 index 0000000..49aab86 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_09.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_10.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_10.png new file mode 100644 index 0000000..9f214d0 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_10.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_11.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_11.png new file mode 100644 index 0000000..d980156 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_11.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_12.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_12.png new file mode 100644 index 0000000..d50ef7e Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_12.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_13.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_13.png new file mode 100644 index 0000000..17f4b4b Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_13.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_14.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_14.png new file mode 100644 index 0000000..e1868e4 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_14.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_15.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_15.png new file mode 100644 index 0000000..19ce9ff Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_15.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_16.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_16.png new file mode 100644 index 0000000..de655ff Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_16.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_17.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_17.png new file mode 100644 index 0000000..025bba0 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_17.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_18.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_18.png new file mode 100644 index 0000000..308c4a2 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_18.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_19.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_19.png new file mode 100644 index 0000000..69c48f3 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_19.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_20.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_20.png new file mode 100644 index 0000000..678b37f Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_20.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_21.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_21.png new file mode 100644 index 0000000..bc83d94 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_21.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_22.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_22.png new file mode 100644 index 0000000..fc0568d Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_22.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_23.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_23.png new file mode 100644 index 0000000..dfd151f Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_23.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_24.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_24.png new file mode 100644 index 0000000..dfd151f Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_24.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_25.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_25.png new file mode 100644 index 0000000..dfd151f Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_25.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_26.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_26.png new file mode 100644 index 0000000..453a683 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_26.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_27.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_27.png new file mode 100644 index 0000000..7f7d990 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_27.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_28.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_28.png new file mode 100644 index 0000000..628d17d Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_28.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_29.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_29.png new file mode 100644 index 0000000..7349033 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_29.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_30.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_30.png new file mode 100644 index 0000000..7f1cd24 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_30.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/monument_compass_31.png b/src/main/resources/assets/findyourway/textures/items/monument_compass_31.png new file mode 100644 index 0000000..b0608d7 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/monument_compass_31.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass.png b/src/main/resources/assets/findyourway/textures/items/village_compass.png new file mode 100644 index 0000000..1d6db9d Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_00.png b/src/main/resources/assets/findyourway/textures/items/village_compass_00.png new file mode 100644 index 0000000..416b66b Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_00.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_01.png b/src/main/resources/assets/findyourway/textures/items/village_compass_01.png new file mode 100644 index 0000000..62eb52e Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_01.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_02.png b/src/main/resources/assets/findyourway/textures/items/village_compass_02.png new file mode 100644 index 0000000..485226b Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_02.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_03.png b/src/main/resources/assets/findyourway/textures/items/village_compass_03.png new file mode 100644 index 0000000..143aed3 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_03.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_04.png b/src/main/resources/assets/findyourway/textures/items/village_compass_04.png new file mode 100644 index 0000000..db8d169 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_04.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_05.png b/src/main/resources/assets/findyourway/textures/items/village_compass_05.png new file mode 100644 index 0000000..1deaa7a Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_05.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_06.png b/src/main/resources/assets/findyourway/textures/items/village_compass_06.png new file mode 100644 index 0000000..433a4d6 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_06.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_07.png b/src/main/resources/assets/findyourway/textures/items/village_compass_07.png new file mode 100644 index 0000000..c8ade25 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_07.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_08.png b/src/main/resources/assets/findyourway/textures/items/village_compass_08.png new file mode 100644 index 0000000..c8ade25 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_08.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_09.png b/src/main/resources/assets/findyourway/textures/items/village_compass_09.png new file mode 100644 index 0000000..c8ade25 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_09.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_10.png b/src/main/resources/assets/findyourway/textures/items/village_compass_10.png new file mode 100644 index 0000000..314567f Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_10.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_11.png b/src/main/resources/assets/findyourway/textures/items/village_compass_11.png new file mode 100644 index 0000000..0f64035 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_11.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_12.png b/src/main/resources/assets/findyourway/textures/items/village_compass_12.png new file mode 100644 index 0000000..34955ea Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_12.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_13.png b/src/main/resources/assets/findyourway/textures/items/village_compass_13.png new file mode 100644 index 0000000..beaa45c Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_13.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_14.png b/src/main/resources/assets/findyourway/textures/items/village_compass_14.png new file mode 100644 index 0000000..b99ae8b Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_14.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_15.png b/src/main/resources/assets/findyourway/textures/items/village_compass_15.png new file mode 100644 index 0000000..30a0b72 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_15.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_16.png b/src/main/resources/assets/findyourway/textures/items/village_compass_16.png new file mode 100644 index 0000000..794f6e7 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_16.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_17.png b/src/main/resources/assets/findyourway/textures/items/village_compass_17.png new file mode 100644 index 0000000..4c69ea4 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_17.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_18.png b/src/main/resources/assets/findyourway/textures/items/village_compass_18.png new file mode 100644 index 0000000..e68d909 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_18.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_19.png b/src/main/resources/assets/findyourway/textures/items/village_compass_19.png new file mode 100644 index 0000000..2cf9d34 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_19.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_20.png b/src/main/resources/assets/findyourway/textures/items/village_compass_20.png new file mode 100644 index 0000000..71b430d Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_20.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_21.png b/src/main/resources/assets/findyourway/textures/items/village_compass_21.png new file mode 100644 index 0000000..45f9285 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_21.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_22.png b/src/main/resources/assets/findyourway/textures/items/village_compass_22.png new file mode 100644 index 0000000..619b8c0 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_22.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_23.png b/src/main/resources/assets/findyourway/textures/items/village_compass_23.png new file mode 100644 index 0000000..b25a857 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_23.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_24.png b/src/main/resources/assets/findyourway/textures/items/village_compass_24.png new file mode 100644 index 0000000..b25a857 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_24.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_25.png b/src/main/resources/assets/findyourway/textures/items/village_compass_25.png new file mode 100644 index 0000000..b25a857 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_25.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_26.png b/src/main/resources/assets/findyourway/textures/items/village_compass_26.png new file mode 100644 index 0000000..5cb0a6f Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_26.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_27.png b/src/main/resources/assets/findyourway/textures/items/village_compass_27.png new file mode 100644 index 0000000..82a4c28 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_27.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_28.png b/src/main/resources/assets/findyourway/textures/items/village_compass_28.png new file mode 100644 index 0000000..911fee1 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_28.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_29.png b/src/main/resources/assets/findyourway/textures/items/village_compass_29.png new file mode 100644 index 0000000..cb9bca5 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_29.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_30.png b/src/main/resources/assets/findyourway/textures/items/village_compass_30.png new file mode 100644 index 0000000..ea79922 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_30.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/village_compass_31.png b/src/main/resources/assets/findyourway/textures/items/village_compass_31.png new file mode 100644 index 0000000..e3a4fd3 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/village_compass_31.png differ diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index 7350df6..17cc972 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -1,12 +1,13 @@ [{ - "modid": "findyourway", - "name": "Find Your Way", - "description": "Provides compasses to structures", - "version": "1.0.0.0-beta", - "mcversion": "1.12.2", - "logoFile": "assets/findyourway/textures/logo.png", - "url": "minecraftforge.net/", - "updateJSON": "minecraftforge.net/versions.json", - "authorList": ["Yavin7"], - "credits": "" + "modid": "findyourway", + "name": "Find Your Way", + "description": "", + "version": "1.12.2-1.0.0", + "mcversion": "1.12.2", + "url": "", + "updateUrl": "", + "authorList": ["Yavin7"], + "credits": "", + "logoFile": "", + "dependencies": ["Forge"] }] \ No newline at end of file