diff --git a/src/main/java/net/yseven/findyourway/Client/ClientProxy.java b/src/main/java/net/yseven/findyourway/Client/ClientProxy.java index b19ecb1..4eb684a 100644 --- a/src/main/java/net/yseven/findyourway/Client/ClientProxy.java +++ b/src/main/java/net/yseven/findyourway/Client/ClientProxy.java @@ -80,19 +80,6 @@ public class ClientProxy extends CommonProxy { 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("angle"), new AngleGetter()); - ModelLoader.setCustomModelResourceLocation(compass, 0, new ModelResourceLocation(FindYourWay.modId + ":" + compass.getUnlocalizedName())); - } - @SubscribeEvent public void onClientTick(TickEvent.ClientTickEvent event) { for(int i = 0; i < CommonProxy.compassList.size(); i++) { diff --git a/src/main/java/net/yseven/findyourway/CommonProxy.java b/src/main/java/net/yseven/findyourway/CommonProxy.java index 170f0af..74b0fa7 100644 --- a/src/main/java/net/yseven/findyourway/CommonProxy.java +++ b/src/main/java/net/yseven/findyourway/CommonProxy.java @@ -48,10 +48,7 @@ public class CommonProxy { @SubscribeEvent public static void registerItems(RegistryEvent.Register event) { - event.getRegistry().register(ModItems.ENDER_COMPASS); - event.getRegistry().register(ModItems.VILLAGE_COMPASS); - event.getRegistry().register(ModItems.FORTRESS_COMPASS); - event.getRegistry().register(ModItems.MONUMENT_COMPASS); + ModItems.registerItems(event); } public static boolean containsCompass(IInventory inventory, ItemCompassBase compass) { @@ -63,26 +60,4 @@ public class CommonProxy { } return false; } - - public static int setCompassId(ItemCompassBase compass) { - switch (compass.getStructureType()){ - case "Stronghold": return 1; - case "Village": return 2; - case "Fortress": return 3; - case "Monument": return 4; - default: return 0; - } - } - - public static ItemCompassBase getCompassId(int id) { - 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/item/ItemCompassBase.java b/src/main/java/net/yseven/findyourway/item/ItemCompassBase.java index 23aa712..d663460 100644 --- a/src/main/java/net/yseven/findyourway/item/ItemCompassBase.java +++ b/src/main/java/net/yseven/findyourway/item/ItemCompassBase.java @@ -9,6 +9,7 @@ import net.minecraft.item.ItemStack; import net.minecraft.util.ActionResult; import net.minecraft.util.EnumActionResult; import net.minecraft.util.EnumHand; +import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.client.event.ModelRegistryEvent; @@ -16,6 +17,7 @@ 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.AngleGetter; import net.yseven.findyourway.Client.ClientProxy; import net.yseven.findyourway.CommonProxy; import net.yseven.findyourway.FindYourWay; @@ -89,7 +91,8 @@ public class ItemCompassBase extends Item { @SideOnly(Side.CLIENT) @SubscribeEvent public void registerItemModel() { - ModelLoader.setCustomModelResourceLocation(this, 0, new ModelResourceLocation(getRegistryName(), "inventory")); + this.addPropertyOverride(new ResourceLocation("angle"), new AngleGetter()); + ModelLoader.setCustomModelResourceLocation(this, 0, new ModelResourceLocation(FindYourWay.modId + ":" + this.getUnlocalizedName(), "inventory")); } @Override diff --git a/src/main/java/net/yseven/findyourway/item/ModItems.java b/src/main/java/net/yseven/findyourway/item/ModItems.java index e5f92b9..9c2d1ba 100644 --- a/src/main/java/net/yseven/findyourway/item/ModItems.java +++ b/src/main/java/net/yseven/findyourway/item/ModItems.java @@ -1,5 +1,7 @@ package net.yseven.findyourway.item; +import net.minecraft.item.Item; +import net.minecraftforge.event.RegistryEvent; import net.minecraftforge.fml.common.registry.GameRegistry; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -12,12 +14,14 @@ public class ModItems { public static ItemCompassBase VILLAGE_COMPASS; public static ItemCompassBase FORTRESS_COMPASS; public static ItemCompassBase MONUMENT_COMPASS; + public static ItemCompassBase MANSION_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"); + MANSION_COMPASS = new ItemCompassBase("mansion_compass", "Mansion"); } @SideOnly(Side.CLIENT) @@ -26,5 +30,14 @@ public class ModItems { VILLAGE_COMPASS.registerItemModel(); FORTRESS_COMPASS.registerItemModel(); MONUMENT_COMPASS.registerItemModel(); + MANSION_COMPASS.registerItemModel(); + } + + public static void registerItems(RegistryEvent.Register event) { + event.getRegistry().register(ENDER_COMPASS); + event.getRegistry().register(VILLAGE_COMPASS); + event.getRegistry().register(FORTRESS_COMPASS); + event.getRegistry().register(MONUMENT_COMPASS); + event.getRegistry().register(MANSION_COMPASS); } } \ No newline at end of file diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass.json new file mode 100644 index 0000000..9ba110c --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass.json @@ -0,0 +1,52 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_16" + }, + "defaults": { + "textures": { + "layer0": "findyourway:items/mansion_compass_16" + } + }, + "variants": { + "normal": [{ + }], + "inventory": [{ + }] + }, + "overrides": [ + { "predicate": { "angle": 0.000000 }, "model": "findyourway:item/item.findyourway.mansion_compass_16" }, + { "predicate": { "angle": 0.015625 }, "model": "findyourway:item/item.findyourway.mansion_compass_17" }, + { "predicate": { "angle": 0.046875 }, "model": "findyourway:item/item.findyourway.mansion_compass_18" }, + { "predicate": { "angle": 0.078125 }, "model": "findyourway:item/item.findyourway.mansion_compass_19" }, + { "predicate": { "angle": 0.109375 }, "model": "findyourway:item/item.findyourway.mansion_compass_20" }, + { "predicate": { "angle": 0.140625 }, "model": "findyourway:item/item.findyourway.mansion_compass_21" }, + { "predicate": { "angle": 0.171875 }, "model": "findyourway:item/item.findyourway.mansion_compass_22" }, + { "predicate": { "angle": 0.203125 }, "model": "findyourway:item/item.findyourway.mansion_compass_23" }, + { "predicate": { "angle": 0.234375 }, "model": "findyourway:item/item.findyourway.mansion_compass_24" }, + { "predicate": { "angle": 0.265625 }, "model": "findyourway:item/item.findyourway.mansion_compass_25" }, + { "predicate": { "angle": 0.296875 }, "model": "findyourway:item/item.findyourway.mansion_compass_26" }, + { "predicate": { "angle": 0.328125 }, "model": "findyourway:item/item.findyourway.mansion_compass_27" }, + { "predicate": { "angle": 0.359375 }, "model": "findyourway:item/item.findyourway.mansion_compass_28" }, + { "predicate": { "angle": 0.390625 }, "model": "findyourway:item/item.findyourway.mansion_compass_29" }, + { "predicate": { "angle": 0.421875 }, "model": "findyourway:item/item.findyourway.mansion_compass_30" }, + { "predicate": { "angle": 0.453125 }, "model": "findyourway:item/item.findyourway.mansion_compass_31" }, + { "predicate": { "angle": 0.484375 }, "model": "findyourway:item/item.findyourway.mansion_compass_00" }, + { "predicate": { "angle": 0.515625 }, "model": "findyourway:item/item.findyourway.mansion_compass_01" }, + { "predicate": { "angle": 0.546875 }, "model": "findyourway:item/item.findyourway.mansion_compass_02" }, + { "predicate": { "angle": 0.578125 }, "model": "findyourway:item/item.findyourway.mansion_compass_03" }, + { "predicate": { "angle": 0.609375 }, "model": "findyourway:item/item.findyourway.mansion_compass_04" }, + { "predicate": { "angle": 0.640625 }, "model": "findyourway:item/item.findyourway.mansion_compass_05" }, + { "predicate": { "angle": 0.671875 }, "model": "findyourway:item/item.findyourway.mansion_compass_06" }, + { "predicate": { "angle": 0.703125 }, "model": "findyourway:item/item.findyourway.mansion_compass_07" }, + { "predicate": { "angle": 0.734375 }, "model": "findyourway:item/item.findyourway.mansion_compass_08" }, + { "predicate": { "angle": 0.765625 }, "model": "findyourway:item/item.findyourway.mansion_compass_09" }, + { "predicate": { "angle": 0.796875 }, "model": "findyourway:item/item.findyourway.mansion_compass_10" }, + { "predicate": { "angle": 0.828125 }, "model": "findyourway:item/item.findyourway.mansion_compass_11" }, + { "predicate": { "angle": 0.859375 }, "model": "findyourway:item/item.findyourway.mansion_compass_12" }, + { "predicate": { "angle": 0.890625 }, "model": "findyourway:item/item.findyourway.mansion_compass_13" }, + { "predicate": { "angle": 0.921875 }, "model": "findyourway:item/item.findyourway.mansion_compass_14" }, + { "predicate": { "angle": 0.953125 }, "model": "findyourway:item/item.findyourway.mansion_compass_15" }, + { "predicate": { "angle": 0.984375 }, "model": "findyourway:item/item.findyourway.mansion_compass_16" } + ] +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_00.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_00.json new file mode 100644 index 0000000..e08087c --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_00.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_00" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_01.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_01.json new file mode 100644 index 0000000..750e183 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_01.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_01" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_02.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_02.json new file mode 100644 index 0000000..ba5cdf0 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_02.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_02" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_03.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_03.json new file mode 100644 index 0000000..c92e3c4 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_03.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_03" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_04.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_04.json new file mode 100644 index 0000000..c9cea1b --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_04.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_04" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_05.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_05.json new file mode 100644 index 0000000..1748bdb --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_05.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_05" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_06.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_06.json new file mode 100644 index 0000000..6457621 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_06.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_06" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_07.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_07.json new file mode 100644 index 0000000..fe2bad4 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_07.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_07" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_08.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_08.json new file mode 100644 index 0000000..942a262 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_08.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_08" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_09.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_09.json new file mode 100644 index 0000000..915f855 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_09.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_09" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_10.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_10.json new file mode 100644 index 0000000..54891f1 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_10.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_10" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_11.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_11.json new file mode 100644 index 0000000..923c116 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_11.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_11" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_12.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_12.json new file mode 100644 index 0000000..a45c80c --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_12.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_12" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_13.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_13.json new file mode 100644 index 0000000..1410d6b --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_13.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_13" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_14.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_14.json new file mode 100644 index 0000000..75ef2af --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_14.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_14" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_15.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_15.json new file mode 100644 index 0000000..2d93b49 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_15.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_15" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_16.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_16.json new file mode 100644 index 0000000..b0290bb --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_16.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_16" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_17.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_17.json new file mode 100644 index 0000000..4060f4f --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_17.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_17" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_18.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_18.json new file mode 100644 index 0000000..439def5 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_18.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_18" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_19.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_19.json new file mode 100644 index 0000000..abbb061 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_19.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_19" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_20.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_20.json new file mode 100644 index 0000000..db2d8ff --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_20.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_20" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_21.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_21.json new file mode 100644 index 0000000..c8c44c6 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_21.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_21" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_22.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_22.json new file mode 100644 index 0000000..5107125 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_22.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_22" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_23.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_23.json new file mode 100644 index 0000000..790d11d --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_23.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_23" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_24.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_24.json new file mode 100644 index 0000000..713cedb --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_24.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_24" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_25.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_25.json new file mode 100644 index 0000000..70a1524 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_25.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_25" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_26.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_26.json new file mode 100644 index 0000000..9a3c6ba --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_26.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_26" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_27.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_27.json new file mode 100644 index 0000000..d358bf6 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_27.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_27" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_28.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_28.json new file mode 100644 index 0000000..68982d8 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_28.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_28" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_29.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_29.json new file mode 100644 index 0000000..bd5fc03 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_29.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_29" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_30.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_30.json new file mode 100644 index 0000000..5024d66 --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_30.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_30" + } +} diff --git a/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_31.json b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_31.json new file mode 100644 index 0000000..7f5752c --- /dev/null +++ b/src/main/resources/assets/findyourway/models/item/item.findyourway.mansion_compass_31.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "findyourway:items/mansion_compass_31" + } +} diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass.png new file mode 100644 index 0000000..cf93cf8 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_00.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_00.png new file mode 100644 index 0000000..52a8307 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_00.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_01.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_01.png new file mode 100644 index 0000000..85503bf Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_01.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_02.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_02.png new file mode 100644 index 0000000..2951adf Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_02.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_03.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_03.png new file mode 100644 index 0000000..54e89d4 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_03.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_04.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_04.png new file mode 100644 index 0000000..c02857e Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_04.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_05.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_05.png new file mode 100644 index 0000000..2cb54d7 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_05.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_06.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_06.png new file mode 100644 index 0000000..c38acde Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_06.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_07.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_07.png new file mode 100644 index 0000000..2240376 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_07.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_08.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_08.png new file mode 100644 index 0000000..c8ade25 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_08.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_09.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_09.png new file mode 100644 index 0000000..c8ade25 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_09.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_10.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_10.png new file mode 100644 index 0000000..7068301 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_10.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_11.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_11.png new file mode 100644 index 0000000..67d165d Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_11.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_12.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_12.png new file mode 100644 index 0000000..4739ee9 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_12.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_13.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_13.png new file mode 100644 index 0000000..413f93f Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_13.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_14.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_14.png new file mode 100644 index 0000000..42c4b69 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_14.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_15.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_15.png new file mode 100644 index 0000000..ab0bb12 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_15.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_16.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_16.png new file mode 100644 index 0000000..ca5bad5 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_16.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_17.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_17.png new file mode 100644 index 0000000..13b85ab Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_17.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_18.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_18.png new file mode 100644 index 0000000..72cdd1e Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_18.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_19.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_19.png new file mode 100644 index 0000000..a53819a Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_19.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_20.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_20.png new file mode 100644 index 0000000..98e6508 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_20.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_21.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_21.png new file mode 100644 index 0000000..c805481 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_21.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_22.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_22.png new file mode 100644 index 0000000..7de5c01 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_22.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_23.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_23.png new file mode 100644 index 0000000..de32310 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_23.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_24.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_24.png new file mode 100644 index 0000000..b25a857 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_24.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_25.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_25.png new file mode 100644 index 0000000..b25a857 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_25.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_26.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_26.png new file mode 100644 index 0000000..4e0296d Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_26.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_27.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_27.png new file mode 100644 index 0000000..8c3ac7d Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_27.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_28.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_28.png new file mode 100644 index 0000000..6308ed0 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_28.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_29.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_29.png new file mode 100644 index 0000000..5156430 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_29.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_30.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_30.png new file mode 100644 index 0000000..5f48b78 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_30.png differ diff --git a/src/main/resources/assets/findyourway/textures/items/mansion_compass_31.png b/src/main/resources/assets/findyourway/textures/items/mansion_compass_31.png new file mode 100644 index 0000000..3cdcbf2 Binary files /dev/null and b/src/main/resources/assets/findyourway/textures/items/mansion_compass_31.png differ