diff --git a/.gitignore b/.gitignore index f2cb75bf..89b57869 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ bin/ build/ run/ +generated/ .classpath .project *.launch diff --git a/build.gradle b/build.gradle index a24981db..51a392c2 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,18 @@ archivesBaseName = project.name loom { mixin.defaultRefmapName = 'unicopia.mixin.refmap.json' accessWidenerPath = file('src/main/resources/unicopia.aw') + runs { + datagen { + server() + name "Data Generation" + vmArg "-Dfabric-api.datagen" + vmArg "-Dfabric-api.datagen.modid=unicopia" + vmArg "-Dfabric-api.datagen.output-dir=${file("src/main/generated")}" + runDir "build/datagen" + } + } } +//assemble.dependsOn(runDatagen) reckon { scopeFromProp() @@ -97,6 +108,14 @@ dependencies { } } +sourceSets { + main { + resources { + srcDirs += [ "src/main/generated" ] + } + } +} + processResources { inputs.property "version", project.version.toString() diff --git a/src/main/java/com/minelittlepony/unicopia/datagen/Datagen.java b/src/main/java/com/minelittlepony/unicopia/datagen/Datagen.java new file mode 100644 index 00000000..50ed2e3f --- /dev/null +++ b/src/main/java/com/minelittlepony/unicopia/datagen/Datagen.java @@ -0,0 +1,17 @@ +package com.minelittlepony.unicopia.datagen; + +import com.minelittlepony.unicopia.datagen.providers.UModelProvider; +import com.minelittlepony.unicopia.datagen.providers.URecipeProvider; + +import net.fabricmc.fabric.api.datagen.v1.DataGeneratorEntrypoint; +import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator; + +public class Datagen implements DataGeneratorEntrypoint { + @Override + public void onInitializeDataGenerator(FabricDataGenerator fabricDataGenerator) { + final FabricDataGenerator.Pack pack = fabricDataGenerator.createPack(); + + pack.addProvider(UModelProvider::new); + pack.addProvider(URecipeProvider::new); + } +} diff --git a/src/main/java/com/minelittlepony/unicopia/datagen/providers/ItemModels.java b/src/main/java/com/minelittlepony/unicopia/datagen/providers/ItemModels.java new file mode 100644 index 00000000..d5e5a746 --- /dev/null +++ b/src/main/java/com/minelittlepony/unicopia/datagen/providers/ItemModels.java @@ -0,0 +1,63 @@ +package com.minelittlepony.unicopia.datagen.providers; + +import java.util.Optional; + +import com.google.gson.JsonArray; +import com.google.gson.JsonObject; +import com.minelittlepony.unicopia.Unicopia; + +import net.minecraft.data.client.ItemModelGenerator; +import net.minecraft.data.client.Model; +import net.minecraft.data.client.ModelIds; +import net.minecraft.data.client.TextureKey; +import net.minecraft.data.client.TextureMap; +import net.minecraft.item.Item; +import net.minecraft.util.Identifier; +import net.minecraft.util.Util; + +interface ItemModels { + Model GENERATED = net.minecraft.data.client.Models.GENERATED; + Model TEMPLATE_AMULET = item("template_amulet", TextureKey.LAYER0); + Model TEMPLATE_SPAWN_EGG = item(new Identifier("template_spawn_egg")); + Model TEMPLATE_MUG = item("template_mug", TextureKey.LAYER0); + Model HANDHELD_STAFF = item("handheld_staff", TextureKey.LAYER0); + Model TRIDENT_THROWING = item(new Identifier("trident_throwing"), TextureKey.LAYER0); + Model TRIDENT_IN_HAND = item(new Identifier("trident_in_hand"), TextureKey.LAYER0); + + static Model item(String parent, TextureKey ... requiredTextureKeys) { + return new Model(Optional.of(Unicopia.id("item/" + parent)), Optional.empty(), requiredTextureKeys); + } + + static Model item(Identifier parent, TextureKey ... requiredTextureKeys) { + return new Model(Optional.of(parent.withPrefixedPath("item/")), Optional.empty(), requiredTextureKeys); + } + + static void register(ItemModelGenerator itemModelGenerator, Item... items) { + register(itemModelGenerator, GENERATED, items); + } + + static void register(ItemModelGenerator itemModelGenerator, Model model, Item... items) { + for (Item item : items) { + itemModelGenerator.register(item, model); + } + } + + static void registerPolearm(ItemModelGenerator itemModelGenerator, Item item) { + TextureMap textures = TextureMap.layer0(TextureMap.getId(item)); + Identifier throwingId = ModelIds.getItemSubModelId(item, "_throwing"); + GENERATED.upload(ModelIds.getItemSubModelId(item, "_in_inventory"), textures, itemModelGenerator.writer); + TRIDENT_THROWING.upload(throwingId, textures, itemModelGenerator.writer); + TRIDENT_IN_HAND.upload(ModelIds.getItemModelId(item), textures, (id, jsonSupplier) -> { + itemModelGenerator.writer.accept(id, () -> Util.make(jsonSupplier.get(), json -> { + json.getAsJsonObject().add("overrides", Util.make(new JsonArray(), overrides -> { + overrides.add(Util.make(new JsonObject(), override -> { + override.addProperty("model", throwingId.toString()); + override.add("predicate", Util.make(new JsonObject(), predicate -> { + predicate.addProperty("throwing", 1); + })); + })); + })); + })); + }); + } +} diff --git a/src/main/java/com/minelittlepony/unicopia/datagen/providers/UModelProvider.java b/src/main/java/com/minelittlepony/unicopia/datagen/providers/UModelProvider.java new file mode 100644 index 00000000..397022b0 --- /dev/null +++ b/src/main/java/com/minelittlepony/unicopia/datagen/providers/UModelProvider.java @@ -0,0 +1,146 @@ +package com.minelittlepony.unicopia.datagen.providers; + +import com.minelittlepony.unicopia.Race; +import com.minelittlepony.unicopia.block.UBlocks; +import com.minelittlepony.unicopia.item.BedsheetsItem; +import com.minelittlepony.unicopia.item.UItems; +import com.minelittlepony.unicopia.server.world.UTreeGen; + +import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; +import net.fabricmc.fabric.api.datagen.v1.provider.FabricModelProvider; +import net.minecraft.block.Block; +import net.minecraft.data.client.BlockStateModelGenerator; +import net.minecraft.data.client.BlockStateModelGenerator.TintType; +import net.minecraft.data.family.BlockFamily; +import net.minecraft.item.Item; +import net.minecraft.registry.Registries; +import net.minecraft.util.Identifier; +import net.minecraft.data.client.ItemModelGenerator; +import net.minecraft.data.client.ModelIds; + +public class UModelProvider extends FabricModelProvider { + public UModelProvider(FabricDataOutput output) { + super(output); + } + + @Override + public void generateBlockStateModels(BlockStateModelGenerator modelGenerator) { + // palm wood + registerLogSet(modelGenerator, UBlocks.PALM_LOG, UBlocks.PALM_WOOD); + registerLogSet(modelGenerator, UBlocks.STRIPPED_PALM_LOG, UBlocks.STRIPPED_PALM_WOOD); + modelGenerator.registerCubeAllModelTexturePool(UBlocks.PALM_PLANKS).family(new BlockFamily.Builder(UBlocks.PALM_PLANKS) + .slab(UBlocks.PALM_SLAB).stairs(UBlocks.PALM_STAIRS).fence(UBlocks.PALM_FENCE).fenceGate(UBlocks.PALM_FENCE_GATE) + .button(UBlocks.PALM_BUTTON).pressurePlate(UBlocks.PALM_PRESSURE_PLATE).sign(UBlocks.PALM_SIGN, UBlocks.PALM_WALL_SIGN) + .door(UBlocks.PALM_DOOR).trapdoor(UBlocks.PALM_TRAPDOOR) + .group("wooden").unlockCriterionName("has_planks") + .build()); + modelGenerator.registerHangingSign(UBlocks.STRIPPED_PALM_LOG, UBlocks.PALM_HANGING_SIGN, UBlocks.PALM_WALL_HANGING_SIGN); + modelGenerator.registerSimpleCubeAll(UBlocks.PALM_LEAVES); + modelGenerator.registerFlowerPotPlant(UTreeGen.BANANA_TREE.sapling().get(), UTreeGen.BANANA_TREE.pot().get(), TintType.NOT_TINTED); + + // zap wood + modelGenerator.registerLog(UBlocks.ZAP_LOG) + .log(UBlocks.ZAP_LOG).wood(UBlocks.ZAP_WOOD) + .log(UBlocks.WAXED_ZAP_LOG).wood(UBlocks.WAXED_ZAP_WOOD); + modelGenerator.registerLog(UBlocks.STRIPPED_ZAP_LOG) + .log(UBlocks.STRIPPED_ZAP_LOG).wood(UBlocks.STRIPPED_ZAP_WOOD) + .log(UBlocks.WAXED_STRIPPED_ZAP_LOG).wood(UBlocks.WAXED_STRIPPED_ZAP_WOOD); + modelGenerator.registerCubeAllModelTexturePool(UBlocks.ZAP_PLANKS) + .family(new BlockFamily.Builder(UBlocks.ZAP_PLANKS) + .slab(UBlocks.ZAP_SLAB).stairs(UBlocks.ZAP_STAIRS).fence(UBlocks.ZAP_FENCE).fenceGate(UBlocks.ZAP_FENCE_GATE) + .group("wooden").unlockCriterionName("has_planks") + .build()) + .same(UBlocks.WAXED_ZAP_PLANKS).family(new BlockFamily.Builder(UBlocks.WAXED_ZAP_PLANKS) + .slab(UBlocks.WAXED_ZAP_SLAB).stairs(UBlocks.WAXED_ZAP_STAIRS).fence(UBlocks.WAXED_ZAP_FENCE).fenceGate(UBlocks.WAXED_ZAP_FENCE_GATE) + .group("wooden").unlockCriterionName("has_planks") + .build()); + modelGenerator.registerFlowerPotPlant(UTreeGen.ZAP_APPLE_TREE.sapling().get(), UTreeGen.ZAP_APPLE_TREE.pot().get(), TintType.NOT_TINTED); + } + + @Override + public void generateItemModels(ItemModelGenerator itemModelGenerator) { + ItemModels.register(itemModelGenerator, + UItems.ACORN, UItems.APPLE_PIE_HOOF, UItems.APPLE_PIE_SLICE, UItems.APPLE_PIE, + UItems.BANANA, UItems.BOTCHED_GEM, UItems.BROKEN_SUNGLASSES, UItems.BURNED_JUICE, UItems.BURNED_TOAST, + UItems.CARAPACE, UItems.CLAM_SHELL, UItems.COOKED_ZAP_APPLE, UItems.CRISPY_HAY_FRIES, UItems.CRYSTAL_HEART, UItems.CRYSTAL_SHARD, UItems.CURING_JOKE, + UItems.DAFFODIL_DAISY_SANDWICH, UItems.DRAGON_BREATH_SCROLL, + UItems.EMPTY_JAR, + UItems.FRIENDSHIP_BRACELET, + UItems.GIANT_BALLOON, UItems.GOLDEN_FEATHER, UItems.GOLDEN_OAK_SEEDS, UItems.GOLDEN_WING, UItems.GREEN_APPLE_SEEDS, UItems.GREEN_APPLE, UItems.GROGARS_BELL, + UItems.GRYPHON_FEATHER, + UItems.HAY_BURGER, UItems.HAY_FRIES, UItems.HORSE_SHOE_FRIES, + UItems.IMPORTED_OATS, + UItems.JAM_TOAST, UItems.JUICE, + UItems.LIGHTNING_JAR, + UItems.MANGO, UItems.MUFFIN, + UItems.OAT_SEEDS, UItems.OATMEAL, UItems.OATS, + UItems.PEBBLES, UItems.PEGASUS_FEATHER, UItems.PINECONE, + UItems.RAIN_CLOUD_JAR, UItems.ROCK_STEW, UItems.ROCK, UItems.ROTTEN_APPLE, + UItems.SALT_CUBE, UItems.SCALLOP_SHELL, UItems.SHELLY, UItems.SOUR_APPLE_SEEDS, UItems.SOUR_APPLE, UItems.SPELLBOOK, UItems.STORM_CLOUD_JAR, + UItems.SWEET_APPLE_SEEDS, UItems.SWEET_APPLE, + UItems.TOAST, UItems.TOM, UItems.TURRET_SHELL, + UItems.WEIRD_ROCK, UItems.WHEAT_WORMS, + UItems.ZAP_APPLE_JAM_JAR, UItems.ZAP_APPLE, UItems.ZAP_BULB, + + // discs + UItems.MUSIC_DISC_CRUSADE, UItems.MUSIC_DISC_FUNK, UItems.MUSIC_DISC_PET, UItems.MUSIC_DISC_POPULAR, + + // baskets + UItems.ACACIA_BASKET, UItems.BAMBOO_BASKET, UItems.BIRCH_BASKET, UItems.CHERRY_BASKET, + UItems.DARK_OAK_BASKET, UItems.JUNGLE_BASKET, UItems.MANGROVE_BASKET, UItems.OAK_BASKET, UItems.SPRUCE_BASKET, + UItems.PALM_BASKET, + + // boats + UItems.PALM_BOAT, UItems.PALM_CHEST_BOAT, + + // horseshoes + UItems.COPPER_HORSE_SHOE, UItems.GOLDEN_HORSE_SHOE, UItems.IRON_HORSE_SHOE, UItems.NETHERITE_HORSE_SHOE + ); + + // spawn eggs + ItemModels.register(itemModelGenerator, ItemModels.TEMPLATE_SPAWN_EGG, + UItems.BUTTERFLY_SPAWN_EGG, UItems.LOOT_BUG_SPAWN_EGG + ); + + // amulets + ItemModels.register(itemModelGenerator, ItemModels.TEMPLATE_AMULET, + UItems.ALICORN_AMULET, UItems.BROKEN_ALICORN_AMULET, UItems.PEARL_NECKLACE, UItems.PEGASUS_AMULET, UItems.UNICORN_AMULET + ); + + // mugs + ItemModels.register(itemModelGenerator, ItemModels.TEMPLATE_MUG, + UItems.CIDER, UItems.LOVE_BOTTLE, UItems.LOVE_BUCKET, UItems.LOVE_MUG, UItems.MUG + ); + + // staffs + ItemModels.register(itemModelGenerator, ItemModels.HANDHELD_STAFF, + UItems.MEADOWBROOKS_STAFF + ); + + // polearms + for (Item item : new Item[] { + UItems.DIAMOND_POLEARM, UItems.GOLDEN_POLEARM, UItems.NETHERITE_POLEARM, UItems.STONE_POLEARM, UItems.WOODEN_POLEARM, UItems.IRON_POLEARM + }) { + ItemModels.registerPolearm(itemModelGenerator, item); + } + + // sheets + ItemModels.register(itemModelGenerator, BedsheetsItem.ITEMS.values().stream().toArray(Item[]::new)); + // badges + ItemModels.register(itemModelGenerator, Race.REGISTRY.stream() + .map(race -> race.getId().withPath(p -> p + "_badge")) + .flatMap(id -> Registries.ITEM.getOrEmpty(id).stream()) + .toArray(Item[]::new)); + } + + private void registerLogSet(BlockStateModelGenerator modelGenerator, Block log, Block wood) { + modelGenerator.registerLog(log).log(log).wood(wood); + } + + public void registerParentedAxisRotatedCubeColumn(BlockStateModelGenerator modelGenerator, Block modelSource, Block child) { + Identifier vertical = ModelIds.getBlockModelId(modelSource); + Identifier horizontal = ModelIds.getBlockSubModelId(modelSource, "_horizontal"); + modelGenerator.blockStateCollector.accept(BlockStateModelGenerator.createAxisRotatedBlockState(child, vertical, horizontal)); + modelGenerator.registerParentedItemModel(child, vertical); + } +} diff --git a/src/main/java/com/minelittlepony/unicopia/datagen/providers/URecipeProvider.java b/src/main/java/com/minelittlepony/unicopia/datagen/providers/URecipeProvider.java new file mode 100644 index 00000000..c40b7f1f --- /dev/null +++ b/src/main/java/com/minelittlepony/unicopia/datagen/providers/URecipeProvider.java @@ -0,0 +1,19 @@ +package com.minelittlepony.unicopia.datagen.providers; + +import java.util.function.Consumer; + +import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; +import net.fabricmc.fabric.api.datagen.v1.provider.FabricRecipeProvider; +import net.minecraft.data.server.recipe.RecipeJsonProvider; + +public class URecipeProvider extends FabricRecipeProvider { + public URecipeProvider(FabricDataOutput output) { + super(output); + } + + @Override + public void generate(Consumer exporter) { + + + } +} diff --git a/src/main/java/com/minelittlepony/unicopia/item/BedsheetsItem.java b/src/main/java/com/minelittlepony/unicopia/item/BedsheetsItem.java index ddd94336..32ecc6c4 100644 --- a/src/main/java/com/minelittlepony/unicopia/item/BedsheetsItem.java +++ b/src/main/java/com/minelittlepony/unicopia/item/BedsheetsItem.java @@ -18,7 +18,7 @@ import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; public class BedsheetsItem extends Item { - private static final Map ITEMS = new HashMap<>(); + public static final Map ITEMS = new HashMap<>(); private final CloudBedBlock.SheetPattern pattern; diff --git a/src/main/java/com/minelittlepony/unicopia/item/UItems.java b/src/main/java/com/minelittlepony/unicopia/item/UItems.java index 5ee6baeb..8d30b634 100644 --- a/src/main/java/com/minelittlepony/unicopia/item/UItems.java +++ b/src/main/java/com/minelittlepony/unicopia/item/UItems.java @@ -177,7 +177,7 @@ public interface UItems { Item GREEN_BED_SHEETS = register(CloudBedBlock.SheetPattern.GREEN); Item CYAN_BED_SHEETS = register(CloudBedBlock.SheetPattern.CYAN); Item LIGHT_BLUE_BED_SHEETS = register(CloudBedBlock.SheetPattern.LIGHT_BLUE); - Item BLUE_SHEETS = register(CloudBedBlock.SheetPattern.BLUE); + Item BLUE_BED_SHEETS = register(CloudBedBlock.SheetPattern.BLUE); Item PURPLE_BED_SHEETS = register(CloudBedBlock.SheetPattern.PURPLE); Item MAGENTA_BED_SHEETS = register(CloudBedBlock.SheetPattern.MAGENTA); Item PINK_BED_SHEETS = register(CloudBedBlock.SheetPattern.PINK); diff --git a/src/main/resources/assets/unicopia/blockstates/palm_button.json b/src/main/resources/assets/unicopia/blockstates/palm_button.json deleted file mode 100644 index 45d701d8..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_button.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "variants": { - "face=ceiling,facing=east,powered=false": { - "model": "unicopia:block/palm_button", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=east,powered=true": { - "model": "unicopia:block/palm_button_pressed", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=north,powered=false": { - "model": "unicopia:block/palm_button", - "x": 180, - "y": 180 - }, - "face=ceiling,facing=north,powered=true": { - "model": "unicopia:block/palm_button_pressed", - "x": 180, - "y": 180 - }, - "face=ceiling,facing=south,powered=false": { - "model": "unicopia:block/palm_button", - "x": 180 - }, - "face=ceiling,facing=south,powered=true": { - "model": "unicopia:block/palm_button_pressed", - "x": 180 - }, - "face=ceiling,facing=west,powered=false": { - "model": "unicopia:block/palm_button", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=west,powered=true": { - "model": "unicopia:block/palm_button_pressed", - "x": 180, - "y": 90 - }, - "face=floor,facing=east,powered=false": { - "model": "unicopia:block/palm_button", - "y": 90 - }, - "face=floor,facing=east,powered=true": { - "model": "unicopia:block/palm_button_pressed", - "y": 90 - }, - "face=floor,facing=north,powered=false": { - "model": "unicopia:block/palm_button" - }, - "face=floor,facing=north,powered=true": { - "model": "unicopia:block/palm_button_pressed" - }, - "face=floor,facing=south,powered=false": { - "model": "unicopia:block/palm_button", - "y": 180 - }, - "face=floor,facing=south,powered=true": { - "model": "unicopia:block/palm_button_pressed", - "y": 180 - }, - "face=floor,facing=west,powered=false": { - "model": "unicopia:block/palm_button", - "y": 270 - }, - "face=floor,facing=west,powered=true": { - "model": "unicopia:block/palm_button_pressed", - "y": 270 - }, - "face=wall,facing=east,powered=false": { - "model": "unicopia:block/palm_button", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=east,powered=true": { - "model": "unicopia:block/palm_button_pressed", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=north,powered=false": { - "model": "unicopia:block/palm_button", - "uvlock": true, - "x": 90 - }, - "face=wall,facing=north,powered=true": { - "model": "unicopia:block/palm_button_pressed", - "uvlock": true, - "x": 90 - }, - "face=wall,facing=south,powered=false": { - "model": "unicopia:block/palm_button", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=south,powered=true": { - "model": "unicopia:block/palm_button_pressed", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=west,powered=false": { - "model": "unicopia:block/palm_button", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=west,powered=true": { - "model": "unicopia:block/palm_button_pressed", - "uvlock": true, - "x": 90, - "y": 270 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_door.json b/src/main/resources/assets/unicopia/blockstates/palm_door.json deleted file mode 100644 index 8f0edd6d..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_door.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "variants": { - "facing=east,half=lower,hinge=left,open=false": { - "model": "unicopia:block/palm_door_bottom_left" - }, - "facing=east,half=lower,hinge=left,open=true": { - "model": "unicopia:block/palm_door_bottom_left_open", - "y": 90 - }, - "facing=east,half=lower,hinge=right,open=false": { - "model": "unicopia:block/palm_door_bottom_right" - }, - "facing=east,half=lower,hinge=right,open=true": { - "model": "unicopia:block/palm_door_bottom_right_open", - "y": 270 - }, - "facing=east,half=upper,hinge=left,open=false": { - "model": "unicopia:block/palm_door_top_left" - }, - "facing=east,half=upper,hinge=left,open=true": { - "model": "unicopia:block/palm_door_top_left_open", - "y": 90 - }, - "facing=east,half=upper,hinge=right,open=false": { - "model": "unicopia:block/palm_door_top_right" - }, - "facing=east,half=upper,hinge=right,open=true": { - "model": "unicopia:block/palm_door_top_right_open", - "y": 270 - }, - "facing=north,half=lower,hinge=left,open=false": { - "model": "unicopia:block/palm_door_bottom_left", - "y": 270 - }, - "facing=north,half=lower,hinge=left,open=true": { - "model": "unicopia:block/palm_door_bottom_left_open" - }, - "facing=north,half=lower,hinge=right,open=false": { - "model": "unicopia:block/palm_door_bottom_right", - "y": 270 - }, - "facing=north,half=lower,hinge=right,open=true": { - "model": "unicopia:block/palm_door_bottom_right_open", - "y": 180 - }, - "facing=north,half=upper,hinge=left,open=false": { - "model": "unicopia:block/palm_door_top_left", - "y": 270 - }, - "facing=north,half=upper,hinge=left,open=true": { - "model": "unicopia:block/palm_door_top_left_open" - }, - "facing=north,half=upper,hinge=right,open=false": { - "model": "unicopia:block/palm_door_top_right", - "y": 270 - }, - "facing=north,half=upper,hinge=right,open=true": { - "model": "unicopia:block/palm_door_top_right_open", - "y": 180 - }, - "facing=south,half=lower,hinge=left,open=false": { - "model": "unicopia:block/palm_door_bottom_left", - "y": 90 - }, - "facing=south,half=lower,hinge=left,open=true": { - "model": "unicopia:block/palm_door_bottom_left_open", - "y": 180 - }, - "facing=south,half=lower,hinge=right,open=false": { - "model": "unicopia:block/palm_door_bottom_right", - "y": 90 - }, - "facing=south,half=lower,hinge=right,open=true": { - "model": "unicopia:block/palm_door_bottom_right_open" - }, - "facing=south,half=upper,hinge=left,open=false": { - "model": "unicopia:block/palm_door_top_left", - "y": 90 - }, - "facing=south,half=upper,hinge=left,open=true": { - "model": "unicopia:block/palm_door_top_left_open", - "y": 180 - }, - "facing=south,half=upper,hinge=right,open=false": { - "model": "unicopia:block/palm_door_top_right", - "y": 90 - }, - "facing=south,half=upper,hinge=right,open=true": { - "model": "unicopia:block/palm_door_top_right_open" - }, - "facing=west,half=lower,hinge=left,open=false": { - "model": "unicopia:block/palm_door_bottom_left", - "y": 180 - }, - "facing=west,half=lower,hinge=left,open=true": { - "model": "unicopia:block/palm_door_bottom_left_open", - "y": 270 - }, - "facing=west,half=lower,hinge=right,open=false": { - "model": "unicopia:block/palm_door_bottom_right", - "y": 180 - }, - "facing=west,half=lower,hinge=right,open=true": { - "model": "unicopia:block/palm_door_bottom_right_open", - "y": 90 - }, - "facing=west,half=upper,hinge=left,open=false": { - "model": "unicopia:block/palm_door_top_left", - "y": 180 - }, - "facing=west,half=upper,hinge=left,open=true": { - "model": "unicopia:block/palm_door_top_left_open", - "y": 270 - }, - "facing=west,half=upper,hinge=right,open=false": { - "model": "unicopia:block/palm_door_top_right", - "y": 180 - }, - "facing=west,half=upper,hinge=right,open=true": { - "model": "unicopia:block/palm_door_top_right_open", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_fence.json b/src/main/resources/assets/unicopia/blockstates/palm_fence.json deleted file mode 100644 index 922c733a..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "unicopia:block/palm_fence_post" - } - }, - { - "apply": { - "model": "unicopia:block/palm_fence_side", - "uvlock": true - }, - "when": { - "north": "true" - } - }, - { - "apply": { - "model": "unicopia:block/palm_fence_side", - "uvlock": true, - "y": 90 - }, - "when": { - "east": "true" - } - }, - { - "apply": { - "model": "unicopia:block/palm_fence_side", - "uvlock": true, - "y": 180 - }, - "when": { - "south": "true" - } - }, - { - "apply": { - "model": "unicopia:block/palm_fence_side", - "uvlock": true, - "y": 270 - }, - "when": { - "west": "true" - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_fence_gate.json b/src/main/resources/assets/unicopia/blockstates/palm_fence_gate.json deleted file mode 100644 index 44a911b9..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=east,in_wall=false,open=false": { - "model": "unicopia:block/palm_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=east,in_wall=false,open=true": { - "model": "unicopia:block/palm_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=east,in_wall=true,open=false": { - "model": "unicopia:block/palm_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=east,in_wall=true,open=true": { - "model": "unicopia:block/palm_fence_gate_wall_open", - "uvlock": true, - "y": 270 - }, - "facing=north,in_wall=false,open=false": { - "model": "unicopia:block/palm_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=north,in_wall=false,open=true": { - "model": "unicopia:block/palm_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=north,in_wall=true,open=false": { - "model": "unicopia:block/palm_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=north,in_wall=true,open=true": { - "model": "unicopia:block/palm_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=south,in_wall=false,open=false": { - "model": "unicopia:block/palm_fence_gate", - "uvlock": true - }, - "facing=south,in_wall=false,open=true": { - "model": "unicopia:block/palm_fence_gate_open", - "uvlock": true - }, - "facing=south,in_wall=true,open=false": { - "model": "unicopia:block/palm_fence_gate_wall", - "uvlock": true - }, - "facing=south,in_wall=true,open=true": { - "model": "unicopia:block/palm_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "unicopia:block/palm_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=west,in_wall=false,open=true": { - "model": "unicopia:block/palm_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=west,in_wall=true,open=false": { - "model": "unicopia:block/palm_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=west,in_wall=true,open=true": { - "model": "unicopia:block/palm_fence_gate_wall_open", - "uvlock": true, - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_hanging_sign.json b/src/main/resources/assets/unicopia/blockstates/palm_hanging_sign.json deleted file mode 100644 index c49365e4..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_hanging_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/palm_hanging_sign" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_leaves.json b/src/main/resources/assets/unicopia/blockstates/palm_leaves.json deleted file mode 100644 index cbba202c..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/palm_leaves" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/palm_log.json b/src/main/resources/assets/unicopia/blockstates/palm_log.json deleted file mode 100644 index 4b9b3f6f..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "unicopia:block/palm_log_horizontal", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "unicopia:block/palm_log" - }, - "axis=z": { - "model": "unicopia:block/palm_log_horizontal", - "x": 90 - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/palm_planks.json b/src/main/resources/assets/unicopia/blockstates/palm_planks.json deleted file mode 100644 index c01341f2..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/palm_planks" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/palm_pressure_plate.json b/src/main/resources/assets/unicopia/blockstates/palm_pressure_plate.json deleted file mode 100644 index 240df462..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_pressure_plate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "powered=false": { - "model": "unicopia:block/palm_pressure_plate" - }, - "powered=true": { - "model": "unicopia:block/palm_pressure_plate_down" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_sapling.json b/src/main/resources/assets/unicopia/blockstates/palm_sapling.json deleted file mode 100644 index 12d87308..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/palm_sapling" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/palm_sign.json b/src/main/resources/assets/unicopia/blockstates/palm_sign.json deleted file mode 100644 index 9805da33..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/palm_sign" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_slab.json b/src/main/resources/assets/unicopia/blockstates/palm_slab.json deleted file mode 100644 index 37b307fd..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "unicopia:block/palm_slab" - }, - "type=double": { - "model": "unicopia:block/palm_planks" - }, - "type=top": { - "model": "unicopia:block/palm_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_stairs.json b/src/main/resources/assets/unicopia/blockstates/palm_stairs.json deleted file mode 100644 index c79fbe9b..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "y": 270 - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "unicopia:block/palm_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "y": 270 - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "unicopia:block/palm_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "unicopia:block/palm_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "x": 180 - }, - "facing=east,half=top,shape=inner_right": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=east,half=top,shape=outer_left": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "x": 180 - }, - "facing=east,half=top,shape=outer_right": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=east,half=top,shape=straight": { - "model": "unicopia:block/palm_stairs", - "uvlock": true, - "x": 180 - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "y": 180 - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "y": 270 - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "y": 180 - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "y": 270 - }, - "facing=north,half=bottom,shape=straight": { - "model": "unicopia:block/palm_stairs", - "uvlock": true, - "y": 270 - }, - "facing=north,half=top,shape=inner_left": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=north,half=top,shape=inner_right": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "x": 180 - }, - "facing=north,half=top,shape=outer_left": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=north,half=top,shape=outer_right": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "x": 180 - }, - "facing=north,half=top,shape=straight": { - "model": "unicopia:block/palm_stairs", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "unicopia:block/palm_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "y": 90 - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "unicopia:block/palm_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "y": 90 - }, - "facing=south,half=bottom,shape=straight": { - "model": "unicopia:block/palm_stairs", - "uvlock": true, - "y": 90 - }, - "facing=south,half=top,shape=inner_left": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=south,half=top,shape=inner_right": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=south,half=top,shape=outer_left": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=south,half=top,shape=outer_right": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=south,half=top,shape=straight": { - "model": "unicopia:block/palm_stairs", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "y": 90 - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "y": 180 - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "y": 90 - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "y": 180 - }, - "facing=west,half=bottom,shape=straight": { - "model": "unicopia:block/palm_stairs", - "uvlock": true, - "y": 180 - }, - "facing=west,half=top,shape=inner_left": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=west,half=top,shape=inner_right": { - "model": "unicopia:block/palm_stairs_inner", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=west,half=top,shape=outer_left": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=west,half=top,shape=outer_right": { - "model": "unicopia:block/palm_stairs_outer", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=west,half=top,shape=straight": { - "model": "unicopia:block/palm_stairs", - "uvlock": true, - "x": 180, - "y": 180 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_trapdoor.json b/src/main/resources/assets/unicopia/blockstates/palm_trapdoor.json deleted file mode 100644 index 5753984b..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_trapdoor.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,open=false": { - "model": "unicopia:block/palm_trapdoor_bottom" - }, - "facing=east,half=bottom,open=true": { - "model": "unicopia:block/palm_trapdoor_open", - "y": 90 - }, - "facing=east,half=top,open=false": { - "model": "unicopia:block/palm_trapdoor_top" - }, - "facing=east,half=top,open=true": { - "model": "unicopia:block/palm_trapdoor_open", - "y": 90 - }, - "facing=north,half=bottom,open=false": { - "model": "unicopia:block/palm_trapdoor_bottom" - }, - "facing=north,half=bottom,open=true": { - "model": "unicopia:block/palm_trapdoor_open" - }, - "facing=north,half=top,open=false": { - "model": "unicopia:block/palm_trapdoor_top" - }, - "facing=north,half=top,open=true": { - "model": "unicopia:block/palm_trapdoor_open" - }, - "facing=south,half=bottom,open=false": { - "model": "unicopia:block/palm_trapdoor_bottom" - }, - "facing=south,half=bottom,open=true": { - "model": "unicopia:block/palm_trapdoor_open", - "y": 180 - }, - "facing=south,half=top,open=false": { - "model": "unicopia:block/palm_trapdoor_top" - }, - "facing=south,half=top,open=true": { - "model": "unicopia:block/palm_trapdoor_open", - "y": 180 - }, - "facing=west,half=bottom,open=false": { - "model": "unicopia:block/palm_trapdoor_bottom" - }, - "facing=west,half=bottom,open=true": { - "model": "unicopia:block/palm_trapdoor_open", - "y": 270 - }, - "facing=west,half=top,open=false": { - "model": "unicopia:block/palm_trapdoor_top" - }, - "facing=west,half=top,open=true": { - "model": "unicopia:block/palm_trapdoor_open", - "y": 270 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_wall_hanging_sign.json b/src/main/resources/assets/unicopia/blockstates/palm_wall_hanging_sign.json deleted file mode 100644 index c49365e4..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_wall_hanging_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/palm_hanging_sign" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_wall_sign.json b/src/main/resources/assets/unicopia/blockstates/palm_wall_sign.json deleted file mode 100644 index 9805da33..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_wall_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/palm_sign" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/palm_wood.json b/src/main/resources/assets/unicopia/blockstates/palm_wood.json deleted file mode 100644 index 65294bd0..00000000 --- a/src/main/resources/assets/unicopia/blockstates/palm_wood.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/palm_wood" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/potted_palm_sapling.json b/src/main/resources/assets/unicopia/blockstates/potted_palm_sapling.json deleted file mode 100644 index b73dcef1..00000000 --- a/src/main/resources/assets/unicopia/blockstates/potted_palm_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/potted_palm_sapling" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/potted_zapling.json b/src/main/resources/assets/unicopia/blockstates/potted_zapling.json deleted file mode 100644 index 8e6fa653..00000000 --- a/src/main/resources/assets/unicopia/blockstates/potted_zapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/potted_zapling" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/stripped_palm_log.json b/src/main/resources/assets/unicopia/blockstates/stripped_palm_log.json deleted file mode 100644 index 43cf368e..00000000 --- a/src/main/resources/assets/unicopia/blockstates/stripped_palm_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "unicopia:block/stripped_palm_log_horizontal", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "unicopia:block/stripped_palm_log" - }, - "axis=z": { - "model": "unicopia:block/stripped_palm_log_horizontal", - "x": 90 - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/stripped_palm_wood.json b/src/main/resources/assets/unicopia/blockstates/stripped_palm_wood.json deleted file mode 100644 index 9c1bee35..00000000 --- a/src/main/resources/assets/unicopia/blockstates/stripped_palm_wood.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/stripped_palm_wood" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/stripped_zap_log.json b/src/main/resources/assets/unicopia/blockstates/stripped_zap_log.json deleted file mode 100644 index 06956a0e..00000000 --- a/src/main/resources/assets/unicopia/blockstates/stripped_zap_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "unicopia:block/stripped_zap_log_horizontal", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "unicopia:block/stripped_zap_log" - }, - "axis=z": { - "model": "unicopia:block/stripped_zap_log_horizontal", - "x": 90 - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/stripped_zap_wood.json b/src/main/resources/assets/unicopia/blockstates/stripped_zap_wood.json deleted file mode 100644 index c99ab1cc..00000000 --- a/src/main/resources/assets/unicopia/blockstates/stripped_zap_wood.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/stripped_zap_wood" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/waxed_stripped_zap_log.json b/src/main/resources/assets/unicopia/blockstates/waxed_stripped_zap_log.json deleted file mode 100644 index 06956a0e..00000000 --- a/src/main/resources/assets/unicopia/blockstates/waxed_stripped_zap_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "unicopia:block/stripped_zap_log_horizontal", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "unicopia:block/stripped_zap_log" - }, - "axis=z": { - "model": "unicopia:block/stripped_zap_log_horizontal", - "x": 90 - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/waxed_stripped_zap_wood.json b/src/main/resources/assets/unicopia/blockstates/waxed_stripped_zap_wood.json deleted file mode 100644 index c99ab1cc..00000000 --- a/src/main/resources/assets/unicopia/blockstates/waxed_stripped_zap_wood.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/stripped_zap_wood" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/waxed_zap_fence.json b/src/main/resources/assets/unicopia/blockstates/waxed_zap_fence.json deleted file mode 100644 index 0bd4ba9a..00000000 --- a/src/main/resources/assets/unicopia/blockstates/waxed_zap_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "unicopia:block/zap_fence_post" - } - }, - { - "apply": { - "model": "unicopia:block/zap_fence_side", - "uvlock": true - }, - "when": { - "north": "true" - } - }, - { - "apply": { - "model": "unicopia:block/zap_fence_side", - "uvlock": true, - "y": 90 - }, - "when": { - "east": "true" - } - }, - { - "apply": { - "model": "unicopia:block/zap_fence_side", - "uvlock": true, - "y": 180 - }, - "when": { - "south": "true" - } - }, - { - "apply": { - "model": "unicopia:block/zap_fence_side", - "uvlock": true, - "y": 270 - }, - "when": { - "west": "true" - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/waxed_zap_fence_gate.json b/src/main/resources/assets/unicopia/blockstates/waxed_zap_fence_gate.json deleted file mode 100644 index 05fd9c83..00000000 --- a/src/main/resources/assets/unicopia/blockstates/waxed_zap_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=east,in_wall=false,open=false": { - "model": "unicopia:block/zap_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=east,in_wall=false,open=true": { - "model": "unicopia:block/zap_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=east,in_wall=true,open=false": { - "model": "unicopia:block/zap_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=east,in_wall=true,open=true": { - "model": "unicopia:block/zap_fence_gate_wall_open", - "uvlock": true, - "y": 270 - }, - "facing=north,in_wall=false,open=false": { - "model": "unicopia:block/zap_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=north,in_wall=false,open=true": { - "model": "unicopia:block/zap_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=north,in_wall=true,open=false": { - "model": "unicopia:block/zap_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=north,in_wall=true,open=true": { - "model": "unicopia:block/zap_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=south,in_wall=false,open=false": { - "model": "unicopia:block/zap_fence_gate", - "uvlock": true - }, - "facing=south,in_wall=false,open=true": { - "model": "unicopia:block/zap_fence_gate_open", - "uvlock": true - }, - "facing=south,in_wall=true,open=false": { - "model": "unicopia:block/zap_fence_gate_wall", - "uvlock": true - }, - "facing=south,in_wall=true,open=true": { - "model": "unicopia:block/zap_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "unicopia:block/zap_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=west,in_wall=false,open=true": { - "model": "unicopia:block/zap_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=west,in_wall=true,open=false": { - "model": "unicopia:block/zap_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=west,in_wall=true,open=true": { - "model": "unicopia:block/zap_fence_gate_wall_open", - "uvlock": true, - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/waxed_zap_log.json b/src/main/resources/assets/unicopia/blockstates/waxed_zap_log.json deleted file mode 100644 index c3b64c19..00000000 --- a/src/main/resources/assets/unicopia/blockstates/waxed_zap_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "unicopia:block/zap_log_horizontal", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "unicopia:block/zap_log" - }, - "axis=z": { - "model": "unicopia:block/zap_log_horizontal", - "x": 90 - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/waxed_zap_planks.json b/src/main/resources/assets/unicopia/blockstates/waxed_zap_planks.json deleted file mode 100644 index ac083bd3..00000000 --- a/src/main/resources/assets/unicopia/blockstates/waxed_zap_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/zap_planks" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/waxed_zap_slab.json b/src/main/resources/assets/unicopia/blockstates/waxed_zap_slab.json deleted file mode 100644 index 4de01681..00000000 --- a/src/main/resources/assets/unicopia/blockstates/waxed_zap_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "unicopia:block/zap_slab" - }, - "type=double": { - "model": "unicopia:block/zap_planks" - }, - "type=top": { - "model": "unicopia:block/zap_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/waxed_zap_stairs.json b/src/main/resources/assets/unicopia/blockstates/waxed_zap_stairs.json deleted file mode 100644 index 2fdbab92..00000000 --- a/src/main/resources/assets/unicopia/blockstates/waxed_zap_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 270 - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 270 - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "unicopia:block/zap_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180 - }, - "facing=east,half=top,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=east,half=top,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180 - }, - "facing=east,half=top,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=east,half=top,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "x": 180 - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 180 - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 270 - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 180 - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 270 - }, - "facing=north,half=bottom,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "y": 270 - }, - "facing=north,half=top,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=north,half=top,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180 - }, - "facing=north,half=top,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=north,half=top,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180 - }, - "facing=north,half=top,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 90 - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 90 - }, - "facing=south,half=bottom,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "y": 90 - }, - "facing=south,half=top,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=south,half=top,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=south,half=top,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=south,half=top,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=south,half=top,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 90 - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 180 - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 90 - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 180 - }, - "facing=west,half=bottom,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "y": 180 - }, - "facing=west,half=top,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=west,half=top,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=west,half=top,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=west,half=top,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=west,half=top,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "x": 180, - "y": 180 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/waxed_zap_wood.json b/src/main/resources/assets/unicopia/blockstates/waxed_zap_wood.json deleted file mode 100644 index 30090bc9..00000000 --- a/src/main/resources/assets/unicopia/blockstates/waxed_zap_wood.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/zap_wood" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/zap_fence.json b/src/main/resources/assets/unicopia/blockstates/zap_fence.json deleted file mode 100644 index 0bd4ba9a..00000000 --- a/src/main/resources/assets/unicopia/blockstates/zap_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "unicopia:block/zap_fence_post" - } - }, - { - "apply": { - "model": "unicopia:block/zap_fence_side", - "uvlock": true - }, - "when": { - "north": "true" - } - }, - { - "apply": { - "model": "unicopia:block/zap_fence_side", - "uvlock": true, - "y": 90 - }, - "when": { - "east": "true" - } - }, - { - "apply": { - "model": "unicopia:block/zap_fence_side", - "uvlock": true, - "y": 180 - }, - "when": { - "south": "true" - } - }, - { - "apply": { - "model": "unicopia:block/zap_fence_side", - "uvlock": true, - "y": 270 - }, - "when": { - "west": "true" - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/zap_fence_gate.json b/src/main/resources/assets/unicopia/blockstates/zap_fence_gate.json deleted file mode 100644 index 05fd9c83..00000000 --- a/src/main/resources/assets/unicopia/blockstates/zap_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=east,in_wall=false,open=false": { - "model": "unicopia:block/zap_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=east,in_wall=false,open=true": { - "model": "unicopia:block/zap_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=east,in_wall=true,open=false": { - "model": "unicopia:block/zap_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=east,in_wall=true,open=true": { - "model": "unicopia:block/zap_fence_gate_wall_open", - "uvlock": true, - "y": 270 - }, - "facing=north,in_wall=false,open=false": { - "model": "unicopia:block/zap_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=north,in_wall=false,open=true": { - "model": "unicopia:block/zap_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=north,in_wall=true,open=false": { - "model": "unicopia:block/zap_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=north,in_wall=true,open=true": { - "model": "unicopia:block/zap_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=south,in_wall=false,open=false": { - "model": "unicopia:block/zap_fence_gate", - "uvlock": true - }, - "facing=south,in_wall=false,open=true": { - "model": "unicopia:block/zap_fence_gate_open", - "uvlock": true - }, - "facing=south,in_wall=true,open=false": { - "model": "unicopia:block/zap_fence_gate_wall", - "uvlock": true - }, - "facing=south,in_wall=true,open=true": { - "model": "unicopia:block/zap_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "unicopia:block/zap_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=west,in_wall=false,open=true": { - "model": "unicopia:block/zap_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=west,in_wall=true,open=false": { - "model": "unicopia:block/zap_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=west,in_wall=true,open=true": { - "model": "unicopia:block/zap_fence_gate_wall_open", - "uvlock": true, - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/zap_log.json b/src/main/resources/assets/unicopia/blockstates/zap_log.json deleted file mode 100644 index c3b64c19..00000000 --- a/src/main/resources/assets/unicopia/blockstates/zap_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "unicopia:block/zap_log_horizontal", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "unicopia:block/zap_log" - }, - "axis=z": { - "model": "unicopia:block/zap_log_horizontal", - "x": 90 - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/zap_planks.json b/src/main/resources/assets/unicopia/blockstates/zap_planks.json deleted file mode 100644 index ac083bd3..00000000 --- a/src/main/resources/assets/unicopia/blockstates/zap_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/zap_planks" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/zap_slab.json b/src/main/resources/assets/unicopia/blockstates/zap_slab.json deleted file mode 100644 index 4de01681..00000000 --- a/src/main/resources/assets/unicopia/blockstates/zap_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "unicopia:block/zap_slab" - }, - "type=double": { - "model": "unicopia:block/zap_planks" - }, - "type=top": { - "model": "unicopia:block/zap_slab_top" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/zap_stairs.json b/src/main/resources/assets/unicopia/blockstates/zap_stairs.json deleted file mode 100644 index 2fdbab92..00000000 --- a/src/main/resources/assets/unicopia/blockstates/zap_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 270 - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner" - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 270 - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer" - }, - "facing=east,half=bottom,shape=straight": { - "model": "unicopia:block/zap_stairs" - }, - "facing=east,half=top,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180 - }, - "facing=east,half=top,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=east,half=top,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180 - }, - "facing=east,half=top,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=east,half=top,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "x": 180 - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 180 - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 270 - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 180 - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 270 - }, - "facing=north,half=bottom,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "y": 270 - }, - "facing=north,half=top,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=north,half=top,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180 - }, - "facing=north,half=top,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=north,half=top,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180 - }, - "facing=north,half=top,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner" - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 90 - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer" - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 90 - }, - "facing=south,half=bottom,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "y": 90 - }, - "facing=south,half=top,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=south,half=top,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=south,half=top,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=south,half=top,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=south,half=top,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "x": 180, - "y": 90 - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 90 - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "y": 180 - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 90 - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "y": 180 - }, - "facing=west,half=bottom,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "y": 180 - }, - "facing=west,half=top,shape=inner_left": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=west,half=top,shape=inner_right": { - "model": "unicopia:block/zap_stairs_inner", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=west,half=top,shape=outer_left": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 180 - }, - "facing=west,half=top,shape=outer_right": { - "model": "unicopia:block/zap_stairs_outer", - "uvlock": true, - "x": 180, - "y": 270 - }, - "facing=west,half=top,shape=straight": { - "model": "unicopia:block/zap_stairs", - "uvlock": true, - "x": 180, - "y": 180 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/blockstates/zap_wood.json b/src/main/resources/assets/unicopia/blockstates/zap_wood.json deleted file mode 100644 index 30090bc9..00000000 --- a/src/main/resources/assets/unicopia/blockstates/zap_wood.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/zap_wood" - } - } -} diff --git a/src/main/resources/assets/unicopia/blockstates/zapling.json b/src/main/resources/assets/unicopia/blockstates/zapling.json deleted file mode 100644 index 02ed0968..00000000 --- a/src/main/resources/assets/unicopia/blockstates/zapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "unicopia:block/zapling" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_button.json b/src/main/resources/assets/unicopia/models/block/palm_button.json deleted file mode 100644 index d9a4064e..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_button_inventory.json b/src/main/resources/assets/unicopia/models/block/palm_button_inventory.json deleted file mode 100644 index d6481cbf..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_inventory", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_button_pressed.json b/src/main/resources/assets/unicopia/models/block/palm_button_pressed.json deleted file mode 100644 index 1f74c14e..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_pressed", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_door_bottom_left.json b/src/main/resources/assets/unicopia/models/block/palm_door_bottom_left.json deleted file mode 100644 index 8719bc87..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_door_bottom_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left", - "textures": { - "bottom": "unicopia:block/palm_door_bottom", - "top": "unicopia:block/palm_door_top" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_door_bottom_left_open.json b/src/main/resources/assets/unicopia/models/block/palm_door_bottom_left_open.json deleted file mode 100644 index e6ec3a9a..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_door_bottom_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left_open", - "textures": { - "bottom": "unicopia:block/palm_door_bottom", - "top": "unicopia:block/palm_door_top" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_door_bottom_right.json b/src/main/resources/assets/unicopia/models/block/palm_door_bottom_right.json deleted file mode 100644 index c7756ab7..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_door_bottom_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right", - "textures": { - "bottom": "unicopia:block/palm_door_bottom", - "top": "unicopia:block/palm_door_top" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_door_bottom_right_open.json b/src/main/resources/assets/unicopia/models/block/palm_door_bottom_right_open.json deleted file mode 100644 index c8ca22b8..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_door_bottom_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right_open", - "textures": { - "bottom": "unicopia:block/palm_door_bottom", - "top": "unicopia:block/palm_door_top" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_door_top_left.json b/src/main/resources/assets/unicopia/models/block/palm_door_top_left.json deleted file mode 100644 index ad96f313..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_door_top_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left", - "textures": { - "bottom": "unicopia:block/palm_door_bottom", - "top": "unicopia:block/palm_door_top" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_door_top_left_open.json b/src/main/resources/assets/unicopia/models/block/palm_door_top_left_open.json deleted file mode 100644 index cc5854f9..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_door_top_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left_open", - "textures": { - "bottom": "unicopia:block/palm_door_bottom", - "top": "unicopia:block/palm_door_top" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_door_top_right.json b/src/main/resources/assets/unicopia/models/block/palm_door_top_right.json deleted file mode 100644 index e77082de..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_door_top_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right", - "textures": { - "bottom": "unicopia:block/palm_door_bottom", - "top": "unicopia:block/palm_door_top" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_door_top_right_open.json b/src/main/resources/assets/unicopia/models/block/palm_door_top_right_open.json deleted file mode 100644 index 44dee227..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_door_top_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right_open", - "textures": { - "bottom": "unicopia:block/palm_door_bottom", - "top": "unicopia:block/palm_door_top" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_fence_gate.json b/src/main/resources/assets/unicopia/models/block/palm_fence_gate.json deleted file mode 100644 index 263f85c0..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_fence_gate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_fence_gate_open.json b/src/main/resources/assets/unicopia/models/block/palm_fence_gate_open.json deleted file mode 100644 index 179ba957..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_fence_gate_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_open", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_fence_gate_wall.json b/src/main/resources/assets/unicopia/models/block/palm_fence_gate_wall.json deleted file mode 100644 index c8c0b4a3..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_fence_gate_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_fence_gate_wall_open.json b/src/main/resources/assets/unicopia/models/block/palm_fence_gate_wall_open.json deleted file mode 100644 index 5e2fa61c..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_fence_gate_wall_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall_open", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_fence_inventory.json b/src/main/resources/assets/unicopia/models/block/palm_fence_inventory.json deleted file mode 100644 index 8c0d56e7..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_fence_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_inventory", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_fence_post.json b/src/main/resources/assets/unicopia/models/block/palm_fence_post.json deleted file mode 100644 index 36d7618a..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_fence_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_post", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_fence_side.json b/src/main/resources/assets/unicopia/models/block/palm_fence_side.json deleted file mode 100644 index d5f57dd2..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_fence_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_side", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_hanging_sign.json b/src/main/resources/assets/unicopia/models/block/palm_hanging_sign.json deleted file mode 100644 index 0186191b..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "unicopia:block/stripped_palm_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_leaves.json b/src/main/resources/assets/unicopia/models/block/palm_leaves.json deleted file mode 100644 index 0e2acec2..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "unicopia:block/palm_leaves" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_log.json b/src/main/resources/assets/unicopia/models/block/palm_log.json deleted file mode 100644 index 009b7de2..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "unicopia:block/palm_log_top", - "side": "unicopia:block/palm_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_log_horizontal.json b/src/main/resources/assets/unicopia/models/block/palm_log_horizontal.json deleted file mode 100644 index 63718a37..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_log_horizontal.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column_horizontal", - "textures": { - "end": "unicopia:block/palm_log_top", - "side": "unicopia:block/palm_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_planks.json b/src/main/resources/assets/unicopia/models/block/palm_planks.json deleted file mode 100644 index 07e952a7..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_planks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_pressure_plate.json b/src/main/resources/assets/unicopia/models/block/palm_pressure_plate.json deleted file mode 100644 index 42f57739..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_up", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_pressure_plate_down.json b/src/main/resources/assets/unicopia/models/block/palm_pressure_plate_down.json deleted file mode 100644 index c99de0c1..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_down", - "textures": { - "texture": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_sapling.json b/src/main/resources/assets/unicopia/models/block/palm_sapling.json deleted file mode 100644 index d9718e2e..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cross", - "textures": { - "cross": "unicopia:item/palm_sapling" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_sign.json b/src/main/resources/assets/unicopia/models/block/palm_sign.json deleted file mode 100644 index 3cd27604..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_slab.json b/src/main/resources/assets/unicopia/models/block/palm_slab.json deleted file mode 100644 index a878d492..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "unicopia:block/palm_planks", - "side": "unicopia:block/palm_planks", - "top": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_slab_top.json b/src/main/resources/assets/unicopia/models/block/palm_slab_top.json deleted file mode 100644 index 860ddaf6..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "unicopia:block/palm_planks", - "side": "unicopia:block/palm_planks", - "top": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_stairs.json b/src/main/resources/assets/unicopia/models/block/palm_stairs.json deleted file mode 100644 index c7b449fb..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "unicopia:block/palm_planks", - "side": "unicopia:block/palm_planks", - "top": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_stairs_inner.json b/src/main/resources/assets/unicopia/models/block/palm_stairs_inner.json deleted file mode 100644 index 2afbe717..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "unicopia:block/palm_planks", - "side": "unicopia:block/palm_planks", - "top": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_stairs_outer.json b/src/main/resources/assets/unicopia/models/block/palm_stairs_outer.json deleted file mode 100644 index ab64e431..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "unicopia:block/palm_planks", - "side": "unicopia:block/palm_planks", - "top": "unicopia:block/palm_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_trapdoor_bottom.json b/src/main/resources/assets/unicopia/models/block/palm_trapdoor_bottom.json deleted file mode 100644 index d24be742..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_trapdoor_bottom", - "textures": { - "texture": "unicopia:block/palm_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_trapdoor_open.json b/src/main/resources/assets/unicopia/models/block/palm_trapdoor_open.json deleted file mode 100644 index 2b33f3c9..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_trapdoor_open", - "textures": { - "texture": "unicopia:block/palm_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_trapdoor_top.json b/src/main/resources/assets/unicopia/models/block/palm_trapdoor_top.json deleted file mode 100644 index 58ef2dc7..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_trapdoor_top", - "textures": { - "texture": "unicopia:block/palm_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/palm_wood.json b/src/main/resources/assets/unicopia/models/block/palm_wood.json deleted file mode 100644 index 67ea6997..00000000 --- a/src/main/resources/assets/unicopia/models/block/palm_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "unicopia:block/palm_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/potted_palm_sapling.json b/src/main/resources/assets/unicopia/models/block/potted_palm_sapling.json deleted file mode 100644 index 37ca7b25..00000000 --- a/src/main/resources/assets/unicopia/models/block/potted_palm_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/flower_pot_cross", - "textures": { - "plant": "unicopia:item/palm_sapling" - } -} diff --git a/src/main/resources/assets/unicopia/models/block/potted_zapling.json b/src/main/resources/assets/unicopia/models/block/potted_zapling.json deleted file mode 100644 index 24cd445e..00000000 --- a/src/main/resources/assets/unicopia/models/block/potted_zapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/flower_pot_cross", - "textures": { - "plant": "unicopia:item/zapling" - } -} diff --git a/src/main/resources/assets/unicopia/models/block/stripped_palm_log.json b/src/main/resources/assets/unicopia/models/block/stripped_palm_log.json deleted file mode 100644 index ba3c1d65..00000000 --- a/src/main/resources/assets/unicopia/models/block/stripped_palm_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "unicopia:block/stripped_palm_log_top", - "side": "unicopia:block/stripped_palm_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/stripped_palm_log_horizontal.json b/src/main/resources/assets/unicopia/models/block/stripped_palm_log_horizontal.json deleted file mode 100644 index 68fa26c0..00000000 --- a/src/main/resources/assets/unicopia/models/block/stripped_palm_log_horizontal.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column_horizontal", - "textures": { - "end": "unicopia:block/stripped_palm_log_top", - "side": "unicopia:block/stripped_palm_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/stripped_palm_wood.json b/src/main/resources/assets/unicopia/models/block/stripped_palm_wood.json deleted file mode 100644 index 4436d592..00000000 --- a/src/main/resources/assets/unicopia/models/block/stripped_palm_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "unicopia:block/stripped_palm_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/stripped_zap_log.json b/src/main/resources/assets/unicopia/models/block/stripped_zap_log.json deleted file mode 100644 index 8aee8c31..00000000 --- a/src/main/resources/assets/unicopia/models/block/stripped_zap_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "unicopia:block/stripped_zap_log_top", - "side": "unicopia:block/stripped_zap_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/stripped_zap_log_horizontal.json b/src/main/resources/assets/unicopia/models/block/stripped_zap_log_horizontal.json deleted file mode 100644 index 533ace01..00000000 --- a/src/main/resources/assets/unicopia/models/block/stripped_zap_log_horizontal.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column_horizontal", - "textures": { - "end": "unicopia:block/stripped_zap_log_top", - "side": "unicopia:block/stripped_zap_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/stripped_zap_wood.json b/src/main/resources/assets/unicopia/models/block/stripped_zap_wood.json deleted file mode 100644 index c0b91a20..00000000 --- a/src/main/resources/assets/unicopia/models/block/stripped_zap_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "unicopia:block/stripped_zap_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_fence_gate.json b/src/main/resources/assets/unicopia/models/block/zap_fence_gate.json deleted file mode 100644 index 0a8e8157..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_fence_gate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate", - "textures": { - "texture": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_fence_gate_open.json b/src/main/resources/assets/unicopia/models/block/zap_fence_gate_open.json deleted file mode 100644 index b528c103..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_fence_gate_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_open", - "textures": { - "texture": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_fence_gate_wall.json b/src/main/resources/assets/unicopia/models/block/zap_fence_gate_wall.json deleted file mode 100644 index 7a4b18ff..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_fence_gate_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall", - "textures": { - "texture": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_fence_gate_wall_open.json b/src/main/resources/assets/unicopia/models/block/zap_fence_gate_wall_open.json deleted file mode 100644 index 594f73d1..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_fence_gate_wall_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall_open", - "textures": { - "texture": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_fence_inventory.json b/src/main/resources/assets/unicopia/models/block/zap_fence_inventory.json deleted file mode 100644 index 4972bdf0..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_fence_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_inventory", - "textures": { - "texture": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_fence_post.json b/src/main/resources/assets/unicopia/models/block/zap_fence_post.json deleted file mode 100644 index 19a87f0a..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_fence_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_post", - "textures": { - "texture": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_fence_side.json b/src/main/resources/assets/unicopia/models/block/zap_fence_side.json deleted file mode 100644 index b6d72a37..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_fence_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_side", - "textures": { - "texture": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_log.json b/src/main/resources/assets/unicopia/models/block/zap_log.json deleted file mode 100644 index e787c248..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "unicopia:block/zap_log_top", - "side": "unicopia:block/zap_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_log_horizontal.json b/src/main/resources/assets/unicopia/models/block/zap_log_horizontal.json deleted file mode 100644 index 67f2f50c..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_log_horizontal.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column_horizontal", - "textures": { - "end": "unicopia:block/zap_log_top", - "side": "unicopia:block/zap_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_planks.json b/src/main/resources/assets/unicopia/models/block/zap_planks.json deleted file mode 100644 index a3b0506c..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_planks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_slab.json b/src/main/resources/assets/unicopia/models/block/zap_slab.json deleted file mode 100644 index 019be187..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "unicopia:block/zap_planks", - "side": "unicopia:block/zap_planks", - "top": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_slab_top.json b/src/main/resources/assets/unicopia/models/block/zap_slab_top.json deleted file mode 100644 index c842f9e8..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "unicopia:block/zap_planks", - "side": "unicopia:block/zap_planks", - "top": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_stairs.json b/src/main/resources/assets/unicopia/models/block/zap_stairs.json deleted file mode 100644 index 56f63e69..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "unicopia:block/zap_planks", - "side": "unicopia:block/zap_planks", - "top": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_stairs_inner.json b/src/main/resources/assets/unicopia/models/block/zap_stairs_inner.json deleted file mode 100644 index 7653e732..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "unicopia:block/zap_planks", - "side": "unicopia:block/zap_planks", - "top": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_stairs_outer.json b/src/main/resources/assets/unicopia/models/block/zap_stairs_outer.json deleted file mode 100644 index 57424f35..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "unicopia:block/zap_planks", - "side": "unicopia:block/zap_planks", - "top": "unicopia:block/zap_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zap_wood.json b/src/main/resources/assets/unicopia/models/block/zap_wood.json deleted file mode 100644 index 5f3e076a..00000000 --- a/src/main/resources/assets/unicopia/models/block/zap_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "unicopia:block/zap_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/block/zapling.json b/src/main/resources/assets/unicopia/models/block/zapling.json deleted file mode 100644 index e630495b..00000000 --- a/src/main/resources/assets/unicopia/models/block/zapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cross", - "textures": { - "cross": "unicopia:item/zapling" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/acacia_basket.json b/src/main/resources/assets/unicopia/models/item/acacia_basket.json deleted file mode 100644 index b2d23162..00000000 --- a/src/main/resources/assets/unicopia/models/item/acacia_basket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/acacia_basket" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/acorn.json b/src/main/resources/assets/unicopia/models/item/acorn.json deleted file mode 100644 index aba8ec9a..00000000 --- a/src/main/resources/assets/unicopia/models/item/acorn.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/acorn" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/alicorn_amulet.json b/src/main/resources/assets/unicopia/models/item/alicorn_amulet.json deleted file mode 100644 index 00ae6f0b..00000000 --- a/src/main/resources/assets/unicopia/models/item/alicorn_amulet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "unicopia:item/amulet", - "textures": { - "layer0": "unicopia:item/alicorn_amulet" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/alicorn_badge.json b/src/main/resources/assets/unicopia/models/item/alicorn_badge.json deleted file mode 100644 index 53b3c08f..00000000 --- a/src/main/resources/assets/unicopia/models/item/alicorn_badge.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/alicorn_badge" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/apple_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/apple_bed_sheets.json deleted file mode 100644 index bc1ac46a..00000000 --- a/src/main/resources/assets/unicopia/models/item/apple_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/apple_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/apple_pie.json b/src/main/resources/assets/unicopia/models/item/apple_pie.json deleted file mode 100644 index ddbe809f..00000000 --- a/src/main/resources/assets/unicopia/models/item/apple_pie.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/apple_pie" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/apple_pie_hoof.json b/src/main/resources/assets/unicopia/models/item/apple_pie_hoof.json deleted file mode 100644 index ec8b8f2d..00000000 --- a/src/main/resources/assets/unicopia/models/item/apple_pie_hoof.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/apple_pie_hoof" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/apple_pie_slice.json b/src/main/resources/assets/unicopia/models/item/apple_pie_slice.json deleted file mode 100644 index b2cfc3bb..00000000 --- a/src/main/resources/assets/unicopia/models/item/apple_pie_slice.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/apple_pie_slice" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/bamboo_basket.json b/src/main/resources/assets/unicopia/models/item/bamboo_basket.json deleted file mode 100644 index d18bc6e1..00000000 --- a/src/main/resources/assets/unicopia/models/item/bamboo_basket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/bamboo_basket" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/banana.json b/src/main/resources/assets/unicopia/models/item/banana.json deleted file mode 100644 index ebc8e4a0..00000000 --- a/src/main/resources/assets/unicopia/models/item/banana.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/banana" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/barred_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/barred_bed_sheets.json deleted file mode 100644 index 259f1242..00000000 --- a/src/main/resources/assets/unicopia/models/item/barred_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/barred_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/bat_badge.json b/src/main/resources/assets/unicopia/models/item/bat_badge.json deleted file mode 100644 index a53d94a5..00000000 --- a/src/main/resources/assets/unicopia/models/item/bat_badge.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/bat_badge" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/birch_basket.json b/src/main/resources/assets/unicopia/models/item/birch_basket.json deleted file mode 100644 index 57ce4834..00000000 --- a/src/main/resources/assets/unicopia/models/item/birch_basket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/birch_basket" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/black_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/black_bed_sheets.json deleted file mode 100644 index bc7f7ba1..00000000 --- a/src/main/resources/assets/unicopia/models/item/black_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/black_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/blue_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/blue_bed_sheets.json deleted file mode 100644 index bebc30f4..00000000 --- a/src/main/resources/assets/unicopia/models/item/blue_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/blue_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/botched_gem.json b/src/main/resources/assets/unicopia/models/item/botched_gem.json deleted file mode 100644 index 7c470b43..00000000 --- a/src/main/resources/assets/unicopia/models/item/botched_gem.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/botched_gem" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/broken_alicorn_amulet.json b/src/main/resources/assets/unicopia/models/item/broken_alicorn_amulet.json deleted file mode 100644 index b9bf5700..00000000 --- a/src/main/resources/assets/unicopia/models/item/broken_alicorn_amulet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/broken_alicorn_amulet" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/broken_sunglasses.json b/src/main/resources/assets/unicopia/models/item/broken_sunglasses.json deleted file mode 100644 index 66917a41..00000000 --- a/src/main/resources/assets/unicopia/models/item/broken_sunglasses.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/broken_sunglasses" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/brown_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/brown_bed_sheets.json deleted file mode 100644 index e731713b..00000000 --- a/src/main/resources/assets/unicopia/models/item/brown_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/brown_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/burned_juice.json b/src/main/resources/assets/unicopia/models/item/burned_juice.json deleted file mode 100644 index a12a89b8..00000000 --- a/src/main/resources/assets/unicopia/models/item/burned_juice.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/burned_juice" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/burned_toast.json b/src/main/resources/assets/unicopia/models/item/burned_toast.json deleted file mode 100644 index 59b709e0..00000000 --- a/src/main/resources/assets/unicopia/models/item/burned_toast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/burned_toast" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/butterfly_spawn_egg.json b/src/main/resources/assets/unicopia/models/item/butterfly_spawn_egg.json deleted file mode 100644 index d1aaa9d6..00000000 --- a/src/main/resources/assets/unicopia/models/item/butterfly_spawn_egg.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "minecraft:item/template_spawn_egg" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/carapace.json b/src/main/resources/assets/unicopia/models/item/carapace.json deleted file mode 100644 index 80305a4a..00000000 --- a/src/main/resources/assets/unicopia/models/item/carapace.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/carapace" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/changeling_badge.json b/src/main/resources/assets/unicopia/models/item/changeling_badge.json deleted file mode 100644 index bf9829ed..00000000 --- a/src/main/resources/assets/unicopia/models/item/changeling_badge.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/changeling_badge" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/checkered_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/checkered_bed_sheets.json deleted file mode 100644 index caa3851c..00000000 --- a/src/main/resources/assets/unicopia/models/item/checkered_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/checkered_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/cherry_basket.json b/src/main/resources/assets/unicopia/models/item/cherry_basket.json deleted file mode 100644 index e7c178ef..00000000 --- a/src/main/resources/assets/unicopia/models/item/cherry_basket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/cherry_basket" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/cider.json b/src/main/resources/assets/unicopia/models/item/cider.json deleted file mode 100644 index 59978ebf..00000000 --- a/src/main/resources/assets/unicopia/models/item/cider.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "unicopia:item/mug", - "textures": { - "layer0": "unicopia:item/cider" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/clam_shell.json b/src/main/resources/assets/unicopia/models/item/clam_shell.json deleted file mode 100644 index cde6769f..00000000 --- a/src/main/resources/assets/unicopia/models/item/clam_shell.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/clam_shell" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/cloth_bed.json b/src/main/resources/assets/unicopia/models/item/cloth_bed.json index 5d06b91c..cf15d523 100644 --- a/src/main/resources/assets/unicopia/models/item/cloth_bed.json +++ b/src/main/resources/assets/unicopia/models/item/cloth_bed.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/template_bed", "textures": { - "particle": "minecraft:item/white_wool" + "particle": "minecraft:block/white_wool" } } diff --git a/src/main/resources/assets/unicopia/models/item/cloud_bed.json b/src/main/resources/assets/unicopia/models/item/cloud_bed.json index 5d06b91c..70faf964 100644 --- a/src/main/resources/assets/unicopia/models/item/cloud_bed.json +++ b/src/main/resources/assets/unicopia/models/item/cloud_bed.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/template_bed", "textures": { - "particle": "minecraft:item/white_wool" + "particle": "unicopia:block/cloud" } } diff --git a/src/main/resources/assets/unicopia/models/item/cloud_chest.json b/src/main/resources/assets/unicopia/models/item/cloud_chest.json index 74aedb05..0ff9d87b 100644 --- a/src/main/resources/assets/unicopia/models/item/cloud_chest.json +++ b/src/main/resources/assets/unicopia/models/item/cloud_chest.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/chest", "textures": { - "particle": "minecraft:item/white_wool" + "particle": "unicopia:block/cloud" } } diff --git a/src/main/resources/assets/unicopia/models/item/cooked_zap_apple.json b/src/main/resources/assets/unicopia/models/item/cooked_zap_apple.json deleted file mode 100644 index e2c131f9..00000000 --- a/src/main/resources/assets/unicopia/models/item/cooked_zap_apple.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/cooked_zap_apple" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/copper_horse_shoe.json b/src/main/resources/assets/unicopia/models/item/copper_horse_shoe.json deleted file mode 100644 index a395cc95..00000000 --- a/src/main/resources/assets/unicopia/models/item/copper_horse_shoe.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/copper_horse_shoe" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/crispy_hay_fries.json b/src/main/resources/assets/unicopia/models/item/crispy_hay_fries.json deleted file mode 100644 index 44578afe..00000000 --- a/src/main/resources/assets/unicopia/models/item/crispy_hay_fries.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/crispy_hay_fries" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/crystal_heart.json b/src/main/resources/assets/unicopia/models/item/crystal_heart.json deleted file mode 100644 index a1c5d185..00000000 --- a/src/main/resources/assets/unicopia/models/item/crystal_heart.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/crystal_heart" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/crystal_shard.json b/src/main/resources/assets/unicopia/models/item/crystal_shard.json deleted file mode 100644 index df4cbc3d..00000000 --- a/src/main/resources/assets/unicopia/models/item/crystal_shard.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/crystal_shard" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/curing_joke.json b/src/main/resources/assets/unicopia/models/item/curing_joke.json deleted file mode 100644 index 65c5811a..00000000 --- a/src/main/resources/assets/unicopia/models/item/curing_joke.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/curing_joke" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/cyan_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/cyan_bed_sheets.json deleted file mode 100644 index 21cbb8fd..00000000 --- a/src/main/resources/assets/unicopia/models/item/cyan_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/cyan_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/daffodil_daisy_sandwich.json b/src/main/resources/assets/unicopia/models/item/daffodil_daisy_sandwich.json deleted file mode 100644 index 68ee4c6a..00000000 --- a/src/main/resources/assets/unicopia/models/item/daffodil_daisy_sandwich.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/daffodil_daisy_sandwich" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/dark_oak_basket.json b/src/main/resources/assets/unicopia/models/item/dark_oak_basket.json deleted file mode 100644 index 01d6ef2e..00000000 --- a/src/main/resources/assets/unicopia/models/item/dark_oak_basket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/dark_oak_basket" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/diamond_polearm.json b/src/main/resources/assets/unicopia/models/item/diamond_polearm.json deleted file mode 100644 index d4fa68f0..00000000 --- a/src/main/resources/assets/unicopia/models/item/diamond_polearm.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parent": "item/trident_in_hand", - "textures": { - "particle": "unicopia:item/diamond_polearm" - }, - "overrides": [ - { - "predicate": { - "throwing": 1 - }, - "model": "unicopia:item/diamond_polearm_throwing" - } - ] -} diff --git a/src/main/resources/assets/unicopia/models/item/diamond_polearm_in_inventory.json b/src/main/resources/assets/unicopia/models/item/diamond_polearm_in_inventory.json deleted file mode 100644 index d2bb0d76..00000000 --- a/src/main/resources/assets/unicopia/models/item/diamond_polearm_in_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/diamond_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/diamond_polearm_throwing.json b/src/main/resources/assets/unicopia/models/item/diamond_polearm_throwing.json deleted file mode 100644 index c23fa56c..00000000 --- a/src/main/resources/assets/unicopia/models/item/diamond_polearm_throwing.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/trident_throwing", - "textures": { - "particle": "unicopia:item/diamond_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/dragon_breath_scroll.json b/src/main/resources/assets/unicopia/models/item/dragon_breath_scroll.json deleted file mode 100644 index b834492d..00000000 --- a/src/main/resources/assets/unicopia/models/item/dragon_breath_scroll.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/dragon_breath_scroll" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/earth_badge.json b/src/main/resources/assets/unicopia/models/item/earth_badge.json deleted file mode 100644 index 5a6fec00..00000000 --- a/src/main/resources/assets/unicopia/models/item/earth_badge.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/earth_badge" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/empty_jar.json b/src/main/resources/assets/unicopia/models/item/empty_jar.json deleted file mode 100644 index 7df21561..00000000 --- a/src/main/resources/assets/unicopia/models/item/empty_jar.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/empty_jar" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/friendship_bracelet.json b/src/main/resources/assets/unicopia/models/item/friendship_bracelet.json deleted file mode 100644 index 06fa4fad..00000000 --- a/src/main/resources/assets/unicopia/models/item/friendship_bracelet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/friendship_bracelet" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/giant_balloon.json b/src/main/resources/assets/unicopia/models/item/giant_balloon.json deleted file mode 100644 index 4df680ac..00000000 --- a/src/main/resources/assets/unicopia/models/item/giant_balloon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/giant_balloon" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/golden_feather.json b/src/main/resources/assets/unicopia/models/item/golden_feather.json deleted file mode 100644 index 4f6dd920..00000000 --- a/src/main/resources/assets/unicopia/models/item/golden_feather.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/golden_feather" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/golden_horse_shoe.json b/src/main/resources/assets/unicopia/models/item/golden_horse_shoe.json deleted file mode 100644 index 0b035f8a..00000000 --- a/src/main/resources/assets/unicopia/models/item/golden_horse_shoe.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/golden_horse_shoe" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/golden_oak_seeds.json b/src/main/resources/assets/unicopia/models/item/golden_oak_seeds.json deleted file mode 100644 index 16cb1fc6..00000000 --- a/src/main/resources/assets/unicopia/models/item/golden_oak_seeds.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/golden_oak_seeds" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/golden_polearm.json b/src/main/resources/assets/unicopia/models/item/golden_polearm.json deleted file mode 100644 index d5876f57..00000000 --- a/src/main/resources/assets/unicopia/models/item/golden_polearm.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parent": "item/trident_in_hand", - "textures": { - "particle": "unicopia:item/golden_polearm" - }, - "overrides": [ - { - "predicate": { - "throwing": 1 - }, - "model": "unicopia:item/golden_polearm_throwing" - } - ] -} diff --git a/src/main/resources/assets/unicopia/models/item/golden_polearm_in_inventory.json b/src/main/resources/assets/unicopia/models/item/golden_polearm_in_inventory.json deleted file mode 100644 index a368786e..00000000 --- a/src/main/resources/assets/unicopia/models/item/golden_polearm_in_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/golden_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/golden_polearm_throwing.json b/src/main/resources/assets/unicopia/models/item/golden_polearm_throwing.json deleted file mode 100644 index d36f86fe..00000000 --- a/src/main/resources/assets/unicopia/models/item/golden_polearm_throwing.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/trident_throwing", - "textures": { - "particle": "unicopia:item/golden_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/golden_wing.json b/src/main/resources/assets/unicopia/models/item/golden_wing.json deleted file mode 100644 index c44f184f..00000000 --- a/src/main/resources/assets/unicopia/models/item/golden_wing.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/golden_wing" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/gray_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/gray_bed_sheets.json deleted file mode 100644 index d14789b7..00000000 --- a/src/main/resources/assets/unicopia/models/item/gray_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/gray_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/green_apple.json b/src/main/resources/assets/unicopia/models/item/green_apple.json deleted file mode 100644 index c0ce5d05..00000000 --- a/src/main/resources/assets/unicopia/models/item/green_apple.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/green_apple" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/green_apple_seeds.json b/src/main/resources/assets/unicopia/models/item/green_apple_seeds.json deleted file mode 100644 index 8c88f5e8..00000000 --- a/src/main/resources/assets/unicopia/models/item/green_apple_seeds.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/green_apple_seeds" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/green_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/green_bed_sheets.json deleted file mode 100644 index 6675e779..00000000 --- a/src/main/resources/assets/unicopia/models/item/green_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/green_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/grogars_bell.json b/src/main/resources/assets/unicopia/models/item/grogars_bell.json deleted file mode 100644 index 3b933219..00000000 --- a/src/main/resources/assets/unicopia/models/item/grogars_bell.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/grogars_bell" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/gryphon_feather.json b/src/main/resources/assets/unicopia/models/item/gryphon_feather.json deleted file mode 100644 index af5d1671..00000000 --- a/src/main/resources/assets/unicopia/models/item/gryphon_feather.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/gryphon_feather" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/hay_burger.json b/src/main/resources/assets/unicopia/models/item/hay_burger.json deleted file mode 100644 index 21dd88c2..00000000 --- a/src/main/resources/assets/unicopia/models/item/hay_burger.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/hay_burger" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/hay_fries.json b/src/main/resources/assets/unicopia/models/item/hay_fries.json deleted file mode 100644 index 7634cbb5..00000000 --- a/src/main/resources/assets/unicopia/models/item/hay_fries.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/hay_fries" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/hippogriff_badge.json b/src/main/resources/assets/unicopia/models/item/hippogriff_badge.json deleted file mode 100644 index c37d99ce..00000000 --- a/src/main/resources/assets/unicopia/models/item/hippogriff_badge.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/hippogriff_badge" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/horse_shoe_fries.json b/src/main/resources/assets/unicopia/models/item/horse_shoe_fries.json deleted file mode 100644 index 2dcb13b0..00000000 --- a/src/main/resources/assets/unicopia/models/item/horse_shoe_fries.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/horse_shoe_fries" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/imported_oats.json b/src/main/resources/assets/unicopia/models/item/imported_oats.json deleted file mode 100644 index 554311e8..00000000 --- a/src/main/resources/assets/unicopia/models/item/imported_oats.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/imported_oats" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/iron_horse_shoe.json b/src/main/resources/assets/unicopia/models/item/iron_horse_shoe.json deleted file mode 100644 index 1d8fc483..00000000 --- a/src/main/resources/assets/unicopia/models/item/iron_horse_shoe.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/iron_horse_shoe" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/iron_polearm.json b/src/main/resources/assets/unicopia/models/item/iron_polearm.json deleted file mode 100644 index 50ff1f53..00000000 --- a/src/main/resources/assets/unicopia/models/item/iron_polearm.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parent": "item/trident_in_hand", - "textures": { - "particle": "unicopia:item/iron_polearm" - }, - "overrides": [ - { - "predicate": { - "throwing": 1 - }, - "model": "unicopia:item/iron_polearm_throwing" - } - ] -} diff --git a/src/main/resources/assets/unicopia/models/item/iron_polearm_in_inventory.json b/src/main/resources/assets/unicopia/models/item/iron_polearm_in_inventory.json deleted file mode 100644 index e1619d5e..00000000 --- a/src/main/resources/assets/unicopia/models/item/iron_polearm_in_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/iron_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/iron_polearm_throwing.json b/src/main/resources/assets/unicopia/models/item/iron_polearm_throwing.json deleted file mode 100644 index 50d9c2e1..00000000 --- a/src/main/resources/assets/unicopia/models/item/iron_polearm_throwing.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/trident_throwing", - "textures": { - "particle": "unicopia:item/iron_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/jam_toast.json b/src/main/resources/assets/unicopia/models/item/jam_toast.json deleted file mode 100644 index 1aac625b..00000000 --- a/src/main/resources/assets/unicopia/models/item/jam_toast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/jam_toast" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/juice.json b/src/main/resources/assets/unicopia/models/item/juice.json deleted file mode 100644 index 616a1ef5..00000000 --- a/src/main/resources/assets/unicopia/models/item/juice.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/juice" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/jungle_basket.json b/src/main/resources/assets/unicopia/models/item/jungle_basket.json deleted file mode 100644 index d7bbc875..00000000 --- a/src/main/resources/assets/unicopia/models/item/jungle_basket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/jungle_basket" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/kelp_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/kelp_bed_sheets.json deleted file mode 100644 index 8234a2b0..00000000 --- a/src/main/resources/assets/unicopia/models/item/kelp_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/kelp_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/kirin_badge.json b/src/main/resources/assets/unicopia/models/item/kirin_badge.json deleted file mode 100644 index 72d0e719..00000000 --- a/src/main/resources/assets/unicopia/models/item/kirin_badge.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/kirin_badge" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/light_blue_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/light_blue_bed_sheets.json deleted file mode 100644 index 362dbebd..00000000 --- a/src/main/resources/assets/unicopia/models/item/light_blue_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/light_blue_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/light_gray_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/light_gray_bed_sheets.json deleted file mode 100644 index e5aa977e..00000000 --- a/src/main/resources/assets/unicopia/models/item/light_gray_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/light_gray_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/lightning_jar.json b/src/main/resources/assets/unicopia/models/item/lightning_jar.json deleted file mode 100644 index a9255315..00000000 --- a/src/main/resources/assets/unicopia/models/item/lightning_jar.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/lightning_jar" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/lime_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/lime_bed_sheets.json deleted file mode 100644 index 0b5188f0..00000000 --- a/src/main/resources/assets/unicopia/models/item/lime_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/lime_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/loot_bug_spawn_egg.json b/src/main/resources/assets/unicopia/models/item/loot_bug_spawn_egg.json deleted file mode 100644 index d1aaa9d6..00000000 --- a/src/main/resources/assets/unicopia/models/item/loot_bug_spawn_egg.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "minecraft:item/template_spawn_egg" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/love_bottle.json b/src/main/resources/assets/unicopia/models/item/love_bottle.json deleted file mode 100644 index 49b88b10..00000000 --- a/src/main/resources/assets/unicopia/models/item/love_bottle.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "unicopia:item/mug", - "textures": { - "layer0": "unicopia:item/love_bottle" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/love_bucket.json b/src/main/resources/assets/unicopia/models/item/love_bucket.json deleted file mode 100644 index 0d627507..00000000 --- a/src/main/resources/assets/unicopia/models/item/love_bucket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "unicopia:item/mug", - "textures": { - "layer0": "unicopia:item/love_bucket" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/love_mug.json b/src/main/resources/assets/unicopia/models/item/love_mug.json deleted file mode 100644 index f4260ce3..00000000 --- a/src/main/resources/assets/unicopia/models/item/love_mug.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "unicopia:item/mug", - "textures": { - "layer0": "unicopia:item/love_mug" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/magenta_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/magenta_bed_sheets.json deleted file mode 100644 index 3af7061c..00000000 --- a/src/main/resources/assets/unicopia/models/item/magenta_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/magenta_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/mango.json b/src/main/resources/assets/unicopia/models/item/mango.json deleted file mode 100644 index eba4d587..00000000 --- a/src/main/resources/assets/unicopia/models/item/mango.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/mango" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/mangrove_basket.json b/src/main/resources/assets/unicopia/models/item/mangrove_basket.json deleted file mode 100644 index a0f15f37..00000000 --- a/src/main/resources/assets/unicopia/models/item/mangrove_basket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/mangrove_basket" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/meadowbrooks_staff.json b/src/main/resources/assets/unicopia/models/item/meadowbrooks_staff.json deleted file mode 100644 index 1a3489bb..00000000 --- a/src/main/resources/assets/unicopia/models/item/meadowbrooks_staff.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "unicopia:item/handheld_staff", - "textures": { - "layer0": "unicopia:item/meadowbrooks_staff" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/muffin.json b/src/main/resources/assets/unicopia/models/item/muffin.json deleted file mode 100644 index 19192a75..00000000 --- a/src/main/resources/assets/unicopia/models/item/muffin.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/muffin" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/music_disc_crusade.json b/src/main/resources/assets/unicopia/models/item/music_disc_crusade.json deleted file mode 100644 index b90c915a..00000000 --- a/src/main/resources/assets/unicopia/models/item/music_disc_crusade.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/music_disc_crusade" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/music_disc_funk.json b/src/main/resources/assets/unicopia/models/item/music_disc_funk.json deleted file mode 100644 index 2e659fa5..00000000 --- a/src/main/resources/assets/unicopia/models/item/music_disc_funk.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/music_disc_funk" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/music_disc_pet.json b/src/main/resources/assets/unicopia/models/item/music_disc_pet.json deleted file mode 100644 index fd19ed13..00000000 --- a/src/main/resources/assets/unicopia/models/item/music_disc_pet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/music_disc_pet" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/music_disc_popular.json b/src/main/resources/assets/unicopia/models/item/music_disc_popular.json deleted file mode 100644 index aed62677..00000000 --- a/src/main/resources/assets/unicopia/models/item/music_disc_popular.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/music_disc_popular" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/netherite_horse_shoe.json b/src/main/resources/assets/unicopia/models/item/netherite_horse_shoe.json deleted file mode 100644 index 3138e8d6..00000000 --- a/src/main/resources/assets/unicopia/models/item/netherite_horse_shoe.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/netherite_horse_shoe" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/netherite_polearm.json b/src/main/resources/assets/unicopia/models/item/netherite_polearm.json deleted file mode 100644 index e9021ea1..00000000 --- a/src/main/resources/assets/unicopia/models/item/netherite_polearm.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parent": "item/trident_in_hand", - "textures": { - "particle": "unicopia:item/netherite_polearm" - }, - "overrides": [ - { - "predicate": { - "throwing": 1 - }, - "model": "unicopia:item/netherite_polearm_throwing" - } - ] -} diff --git a/src/main/resources/assets/unicopia/models/item/netherite_polearm_in_inventory.json b/src/main/resources/assets/unicopia/models/item/netherite_polearm_in_inventory.json deleted file mode 100644 index 1abde3fe..00000000 --- a/src/main/resources/assets/unicopia/models/item/netherite_polearm_in_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/netherite_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/netherite_polearm_throwing.json b/src/main/resources/assets/unicopia/models/item/netherite_polearm_throwing.json deleted file mode 100644 index 39c652a5..00000000 --- a/src/main/resources/assets/unicopia/models/item/netherite_polearm_throwing.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/trident_throwing", - "textures": { - "particle": "unicopia:item/netherite_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/oak_basket.json b/src/main/resources/assets/unicopia/models/item/oak_basket.json deleted file mode 100644 index 6302a186..00000000 --- a/src/main/resources/assets/unicopia/models/item/oak_basket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/oak_basket" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/oat_seeds.json b/src/main/resources/assets/unicopia/models/item/oat_seeds.json deleted file mode 100644 index 653d2e0f..00000000 --- a/src/main/resources/assets/unicopia/models/item/oat_seeds.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/oat_seeds" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/oatmeal.json b/src/main/resources/assets/unicopia/models/item/oatmeal.json deleted file mode 100644 index 1975a5aa..00000000 --- a/src/main/resources/assets/unicopia/models/item/oatmeal.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/oatmeal" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/oats.json b/src/main/resources/assets/unicopia/models/item/oats.json deleted file mode 100644 index b2928654..00000000 --- a/src/main/resources/assets/unicopia/models/item/oats.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/oats" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/orange_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/orange_bed_sheets.json deleted file mode 100644 index 3744c6d5..00000000 --- a/src/main/resources/assets/unicopia/models/item/orange_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/orange_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/palm_basket.json b/src/main/resources/assets/unicopia/models/item/palm_basket.json deleted file mode 100644 index dea1c792..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_basket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/palm_basket" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/palm_boat.json b/src/main/resources/assets/unicopia/models/item/palm_boat.json deleted file mode 100644 index 4ff232f9..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "unicopia:item/palm_boat" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_button.json b/src/main/resources/assets/unicopia/models/item/palm_button.json deleted file mode 100644 index 27ed0c25..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/palm_button_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_chest_boat.json b/src/main/resources/assets/unicopia/models/item/palm_chest_boat.json deleted file mode 100644 index f6ea0dc0..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_chest_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "unicopia:item/palm_chest_boat" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_door.json b/src/main/resources/assets/unicopia/models/item/palm_door.json deleted file mode 100644 index 37111865..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "unicopia:item/palm_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_fence.json b/src/main/resources/assets/unicopia/models/item/palm_fence.json deleted file mode 100644 index b25a044c..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/palm_fence_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_fence_gate.json b/src/main/resources/assets/unicopia/models/item/palm_fence_gate.json deleted file mode 100644 index bf330530..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/palm_fence_gate" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_hanging_sign.json b/src/main/resources/assets/unicopia/models/item/palm_hanging_sign.json deleted file mode 100644 index c3fed3ae..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_hanging_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "unicopia:item/palm_hanging_sign" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_leaves.json b/src/main/resources/assets/unicopia/models/item/palm_leaves.json deleted file mode 100644 index 72642199..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/palm_leaves" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_log.json b/src/main/resources/assets/unicopia/models/item/palm_log.json deleted file mode 100644 index 90c7e485..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/palm_log" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_planks.json b/src/main/resources/assets/unicopia/models/item/palm_planks.json deleted file mode 100644 index ed53adda..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/palm_planks" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_pressure_plate.json b/src/main/resources/assets/unicopia/models/item/palm_pressure_plate.json deleted file mode 100644 index 0ccd8787..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/palm_pressure_plate" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_sapling.json b/src/main/resources/assets/unicopia/models/item/palm_sapling.json deleted file mode 100644 index 360c3260..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/palm_sapling" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/palm_sign.json b/src/main/resources/assets/unicopia/models/item/palm_sign.json deleted file mode 100644 index 9c622f85..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "unicopia:item/palm_sign" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_slab.json b/src/main/resources/assets/unicopia/models/item/palm_slab.json deleted file mode 100644 index f56bc668..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/palm_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_stairs.json b/src/main/resources/assets/unicopia/models/item/palm_stairs.json deleted file mode 100644 index 6e961b60..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/palm_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_trapdoor.json b/src/main/resources/assets/unicopia/models/item/palm_trapdoor.json deleted file mode 100644 index 32193397..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/palm_trapdoor_bottom" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/palm_wood.json b/src/main/resources/assets/unicopia/models/item/palm_wood.json deleted file mode 100644 index d453bdfd..00000000 --- a/src/main/resources/assets/unicopia/models/item/palm_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/palm_wood" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/pearl_necklace.json b/src/main/resources/assets/unicopia/models/item/pearl_necklace.json deleted file mode 100644 index 8716891e..00000000 --- a/src/main/resources/assets/unicopia/models/item/pearl_necklace.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "unicopia:item/amulet", - "textures": { - "layer0": "unicopia:item/pearl_necklace" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/pebbles.json b/src/main/resources/assets/unicopia/models/item/pebbles.json deleted file mode 100644 index b97fe49f..00000000 --- a/src/main/resources/assets/unicopia/models/item/pebbles.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/pebbles" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/pegasus_amulet.json b/src/main/resources/assets/unicopia/models/item/pegasus_amulet.json deleted file mode 100644 index af01c043..00000000 --- a/src/main/resources/assets/unicopia/models/item/pegasus_amulet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "unicopia:item/amulet", - "textures": { - "layer0": "unicopia:item/pegasus_amulet" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/pegasus_badge.json b/src/main/resources/assets/unicopia/models/item/pegasus_badge.json deleted file mode 100644 index ab10dde8..00000000 --- a/src/main/resources/assets/unicopia/models/item/pegasus_badge.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/pegasus_badge" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/pegasus_feather.json b/src/main/resources/assets/unicopia/models/item/pegasus_feather.json deleted file mode 100644 index 526fd2aa..00000000 --- a/src/main/resources/assets/unicopia/models/item/pegasus_feather.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/pegasus_feather" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/pinecone.json b/src/main/resources/assets/unicopia/models/item/pinecone.json deleted file mode 100644 index 1d72942f..00000000 --- a/src/main/resources/assets/unicopia/models/item/pinecone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/pinecone" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/pink_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/pink_bed_sheets.json deleted file mode 100644 index e5a20bc3..00000000 --- a/src/main/resources/assets/unicopia/models/item/pink_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/pink_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/purple_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/purple_bed_sheets.json deleted file mode 100644 index 19c466aa..00000000 --- a/src/main/resources/assets/unicopia/models/item/purple_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/purple_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/rain_cloud_jar.json b/src/main/resources/assets/unicopia/models/item/rain_cloud_jar.json deleted file mode 100644 index 46f325d2..00000000 --- a/src/main/resources/assets/unicopia/models/item/rain_cloud_jar.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/rain_cloud_jar" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/rainbow_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/rainbow_bed_sheets.json deleted file mode 100644 index 2cea2b40..00000000 --- a/src/main/resources/assets/unicopia/models/item/rainbow_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/rainbow_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/rainbow_bpw_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/rainbow_bpw_bed_sheets.json deleted file mode 100644 index 7930b725..00000000 --- a/src/main/resources/assets/unicopia/models/item/rainbow_bpw_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/rainbow_bpw_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/rainbow_bpy_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/rainbow_bpy_bed_sheets.json deleted file mode 100644 index 50c3f6c4..00000000 --- a/src/main/resources/assets/unicopia/models/item/rainbow_bpy_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/rainbow_bpy_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/rainbow_pbg_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/rainbow_pbg_bed_sheets.json deleted file mode 100644 index 0b4d249f..00000000 --- a/src/main/resources/assets/unicopia/models/item/rainbow_pbg_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/rainbow_pbg_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/rainbow_pwr_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/rainbow_pwr_bed_sheets.json deleted file mode 100644 index 94dd563f..00000000 --- a/src/main/resources/assets/unicopia/models/item/rainbow_pwr_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/rainbow_pwr_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/red_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/red_bed_sheets.json deleted file mode 100644 index 7594a935..00000000 --- a/src/main/resources/assets/unicopia/models/item/red_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/red_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/rock.json b/src/main/resources/assets/unicopia/models/item/rock.json deleted file mode 100644 index f959182a..00000000 --- a/src/main/resources/assets/unicopia/models/item/rock.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/rock" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/rock_stew.json b/src/main/resources/assets/unicopia/models/item/rock_stew.json deleted file mode 100644 index 632b6863..00000000 --- a/src/main/resources/assets/unicopia/models/item/rock_stew.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/rock_stew" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/rotten_apple.json b/src/main/resources/assets/unicopia/models/item/rotten_apple.json deleted file mode 100644 index 19a75b16..00000000 --- a/src/main/resources/assets/unicopia/models/item/rotten_apple.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/rotten_apple" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/salt_cube.json b/src/main/resources/assets/unicopia/models/item/salt_cube.json deleted file mode 100644 index 6fab94dd..00000000 --- a/src/main/resources/assets/unicopia/models/item/salt_cube.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/salt_cube" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/scallop_shell.json b/src/main/resources/assets/unicopia/models/item/scallop_shell.json deleted file mode 100644 index 779ff3eb..00000000 --- a/src/main/resources/assets/unicopia/models/item/scallop_shell.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/scallop_shell" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/shelly.json b/src/main/resources/assets/unicopia/models/item/shelly.json deleted file mode 100644 index 9d5976c3..00000000 --- a/src/main/resources/assets/unicopia/models/item/shelly.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/shelly" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/sour_apple.json b/src/main/resources/assets/unicopia/models/item/sour_apple.json deleted file mode 100644 index a1050863..00000000 --- a/src/main/resources/assets/unicopia/models/item/sour_apple.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/sour_apple" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/sour_apple_seeds.json b/src/main/resources/assets/unicopia/models/item/sour_apple_seeds.json deleted file mode 100644 index aaf85db0..00000000 --- a/src/main/resources/assets/unicopia/models/item/sour_apple_seeds.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/sour_apple_seeds" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/spellbook.json b/src/main/resources/assets/unicopia/models/item/spellbook.json deleted file mode 100644 index 2f2a4302..00000000 --- a/src/main/resources/assets/unicopia/models/item/spellbook.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/spellbook" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/spruce_basket.json b/src/main/resources/assets/unicopia/models/item/spruce_basket.json deleted file mode 100644 index 3ab54be5..00000000 --- a/src/main/resources/assets/unicopia/models/item/spruce_basket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/spruce_basket" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/stone_polearm.json b/src/main/resources/assets/unicopia/models/item/stone_polearm.json deleted file mode 100644 index fc92f268..00000000 --- a/src/main/resources/assets/unicopia/models/item/stone_polearm.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parent": "item/trident_in_hand", - "textures": { - "particle": "unicopia:item/stone_polearm" - }, - "overrides": [ - { - "predicate": { - "throwing": 1 - }, - "model": "unicopia:item/stone_polearm_throwing" - } - ] -} diff --git a/src/main/resources/assets/unicopia/models/item/stone_polearm_in_inventory.json b/src/main/resources/assets/unicopia/models/item/stone_polearm_in_inventory.json deleted file mode 100644 index 2e9256ee..00000000 --- a/src/main/resources/assets/unicopia/models/item/stone_polearm_in_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/stone_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/stone_polearm_throwing.json b/src/main/resources/assets/unicopia/models/item/stone_polearm_throwing.json deleted file mode 100644 index 3e82373a..00000000 --- a/src/main/resources/assets/unicopia/models/item/stone_polearm_throwing.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/trident_throwing", - "textures": { - "particle": "unicopia:item/stone_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/storm_cloud_jar.json b/src/main/resources/assets/unicopia/models/item/storm_cloud_jar.json deleted file mode 100644 index a1af2ea1..00000000 --- a/src/main/resources/assets/unicopia/models/item/storm_cloud_jar.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/storm_cloud_jar" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/stripped_palm_log.json b/src/main/resources/assets/unicopia/models/item/stripped_palm_log.json deleted file mode 100644 index f22f8113..00000000 --- a/src/main/resources/assets/unicopia/models/item/stripped_palm_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/stripped_palm_log" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/stripped_palm_wood.json b/src/main/resources/assets/unicopia/models/item/stripped_palm_wood.json deleted file mode 100644 index 1208e15f..00000000 --- a/src/main/resources/assets/unicopia/models/item/stripped_palm_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/stripped_palm_wood" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/stripped_zap_log.json b/src/main/resources/assets/unicopia/models/item/stripped_zap_log.json deleted file mode 100644 index 808e8d26..00000000 --- a/src/main/resources/assets/unicopia/models/item/stripped_zap_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/stripped_zap_log" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/stripped_zap_wood.json b/src/main/resources/assets/unicopia/models/item/stripped_zap_wood.json deleted file mode 100644 index f1d170f0..00000000 --- a/src/main/resources/assets/unicopia/models/item/stripped_zap_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/stripped_zap_wood" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/sweet_apple.json b/src/main/resources/assets/unicopia/models/item/sweet_apple.json deleted file mode 100644 index bfb72305..00000000 --- a/src/main/resources/assets/unicopia/models/item/sweet_apple.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/sweet_apple" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/sweet_apple_seeds.json b/src/main/resources/assets/unicopia/models/item/sweet_apple_seeds.json deleted file mode 100644 index cdbcc586..00000000 --- a/src/main/resources/assets/unicopia/models/item/sweet_apple_seeds.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/sweet_apple_seeds" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/amulet.json b/src/main/resources/assets/unicopia/models/item/template_amulet.json similarity index 100% rename from src/main/resources/assets/unicopia/models/item/amulet.json rename to src/main/resources/assets/unicopia/models/item/template_amulet.json diff --git a/src/main/resources/assets/unicopia/models/item/mug.json b/src/main/resources/assets/unicopia/models/item/template_mug.json similarity index 100% rename from src/main/resources/assets/unicopia/models/item/mug.json rename to src/main/resources/assets/unicopia/models/item/template_mug.json diff --git a/src/main/resources/assets/unicopia/models/item/toast.json b/src/main/resources/assets/unicopia/models/item/toast.json deleted file mode 100644 index 8d792a18..00000000 --- a/src/main/resources/assets/unicopia/models/item/toast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/toast" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/tom.json b/src/main/resources/assets/unicopia/models/item/tom.json deleted file mode 100644 index c22e6ac2..00000000 --- a/src/main/resources/assets/unicopia/models/item/tom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/tom" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/turret_shell.json b/src/main/resources/assets/unicopia/models/item/turret_shell.json deleted file mode 100644 index 24bf2c41..00000000 --- a/src/main/resources/assets/unicopia/models/item/turret_shell.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/turret_shell" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/unicorn_amulet.json b/src/main/resources/assets/unicopia/models/item/unicorn_amulet.json deleted file mode 100644 index 34d6c7ea..00000000 --- a/src/main/resources/assets/unicopia/models/item/unicorn_amulet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "unicopia:item/amulet", - "textures": { - "layer0": "unicopia:item/unicorn_amulet" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/unicorn_badge.json b/src/main/resources/assets/unicopia/models/item/unicorn_badge.json deleted file mode 100644 index 92eefb40..00000000 --- a/src/main/resources/assets/unicopia/models/item/unicorn_badge.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/unicorn_badge" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/waxed_stripped_zap_log.json b/src/main/resources/assets/unicopia/models/item/waxed_stripped_zap_log.json deleted file mode 100644 index 808e8d26..00000000 --- a/src/main/resources/assets/unicopia/models/item/waxed_stripped_zap_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/stripped_zap_log" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/waxed_stripped_zap_wood.json b/src/main/resources/assets/unicopia/models/item/waxed_stripped_zap_wood.json deleted file mode 100644 index f1d170f0..00000000 --- a/src/main/resources/assets/unicopia/models/item/waxed_stripped_zap_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/stripped_zap_wood" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/waxed_zap_fence.json b/src/main/resources/assets/unicopia/models/item/waxed_zap_fence.json deleted file mode 100644 index c3ae00eb..00000000 --- a/src/main/resources/assets/unicopia/models/item/waxed_zap_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_fence_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/waxed_zap_fence_gate.json b/src/main/resources/assets/unicopia/models/item/waxed_zap_fence_gate.json deleted file mode 100644 index cb3f2d6c..00000000 --- a/src/main/resources/assets/unicopia/models/item/waxed_zap_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_fence_gate" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/waxed_zap_log.json b/src/main/resources/assets/unicopia/models/item/waxed_zap_log.json deleted file mode 100644 index 13676b25..00000000 --- a/src/main/resources/assets/unicopia/models/item/waxed_zap_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_log" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/waxed_zap_planks.json b/src/main/resources/assets/unicopia/models/item/waxed_zap_planks.json deleted file mode 100644 index 67af01e5..00000000 --- a/src/main/resources/assets/unicopia/models/item/waxed_zap_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_planks" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/waxed_zap_slab.json b/src/main/resources/assets/unicopia/models/item/waxed_zap_slab.json deleted file mode 100644 index f4b16226..00000000 --- a/src/main/resources/assets/unicopia/models/item/waxed_zap_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/waxed_zap_stairs.json b/src/main/resources/assets/unicopia/models/item/waxed_zap_stairs.json deleted file mode 100644 index 1a16895f..00000000 --- a/src/main/resources/assets/unicopia/models/item/waxed_zap_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/waxed_zap_wood.json b/src/main/resources/assets/unicopia/models/item/waxed_zap_wood.json deleted file mode 100644 index 31ae309b..00000000 --- a/src/main/resources/assets/unicopia/models/item/waxed_zap_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_wood" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/weird_rock.json b/src/main/resources/assets/unicopia/models/item/weird_rock.json deleted file mode 100644 index e35829c0..00000000 --- a/src/main/resources/assets/unicopia/models/item/weird_rock.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/weird_rock" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/wheat_worms.json b/src/main/resources/assets/unicopia/models/item/wheat_worms.json deleted file mode 100644 index b5dd6e0f..00000000 --- a/src/main/resources/assets/unicopia/models/item/wheat_worms.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/wheat_worms" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/wooden_polearm.json b/src/main/resources/assets/unicopia/models/item/wooden_polearm.json deleted file mode 100644 index fa5b2759..00000000 --- a/src/main/resources/assets/unicopia/models/item/wooden_polearm.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parent": "item/trident_in_hand", - "textures": { - "particle": "unicopia:item/wooden_polearm" - }, - "overrides": [ - { - "predicate": { - "throwing": 1 - }, - "model": "unicopia:item/wooden_polearm_throwing" - } - ] -} diff --git a/src/main/resources/assets/unicopia/models/item/wooden_polearm_in_inventory.json b/src/main/resources/assets/unicopia/models/item/wooden_polearm_in_inventory.json deleted file mode 100644 index 6dd937b6..00000000 --- a/src/main/resources/assets/unicopia/models/item/wooden_polearm_in_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/wooden_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/wooden_polearm_throwing.json b/src/main/resources/assets/unicopia/models/item/wooden_polearm_throwing.json deleted file mode 100644 index 8f087c5d..00000000 --- a/src/main/resources/assets/unicopia/models/item/wooden_polearm_throwing.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/trident_throwing", - "textures": { - "particle": "unicopia:item/wooden_polearm" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/yellow_bed_sheets.json b/src/main/resources/assets/unicopia/models/item/yellow_bed_sheets.json deleted file mode 100644 index 28d94756..00000000 --- a/src/main/resources/assets/unicopia/models/item/yellow_bed_sheets.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/yellow_bed_sheets" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/zap_apple.json b/src/main/resources/assets/unicopia/models/item/zap_apple.json deleted file mode 100644 index cf9e96a7..00000000 --- a/src/main/resources/assets/unicopia/models/item/zap_apple.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/zap_apple" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/zap_apple_jam_jar.json b/src/main/resources/assets/unicopia/models/item/zap_apple_jam_jar.json deleted file mode 100644 index 394030ba..00000000 --- a/src/main/resources/assets/unicopia/models/item/zap_apple_jam_jar.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/zap_apple_jam_jar" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/zap_bulb.json b/src/main/resources/assets/unicopia/models/item/zap_bulb.json deleted file mode 100644 index 0fce5058..00000000 --- a/src/main/resources/assets/unicopia/models/item/zap_bulb.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/zap_bulb" - } -} diff --git a/src/main/resources/assets/unicopia/models/item/zap_fence.json b/src/main/resources/assets/unicopia/models/item/zap_fence.json deleted file mode 100644 index c3ae00eb..00000000 --- a/src/main/resources/assets/unicopia/models/item/zap_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_fence_inventory" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/zap_fence_gate.json b/src/main/resources/assets/unicopia/models/item/zap_fence_gate.json deleted file mode 100644 index cb3f2d6c..00000000 --- a/src/main/resources/assets/unicopia/models/item/zap_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_fence_gate" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/zap_log.json b/src/main/resources/assets/unicopia/models/item/zap_log.json deleted file mode 100644 index 13676b25..00000000 --- a/src/main/resources/assets/unicopia/models/item/zap_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_log" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/zap_planks.json b/src/main/resources/assets/unicopia/models/item/zap_planks.json deleted file mode 100644 index 67af01e5..00000000 --- a/src/main/resources/assets/unicopia/models/item/zap_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_planks" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/zap_slab.json b/src/main/resources/assets/unicopia/models/item/zap_slab.json deleted file mode 100644 index f4b16226..00000000 --- a/src/main/resources/assets/unicopia/models/item/zap_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/zap_stairs.json b/src/main/resources/assets/unicopia/models/item/zap_stairs.json deleted file mode 100644 index 1a16895f..00000000 --- a/src/main/resources/assets/unicopia/models/item/zap_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/zap_wood.json b/src/main/resources/assets/unicopia/models/item/zap_wood.json deleted file mode 100644 index 31ae309b..00000000 --- a/src/main/resources/assets/unicopia/models/item/zap_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "unicopia:block/zap_wood" -} \ No newline at end of file diff --git a/src/main/resources/assets/unicopia/models/item/zapling.json b/src/main/resources/assets/unicopia/models/item/zapling.json deleted file mode 100644 index 3c4bffea..00000000 --- a/src/main/resources/assets/unicopia/models/item/zapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "unicopia:item/zapling" - } -} diff --git a/src/main/resources/assets/unicopia/textures/item/palm_sapling.png b/src/main/resources/assets/unicopia/textures/block/palm_sapling.png similarity index 100% rename from src/main/resources/assets/unicopia/textures/item/palm_sapling.png rename to src/main/resources/assets/unicopia/textures/block/palm_sapling.png diff --git a/src/main/resources/assets/unicopia/textures/item/zapling.png b/src/main/resources/assets/unicopia/textures/block/zapling.png similarity index 100% rename from src/main/resources/assets/unicopia/textures/item/zapling.png rename to src/main/resources/assets/unicopia/textures/block/zapling.png diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 41449c21..a372fd58 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -24,6 +24,9 @@ "client": [ "com.minelittlepony.unicopia.client.UnicopiaClient" ], + "fabric-datagen": [ + "com.minelittlepony.unicopia.datagen.Datagen" + ], "modmenu": [ "com.minelittlepony.unicopia.modmenu.UMenuFactory" ],