More renames and translation/texture fixes
|
@ -156,8 +156,8 @@ public class MagicGemItem extends Item implements Castable {
|
||||||
@Override
|
@Override
|
||||||
public Text getName(ItemStack stack) {
|
public Text getName(ItemStack stack) {
|
||||||
if (SpellRegistry.stackHasEnchantment(stack)) {
|
if (SpellRegistry.stackHasEnchantment(stack)) {
|
||||||
return new TranslatableText(getTranslationKey(stack) + ".enchanted.name",
|
return new TranslatableText(getTranslationKey(stack) + ".enchanted",
|
||||||
new TranslatableText(String.format("%s.%s.name", getAffinity(stack).getTranslationKey(), SpellRegistry.getKeyFromStack(stack)
|
new TranslatableText(String.format("%s.%s", getAffinity(stack).getTranslationKey(), SpellRegistry.getKeyFromStack(stack)
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,9 +29,9 @@ import net.minecraft.util.registry.Registry;
|
||||||
|
|
||||||
public interface UItems {
|
public interface UItems {
|
||||||
|
|
||||||
AppleItem GREEN_APPLE = register(new AppleItem(new Item.Settings().group(ItemGroup.FOOD).food(FoodComponents.APPLE)), "apple_green");
|
AppleItem GREEN_APPLE = register(new AppleItem(new Item.Settings().group(ItemGroup.FOOD).food(FoodComponents.APPLE)), "green_apple");
|
||||||
AppleItem SWEET_APPLE = register(new AppleItem(new Item.Settings().group(ItemGroup.FOOD).food(FoodComponents.APPLE)), "apple_sweet");
|
AppleItem SWEET_APPLE = register(new AppleItem(new Item.Settings().group(ItemGroup.FOOD).food(FoodComponents.APPLE)), "sweet_apple");
|
||||||
AppleItem SOUR_APPLE = register(new AppleItem(new Item.Settings().group(ItemGroup.FOOD).food(FoodComponents.APPLE)), "apple_sour");
|
AppleItem SOUR_APPLE = register(new AppleItem(new Item.Settings().group(ItemGroup.FOOD).food(FoodComponents.APPLE)), "sour_apple");
|
||||||
|
|
||||||
ZapAppleItem ZAP_APPLE = register(new ZapAppleItem(new Item.Settings().group(ItemGroup.FOOD).food(UFoodComponents.ZAP_APPLE)), "zap_apple");
|
ZapAppleItem ZAP_APPLE = register(new ZapAppleItem(new Item.Settings().group(ItemGroup.FOOD).food(UFoodComponents.ZAP_APPLE)), "zap_apple");
|
||||||
|
|
||||||
|
@ -47,12 +47,10 @@ public interface UItems {
|
||||||
|
|
||||||
Item CLOUD_BLOCK = register(new PredicatedBlockItem(UBlocks.CLOUD_BLOCK, new Settings().group(ItemGroup.MATERIALS), INTERACT_WITH_CLOUDS), "cloud_block");
|
Item CLOUD_BLOCK = register(new PredicatedBlockItem(UBlocks.CLOUD_BLOCK, new Settings().group(ItemGroup.MATERIALS), INTERACT_WITH_CLOUDS), "cloud_block");
|
||||||
Item ENCHANTED_CLOUD_BLOCK = register(new PredicatedBlockItem(UBlocks.ENCHANTED_CLOUD_BLOCK, new Settings().group(ItemGroup.MATERIALS), INTERACT_WITH_CLOUDS), "enchanted_cloud_block");
|
Item ENCHANTED_CLOUD_BLOCK = register(new PredicatedBlockItem(UBlocks.ENCHANTED_CLOUD_BLOCK, new Settings().group(ItemGroup.MATERIALS), INTERACT_WITH_CLOUDS), "enchanted_cloud_block");
|
||||||
Item PACKED_CLOUD_BLOCK = register(new PredicatedBlockItem(UBlocks.DENSE_CLOUD_BLOCK, new Settings().group(ItemGroup.MATERIALS), INTERACT_WITH_CLOUDS), "packed_cloud_block");
|
Item DENSE_CLOUD_BLOCK = register(new PredicatedBlockItem(UBlocks.DENSE_CLOUD_BLOCK, new Settings().group(ItemGroup.MATERIALS), INTERACT_WITH_CLOUDS), "dense_cloud_block");
|
||||||
|
|
||||||
Item CLOUD_STAIRS = register(new PredicatedBlockItem(UBlocks.CLOUD_STAIRS, new Settings().group(ItemGroup.BUILDING_BLOCKS), INTERACT_WITH_CLOUDS), "cloud_stairs");
|
Item CLOUD_STAIRS = register(new PredicatedBlockItem(UBlocks.CLOUD_STAIRS, new Settings().group(ItemGroup.BUILDING_BLOCKS), INTERACT_WITH_CLOUDS), "cloud_stairs");
|
||||||
|
|
||||||
Item CLOUD_FENCE = register(new PredicatedBlockItem(UBlocks.CLOUD_FENCE, new Settings().group(ItemGroup.DECORATIONS), INTERACT_WITH_CLOUDS), "cloud_fence");
|
Item CLOUD_FENCE = register(new PredicatedBlockItem(UBlocks.CLOUD_FENCE, new Settings().group(ItemGroup.DECORATIONS), INTERACT_WITH_CLOUDS), "cloud_fence");
|
||||||
|
|
||||||
Item CLOUD_ANVIL = register(new PredicatedBlockItem(UBlocks.CLOUD_ANVIL, new Settings().group(ItemGroup.DECORATIONS), INTERACT_WITH_CLOUDS), "cloud_anvil");
|
Item CLOUD_ANVIL = register(new PredicatedBlockItem(UBlocks.CLOUD_ANVIL, new Settings().group(ItemGroup.DECORATIONS), INTERACT_WITH_CLOUDS), "cloud_anvil");
|
||||||
|
|
||||||
Item MUSIC_DISC_CRUSADE = register(createRecord(USounds.RECORD_CRUSADE), "music_disc_crusade");
|
Item MUSIC_DISC_CRUSADE = register(createRecord(USounds.RECORD_CRUSADE), "music_disc_crusade");
|
||||||
|
@ -85,8 +83,8 @@ public interface UItems {
|
||||||
AlicornAmuletItem ALICORN_AMULET = register(new AlicornAmuletItem(new Settings().group(ItemGroup.COMBAT).rarity(Rarity.RARE).maxCount(1)), "alicorn_amulet");
|
AlicornAmuletItem ALICORN_AMULET = register(new AlicornAmuletItem(new Settings().group(ItemGroup.COMBAT).rarity(Rarity.RARE).maxCount(1)), "alicorn_amulet");
|
||||||
|
|
||||||
SpellbookItem SPELLBOOK = register(new SpellbookItem(new Item.Settings().maxCount(1).group(ItemGroup.BREWING)), "spellbook");
|
SpellbookItem SPELLBOOK = register(new SpellbookItem(new Item.Settings().maxCount(1).group(ItemGroup.BREWING)), "spellbook");
|
||||||
Item STAFF_MEADOW_BROOK = register(new StaffItem(new Settings().group(ItemGroup.TOOLS).rarity(Rarity.UNCOMMON).maxCount(1).maxDamage(2)), "staff_meadow_brook");
|
Item MEADOW_BROOK_STAFF = register(new StaffItem(new Settings().group(ItemGroup.TOOLS).rarity(Rarity.UNCOMMON).maxCount(1).maxDamage(2)), "meadow_brook_staff");
|
||||||
Item STAFF_REMEMBERANCE = register(new EnchantedStaffItem(new Settings().group(ItemGroup.TOOLS).rarity(Rarity.UNCOMMON).maxCount(1), new ScorchSpell()), "staff_remembrance");
|
Item REMEMBERANCE_STAFF = register(new EnchantedStaffItem(new Settings().group(ItemGroup.TOOLS).rarity(Rarity.UNCOMMON).maxCount(1), new ScorchSpell()), "remembrance_staff");
|
||||||
|
|
||||||
Item SPEAR = register(new SpearItem(new Settings().group(ItemGroup.TOOLS).maxCount(1).maxDamage(500)), "spear");
|
Item SPEAR = register(new SpearItem(new Settings().group(ItemGroup.TOOLS).maxCount(1).maxDamage(500)), "spear");
|
||||||
|
|
||||||
|
@ -102,11 +100,11 @@ public interface UItems {
|
||||||
.food(UFoodComponents.CEREAL)
|
.food(UFoodComponents.CEREAL)
|
||||||
.maxCount(1)
|
.maxCount(1)
|
||||||
.recipeRemainder(Items.BOWL), 1), "cereal");
|
.recipeRemainder(Items.BOWL), 1), "cereal");
|
||||||
Item SUGAR_CEREAL = register(new SugaryItem(new Settings()
|
Item BOOP_O_ROOPS = register(new SugaryItem(new Settings()
|
||||||
.group(ItemGroup.FOOD)
|
.group(ItemGroup.FOOD)
|
||||||
.food(UFoodComponents.SUGAR)
|
.food(UFoodComponents.SUGAR)
|
||||||
.maxCount(1)
|
.maxCount(1)
|
||||||
.recipeRemainder(Items.BOWL), 110), "sugar_cereal");
|
.recipeRemainder(Items.BOWL), 110), "boop_o_roops");
|
||||||
|
|
||||||
TomatoSeedsItem TOMATO_SEEDS = register(new TomatoSeedsItem(new Settings().group(ItemGroup.MATERIALS)), "tomato_seeds");
|
TomatoSeedsItem TOMATO_SEEDS = register(new TomatoSeedsItem(new Settings().group(ItemGroup.MATERIALS)), "tomato_seeds");
|
||||||
TomatoItem TOMATO = register(new TomatoItem(new Settings()
|
TomatoItem TOMATO = register(new TomatoItem(new Settings()
|
||||||
|
|
|
@ -25,6 +25,11 @@
|
||||||
|
|
||||||
"block.unicopia.enchanted_torch": "Enchanted Torch",
|
"block.unicopia.enchanted_torch": "Enchanted Torch",
|
||||||
|
|
||||||
|
"block.unicopia.misted_glass_door": "Misted Glass Door",
|
||||||
|
"block.unicopia.library_door": "Dutch Library Door",
|
||||||
|
"block.unicopia.bakery_door": "Dutch Bakery Door",
|
||||||
|
"block.unicopia.diamond_door": "Diamond Door",
|
||||||
|
|
||||||
"item.unicopia.cloud_spawn_egg": "Cloud Spawn Egg",
|
"item.unicopia.cloud_spawn_egg": "Cloud Spawn Egg",
|
||||||
"item.unicopia.butterfly_spawn_egg": "Butterfly Spawn Egg",
|
"item.unicopia.butterfly_spawn_egg": "Butterfly Spawn Egg",
|
||||||
|
|
||||||
|
@ -33,18 +38,14 @@
|
||||||
"item.unicopia.construction_cloud_spawner": "Construction Cloud",
|
"item.unicopia.construction_cloud_spawner": "Construction Cloud",
|
||||||
"item.unicopia.wild_cloud_spawner": "Wild Cloud",
|
"item.unicopia.wild_cloud_spawner": "Wild Cloud",
|
||||||
|
|
||||||
"item.unicopia.misted_glass_door": "Misted Glass Door",
|
|
||||||
"item.unicopia.library_door": "Dutch Library Door",
|
|
||||||
"item.unicopia.bakery_door": "Dutch Bakery Door",
|
|
||||||
"item.unicopia.diamond_door": "Diamond Door",
|
|
||||||
"item.unicopia.dew_drop": "Dew Drop",
|
"item.unicopia.dew_drop": "Dew Drop",
|
||||||
"item.unicopia.cloud_anvil": "Cloud Anvil",
|
"item.unicopia.cloud_anvil": "Cloud Anvil",
|
||||||
"item.unicopia.chitin_shell": "Chitinous Shell",
|
"item.unicopia.chitin_shell": "Chitinous Shell",
|
||||||
|
|
||||||
"item.unicopia.moss": "Moss",
|
"item.unicopia.moss": "Moss",
|
||||||
"item.unicopia.staff_meadow_brook": "Meadow Brook's Staff",
|
"item.unicopia.meadow_brook_staff": "Meadow Brook's Staff",
|
||||||
"item.unicopia.staff_meadow_brook.tagline": "It's a big stick",
|
"item.unicopia.meadow_brook_staff.tagline": "It's a big stick",
|
||||||
"item.unicopia.staff_remembrance": "Staff of Remembrance",
|
"item.unicopia.remembrance_staff": "Staff of Remembrance",
|
||||||
"item.unicopia.spear": "Spear",
|
"item.unicopia.spear": "Spear",
|
||||||
"item.unicopia.alicorn_amulet": "The Alicorn Amulet",
|
"item.unicopia.alicorn_amulet": "The Alicorn Amulet",
|
||||||
"item.unicopia.alicorn_amulet.tagline": "Time Worn: %s",
|
"item.unicopia.alicorn_amulet.tagline": "Time Worn: %s",
|
||||||
|
@ -59,20 +60,12 @@
|
||||||
"item.unicopia.spellbook": "Spellbook",
|
"item.unicopia.spellbook": "Spellbook",
|
||||||
"item.unicopia.bag_of_holding": "Bag of Holding",
|
"item.unicopia.bag_of_holding": "Bag of Holding",
|
||||||
|
|
||||||
"item.unicopia.apple_green": "Granny Smith Apple",
|
"item.unicopia.green_apple": "Granny Smith Apple",
|
||||||
"item.unicopia.apple_sweet": "Sweet Apple Acres Apple",
|
"item.unicopia.sweet_apple": "Sweet Apple Acres Apple",
|
||||||
"item.unicopia.apple_sour": "Sour Apple",
|
"item.unicopia.sour_apple": "Sour Apple",
|
||||||
|
|
||||||
"item.unicopia.rotten_apple": "Rotten Apple",
|
"item.unicopia.rotten_apple": "Rotten Apple",
|
||||||
|
|
||||||
"item.unicopia.cooked_zap_apple": "Cooked Zap Apple",
|
"item.unicopia.cooked_zap_apple": "Cooked Zap Apple",
|
||||||
|
|
||||||
"item.unicopia.zap_apple": "Zap Apple",
|
"item.unicopia.zap_apple": "Zap Apple",
|
||||||
"item.unicopia.zap_apple.red": "Apple",
|
|
||||||
"item.unicopia.zap_apple.green": "Granny Smith Apple",
|
|
||||||
"item.unicopia.zap_apple.sweet": "Sweet Apple Acres Apple",
|
|
||||||
"item.unicopia.zap_apple.sour": "Sour Apple",
|
|
||||||
"item.unicopia.zap_apple.zap": "Cooked Zap Apple",
|
|
||||||
|
|
||||||
"item.unicopia.apple_seeds": "Apple Seeds",
|
"item.unicopia.apple_seeds": "Apple Seeds",
|
||||||
|
|
||||||
|
@ -87,7 +80,7 @@
|
||||||
"item.unicopia.alfalfa_seeds": "Grain",
|
"item.unicopia.alfalfa_seeds": "Grain",
|
||||||
|
|
||||||
"item.unicopia.cereal": "Breakfast Cereal",
|
"item.unicopia.cereal": "Breakfast Cereal",
|
||||||
"item.unicopia.sugar_cereal": "Boop 'o Roops",
|
"item.unicopia.boop_o_roops": "Boop 'o Roops",
|
||||||
"item.unicopia.daffodil_daisy_sandwich": "Daffodil Daisy Sandwich",
|
"item.unicopia.daffodil_daisy_sandwich": "Daffodil Daisy Sandwich",
|
||||||
"item.unicopia.hay_burger": "Hay Burger",
|
"item.unicopia.hay_burger": "Hay Burger",
|
||||||
"item.unicopia.hay_fries": "Hay Fries",
|
"item.unicopia.hay_fries": "Hay Fries",
|
||||||
|
@ -100,7 +93,7 @@
|
||||||
"item.unicopia.burned_juice": "Burned Juice",
|
"item.unicopia.burned_juice": "Burned Juice",
|
||||||
|
|
||||||
"item.unicopia.music_disc_pet": "Music Disc",
|
"item.unicopia.music_disc_pet": "Music Disc",
|
||||||
"item.unicopia.music_disc_pet.pet.desc": "Danial Ingram - pet",
|
"item.unicopia.music_disc_pet.desc": "Danial Ingram - pet",
|
||||||
"item.unicopia.music_disc_popular": "Music Disc",
|
"item.unicopia.music_disc_popular": "Music Disc",
|
||||||
"item.unicopia.music_disc_popular.desc": "Danial Ingram - popular",
|
"item.unicopia.music_disc_popular.desc": "Danial Ingram - popular",
|
||||||
"item.unicopia.music_disc_crusade": "Music Disc",
|
"item.unicopia.music_disc_crusade": "Music Disc",
|
||||||
|
@ -112,64 +105,64 @@
|
||||||
"affinity.neutral": "Neutral",
|
"affinity.neutral": "Neutral",
|
||||||
"affinity.curse": "Corrupt",
|
"affinity.curse": "Corrupt",
|
||||||
|
|
||||||
"spell.shield.name": "Defense",
|
"spell.shield": "Defense",
|
||||||
"spell.shield.tagline": "Protection I",
|
"spell.shield.tagline": "Protection I",
|
||||||
|
|
||||||
"spell.awkward.name": "Awkwardness",
|
"spell.awkward": "Awkwardness",
|
||||||
"spell.awkward.tagline": "*Derp*",
|
"spell.awkward.tagline": "*Derp*",
|
||||||
|
|
||||||
"spell.portal.name": "Transportation",
|
"spell.portal": "Transportation",
|
||||||
"spell.portal.tagline": "Teleportation I",
|
"spell.portal.tagline": "Teleportation I",
|
||||||
|
|
||||||
"spell.light.name": "Illumination",
|
"spell.light": "Illumination",
|
||||||
"spell.light.tagline": "Discovery I",
|
"spell.light.tagline": "Discovery I",
|
||||||
|
|
||||||
"spell.reveal.name": "Revealing",
|
"spell.reveal": "Revealing",
|
||||||
"spell.reveal.tagline": "Discovery II",
|
"spell.reveal.tagline": "Discovery II",
|
||||||
|
|
||||||
"spell.flame.name": "Burning",
|
"spell.flame": "Burning",
|
||||||
"spell.flame.tagline": "Fire I",
|
"spell.flame.tagline": "Fire I",
|
||||||
|
|
||||||
"spell.fire.name": "Flame",
|
"spell.fire": "Flame",
|
||||||
"spell.fire.tagline": "Fire II",
|
"spell.fire.tagline": "Fire II",
|
||||||
|
|
||||||
"spell.vortex.name": "Retention",
|
"spell.vortex": "Retention",
|
||||||
"spell.vortex.tagline": "Containment I",
|
"spell.vortex.tagline": "Containment I",
|
||||||
|
|
||||||
"spell.charge.name": "Channeling",
|
"spell.charge": "Channeling",
|
||||||
"spell.charge.tagline": "Energy I",
|
"spell.charge.tagline": "Energy I",
|
||||||
|
|
||||||
"spell.siphon.name": "Pilon",
|
"spell.siphon": "Pilon",
|
||||||
"spell.siphon.tagline": "Energy II",
|
"spell.siphon.tagline": "Energy II",
|
||||||
|
|
||||||
"spell.ice.name": "Frost",
|
"spell.ice": "Frost",
|
||||||
"spell.ice.tagline": "Ice I",
|
"spell.ice.tagline": "Ice I",
|
||||||
|
|
||||||
"spell.drake.name": "Assistance",
|
"spell.drake": "Assistance",
|
||||||
"spell.drake.tagline": "Golomancy I",
|
"spell.drake.tagline": "Golomancy I",
|
||||||
|
|
||||||
"curse.shield.name": "Repulsion",
|
"curse.shield": "Repulsion",
|
||||||
"curse.shield.tagline": "Hostility I",
|
"curse.shield.tagline": "Hostility I",
|
||||||
|
|
||||||
"curse.darkness.name": "Darkness",
|
"curse.darkness": "Darkness",
|
||||||
"curse.darkness.tagline": "Golomancy I/Resurrection II",
|
"curse.darkness.tagline": "Golomancy I/Resurrection II",
|
||||||
|
|
||||||
"curse.harm.name": "Hurting",
|
"curse.harm": "Hurting",
|
||||||
"curse.harm.tagline": "Hostility II",
|
"curse.harm.tagline": "Hostility II",
|
||||||
|
|
||||||
"curse.awkward.name": "Awkwardness",
|
"curse.awkward": "Awkwardness",
|
||||||
"curse.awkward.tagline": "*Derp*",
|
"curse.awkward.tagline": "*Derp*",
|
||||||
|
|
||||||
"curse.vortex.name": "Suffering",
|
"curse.vortex": "Suffering",
|
||||||
"curse.vortex.tagline": "Torture I",
|
"curse.vortex.tagline": "Torture I",
|
||||||
|
|
||||||
"curse.necromancy.name": "Necromancy",
|
"curse.necromancy": "Necromancy",
|
||||||
"curse.necromancy.tagline": "Resurrection I",
|
"curse.necromancy.tagline": "Resurrection I",
|
||||||
|
|
||||||
"curse.inferno.name": "Inferno",
|
"curse.inferno": "Inferno",
|
||||||
"curse.inferno.tagline": "Fire III",
|
"curse.inferno.tagline": "Fire III",
|
||||||
|
|
||||||
"curse.siphon.name": "Siphoning",
|
"curse.siphon": "Siphoning",
|
||||||
"curse.siphon.tagline": "Energy III",
|
"curse.siphon.tagline": "Energy III",
|
||||||
|
|
||||||
"entity.racing_cloud.name": "Bucking Bronco",
|
"entity.racing_cloud.name": "Bucking Bronco",
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"parent": "block/leaves",
|
"parent": "block/leaves",
|
||||||
"textures": {
|
"textures": {
|
||||||
"all": "unicopia:blocks/leaves_apple",
|
"all": "unicopia:blocks/leaves_apple",
|
||||||
"fruit": "minecraft:items/apple"
|
"fruit": "minecraft:item/apple"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{ "from": [ 0, 0, 0 ],
|
{ "from": [ 0, 0, 0 ],
|
||||||
|
|
|
@ -1,65 +0,0 @@
|
||||||
{
|
|
||||||
"ambientocclusion": false,
|
|
||||||
"textures": {
|
|
||||||
"particle": "blocks/flower_pot",
|
|
||||||
"flowerpot": "blocks/flower_pot",
|
|
||||||
"dirt": "blocks/dirt"
|
|
||||||
},
|
|
||||||
"elements": [
|
|
||||||
{ "from": [ 5, 0, 5 ],
|
|
||||||
"to": [ 6, 6, 11 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" },
|
|
||||||
"up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" },
|
|
||||||
"north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" },
|
|
||||||
"south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" },
|
|
||||||
"west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" },
|
|
||||||
"east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{ "from": [ 10, 0, 5 ],
|
|
||||||
"to": [ 11, 6, 11 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" },
|
|
||||||
"up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" },
|
|
||||||
"north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" },
|
|
||||||
"south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" },
|
|
||||||
"west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" },
|
|
||||||
"east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{ "from": [ 6, 0, 5 ],
|
|
||||||
"to": [ 10, 6, 6 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" },
|
|
||||||
"up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" },
|
|
||||||
"north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" },
|
|
||||||
"south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{ "from": [ 6, 0, 10 ],
|
|
||||||
"to": [ 10, 6, 11 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" },
|
|
||||||
"up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" },
|
|
||||||
"north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" },
|
|
||||||
"south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{ "from": [ 6, 0, 6 ],
|
|
||||||
"to": [ 10, 4, 10 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 6, 6, 10, 10 ], "texture": "#flowerpot", "cullface": "down" },
|
|
||||||
"up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{ "from": [ 8, 4, 4.6 ],
|
|
||||||
"to": [ 8, 16, 15.4 ],
|
|
||||||
"rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": false },
|
|
||||||
"faces": {
|
|
||||||
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" },
|
|
||||||
"east": { "uv": [ 16, 0, 0, 16 ], "texture": "#plant" }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "unicopia:block/flower_pot/cross_rotated",
|
|
||||||
"textures": {
|
|
||||||
"plant": "minecraft:items/feather"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "unicopia:block/flower_pot/cross_rotated",
|
|
||||||
"textures": {
|
|
||||||
"plant": "unicopia:items/staff_meadow_brook"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"textures": {
|
"textures": {
|
||||||
"stick_top": "minecraft:blocks/log_oak_top",
|
"stick_top": "minecraft:block/oak_log_top",
|
||||||
"stick_side": "minecraft:blocks/log_oak",
|
"stick_side": "minecraft:block/oak_log",
|
||||||
"particle": "minecraft:blocks/log_oak"
|
"particle": "minecraft:block/oak_log"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{ "from": [ 7, -1, 7 ],
|
{ "from": [ 7, -1, 7 ],
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/alfalfa_leaves"
|
"layer0": "unicopia:item/alfalfa_leaves"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/alfalfa_seeds"
|
"layer0": "unicopia:item/alfalfa_seeds"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/alicorn_amulet"
|
"layer0": "unicopia:item/alicorn_amulet"
|
||||||
},
|
},
|
||||||
"display": {
|
"display": {
|
||||||
"thirdperson": {
|
"thirdperson": {
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "minecraft:item/apple"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,28 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "unicopia:item/mug",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/apple_cider"
|
"layer0": "unicopia:item/apple_cider"
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"thirdperson_righthand": {
|
|
||||||
"rotation": [ 0, -90, -55 ],
|
|
||||||
"translation": [ 0, 4.0, 0.5 ],
|
|
||||||
"scale": [ 0.85, 0.85, 0.85 ]
|
|
||||||
},
|
|
||||||
"thirdperson_lefthand": {
|
|
||||||
"rotation": [ 0, 90, 55 ],
|
|
||||||
"translation": [ 0, 4.0, 0.5 ],
|
|
||||||
"scale": [ 0.85, 0.85, 0.85 ]
|
|
||||||
},
|
|
||||||
"firstperson_righthand": {
|
|
||||||
"rotation": [ 0, -90, 25 ],
|
|
||||||
"translation": [ 1.13, 3.2, 1.13 ],
|
|
||||||
"scale": [ 0.68, 0.68, 0.68 ]
|
|
||||||
},
|
|
||||||
"firstperson_lefthand": {
|
|
||||||
"rotation": [ 0, 90, -25 ],
|
|
||||||
"translation": [ 1.13, 3.2, 1.13 ],
|
|
||||||
"scale": [ 0.68, 0.68, 0.68 ]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/apple_seeds"
|
"layer0": "unicopia:item/apple_seeds"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "unicopia:items/apple_sweet"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/bag_o"
|
"layer0": "unicopia:item/bag_of_holding"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/door_bakery"
|
"layer0": "unicopia:item/bakery_door"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/apple_green"
|
"layer0": "unicopia:item/boop_o_roops"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/burned_juice"
|
"layer0": "unicopia:item/burned_juice"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/cereal"
|
"layer0": "unicopia:item/cereal"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/chitin_shell"
|
"layer0": "unicopia:item/chitin_shell"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/cloud_matter"
|
"layer0": "unicopia:item/cloud_matter"
|
||||||
},
|
},
|
||||||
"display": {
|
"display": {
|
||||||
"thirdperson": {
|
"thirdperson": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/tomato"
|
"layer0": "unicopia:item/tomato"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "unicopia:block/cloud_cube",
|
"parent": "unicopia:block/cloud_cube",
|
||||||
"textures": {
|
"textures": {
|
||||||
"all": "unicopia:items/cloud"
|
"all": "unicopia:entity/cloud_spawner"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/apple_zap_cooked"
|
"layer0": "unicopia:item/cooked_zap_apple"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/corrupted_gem",
|
"layer0": "unicopia:item/corrupted_gem",
|
||||||
"layer1": "unicopia:items/corrupted_gem_overlay"
|
"layer1": "unicopia:item/corrupted_gem_overlay"
|
||||||
},
|
},
|
||||||
"display": {
|
"display": {
|
||||||
"thirdperson": {
|
"thirdperson": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/daffodil_daisy_sandwich"
|
"layer0": "unicopia:item/daffodil_daisy_sandwich"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/dew_drop"
|
"layer0": "unicopia:item/dew_drop"
|
||||||
},
|
},
|
||||||
"display": {
|
"display": {
|
||||||
"thirdperson": {
|
"thirdperson": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/door_diamond"
|
"layer0": "unicopia:item/diamond_door"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/gem",
|
"layer0": "unicopia:item/gem",
|
||||||
"layer1": "unicopia:items/gem_overlay"
|
"layer1": "unicopia:item/gem_overlay"
|
||||||
},
|
},
|
||||||
"display": {
|
"display": {
|
||||||
"thirdperson": {
|
"thirdperson": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/apple_sour"
|
"layer0": "unicopia:item/green_apple"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/hay_burger"
|
"layer0": "unicopia:item/hay_burger"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/hay_fries"
|
"layer0": "unicopia:item/hay_fries"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/juice"
|
"layer0": "unicopia:item/juice"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/door_library"
|
"layer0": "unicopia:item/library_door"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "unicopia:item/handheld_staff",
|
"parent": "unicopia:item/handheld_staff",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/staff_remembrance"
|
"layer0": "unicopia:item/meadow_brook_staff"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/misted_glass_door"
|
"layer0": "unicopia:item/misted_glass_door"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/moss"
|
"layer0": "unicopia:item/moss"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"parent": "item/handheld",
|
"parent": "item/handheld",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/mug"
|
"layer0": "unicopia:item/mug"
|
||||||
},
|
},
|
||||||
"display": {
|
"display": {
|
||||||
"thirdperson_righthand": {
|
"thirdperson_righthand": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/record_crusade"
|
"layer0": "unicopia:item/music_disc_crusade"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/record_funk"
|
"layer0": "unicopia:item/music_disc_funk"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/record_pet"
|
"layer0": "unicopia:item/music_disc_pet"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/record_popular"
|
"layer0": "unicopia:item/music_disc_popular"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "unicopia:block/cloud_cube",
|
"parent": "unicopia:block/cloud_cube",
|
||||||
"textures": {
|
"textures": {
|
||||||
"all": "unicopia:items/cloud"
|
"all": "unicopia:entity/cloud_spawner"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "unicopia:item/handheld_staff",
|
"parent": "unicopia:item/handheld_staff",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/staff_meadow_brook"
|
"layer0": "unicopia:item/remembrance_staff"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/apple_rotten"
|
"layer0": "unicopia:item/rotten_apple"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/rotten_tomato"
|
"layer0": "unicopia:item/rotten_tomato"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/rotten_tomato"
|
"layer0": "unicopia:item/rotten_tomato"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/salad"
|
"layer0": "unicopia:item/salad"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/slime_drop"
|
"layer0": "unicopia:item/slime_drop"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "minecraft:items/apple"
|
"layer0": "unicopia:item/sour_apple"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "unicopia:item/handheld_staff",
|
"parent": "unicopia:item/handheld_staff",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/spear_wood"
|
"layer0": "unicopia:item/wooden_spear"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/spellbook"
|
"layer0": "unicopia:item/spellbook"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "unicopia:items/sugar_cereal"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/apple_sour"
|
"layer0": "unicopia:item/sweet_apple"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/tomato"
|
"layer0": "unicopia:item/tomato"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/tomato_seeds"
|
"layer0": "unicopia:item/tomato_seeds"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/wheat_worms"
|
"layer0": "unicopia:item/wheat_worms"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "unicopia:block/cloud_cube",
|
"parent": "unicopia:block/cloud_cube",
|
||||||
"textures": {
|
"textures": {
|
||||||
"all": "unicopia:items/cloud"
|
"all": "unicopia:entity/cloud_spawner"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "item/generated",
|
"parent": "item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "unicopia:items/apple_zap"
|
"layer0": "unicopia:item/apple_zap"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "unicopia:items/apple_green"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "unicopia:items/apple_sweet"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "unicopia:items/apple_zap_cooked"
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 241 B After Width: | Height: | Size: 241 B |
Before Width: | Height: | Size: 549 B After Width: | Height: | Size: 549 B |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 185 B |
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 264 B |
Before Width: | Height: | Size: 197 B After Width: | Height: | Size: 197 B |
Before Width: | Height: | Size: 304 B After Width: | Height: | Size: 304 B |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 543 B After Width: | Height: | Size: 543 B |
Before Width: | Height: | Size: 543 B After Width: | Height: | Size: 543 B |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 145 B After Width: | Height: | Size: 145 B |
Before Width: | Height: | Size: 219 B After Width: | Height: | Size: 219 B |
Before Width: | Height: | Size: 439 B After Width: | Height: | Size: 439 B |
Before Width: | Height: | Size: 603 B After Width: | Height: | Size: 603 B |
Before Width: | Height: | Size: 603 B After Width: | Height: | Size: 603 B |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 271 B After Width: | Height: | Size: 271 B |
Before Width: | Height: | Size: 218 B After Width: | Height: | Size: 218 B |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 245 B After Width: | Height: | Size: 245 B |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 264 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 255 B |
Before Width: | Height: | Size: 277 B After Width: | Height: | Size: 277 B |
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 261 B |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |