From d4c0d767e4c5749a4551d7836865ebcf008f7875 Mon Sep 17 00:00:00 2001 From: Kat Date: Fri, 5 Sep 2025 16:13:27 -0400 Subject: [PATCH 1/2] Plushies Attempt 2 electric boogaloo --- .../plushie_variant/littlebuddy.json | 9 + .../plushie_variant/plantie.json | 9 + .../block/block_interaction_restricted.json | 1 - .../items/more_than_a_foxbox/littlebuddy.json | 6 + .../items/more_than_a_foxbox/plantie.json | 6 + .../assets/modfest_plushies/lang/en_us.json | 4 +- .../more_than_a_foxbox/littlebuddy/box.json | 262 ++++++++++++ .../more_than_a_foxbox/littlebuddy/lay.json | 271 ++++++++++++ .../more_than_a_foxbox/littlebuddy/sit.json | 262 ++++++++++++ .../more_than_a_foxbox/littlebuddy/stand.json | 262 ++++++++++++ .../more_than_a_foxbox/plantie/box.json | 388 +++++++++++++++++ .../more_than_a_foxbox/plantie/lay.json | 401 ++++++++++++++++++ .../more_than_a_foxbox/plantie/sit.json | 388 +++++++++++++++++ .../more_than_a_foxbox/plantie/stand.json | 388 +++++++++++++++++ .../textures/item/plushie/littlebuddy.png | Bin 0 -> 1077 bytes .../textures/item/plushie/plantie.png | Bin 0 -> 2613 bytes 16 files changed, 2655 insertions(+), 2 deletions(-) create mode 100644 pack/resources/datapack/required/ModfestPlushiesDataPack/data/modfest_plushies/more_than_a_foxbox/plushie_variant/littlebuddy.json create mode 100644 pack/resources/datapack/required/ModfestPlushiesDataPack/data/modfest_plushies/more_than_a_foxbox/plushie_variant/plantie.json create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/items/more_than_a_foxbox/littlebuddy.json create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/items/more_than_a_foxbox/plantie.json create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/box.json create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/lay.json create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/sit.json create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/stand.json create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/box.json create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/lay.json create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/sit.json create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/stand.json create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/textures/item/plushie/littlebuddy.png create mode 100644 pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/textures/item/plushie/plantie.png diff --git a/pack/resources/datapack/required/ModfestPlushiesDataPack/data/modfest_plushies/more_than_a_foxbox/plushie_variant/littlebuddy.json b/pack/resources/datapack/required/ModfestPlushiesDataPack/data/modfest_plushies/more_than_a_foxbox/plushie_variant/littlebuddy.json new file mode 100644 index 0000000..8bdaa2e --- /dev/null +++ b/pack/resources/datapack/required/ModfestPlushiesDataPack/data/modfest_plushies/more_than_a_foxbox/plushie_variant/littlebuddy.json @@ -0,0 +1,9 @@ +{ + "mob_sounds": "entity.salmon.flop", + "poses": { + "sit": "modfest_plushies:more_than_a_foxbox/littlebuddy/sit", + "stand": "modfest_plushies:more_than_a_foxbox/littlebuddy/stand", + "lay": "modfest_plushies:more_than_a_foxbox/littlebuddy/lay", + "box": "modfest_plushies:more_than_a_foxbox/littlebuddy/box" + } +} diff --git a/pack/resources/datapack/required/ModfestPlushiesDataPack/data/modfest_plushies/more_than_a_foxbox/plushie_variant/plantie.json b/pack/resources/datapack/required/ModfestPlushiesDataPack/data/modfest_plushies/more_than_a_foxbox/plushie_variant/plantie.json new file mode 100644 index 0000000..259a8e1 --- /dev/null +++ b/pack/resources/datapack/required/ModfestPlushiesDataPack/data/modfest_plushies/more_than_a_foxbox/plushie_variant/plantie.json @@ -0,0 +1,9 @@ +{ + "mob_sounds": "entity.allay.ambient_with_item", + "poses": { + "sit": "modfest_plushies:more_than_a_foxbox/plantie/sit", + "stand": "modfest_plushies:more_than_a_foxbox/plantie/stand", + "lay": "modfest_plushies:more_than_a_foxbox/plantie/lay", + "box": "modfest_plushies:more_than_a_foxbox/plantie/box" + } +} diff --git a/pack/resources/datapack/required/mf_fireblanket/data/fireblanket/tags/block/block_interaction_restricted.json b/pack/resources/datapack/required/mf_fireblanket/data/fireblanket/tags/block/block_interaction_restricted.json index b695a91..8c6e500 100644 --- a/pack/resources/datapack/required/mf_fireblanket/data/fireblanket/tags/block/block_interaction_restricted.json +++ b/pack/resources/datapack/required/mf_fireblanket/data/fireblanket/tags/block/block_interaction_restricted.json @@ -1,7 +1,6 @@ { "values": [ "#minecraft:trapdoors", - "#minecraft:shulker_boxes", "#minecraft:fence_gates", "#minecraft:flower_pots", "#minecraft:cave_vines", diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/items/more_than_a_foxbox/littlebuddy.json b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/items/more_than_a_foxbox/littlebuddy.json new file mode 100644 index 0000000..1d0dd5a --- /dev/null +++ b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/items/more_than_a_foxbox/littlebuddy.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "modfest_plushies:more_than_a_foxbox/littlebuddy/stand" + } +} diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/items/more_than_a_foxbox/plantie.json b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/items/more_than_a_foxbox/plantie.json new file mode 100644 index 0000000..67d92df --- /dev/null +++ b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/items/more_than_a_foxbox/plantie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "modfest_plushies:more_than_a_foxbox/plantie/stand" + } +} diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/lang/en_us.json b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/lang/en_us.json index 49282cf..14fc272 100644 --- a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/lang/en_us.json +++ b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/lang/en_us.json @@ -12,5 +12,7 @@ "item.more_than_a_foxbox.plushie.modfest_plushies.wolf_snowy": "Snowy Wolf Plushie", "item.more_than_a_foxbox.plushie.modfest_plushies.wolf_spotted": "Spotted Wolf Plushie", "item.more_than_a_foxbox.plushie.modfest_plushies.wolf_striped": "Striped Wolf Plushie", - "item.more_than_a_foxbox.plushie.modfest_plushies.wolf_woods": "Woods Wolf Plushie" + "item.more_than_a_foxbox.plushie.modfest_plushies.wolf_woods": "Woods Wolf Plushie", + "item.more_than_a_foxbox.plushie.modfest_plushies.littlebuddy": "Little Buddy Plushie", + "item.more_than_a_foxbox.plushie.modfest_plushies.plantie": "Plantie Plushie" } diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/box.json b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/box.json new file mode 100644 index 0000000..851c8c5 --- /dev/null +++ b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/box.json @@ -0,0 +1,262 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "modfest_plushies:item/plushie/littlebuddy" + }, + "elements": [ + { + "from": [7.5, 3, 7], + "to": [8.5, 6, 9], + "rotation": {"angle": -32.5, "axis": "x", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [3, 7.5, 2.5, 9], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3, 5, 4.5, 6], "rotation": 270, "texture": "#0"}, + "south": {"uv": [2.5, 9, 2, 7.5], "texture": "#0"}, + "west": {"uv": [5, 3, 6.5, 4], "rotation": 90, "texture": "#0"}, + "up": {"uv": [4, 6, 4.5, 7], "rotation": 180, "texture": "#0"}, + "down": {"uv": [7.5, 5.5, 8, 6.5], "texture": "#0"} + } + }, + { + "from": [6, 6, 4], + "to": [10, 9, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, 6]}, + "faces": { + "north": {"uv": [2, 0, 4, 1.5], "texture": "#0"}, + "east": {"uv": [2, 1.5, 4, 3], "texture": "#0"}, + "south": {"uv": [2, 3, 4, 4.5], "texture": "#0"}, + "west": {"uv": [0, 4, 2, 5.5], "texture": "#0"}, + "up": {"uv": [2, 2, 0, 0], "texture": "#0"}, + "down": {"uv": [2, 2, 0, 4], "texture": "#0"} + } + }, + { + "from": [7, 5, 4], + "to": [9, 6, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 6]}, + "faces": { + "north": {"uv": [3, 4.5, 4, 5], "texture": "#0"}, + "east": {"uv": [5.5, 5.5, 7.5, 6], "texture": "#0"}, + "south": {"uv": [7.5, 6.5, 8.5, 7], "texture": "#0"}, + "west": {"uv": [6, 0, 8, 0.5], "texture": "#0"}, + "up": {"uv": [5, 5, 4, 3], "texture": "#0"}, + "down": {"uv": [3, 4.5, 2, 6.5], "texture": "#0"} + } + }, + { + "from": [6, 5, 5], + "to": [7, 6, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 6]}, + "faces": { + "north": {"uv": [4.5, 5, 5, 5.5], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 8.5], "texture": "#0"}, + "south": {"uv": [8, 8, 8.5, 8.5], "texture": "#0"}, + "west": {"uv": [8, 0, 9, 0.5], "texture": "#0"}, + "up": {"uv": [8.5, 1.5, 8, 0.5], "texture": "#0"}, + "down": {"uv": [1.5, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [9, 5, 5], + "to": [10, 6, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 6]}, + "faces": { + "north": {"uv": [0, 8.5, 0.5, 9], "texture": "#0"}, + "east": {"uv": [8, 1.5, 9, 2], "texture": "#0"}, + "south": {"uv": [0.5, 8.5, 1, 9], "texture": "#0"}, + "west": {"uv": [8, 2, 9, 2.5], "texture": "#0"}, + "up": {"uv": [2, 9, 1.5, 8], "texture": "#0"}, + "down": {"uv": [3.5, 8, 3, 9], "texture": "#0"} + } + }, + { + "from": [4, 8, 3], + "to": [6, 9, 5], + "rotation": {"angle": 0, "axis": "z", "origin": [6, 8.5, 4]}, + "faces": { + "north": {"uv": [8, 2.5, 9, 3], "texture": "#0"}, + "east": {"uv": [3.5, 8, 4.5, 8.5], "texture": "#0"}, + "south": {"uv": [8, 4, 9, 4.5], "texture": "#0"}, + "west": {"uv": [4.5, 8, 5.5, 8.5], "texture": "#0"}, + "up": {"uv": [7, 1.5, 6, 0.5], "texture": "#0"}, + "down": {"uv": [7, 1.5, 6, 2.5], "texture": "#0"} + } + }, + { + "from": [10, 8, 3], + "to": [12, 9, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 8.5, 4]}, + "faces": { + "north": {"uv": [8, 4.5, 9, 5], "texture": "#0"}, + "east": {"uv": [8, 5, 9, 5.5], "texture": "#0"}, + "south": {"uv": [5.5, 8, 6.5, 8.5], "texture": "#0"}, + "west": {"uv": [8, 5.5, 9, 6], "texture": "#0"}, + "up": {"uv": [4, 7, 3, 6], "texture": "#0"}, + "down": {"uv": [7, 4, 6, 5], "texture": "#0"} + } + }, + { + "from": [7.5, 9, 2], + "to": [8.5, 10, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 5, 2]}, + "faces": { + "north": {"uv": [8.5, 0.5, 9, 1], "texture": "#0"}, + "east": {"uv": [8, 6, 9, 6.5], "texture": "#0"}, + "south": {"uv": [8.5, 1, 9, 1.5], "texture": "#0"}, + "west": {"uv": [6.5, 8, 7.5, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 8, 8, 7], "texture": "#0"}, + "down": {"uv": [8, 8, 7.5, 9], "texture": "#0"} + } + }, + { + "from": [7.5, 8, 3], + "to": [8.5, 9, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.5, 3.5]}, + "faces": { + "north": {"uv": [3.5, 8.5, 4, 9], "texture": "#0"}, + "east": {"uv": [4, 8.5, 4.5, 9], "texture": "#0"}, + "south": {"uv": [4.5, 8.5, 5, 9], "texture": "#0"}, + "west": {"uv": [5, 8.5, 5.5, 9], "texture": "#0"}, + "up": {"uv": [6, 9, 5.5, 8.5], "texture": "#0"}, + "down": {"uv": [6.5, 8.5, 6, 9], "texture": "#0"} + } + }, + { + "from": [6, 9, 4], + "to": [10, 10, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, 4]}, + "faces": { + "north": {"uv": [6, 2.5, 8, 3], "texture": "#0"}, + "east": {"uv": [7.5, 3, 9, 3.5], "texture": "#0"}, + "south": {"uv": [6, 5, 8, 5.5], "texture": "#0"}, + "west": {"uv": [7.5, 3.5, 9, 4], "texture": "#0"}, + "up": {"uv": [6, 1.5, 4, 0], "texture": "#0"}, + "down": {"uv": [6, 1.5, 4, 3], "texture": "#0"} + } + }, + { + "from": [7, 10, 5.5], + "to": [9, 13, 7.5], + "rotation": {"angle": 25, "axis": "x", "origin": [8, 10, 6.5]}, + "faces": { + "north": {"uv": [5, 4, 6, 5.5], "texture": "#0"}, + "east": {"uv": [0, 5.5, 1, 7], "texture": "#0"}, + "south": {"uv": [1, 5.5, 2, 7], "texture": "#0"}, + "west": {"uv": [4.5, 5.5, 5.5, 7], "texture": "#0"}, + "up": {"uv": [6.5, 7, 5.5, 6], "texture": "#0"}, + "down": {"uv": [3, 6.5, 2, 7.5], "texture": "#0"} + } + }, + { + "from": [5.5, 9, 3], + "to": [7.5, 11, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 5, 2]}, + "faces": { + "north": {"uv": [6.5, 3, 7.5, 4], "texture": "#0"}, + "east": {"uv": [6.5, 6, 7.5, 7], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [7, 0.5, 8, 1.5], "texture": "#0"}, + "up": {"uv": [2, 8, 1, 7], "texture": "#0"}, + "down": {"uv": [8, 1.5, 7, 2.5], "texture": "#0"} + } + }, + { + "from": [8.5, 9, 3], + "to": [10.5, 11, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [10.5, 5, 2]}, + "faces": { + "north": {"uv": [3, 7, 4, 8], "texture": "#0"}, + "east": {"uv": [4, 7, 5, 8], "texture": "#0"}, + "south": {"uv": [7, 4, 8, 5], "texture": "#0"}, + "west": {"uv": [5, 7, 6, 8], "texture": "#0"}, + "up": {"uv": [7, 8, 6, 7], "texture": "#0"}, + "down": {"uv": [8, 7, 7, 8], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "translation": [0, 14.5, 0] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "box", + "origin": [8, 8, 8], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + { + "name": "arms", + "origin": [4, 1, 8], + "color": 0, + "children": [ + { + "name": "group", + "origin": [4, 1, 8], + "color": 0, + "children": [5] + }, + { + "name": "group", + "origin": [4, 1, 8], + "color": 0, + "children": [6] + } + ] + }, + 7, + { + "name": "mouth", + "origin": [8, 3.5, 5.5], + "color": 0, + "children": [8] + }, + 9, + { + "name": "hair", + "origin": [8, 2, 7], + "color": 0, + "children": [10] + }, + 11, + 12 + ] + } + ] +} diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/lay.json b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/lay.json new file mode 100644 index 0000000..1fb5bc3 --- /dev/null +++ b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/lay.json @@ -0,0 +1,271 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "modfest_plushies:item/plushie/littlebuddy" + }, + "elements": [ + { + "from": [7.5, 3, 3], + "to": [8.5, 4, 5], + "rotation": {"angle": 0, "axis": "x", "origin": [9.5, -1, 3]}, + "faces": { + "north": {"uv": [8.5, 0.5, 9, 1], "texture": "#0"}, + "east": {"uv": [8, 6, 9, 6.5], "texture": "#0"}, + "south": {"uv": [8.5, 1, 9, 1.5], "texture": "#0"}, + "west": {"uv": [6.5, 8, 7.5, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 8, 8, 7], "texture": "#0"}, + "down": {"uv": [8, 8, 7.5, 9], "texture": "#0"} + } + }, + { + "from": [6, 1, 4.5], + "to": [10, 4, 5.5], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 2.5, 5]}, + "faces": { + "north": {"uv": [6, 1.5, 4, 0], "rotation": 180, "texture": "#0"}, + "east": {"uv": [7.5, 3, 9, 3.5], "rotation": 90, "texture": "#0"}, + "south": {"uv": [6, 1.5, 4, 3], "texture": "#0"}, + "west": {"uv": [7.5, 3.5, 9, 4], "rotation": 270, "texture": "#0"}, + "up": {"uv": [6, 5, 8, 5.5], "texture": "#0"}, + "down": {"uv": [6, 2.5, 8, 3], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [5.5, 3, 4], + "to": [7.5, 5, 6], + "rotation": {"angle": 0, "axis": "x", "origin": [7.5, -1, 3]}, + "faces": { + "north": {"uv": [6.5, 3, 7.5, 4], "texture": "#0"}, + "east": {"uv": [6.5, 6, 7.5, 7], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [7, 0.5, 8, 1.5], "texture": "#0"}, + "up": {"uv": [2, 8, 1, 7], "texture": "#0"}, + "down": {"uv": [8, 1.5, 7, 2.5], "texture": "#0"} + } + }, + { + "from": [8.5, 3, 4], + "to": [10.5, 5, 6], + "rotation": {"angle": 0, "axis": "x", "origin": [10.5, -1, 3]}, + "faces": { + "north": {"uv": [3, 7, 4, 8], "texture": "#0"}, + "east": {"uv": [4, 7, 5, 8], "texture": "#0"}, + "south": {"uv": [7, 4, 8, 5], "texture": "#0"}, + "west": {"uv": [5, 7, 6, 8], "texture": "#0"}, + "up": {"uv": [7, 8, 6, 7], "texture": "#0"}, + "down": {"uv": [8, 7, 7, 8], "texture": "#0"} + } + }, + { + "from": [7, 4, 6.5], + "to": [9, 7, 8.5], + "rotation": {"angle": 25, "axis": "x", "origin": [8, 4, 7.5]}, + "faces": { + "north": {"uv": [5, 4, 6, 5.5], "texture": "#0"}, + "east": {"uv": [0, 5.5, 1, 7], "texture": "#0"}, + "south": {"uv": [1, 5.5, 2, 7], "texture": "#0"}, + "west": {"uv": [4.5, 5.5, 5.5, 7], "texture": "#0"}, + "up": {"uv": [6.5, 7, 5.5, 6], "texture": "#0"}, + "down": {"uv": [3, 6.5, 2, 7.5], "texture": "#0"} + } + }, + { + "from": [7.5, 2, 4.5], + "to": [8.5, 3, 5.5], + "rotation": {"angle": -32.5, "axis": "x", "origin": [8, 2.5, 5]}, + "faces": { + "north": {"uv": [3.5, 8.5, 4, 9], "texture": "#0"}, + "east": {"uv": [4, 8.5, 4.5, 9], "texture": "#0"}, + "south": {"uv": [4.5, 8.5, 5, 9], "texture": "#0"}, + "west": {"uv": [5, 8.5, 5.5, 9], "texture": "#0"}, + "up": {"uv": [6, 9, 5.5, 8.5], "texture": "#0"}, + "down": {"uv": [6.5, 8.5, 6, 9], "texture": "#0"} + } + }, + { + "from": [6, 0, 5.5], + "to": [10, 4, 8.5], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 2, 8]}, + "faces": { + "north": {"uv": [2, 2, 0, 0], "rotation": 180, "texture": "#0"}, + "east": {"uv": [2, 1.5, 4, 3], "rotation": 90, "texture": "#0"}, + "south": {"uv": [2, 2, 0, 4], "texture": "#0"}, + "west": {"uv": [0, 4, 2, 5.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [2, 3, 4, 4.5], "texture": "#0"}, + "down": {"uv": [2, 0, 4, 1.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [7, 0, 8.5], + "to": [9, 4, 9.5], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 2, 8]}, + "faces": { + "north": {"uv": [5, 5, 4, 3], "rotation": 180, "texture": "#0"}, + "east": {"uv": [5.5, 5.5, 7.5, 6], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3, 4.5, 2, 6.5], "texture": "#0"}, + "west": {"uv": [6, 0, 8, 0.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [7.5, 6.5, 8.5, 7], "texture": "#0"}, + "down": {"uv": [3, 4.5, 4, 5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [6, 1, 8.5], + "to": [7, 3, 9.5], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 2, 8]}, + "faces": { + "north": {"uv": [8.5, 1.5, 8, 0.5], "rotation": 180, "texture": "#0"}, + "east": {"uv": [0, 8, 1, 8.5], "rotation": 90, "texture": "#0"}, + "south": {"uv": [1.5, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [8, 0, 9, 0.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [8, 8, 8.5, 8.5], "texture": "#0"}, + "down": {"uv": [4.5, 5, 5, 5.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [9, 1, 8.5], + "to": [10, 3, 9.5], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 2, 8]}, + "faces": { + "north": {"uv": [2, 9, 1.5, 8], "rotation": 180, "texture": "#0"}, + "east": {"uv": [8, 1.5, 9, 2], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5, 8, 3, 9], "texture": "#0"}, + "west": {"uv": [8, 2, 9, 2.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [0.5, 8.5, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 8.5, 0.5, 9], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [4, 2, 5], + "to": [6, 3, 7], + "rotation": {"angle": 45, "axis": "z", "origin": [6, 2.5, 6]}, + "faces": { + "north": {"uv": [8, 2.5, 9, 3], "texture": "#0"}, + "east": {"uv": [3.5, 8, 4.5, 8.5], "texture": "#0"}, + "south": {"uv": [8, 4, 9, 4.5], "texture": "#0"}, + "west": {"uv": [4.5, 8, 5.5, 8.5], "texture": "#0"}, + "up": {"uv": [7, 1.5, 6, 0.5], "texture": "#0"}, + "down": {"uv": [7, 1.5, 6, 2.5], "texture": "#0"} + } + }, + { + "from": [10, 2, 5], + "to": [12, 3, 7], + "rotation": {"angle": -45, "axis": "z", "origin": [10, 2.5, 6]}, + "faces": { + "north": {"uv": [8, 4.5, 9, 5], "texture": "#0"}, + "east": {"uv": [8, 5, 9, 5.5], "texture": "#0"}, + "south": {"uv": [5.5, 8, 6.5, 8.5], "texture": "#0"}, + "west": {"uv": [8, 5.5, 9, 6], "texture": "#0"}, + "up": {"uv": [4, 7, 3, 6], "texture": "#0"}, + "down": {"uv": [7, 4, 6, 5], "texture": "#0"} + } + }, + { + "from": [7.5, 0, 9], + "to": [8.5, 2, 12], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 1.5, 8.75]}, + "faces": { + "north": {"uv": [4, 6, 4.5, 7], "texture": "#0"}, + "east": {"uv": [3, 5, 4.5, 6], "texture": "#0"}, + "south": {"uv": [7.5, 5.5, 8, 6.5], "texture": "#0"}, + "west": {"uv": [5, 3, 6.5, 4], "texture": "#0"}, + "up": {"uv": [2.5, 9, 2, 7.5], "texture": "#0"}, + "down": {"uv": [3, 7.5, 2.5, 9], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "translation": [0, 14.5, 0] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "sit", + "origin": [8, 8, 8], + "color": 0, + "children": [ + { + "name": "head", + "origin": [9.5, 0, 4], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + { + "name": "hair", + "origin": [8, 2, 7], + "color": 0, + "children": [4] + }, + { + "name": "mouth", + "origin": [8, 3.5, 5.5], + "color": 0, + "children": [5] + } + ] + }, + { + "name": "body", + "origin": [8, 8, 8], + "color": 0, + "children": [6, 7, 8, 9] + }, + { + "name": "arms", + "origin": [4, 1, 8], + "color": 0, + "children": [ + { + "name": "group", + "origin": [4, 1, 8], + "color": 0, + "children": [10] + }, + { + "name": "group", + "origin": [4, 1, 8], + "color": 0, + "children": [11] + } + ] + }, + 12 + ] + } + ] +} diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/sit.json b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/sit.json new file mode 100644 index 0000000..806d29d --- /dev/null +++ b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/sit.json @@ -0,0 +1,262 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "modfest_plushies:item/plushie/littlebuddy" + }, + "elements": [ + { + "from": [7.5, 0, 10], + "to": [8.5, 2, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 10]}, + "faces": { + "north": {"uv": [4, 6, 4.5, 7], "texture": "#0"}, + "east": {"uv": [3, 5, 4.5, 6], "texture": "#0"}, + "south": {"uv": [7.5, 5.5, 8, 6.5], "texture": "#0"}, + "west": {"uv": [5, 3, 6.5, 4], "texture": "#0"}, + "up": {"uv": [2.5, 9, 2, 7.5], "texture": "#0"}, + "down": {"uv": [3, 7.5, 2.5, 9], "texture": "#0"} + } + }, + { + "from": [6, 1, 6], + "to": [10, 4, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [2, 0, 4, 1.5], "texture": "#0"}, + "east": {"uv": [2, 1.5, 4, 3], "texture": "#0"}, + "south": {"uv": [2, 3, 4, 4.5], "texture": "#0"}, + "west": {"uv": [0, 4, 2, 5.5], "texture": "#0"}, + "up": {"uv": [2, 2, 0, 0], "texture": "#0"}, + "down": {"uv": [2, 2, 0, 4], "texture": "#0"} + } + }, + { + "from": [7, 0, 6], + "to": [9, 1, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 8]}, + "faces": { + "north": {"uv": [3, 4.5, 4, 5], "texture": "#0"}, + "east": {"uv": [5.5, 5.5, 7.5, 6], "texture": "#0"}, + "south": {"uv": [7.5, 6.5, 8.5, 7], "texture": "#0"}, + "west": {"uv": [6, 0, 8, 0.5], "texture": "#0"}, + "up": {"uv": [5, 5, 4, 3], "texture": "#0"}, + "down": {"uv": [3, 4.5, 2, 6.5], "texture": "#0"} + } + }, + { + "from": [6, 0, 7], + "to": [7, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [6, -1, 8]}, + "faces": { + "north": {"uv": [4.5, 5, 5, 5.5], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 8.5], "texture": "#0"}, + "south": {"uv": [8, 8, 8.5, 8.5], "texture": "#0"}, + "west": {"uv": [8, 0, 9, 0.5], "texture": "#0"}, + "up": {"uv": [8.5, 1.5, 8, 0.5], "texture": "#0"}, + "down": {"uv": [1.5, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [9, 0, 7], + "to": [10, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -1, 8]}, + "faces": { + "north": {"uv": [0, 8.5, 0.5, 9], "texture": "#0"}, + "east": {"uv": [8, 1.5, 9, 2], "texture": "#0"}, + "south": {"uv": [0.5, 8.5, 1, 9], "texture": "#0"}, + "west": {"uv": [8, 2, 9, 2.5], "texture": "#0"}, + "up": {"uv": [2, 9, 1.5, 8], "texture": "#0"}, + "down": {"uv": [3.5, 8, 3, 9], "texture": "#0"} + } + }, + { + "from": [4, 3, 6], + "to": [6, 4, 8], + "rotation": {"angle": 45, "axis": "z", "origin": [6, 3.5, 7]}, + "faces": { + "north": {"uv": [8, 2.5, 9, 3], "texture": "#0"}, + "east": {"uv": [3.5, 8, 4.5, 8.5], "texture": "#0"}, + "south": {"uv": [8, 4, 9, 4.5], "texture": "#0"}, + "west": {"uv": [4.5, 8, 5.5, 8.5], "texture": "#0"}, + "up": {"uv": [7, 1.5, 6, 0.5], "texture": "#0"}, + "down": {"uv": [7, 1.5, 6, 2.5], "texture": "#0"} + } + }, + { + "from": [10, 3, 6], + "to": [12, 4, 8], + "rotation": {"angle": -45, "axis": "z", "origin": [10, 3.5, 7]}, + "faces": { + "north": {"uv": [8, 4.5, 9, 5], "texture": "#0"}, + "east": {"uv": [8, 5, 9, 5.5], "texture": "#0"}, + "south": {"uv": [5.5, 8, 6.5, 8.5], "texture": "#0"}, + "west": {"uv": [8, 5.5, 9, 6], "texture": "#0"}, + "up": {"uv": [4, 7, 3, 6], "texture": "#0"}, + "down": {"uv": [7, 4, 6, 5], "texture": "#0"} + } + }, + { + "from": [7.5, 4, 4], + "to": [8.5, 5, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 0, 4]}, + "faces": { + "north": {"uv": [8.5, 0.5, 9, 1], "texture": "#0"}, + "east": {"uv": [8, 6, 9, 6.5], "texture": "#0"}, + "south": {"uv": [8.5, 1, 9, 1.5], "texture": "#0"}, + "west": {"uv": [6.5, 8, 7.5, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 8, 8, 7], "texture": "#0"}, + "down": {"uv": [8, 8, 7.5, 9], "texture": "#0"} + } + }, + { + "from": [7.5, 3, 5], + "to": [8.5, 4, 6], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 3.5, 5.5]}, + "faces": { + "north": {"uv": [3.5, 8.5, 4, 9], "texture": "#0"}, + "east": {"uv": [4, 8.5, 4.5, 9], "texture": "#0"}, + "south": {"uv": [4.5, 8.5, 5, 9], "texture": "#0"}, + "west": {"uv": [5, 8.5, 5.5, 9], "texture": "#0"}, + "up": {"uv": [6, 9, 5.5, 8.5], "texture": "#0"}, + "down": {"uv": [6.5, 8.5, 6, 9], "texture": "#0"} + } + }, + { + "from": [6, 4, 6], + "to": [10, 5, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 6]}, + "faces": { + "north": {"uv": [6, 2.5, 8, 3], "texture": "#0"}, + "east": {"uv": [7.5, 3, 9, 3.5], "texture": "#0"}, + "south": {"uv": [6, 5, 8, 5.5], "texture": "#0"}, + "west": {"uv": [7.5, 3.5, 9, 4], "texture": "#0"}, + "up": {"uv": [6, 1.5, 4, 0], "texture": "#0"}, + "down": {"uv": [6, 1.5, 4, 3], "texture": "#0"} + } + }, + { + "from": [7, 5, 7.5], + "to": [9, 8, 9.5], + "rotation": {"angle": 25, "axis": "x", "origin": [8, 5, 8.5]}, + "faces": { + "north": {"uv": [5, 4, 6, 5.5], "texture": "#0"}, + "east": {"uv": [0, 5.5, 1, 7], "texture": "#0"}, + "south": {"uv": [1, 5.5, 2, 7], "texture": "#0"}, + "west": {"uv": [4.5, 5.5, 5.5, 7], "texture": "#0"}, + "up": {"uv": [6.5, 7, 5.5, 6], "texture": "#0"}, + "down": {"uv": [3, 6.5, 2, 7.5], "texture": "#0"} + } + }, + { + "from": [5.5, 4, 5], + "to": [7.5, 6, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 4]}, + "faces": { + "north": {"uv": [6.5, 3, 7.5, 4], "texture": "#0"}, + "east": {"uv": [6.5, 6, 7.5, 7], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [7, 0.5, 8, 1.5], "texture": "#0"}, + "up": {"uv": [2, 8, 1, 7], "texture": "#0"}, + "down": {"uv": [8, 1.5, 7, 2.5], "texture": "#0"} + } + }, + { + "from": [8.5, 4, 5], + "to": [10.5, 6, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [10.5, 0, 4]}, + "faces": { + "north": {"uv": [3, 7, 4, 8], "texture": "#0"}, + "east": {"uv": [4, 7, 5, 8], "texture": "#0"}, + "south": {"uv": [7, 4, 8, 5], "texture": "#0"}, + "west": {"uv": [5, 7, 6, 8], "texture": "#0"}, + "up": {"uv": [7, 8, 6, 7], "texture": "#0"}, + "down": {"uv": [8, 7, 7, 8], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "translation": [0, 14.5, 0] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "sit", + "origin": [8, 8, 8], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + { + "name": "arms", + "origin": [4, 1, 8], + "color": 0, + "children": [ + { + "name": "group", + "origin": [4, 1, 8], + "color": 0, + "children": [5] + }, + { + "name": "group", + "origin": [4, 1, 8], + "color": 0, + "children": [6] + } + ] + }, + 7, + { + "name": "mouth", + "origin": [8, 3.5, 5.5], + "color": 0, + "children": [8] + }, + 9, + { + "name": "hair", + "origin": [8, 2, 7], + "color": 0, + "children": [10] + }, + 11, + 12 + ] + } + ] +} diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/stand.json b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/stand.json new file mode 100644 index 0000000..41ccaea --- /dev/null +++ b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/littlebuddy/stand.json @@ -0,0 +1,262 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "modfest_plushies:item/plushie/littlebuddy" + }, + "elements": [ + { + "from": [7.5, 0, 10], + "to": [8.5, 2, 13], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 1, 10]}, + "faces": { + "north": {"uv": [4, 6, 4.5, 7], "texture": "#0"}, + "east": {"uv": [3, 5, 4.5, 6], "texture": "#0"}, + "south": {"uv": [7.5, 5.5, 8, 6.5], "texture": "#0"}, + "west": {"uv": [5, 3, 6.5, 4], "texture": "#0"}, + "up": {"uv": [2.5, 9, 2, 7.5], "texture": "#0"}, + "down": {"uv": [3, 7.5, 2.5, 9], "texture": "#0"} + } + }, + { + "from": [6, 1, 6], + "to": [10, 4, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [2, 0, 4, 1.5], "texture": "#0"}, + "east": {"uv": [2, 1.5, 4, 3], "texture": "#0"}, + "south": {"uv": [2, 3, 4, 4.5], "texture": "#0"}, + "west": {"uv": [0, 4, 2, 5.5], "texture": "#0"}, + "up": {"uv": [2, 2, 0, 0], "texture": "#0"}, + "down": {"uv": [2, 2, 0, 4], "texture": "#0"} + } + }, + { + "from": [7, 0, 6], + "to": [9, 1, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 8]}, + "faces": { + "north": {"uv": [3, 4.5, 4, 5], "texture": "#0"}, + "east": {"uv": [5.5, 5.5, 7.5, 6], "texture": "#0"}, + "south": {"uv": [7.5, 6.5, 8.5, 7], "texture": "#0"}, + "west": {"uv": [6, 0, 8, 0.5], "texture": "#0"}, + "up": {"uv": [5, 5, 4, 3], "texture": "#0"}, + "down": {"uv": [3, 4.5, 2, 6.5], "texture": "#0"} + } + }, + { + "from": [6, 0, 7], + "to": [7, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [6, -1, 8]}, + "faces": { + "north": {"uv": [4.5, 5, 5, 5.5], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 8.5], "texture": "#0"}, + "south": {"uv": [8, 8, 8.5, 8.5], "texture": "#0"}, + "west": {"uv": [8, 0, 9, 0.5], "texture": "#0"}, + "up": {"uv": [8.5, 1.5, 8, 0.5], "texture": "#0"}, + "down": {"uv": [1.5, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [9, 0, 7], + "to": [10, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -1, 8]}, + "faces": { + "north": {"uv": [0, 8.5, 0.5, 9], "texture": "#0"}, + "east": {"uv": [8, 1.5, 9, 2], "texture": "#0"}, + "south": {"uv": [0.5, 8.5, 1, 9], "texture": "#0"}, + "west": {"uv": [8, 2, 9, 2.5], "texture": "#0"}, + "up": {"uv": [2, 9, 1.5, 8], "texture": "#0"}, + "down": {"uv": [3.5, 8, 3, 9], "texture": "#0"} + } + }, + { + "from": [4, 3, 6], + "to": [6, 4, 8], + "rotation": {"angle": 45, "axis": "z", "origin": [6, 3.5, 7]}, + "faces": { + "north": {"uv": [8, 2.5, 9, 3], "texture": "#0"}, + "east": {"uv": [3.5, 8, 4.5, 8.5], "texture": "#0"}, + "south": {"uv": [8, 4, 9, 4.5], "texture": "#0"}, + "west": {"uv": [4.5, 8, 5.5, 8.5], "texture": "#0"}, + "up": {"uv": [7, 1.5, 6, 0.5], "texture": "#0"}, + "down": {"uv": [7, 1.5, 6, 2.5], "texture": "#0"} + } + }, + { + "from": [10, 3, 6], + "to": [12, 4, 8], + "rotation": {"angle": -45, "axis": "z", "origin": [10, 3.5, 7]}, + "faces": { + "north": {"uv": [8, 4.5, 9, 5], "texture": "#0"}, + "east": {"uv": [8, 5, 9, 5.5], "texture": "#0"}, + "south": {"uv": [5.5, 8, 6.5, 8.5], "texture": "#0"}, + "west": {"uv": [8, 5.5, 9, 6], "texture": "#0"}, + "up": {"uv": [4, 7, 3, 6], "texture": "#0"}, + "down": {"uv": [7, 4, 6, 5], "texture": "#0"} + } + }, + { + "from": [7.5, 4, 4], + "to": [8.5, 5, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 0, 4]}, + "faces": { + "north": {"uv": [8.5, 0.5, 9, 1], "texture": "#0"}, + "east": {"uv": [8, 6, 9, 6.5], "texture": "#0"}, + "south": {"uv": [8.5, 1, 9, 1.5], "texture": "#0"}, + "west": {"uv": [6.5, 8, 7.5, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 8, 8, 7], "texture": "#0"}, + "down": {"uv": [8, 8, 7.5, 9], "texture": "#0"} + } + }, + { + "from": [7.5, 3, 5], + "to": [8.5, 4, 6], + "rotation": {"angle": -35, "axis": "x", "origin": [8, 3.5, 5.5]}, + "faces": { + "north": {"uv": [3.5, 8.5, 4, 9], "texture": "#0"}, + "east": {"uv": [4, 8.5, 4.5, 9], "texture": "#0"}, + "south": {"uv": [4.5, 8.5, 5, 9], "texture": "#0"}, + "west": {"uv": [5, 8.5, 5.5, 9], "texture": "#0"}, + "up": {"uv": [6, 9, 5.5, 8.5], "texture": "#0"}, + "down": {"uv": [6.5, 8.5, 6, 9], "texture": "#0"} + } + }, + { + "from": [6, 4, 6], + "to": [10, 5, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 6]}, + "faces": { + "north": {"uv": [6, 2.5, 8, 3], "texture": "#0"}, + "east": {"uv": [7.5, 3, 9, 3.5], "texture": "#0"}, + "south": {"uv": [6, 5, 8, 5.5], "texture": "#0"}, + "west": {"uv": [7.5, 3.5, 9, 4], "texture": "#0"}, + "up": {"uv": [6, 1.5, 4, 0], "texture": "#0"}, + "down": {"uv": [6, 1.5, 4, 3], "texture": "#0"} + } + }, + { + "from": [7, 5, 7.5], + "to": [9, 8, 9.5], + "rotation": {"angle": 25, "axis": "x", "origin": [8, 5, 8.5]}, + "faces": { + "north": {"uv": [5, 4, 6, 5.5], "texture": "#0"}, + "east": {"uv": [0, 5.5, 1, 7], "texture": "#0"}, + "south": {"uv": [1, 5.5, 2, 7], "texture": "#0"}, + "west": {"uv": [4.5, 5.5, 5.5, 7], "texture": "#0"}, + "up": {"uv": [6.5, 7, 5.5, 6], "texture": "#0"}, + "down": {"uv": [3, 6.5, 2, 7.5], "texture": "#0"} + } + }, + { + "from": [5.5, 4, 5], + "to": [7.5, 6, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 4]}, + "faces": { + "north": {"uv": [6.5, 3, 7.5, 4], "texture": "#0"}, + "east": {"uv": [6.5, 6, 7.5, 7], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [7, 0.5, 8, 1.5], "texture": "#0"}, + "up": {"uv": [2, 8, 1, 7], "texture": "#0"}, + "down": {"uv": [8, 1.5, 7, 2.5], "texture": "#0"} + } + }, + { + "from": [8.5, 4, 5], + "to": [10.5, 6, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [10.5, 0, 4]}, + "faces": { + "north": {"uv": [3, 7, 4, 8], "texture": "#0"}, + "east": {"uv": [4, 7, 5, 8], "texture": "#0"}, + "south": {"uv": [7, 4, 8, 5], "texture": "#0"}, + "west": {"uv": [5, 7, 6, 8], "texture": "#0"}, + "up": {"uv": [7, 8, 6, 7], "texture": "#0"}, + "down": {"uv": [8, 7, 7, 8], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "translation": [0, 14.5, 0] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "sit", + "origin": [8, 8, 8], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + { + "name": "arms", + "origin": [4, 1, 8], + "color": 0, + "children": [ + { + "name": "group", + "origin": [4, 1, 8], + "color": 0, + "children": [5] + }, + { + "name": "group", + "origin": [4, 1, 8], + "color": 0, + "children": [6] + } + ] + }, + 7, + { + "name": "mouth", + "origin": [8, 3.5, 5.5], + "color": 0, + "children": [8] + }, + 9, + { + "name": "hair", + "origin": [8, 2, 7], + "color": 0, + "children": [10] + }, + 11, + 12 + ] + } + ] +} diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/box.json b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/box.json new file mode 100644 index 0000000..f01d0bc --- /dev/null +++ b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/box.json @@ -0,0 +1,388 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "modfest_plushies:item/plushie/plantie" + }, + "elements": [ + { + "from": [4, 3, 4], + "to": [12, 11, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 3, 9]}, + "faces": { + "north": {"uv": [4, 0, 6, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 4, 2, 6], "texture": "#0"}, + "west": {"uv": [0, 2, 2, 4], "texture": "#0"}, + "up": {"uv": [2, 0, 4, 2], "texture": "#0"}, + "down": {"uv": [2, 2, 4, 4], "texture": "#0"} + } + }, + { + "from": [11, 11, 3], + "to": [13, 13, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 11, 8]}, + "faces": { + "north": {"uv": [7.75, 4.5, 8.25, 5], "texture": "#0"}, + "east": {"uv": [2, 4, 4.5, 4.5], "texture": "#0"}, + "south": {"uv": [4, 3.5, 4.5, 4], "texture": "#0"}, + "west": {"uv": [4, 2, 6.5, 2.5], "texture": "#0"}, + "up": {"uv": [2, 4.5, 2.5, 7], "texture": "#0"}, + "down": {"uv": [2.5, 4.5, 3, 7], "texture": "#0"} + } + }, + { + "from": [3, 11, 3], + "to": [5, 13, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 11, 8]}, + "faces": { + "north": {"uv": [5.5, 7.75, 6, 8.25], "texture": "#0"}, + "east": {"uv": [4, 2.5, 6.5, 3], "texture": "#0"}, + "south": {"uv": [7.75, 5, 8.25, 5.5], "texture": "#0"}, + "west": {"uv": [4, 3, 6.5, 3.5], "texture": "#0"}, + "up": {"uv": [3, 4.5, 3.5, 7], "texture": "#0"}, + "down": {"uv": [3.5, 4.5, 4, 7], "texture": "#0"} + } + }, + { + "from": [5, 11, 3], + "to": [11, 13, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 11, 8]}, + "faces": { + "north": {"uv": [6, 0, 7.5, 0.5], "texture": "#0"}, + "east": {"uv": [7.75, 6, 8.25, 6.5], "texture": "#0"}, + "south": {"uv": [0, 6, 1.5, 6.5], "texture": "#0"}, + "west": {"uv": [7.75, 6.5, 8.25, 7], "texture": "#0"}, + "up": {"uv": [5.75, 3.5, 7.25, 4], "texture": "#0"}, + "down": {"uv": [5.75, 4, 7.25, 4.5], "texture": "#0"} + } + }, + { + "from": [5, 11, 11], + "to": [11, 13, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 11, 16]}, + "faces": { + "north": {"uv": [5.5, 5.5, 7, 6], "texture": "#0"}, + "east": {"uv": [7.75, 6, 8.25, 6.5], "texture": "#0"}, + "south": {"uv": [4, 5.5, 5.5, 6], "texture": "#0"}, + "west": {"uv": [7.75, 6.5, 8.25, 7], "texture": "#0"}, + "up": {"uv": [5.25, 4.5, 6.75, 5], "texture": "#0"}, + "down": {"uv": [5.25, 5, 6.75, 5.5], "texture": "#0"} + } + }, + { + "from": [5, 20, 8], + "to": [8, 23, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 9]}, + "faces": { + "north": {"uv": [6, 6, 6.75, 6.75], "texture": "#0"}, + "east": {"uv": [6.5, 2.75, 7, 3.5], "texture": "#0"}, + "south": {"uv": [0, 6.5, 0.75, 7.25], "texture": "#0"}, + "west": {"uv": [7, 2.75, 7.5, 3.5], "texture": "#0"}, + "up": {"uv": [7.75, 6, 7, 5.5], "texture": "#0"}, + "down": {"uv": [1.25, 7.25, 0.5, 7.75], "texture": "#0"} + } + }, + { + "from": [0, 19, 7], + "to": [3, 22, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 20, 8]}, + "faces": { + "north": {"uv": [0.75, 6.5, 1.5, 7.25], "texture": "#0"}, + "east": {"uv": [7.25, 0.5, 7.75, 1.25], "texture": "#0"}, + "south": {"uv": [6.5, 2, 7.25, 2.75], "texture": "#0"}, + "west": {"uv": [7.25, 1.25, 7.75, 2], "texture": "#0"}, + "up": {"uv": [8, 2.5, 7.25, 2], "texture": "#0"}, + "down": {"uv": [8, 3.5, 7.25, 4], "texture": "#0"} + } + }, + { + "from": [6, 10, 6], + "to": [8, 12, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 7]}, + "faces": { + "north": {"uv": [7.75, 7, 8.25, 7.5], "texture": "#0"}, + "east": {"uv": [7.75, 7.5, 8.25, 8], "texture": "#0"}, + "south": {"uv": [1.25, 8, 1.75, 8.5], "texture": "#0"}, + "west": {"uv": [1.75, 8, 2.25, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 2.5, 8, 2], "texture": "#0"}, + "down": {"uv": [2.75, 8, 2.25, 8.5], "texture": "#0"} + } + }, + { + "from": [7, 12, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]}, + "faces": { + "north": {"uv": [8, 2.5, 8.5, 3], "texture": "#0"}, + "east": {"uv": [2.75, 8, 3.25, 8.5], "texture": "#0"}, + "south": {"uv": [8, 3, 8.5, 3.5], "texture": "#0"}, + "west": {"uv": [3.25, 8, 3.75, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 4, 8, 3.5], "texture": "#0"}, + "down": {"uv": [4.25, 8, 3.75, 8.5], "texture": "#0"} + } + }, + { + "from": [8, 14, 7], + "to": [10, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 14, 8]}, + "faces": { + "north": {"uv": [7.25, 4, 7.75, 4.75], "texture": "#0"}, + "east": {"uv": [7.25, 4.75, 7.75, 5.5], "texture": "#0"}, + "south": {"uv": [7.25, 6, 7.75, 6.75], "texture": "#0"}, + "west": {"uv": [7.25, 6.75, 7.75, 7.5], "texture": "#0"}, + "up": {"uv": [7, 8.5, 6.5, 8], "texture": "#0"}, + "down": {"uv": [8.25, 8, 7.75, 8.5], "texture": "#0"} + } + }, + { + "from": [9, 17, 8], + "to": [11, 21, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 17, 9]}, + "faces": { + "north": {"uv": [1.5, 6, 2, 7], "texture": "#0"}, + "east": {"uv": [4.75, 6.5, 5.25, 7.5], "texture": "#0"}, + "south": {"uv": [5.25, 6.5, 5.75, 7.5], "texture": "#0"}, + "west": {"uv": [6.75, 0.5, 7.25, 1.5], "texture": "#0"}, + "up": {"uv": [0.5, 8.75, 0, 8.25], "texture": "#0"}, + "down": {"uv": [8.75, 0, 8.25, 0.5], "texture": "#0"} + } + }, + { + "from": [7, 19, 9], + "to": [9, 22, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 19, 10]}, + "faces": { + "north": {"uv": [7.5, 2.5, 8, 3.25], "texture": "#0"}, + "east": {"uv": [4.5, 7.5, 5, 8.25], "texture": "#0"}, + "south": {"uv": [5, 7.5, 5.5, 8.25], "texture": "#0"}, + "west": {"uv": [7.25, 7.5, 7.75, 8.25], "texture": "#0"}, + "up": {"uv": [1, 8.75, 0.5, 8.25], "texture": "#0"}, + "down": {"uv": [4.75, 8.25, 4.25, 8.75], "texture": "#0"} + } + }, + { + "from": [4, 19, 10], + "to": [7, 23, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 20, 11]}, + "faces": { + "north": {"uv": [6, 0.5, 6.75, 1.5], "texture": "#0"}, + "east": {"uv": [6.75, 4.5, 7.25, 5.5], "texture": "#0"}, + "south": {"uv": [4, 6, 4.75, 7], "texture": "#0"}, + "west": {"uv": [5.75, 6.75, 6.25, 7.75], "texture": "#0"}, + "up": {"uv": [8.25, 0.5, 7.5, 0], "texture": "#0"}, + "down": {"uv": [1.25, 7.75, 0.5, 8.25], "texture": "#0"} + } + }, + { + "from": [1, 17, 9], + "to": [6, 21, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 18, 10]}, + "faces": { + "north": {"uv": [4.5, 3.5, 5.75, 4.5], "texture": "#0"}, + "east": {"uv": [6.75, 6, 7.25, 7], "texture": "#0"}, + "south": {"uv": [4, 4.5, 5.25, 5.5], "texture": "#0"}, + "west": {"uv": [6.25, 6.75, 6.75, 7.75], "texture": "#0"}, + "up": {"uv": [7.25, 2, 6, 1.5], "texture": "#0"}, + "down": {"uv": [6, 6, 4.75, 6.5], "texture": "#0"} + } + }, + { + "from": [3, 21, 9], + "to": [6, 22, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 22, 10]}, + "faces": { + "north": {"uv": [7, 8.25, 7.75, 8.5], "texture": "#0"}, + "east": {"uv": [7.5, 3.25, 7.75, 3.5], "texture": "#0"}, + "south": {"uv": [8.25, 7, 9, 7.25], "texture": "#0"}, + "west": {"uv": [8.25, 7.75, 8.5, 8], "texture": "#0"}, + "up": {"uv": [8.5, 1, 7.75, 0.75], "texture": "#0"}, + "down": {"uv": [8.5, 1, 7.75, 1.5], "texture": "#0"} + } + }, + { + "from": [1, 21, 10], + "to": [4, 22, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 18, 11]}, + "faces": { + "north": {"uv": [8.25, 7.25, 9, 7.5], "texture": "#0"}, + "east": {"uv": [8.25, 8, 8.75, 8.25], "texture": "#0"}, + "south": {"uv": [8.25, 7.5, 9, 7.75], "texture": "#0"}, + "west": {"uv": [8.25, 8.25, 8.75, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 2, 7.75, 1.5], "texture": "#0"}, + "down": {"uv": [8.5, 4, 7.75, 4.5], "texture": "#0"} + } + }, + { + "from": [1, 17, 8], + "to": [3, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 18, 9]}, + "faces": { + "north": {"uv": [8.25, 4.5, 8.75, 5], "texture": "#0"}, + "east": {"uv": [4.5, 7, 4.75, 7.5], "texture": "#0"}, + "south": {"uv": [4.75, 8.25, 5.25, 8.75], "texture": "#0"}, + "west": {"uv": [1.25, 7.25, 1.5, 7.75], "texture": "#0"}, + "up": {"uv": [9, 0.75, 8.5, 0.5], "texture": "#0"}, + "down": {"uv": [9, 0.75, 8.5, 1], "texture": "#0"} + } + }, + { + "from": [3, 16, 8], + "to": [5, 18, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 14, 9]}, + "faces": { + "north": {"uv": [8.25, 5, 8.75, 5.5], "texture": "#0"}, + "east": {"uv": [5.25, 8.25, 5.75, 8.75], "texture": "#0"}, + "south": {"uv": [8.25, 5.5, 8.75, 6], "texture": "#0"}, + "west": {"uv": [5.75, 8.25, 6.25, 8.75], "texture": "#0"}, + "up": {"uv": [8.75, 6.5, 8.25, 6], "texture": "#0"}, + "down": {"uv": [8.75, 6.5, 8.25, 7], "texture": "#0"} + } + }, + { + "from": [4, 18, 8], + "to": [5, 19, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 16, 9]}, + "faces": { + "north": {"uv": [9.25, 8.25, 9.5, 8.5], "texture": "#0"}, + "east": {"uv": [8.75, 8.25, 9.25, 8.5], "texture": "#0"}, + "south": {"uv": [10, 8.25, 10.25, 8.5], "texture": "#0"}, + "west": {"uv": [9.5, 8.25, 10, 8.5], "texture": "#0"}, + "up": {"uv": [9.5, 8.25, 9.25, 7.75], "texture": "#0"}, + "down": {"uv": [9.75, 7.75, 9.5, 8.25], "texture": "#0"} + } + }, + { + "from": [9, 0, 8], + "to": [11, 4, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 0, 9]}, + "faces": { + "north": {"uv": [2, 7, 2.5, 8], "texture": "#0"}, + "east": {"uv": [14, 14.75, 14, 15.75], "texture": "#0"}, + "south": {"uv": [2.5, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [2, 14.75, 2, 15.75], "texture": "#0"}, + "up": {"uv": [2.25, 2, 2.75, 2], "texture": "#0"}, + "down": {"uv": [2.25, 14, 2.75, 14], "texture": "#0"} + } + }, + { + "from": [9, 0, 4], + "to": [11, 0, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 0, 9]}, + "faces": { + "north": {"uv": [2, 9.25, 2.5, 9.25], "texture": "#0"}, + "east": {"uv": [14, 14.75, 15, 14.75], "texture": "#0"}, + "south": {"uv": [2.25, 14.75, 2.75, 14.75], "texture": "#0"}, + "west": {"uv": [2, 14.75, 3, 14.75], "texture": "#0"}, + "up": {"uv": [3.5, 8, 3, 7], "texture": "#0"}, + "down": {"uv": [3.5, 7, 3, 8], "texture": "#0"} + } + }, + { + "from": [5, 0, 8], + "to": [7, 4, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 0, 9]}, + "faces": { + "north": {"uv": [0, 7.25, 0.5, 8.25], "texture": "#0"}, + "east": {"uv": [14, 14.75, 14, 15.75], "texture": "#0"}, + "south": {"uv": [0.5, 7.25, 0, 8.25], "texture": "#0"}, + "west": {"uv": [2, 14.75, 2, 15.75], "texture": "#0"}, + "up": {"uv": [2.25, 2, 2.75, 2], "texture": "#0"}, + "down": {"uv": [2.25, 14, 2.75, 14], "texture": "#0"} + } + }, + { + "from": [5, 0, 4], + "to": [7, 0, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 0, 9]}, + "faces": { + "north": {"uv": [2, 9.25, 2.5, 9.25], "texture": "#0"}, + "east": {"uv": [14, 14.75, 15, 14.75], "texture": "#0"}, + "south": {"uv": [2.25, 14.75, 2.75, 14.75], "texture": "#0"}, + "west": {"uv": [2, 14.75, 3, 14.75], "texture": "#0"}, + "up": {"uv": [4.5, 8, 4, 7], "texture": "#0"}, + "down": {"uv": [4.5, 7, 4, 8], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "translation": [0, 1, -1.25] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "box", + "origin": [8, 3, 8], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + { + "name": "plant", + "origin": [8, 8, 4], + "color": 0, + "children": [ + { + "name": "face", + "origin": [8, 8, 4], + "color": 0, + "children": [5, 6] + }, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + }, + { + "name": "legs", + "origin": [8, 8, 4], + "color": 0, + "children": [19, 20, 21, 22] + } + ] + } + ] +} diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/lay.json b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/lay.json new file mode 100644 index 0000000..3b1ce8a --- /dev/null +++ b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/lay.json @@ -0,0 +1,401 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "modfest_plushies:item/plushie/plantie" + }, + "elements": [ + { + "from": [2.75, 0.5, 5.75], + "to": [10.75, 8.5, 13.75], + "rotation": {"angle": 10, "axis": "x", "origin": [0, 5.75, 6]}, + "faces": { + "north": {"uv": [2, 0, 4, 2], "rotation": 90, "texture": "#0"}, + "east": {"uv": [0, 4, 2, 6], "rotation": 90, "texture": "#0"}, + "south": {"uv": [2, 2, 4, 4], "rotation": 90, "texture": "#0"}, + "west": {"uv": [4, 0, 6, 2], "rotation": 270, "texture": "#0"}, + "up": {"uv": [0, 2, 2, 4], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [1.75, -0.5, 3.75], + "to": [11.75, 1.5, 5.75], + "rotation": {"angle": 10, "axis": "x", "origin": [0, 5.75, 6]}, + "faces": { + "north": {"uv": [2, 4.5, 2.5, 7], "rotation": 90, "texture": "#0"}, + "east": {"uv": [4, 3.5, 4.5, 4], "rotation": 90, "texture": "#0"}, + "south": {"uv": [2.5, 4.5, 3, 7], "rotation": 90, "texture": "#0"}, + "west": {"uv": [7.75, 4.5, 8.25, 5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [4, 2, 6.5, 2.5], "texture": "#0"}, + "down": {"uv": [2, 4, 4.5, 4.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [1.75, 7.5, 3.75], + "to": [11.75, 9.5, 5.75], + "rotation": {"angle": 10, "axis": "x", "origin": [0, 5.75, 6]}, + "faces": { + "north": {"uv": [3, 4.5, 3.5, 7], "rotation": 90, "texture": "#0"}, + "east": {"uv": [7.75, 5, 8.25, 5.5], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5, 4.5, 4, 7], "rotation": 90, "texture": "#0"}, + "west": {"uv": [5.5, 7.75, 6, 8.25], "rotation": 270, "texture": "#0"}, + "up": {"uv": [4, 3, 6.5, 3.5], "texture": "#0"}, + "down": {"uv": [4, 2.5, 6.5, 3], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [1.75, 1.5, 3.75], + "to": [3.75, 7.5, 5.75], + "rotation": {"angle": 10, "axis": "x", "origin": [0, 5.75, 6]}, + "faces": { + "north": {"uv": [5.75, 3.5, 7.25, 4], "rotation": 90, "texture": "#0"}, + "east": {"uv": [0, 6, 1.5, 6.5], "rotation": 90, "texture": "#0"}, + "south": {"uv": [5.75, 4, 7.25, 4.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [6, 0, 7.5, 0.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [7.75, 6.5, 8.25, 7], "texture": "#0"}, + "down": {"uv": [7.75, 6, 8.25, 6.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [9.75, 1.5, 3.75], + "to": [11.75, 7.5, 5.75], + "rotation": {"angle": 10, "axis": "x", "origin": [0, 5.75, 6]}, + "faces": { + "north": {"uv": [5.25, 4.5, 6.75, 5], "rotation": 90, "texture": "#0"}, + "east": {"uv": [4, 5.5, 5.5, 6], "rotation": 90, "texture": "#0"}, + "south": {"uv": [5.25, 5, 6.75, 5.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [5.5, 5.5, 7, 6], "rotation": 270, "texture": "#0"}, + "up": {"uv": [7.75, 6.5, 8.25, 7], "texture": "#0"}, + "down": {"uv": [7.75, 6, 8.25, 6.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [6.75, 3.47926, -6.88989], + "to": [8.75, 6.47926, -3.88989], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [7.75, 6, 7, 5.5], "rotation": 90, "texture": "#0"}, + "east": {"uv": [0, 6.5, 0.75, 7.25], "rotation": 90, "texture": "#0"}, + "south": {"uv": [1.25, 7.25, 0.5, 7.75], "rotation": 90, "texture": "#0"}, + "west": {"uv": [6, 6, 6.75, 6.75], "rotation": 270, "texture": "#0"}, + "up": {"uv": [7, 2.75, 7.5, 3.5], "texture": "#0"}, + "down": {"uv": [6.5, 2.75, 7, 3.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [5.75, 8.47926, -5.88989], + "to": [7.75, 11.47926, -2.88989], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [8, 2.5, 7.25, 2], "rotation": 90, "texture": "#0"}, + "east": {"uv": [6.5, 2, 7.25, 2.75], "rotation": 90, "texture": "#0"}, + "south": {"uv": [8, 3.5, 7.25, 4], "rotation": 90, "texture": "#0"}, + "west": {"uv": [0.75, 6.5, 1.5, 7.25], "rotation": 270, "texture": "#0"}, + "up": {"uv": [7.25, 1.25, 7.75, 2], "texture": "#0"}, + "down": {"uv": [7.25, 0.5, 7.75, 1.25], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [4.75, 3.47926, 4.11011], + "to": [6.75, 5.47926, 6.11011], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [8.5, 2.5, 8, 2], "rotation": 90, "texture": "#0"}, + "east": {"uv": [1.25, 8, 1.75, 8.5], "rotation": 90, "texture": "#0"}, + "south": {"uv": [2.75, 8, 2.25, 8.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [7.75, 7, 8.25, 7.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [1.75, 8, 2.25, 8.5], "texture": "#0"}, + "down": {"uv": [7.75, 7.5, 8.25, 8], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [5.75, 2.47926, 2.11011], + "to": [7.75, 4.47926, 4.11011], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [8.5, 4, 8, 3.5], "rotation": 90, "texture": "#0"}, + "east": {"uv": [8, 3, 8.5, 3.5], "rotation": 90, "texture": "#0"}, + "south": {"uv": [4.25, 8, 3.75, 8.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [8, 2.5, 8.5, 3], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.25, 8, 3.75, 8.5], "texture": "#0"}, + "down": {"uv": [2.75, 8, 3.25, 8.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [5.75, 1.47926, -0.88989], + "to": [7.75, 3.47926, 2.11011], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [7, 8.5, 6.5, 8], "rotation": 90, "texture": "#0"}, + "east": {"uv": [7.25, 6, 7.75, 6.75], "rotation": 90, "texture": "#0"}, + "south": {"uv": [8.25, 8, 7.75, 8.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [7.25, 4, 7.75, 4.75], "rotation": 270, "texture": "#0"}, + "up": {"uv": [7.25, 6.75, 7.75, 7.5], "texture": "#0"}, + "down": {"uv": [7.25, 4.75, 7.75, 5.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [6.75, 0.47926, -4.88989], + "to": [8.75, 2.47926, -0.88989], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [0.5, 8.75, 0, 8.25], "rotation": 90, "texture": "#0"}, + "east": {"uv": [5.25, 6.5, 5.75, 7.5], "rotation": 90, "texture": "#0"}, + "south": {"uv": [8.75, 0, 8.25, 0.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [1.5, 6, 2, 7], "rotation": 270, "texture": "#0"}, + "up": {"uv": [6.75, 0.5, 7.25, 1.5], "texture": "#0"}, + "down": {"uv": [4.75, 6.5, 5.25, 7.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [7.75, 2.47926, -5.88989], + "to": [9.75, 4.47926, -2.88989], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [1, 8.75, 0.5, 8.25], "rotation": 90, "texture": "#0"}, + "east": {"uv": [5, 7.5, 5.5, 8.25], "rotation": 90, "texture": "#0"}, + "south": {"uv": [4.75, 8.25, 4.25, 8.75], "rotation": 90, "texture": "#0"}, + "west": {"uv": [7.5, 2.5, 8, 3.25], "rotation": 270, "texture": "#0"}, + "up": {"uv": [7.25, 7.5, 7.75, 8.25], "texture": "#0"}, + "down": {"uv": [4.5, 7.5, 5, 8.25], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [8.75, 4.47926, -6.88989], + "to": [10.75, 7.47926, -2.88989], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [8.25, 0.5, 7.5, 0], "rotation": 90, "texture": "#0"}, + "east": {"uv": [4, 6, 4.75, 7], "rotation": 90, "texture": "#0"}, + "south": {"uv": [1.25, 7.75, 0.5, 8.25], "rotation": 90, "texture": "#0"}, + "west": {"uv": [6, 0.5, 6.75, 1.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [5.75, 6.75, 6.25, 7.75], "texture": "#0"}, + "down": {"uv": [6.75, 4.5, 7.25, 5.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [7.75, 5.47926, -4.88989], + "to": [9.75, 10.47926, -0.88989], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [7.25, 2, 6, 1.5], "rotation": 90, "texture": "#0"}, + "east": {"uv": [4, 4.5, 5.25, 5.5], "rotation": 90, "texture": "#0"}, + "south": {"uv": [6, 6, 4.75, 6.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [4.5, 3.5, 5.75, 4.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [6.25, 6.75, 6.75, 7.75], "texture": "#0"}, + "down": {"uv": [6.75, 6, 7.25, 7], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [7.75, 5.47926, -5.88989], + "to": [8.75, 8.47926, -4.88989], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [8.5, 1, 7.75, 0.75], "rotation": 90, "texture": "#0"}, + "east": {"uv": [8.25, 7, 9, 7.25], "rotation": 90, "texture": "#0"}, + "south": {"uv": [8.5, 1, 7.75, 1.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [7, 8.25, 7.75, 8.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [8.25, 7.75, 8.5, 8], "texture": "#0"}, + "down": {"uv": [7.5, 3.25, 7.75, 3.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [8.75, 7.47926, -5.88989], + "to": [10.75, 10.47926, -4.88989], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [8.5, 2, 7.75, 1.5], "rotation": 90, "texture": "#0"}, + "east": {"uv": [8.25, 7.5, 9, 7.75], "rotation": 90, "texture": "#0"}, + "south": {"uv": [8.5, 4, 7.75, 4.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [8.25, 7.25, 9, 7.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [8.25, 8.25, 8.75, 8.5], "texture": "#0"}, + "down": {"uv": [8.25, 8, 8.75, 8.25], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [6.75, 8.47926, -2.88989], + "to": [7.75, 10.47926, -0.88989], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [9, 0.75, 8.5, 0.5], "rotation": 90, "texture": "#0"}, + "east": {"uv": [4.75, 8.25, 5.25, 8.75], "rotation": 90, "texture": "#0"}, + "south": {"uv": [9, 0.75, 8.5, 1], "rotation": 90, "texture": "#0"}, + "west": {"uv": [8.25, 4.5, 8.75, 5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [1.25, 7.25, 1.5, 7.75], "texture": "#0"}, + "down": {"uv": [4.5, 7, 4.75, 7.5], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [6.75, 6.47926, -1.88989], + "to": [8.75, 8.47926, 0.11011], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [8.75, 6.5, 8.25, 6], "rotation": 90, "texture": "#0"}, + "east": {"uv": [8.25, 5.5, 8.75, 6], "rotation": 90, "texture": "#0"}, + "south": {"uv": [8.75, 6.5, 8.25, 7], "rotation": 90, "texture": "#0"}, + "west": {"uv": [8.25, 5, 8.75, 5.5], "rotation": 270, "texture": "#0"}, + "up": {"uv": [5.75, 8.25, 6.25, 8.75], "texture": "#0"}, + "down": {"uv": [5.25, 8.25, 5.75, 8.75], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [6.75, 6.47926, -2.88989], + "to": [8.75, 7.47926, -1.88989], + "rotation": {"angle": -17.5, "axis": "x", "origin": [0, 6.29764, -0.41644]}, + "faces": { + "north": {"uv": [9, 8, 9.5, 8.25], "texture": "#0"}, + "east": {"uv": [8.75, 8, 9, 8.25], "texture": "#0"}, + "south": {"uv": [9.75, 8, 10.25, 8.25], "texture": "#0"}, + "west": {"uv": [9.5, 8, 9.75, 8.25], "texture": "#0"}, + "up": {"uv": [9.5, 8, 9, 7.75], "texture": "#0"}, + "down": {"uv": [10, 7.75, 9.5, 8], "texture": "#0"} + } + }, + { + "from": [6.75, 0.21879, 12.18078], + "to": [6.75, 2.21879, 16.18078], + "rotation": {"angle": 17.5, "axis": "x", "origin": [0, 1.85631, 13.03752]}, + "faces": { + "north": {"uv": [2.25, 2, 2.75, 2], "rotation": 90, "texture": "#0"}, + "east": {"uv": [2.25, 14.75, 2.75, 15.75], "rotation": 90, "texture": "#0"}, + "south": {"uv": [2.25, 14, 2.75, 14], "rotation": 90, "texture": "#0"}, + "west": {"uv": [2, 7, 2.5, 8], "rotation": 270, "texture": "#0"}, + "up": {"uv": [2, 14.75, 2, 15.75], "texture": "#0"}, + "down": {"uv": [14, 14.75, 14, 15.75], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2.75, 0.21879, 16.18078], + "to": [6.75, 2.21879, 16.18078], + "rotation": {"angle": 17.5, "axis": "x", "origin": [0, 1.85631, 13.03752]}, + "faces": { + "north": {"uv": [3.5, 8, 3, 7], "rotation": 90, "texture": "#0"}, + "east": {"uv": [2.25, 14.75, 2.75, 14.75], "rotation": 90, "texture": "#0"}, + "south": {"uv": [2.25, 14, 2.75, 15], "rotation": 90, "texture": "#0"}, + "west": {"uv": [2, 9.25, 2.5, 9.25], "rotation": 270, "texture": "#0"}, + "up": {"uv": [2, 14.75, 3, 14.75], "texture": "#0"}, + "down": {"uv": [14, 14.75, 15, 14.75], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [6.75, 1.82592, 13.07941], + "to": [6.75, 5.82592, 15.07941], + "rotation": {"angle": -35, "axis": "x", "origin": [0, 4.79554, 13.73211]}, + "faces": { + "north": {"uv": [14, 14.75, 14, 15.75], "texture": "#0"}, + "east": {"uv": [2.25, 14.75, 2.75, 15.75], "texture": "#0"}, + "south": {"uv": [2, 14.75, 2, 15.75], "texture": "#0"}, + "west": {"uv": [0, 7.25, 0.5, 8.25], "texture": "#0"}, + "up": {"uv": [2.25, 2, 2.75, 2], "rotation": 270, "texture": "#0"}, + "down": {"uv": [2.25, 14, 2.75, 14], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [2.75, 1.82592, 13.07941], + "to": [6.75, 1.82592, 15.07941], + "rotation": {"angle": -35, "axis": "x", "origin": [0, 4.79554, 13.73211]}, + "faces": { + "north": {"uv": [14, 14.75, 15, 14.75], "texture": "#0"}, + "east": {"uv": [2.25, 14.75, 2.75, 14.75], "texture": "#0"}, + "south": {"uv": [2, 14.75, 3, 14.75], "texture": "#0"}, + "west": {"uv": [2, 9.25, 2.5, 9.25], "texture": "#0"}, + "up": {"uv": [4.5, 8, 4, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [2.25, 14, 2.75, 15], "rotation": 90, "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "translation": [0, 1, -1.25] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "lay", + "origin": [8, 3, 8], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + { + "name": "plant", + "origin": [8, 8, 4], + "color": 0, + "children": [ + { + "name": "face", + "origin": [8, 8, 4], + "color": 0, + "children": [5, 6] + }, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + }, + { + "name": "legs", + "origin": [8, 8, 4], + "color": 0, + "children": [ + { + "name": "left", + "origin": [8, 8, 4], + "color": 0, + "children": [19, 20] + }, + { + "name": "right", + "origin": [8, 8, 4], + "color": 0, + "children": [21, 22] + } + ] + } + ] + } + ] +} diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/sit.json b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/sit.json new file mode 100644 index 0000000..e3b2108 --- /dev/null +++ b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/sit.json @@ -0,0 +1,388 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "modfest_plushies:item/plushie/plantie" + }, + "elements": [ + { + "from": [4, 0, 4], + "to": [12, 8, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 9]}, + "faces": { + "north": {"uv": [4, 0, 6, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 4, 2, 6], "texture": "#0"}, + "west": {"uv": [0, 2, 2, 4], "texture": "#0"}, + "up": {"uv": [2, 0, 4, 2], "texture": "#0"}, + "down": {"uv": [2, 2, 4, 4], "texture": "#0"} + } + }, + { + "from": [11, 8, 3], + "to": [13, 10, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 8]}, + "faces": { + "north": {"uv": [7.75, 4.5, 8.25, 5], "texture": "#0"}, + "east": {"uv": [2, 4, 4.5, 4.5], "texture": "#0"}, + "south": {"uv": [4, 3.5, 4.5, 4], "texture": "#0"}, + "west": {"uv": [4, 2, 6.5, 2.5], "texture": "#0"}, + "up": {"uv": [2, 4.5, 2.5, 7], "texture": "#0"}, + "down": {"uv": [2.5, 4.5, 3, 7], "texture": "#0"} + } + }, + { + "from": [3, 8, 3], + "to": [5, 10, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 8, 8]}, + "faces": { + "north": {"uv": [5.5, 7.75, 6, 8.25], "texture": "#0"}, + "east": {"uv": [4, 2.5, 6.5, 3], "texture": "#0"}, + "south": {"uv": [7.75, 5, 8.25, 5.5], "texture": "#0"}, + "west": {"uv": [4, 3, 6.5, 3.5], "texture": "#0"}, + "up": {"uv": [3, 4.5, 3.5, 7], "texture": "#0"}, + "down": {"uv": [3.5, 4.5, 4, 7], "texture": "#0"} + } + }, + { + "from": [5, 8, 3], + "to": [11, 10, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 8, 8]}, + "faces": { + "north": {"uv": [6, 0, 7.5, 0.5], "texture": "#0"}, + "east": {"uv": [7.75, 6, 8.25, 6.5], "texture": "#0"}, + "south": {"uv": [0, 6, 1.5, 6.5], "texture": "#0"}, + "west": {"uv": [7.75, 6.5, 8.25, 7], "texture": "#0"}, + "up": {"uv": [5.75, 3.5, 7.25, 4], "texture": "#0"}, + "down": {"uv": [5.75, 4, 7.25, 4.5], "texture": "#0"} + } + }, + { + "from": [5, 8, 11], + "to": [11, 10, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 8, 16]}, + "faces": { + "north": {"uv": [5.5, 5.5, 7, 6], "texture": "#0"}, + "east": {"uv": [7.75, 6, 8.25, 6.5], "texture": "#0"}, + "south": {"uv": [4, 5.5, 5.5, 6], "texture": "#0"}, + "west": {"uv": [7.75, 6.5, 8.25, 7], "texture": "#0"}, + "up": {"uv": [5.25, 4.5, 6.75, 5], "texture": "#0"}, + "down": {"uv": [5.25, 5, 6.75, 5.5], "texture": "#0"} + } + }, + { + "from": [5, 17, 8], + "to": [8, 20, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 18, 9]}, + "faces": { + "north": {"uv": [6, 6, 6.75, 6.75], "texture": "#0"}, + "east": {"uv": [6.5, 2.75, 7, 3.5], "texture": "#0"}, + "south": {"uv": [0, 6.5, 0.75, 7.25], "texture": "#0"}, + "west": {"uv": [7, 2.75, 7.5, 3.5], "texture": "#0"}, + "up": {"uv": [7.75, 6, 7, 5.5], "texture": "#0"}, + "down": {"uv": [1.25, 7.25, 0.5, 7.75], "texture": "#0"} + } + }, + { + "from": [0, 16, 7], + "to": [3, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 17, 8]}, + "faces": { + "north": {"uv": [0.75, 6.5, 1.5, 7.25], "texture": "#0"}, + "east": {"uv": [7.25, 0.5, 7.75, 1.25], "texture": "#0"}, + "south": {"uv": [6.5, 2, 7.25, 2.75], "texture": "#0"}, + "west": {"uv": [7.25, 1.25, 7.75, 2], "texture": "#0"}, + "up": {"uv": [8, 2.5, 7.25, 2], "texture": "#0"}, + "down": {"uv": [8, 3.5, 7.25, 4], "texture": "#0"} + } + }, + { + "from": [6, 7, 6], + "to": [8, 9, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 7]}, + "faces": { + "north": {"uv": [7.75, 7, 8.25, 7.5], "texture": "#0"}, + "east": {"uv": [7.75, 7.5, 8.25, 8], "texture": "#0"}, + "south": {"uv": [1.25, 8, 1.75, 8.5], "texture": "#0"}, + "west": {"uv": [1.75, 8, 2.25, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 2.5, 8, 2], "texture": "#0"}, + "down": {"uv": [2.75, 8, 2.25, 8.5], "texture": "#0"} + } + }, + { + "from": [7, 9, 7], + "to": [9, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]}, + "faces": { + "north": {"uv": [8, 2.5, 8.5, 3], "texture": "#0"}, + "east": {"uv": [2.75, 8, 3.25, 8.5], "texture": "#0"}, + "south": {"uv": [8, 3, 8.5, 3.5], "texture": "#0"}, + "west": {"uv": [3.25, 8, 3.75, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 4, 8, 3.5], "texture": "#0"}, + "down": {"uv": [4.25, 8, 3.75, 8.5], "texture": "#0"} + } + }, + { + "from": [8, 11, 7], + "to": [10, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 11, 8]}, + "faces": { + "north": {"uv": [7.25, 4, 7.75, 4.75], "texture": "#0"}, + "east": {"uv": [7.25, 4.75, 7.75, 5.5], "texture": "#0"}, + "south": {"uv": [7.25, 6, 7.75, 6.75], "texture": "#0"}, + "west": {"uv": [7.25, 6.75, 7.75, 7.5], "texture": "#0"}, + "up": {"uv": [7, 8.5, 6.5, 8], "texture": "#0"}, + "down": {"uv": [8.25, 8, 7.75, 8.5], "texture": "#0"} + } + }, + { + "from": [9, 14, 8], + "to": [11, 18, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, 9]}, + "faces": { + "north": {"uv": [1.5, 6, 2, 7], "texture": "#0"}, + "east": {"uv": [4.75, 6.5, 5.25, 7.5], "texture": "#0"}, + "south": {"uv": [5.25, 6.5, 5.75, 7.5], "texture": "#0"}, + "west": {"uv": [6.75, 0.5, 7.25, 1.5], "texture": "#0"}, + "up": {"uv": [0.5, 8.75, 0, 8.25], "texture": "#0"}, + "down": {"uv": [8.75, 0, 8.25, 0.5], "texture": "#0"} + } + }, + { + "from": [7, 16, 9], + "to": [9, 19, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 10]}, + "faces": { + "north": {"uv": [7.5, 2.5, 8, 3.25], "texture": "#0"}, + "east": {"uv": [4.5, 7.5, 5, 8.25], "texture": "#0"}, + "south": {"uv": [5, 7.5, 5.5, 8.25], "texture": "#0"}, + "west": {"uv": [7.25, 7.5, 7.75, 8.25], "texture": "#0"}, + "up": {"uv": [1, 8.75, 0.5, 8.25], "texture": "#0"}, + "down": {"uv": [4.75, 8.25, 4.25, 8.75], "texture": "#0"} + } + }, + { + "from": [4, 16, 10], + "to": [7, 20, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 17, 11]}, + "faces": { + "north": {"uv": [6, 0.5, 6.75, 1.5], "texture": "#0"}, + "east": {"uv": [6.75, 4.5, 7.25, 5.5], "texture": "#0"}, + "south": {"uv": [4, 6, 4.75, 7], "texture": "#0"}, + "west": {"uv": [5.75, 6.75, 6.25, 7.75], "texture": "#0"}, + "up": {"uv": [8.25, 0.5, 7.5, 0], "texture": "#0"}, + "down": {"uv": [1.25, 7.75, 0.5, 8.25], "texture": "#0"} + } + }, + { + "from": [1, 14, 9], + "to": [6, 18, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 15, 10]}, + "faces": { + "north": {"uv": [4.5, 3.5, 5.75, 4.5], "texture": "#0"}, + "east": {"uv": [6.75, 6, 7.25, 7], "texture": "#0"}, + "south": {"uv": [4, 4.5, 5.25, 5.5], "texture": "#0"}, + "west": {"uv": [6.25, 6.75, 6.75, 7.75], "texture": "#0"}, + "up": {"uv": [7.25, 2, 6, 1.5], "texture": "#0"}, + "down": {"uv": [6, 6, 4.75, 6.5], "texture": "#0"} + } + }, + { + "from": [3, 18, 9], + "to": [6, 19, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 19, 10]}, + "faces": { + "north": {"uv": [7, 8.25, 7.75, 8.5], "texture": "#0"}, + "east": {"uv": [7.5, 3.25, 7.75, 3.5], "texture": "#0"}, + "south": {"uv": [8.25, 7, 9, 7.25], "texture": "#0"}, + "west": {"uv": [8.25, 7.75, 8.5, 8], "texture": "#0"}, + "up": {"uv": [8.5, 1, 7.75, 0.75], "texture": "#0"}, + "down": {"uv": [8.5, 1, 7.75, 1.5], "texture": "#0"} + } + }, + { + "from": [1, 18, 10], + "to": [4, 19, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 15, 11]}, + "faces": { + "north": {"uv": [8.25, 7.25, 9, 7.5], "texture": "#0"}, + "east": {"uv": [8.25, 8, 8.75, 8.25], "texture": "#0"}, + "south": {"uv": [8.25, 7.5, 9, 7.75], "texture": "#0"}, + "west": {"uv": [8.25, 8.25, 8.75, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 2, 7.75, 1.5], "texture": "#0"}, + "down": {"uv": [8.5, 4, 7.75, 4.5], "texture": "#0"} + } + }, + { + "from": [1, 14, 8], + "to": [3, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 15, 9]}, + "faces": { + "north": {"uv": [8.25, 4.5, 8.75, 5], "texture": "#0"}, + "east": {"uv": [4.5, 7, 4.75, 7.5], "texture": "#0"}, + "south": {"uv": [4.75, 8.25, 5.25, 8.75], "texture": "#0"}, + "west": {"uv": [1.25, 7.25, 1.5, 7.75], "texture": "#0"}, + "up": {"uv": [9, 0.75, 8.5, 0.5], "texture": "#0"}, + "down": {"uv": [9, 0.75, 8.5, 1], "texture": "#0"} + } + }, + { + "from": [3, 13, 8], + "to": [5, 15, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 11, 9]}, + "faces": { + "north": {"uv": [8.25, 5, 8.75, 5.5], "texture": "#0"}, + "east": {"uv": [5.25, 8.25, 5.75, 8.75], "texture": "#0"}, + "south": {"uv": [8.25, 5.5, 8.75, 6], "texture": "#0"}, + "west": {"uv": [5.75, 8.25, 6.25, 8.75], "texture": "#0"}, + "up": {"uv": [8.75, 6.5, 8.25, 6], "texture": "#0"}, + "down": {"uv": [8.75, 6.5, 8.25, 7], "texture": "#0"} + } + }, + { + "from": [4, 15, 8], + "to": [5, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 13, 9]}, + "faces": { + "north": {"uv": [9.25, 8.25, 9.5, 8.5], "texture": "#0"}, + "east": {"uv": [8.75, 8.25, 9.25, 8.5], "texture": "#0"}, + "south": {"uv": [10, 8.25, 10.25, 8.5], "texture": "#0"}, + "west": {"uv": [9.5, 8.25, 10, 8.5], "texture": "#0"}, + "up": {"uv": [9.5, 8.25, 9.25, 7.75], "texture": "#0"}, + "down": {"uv": [9.75, 7.75, 9.5, 8.25], "texture": "#0"} + } + }, + { + "from": [9, -3, 8], + "to": [11, 1, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [10, -3, 9]}, + "faces": { + "north": {"uv": [2, 7, 2.5, 8], "texture": "#0"}, + "east": {"uv": [14, 14.75, 14, 15.75], "texture": "#0"}, + "south": {"uv": [2.25, 14.75, 2.75, 15.75], "texture": "#0"}, + "west": {"uv": [2, 14.75, 2, 15.75], "texture": "#0"}, + "up": {"uv": [2.25, 2, 2.75, 2], "texture": "#0"}, + "down": {"uv": [2.25, 14, 2.75, 14], "texture": "#0"} + } + }, + { + "from": [9, -3, 4], + "to": [11, -3, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [10, -3, 9]}, + "faces": { + "north": {"uv": [2, 9.25, 2.5, 9.25], "texture": "#0"}, + "east": {"uv": [14, 14.75, 15, 14.75], "texture": "#0"}, + "south": {"uv": [2.25, 14.75, 2.75, 14.75], "texture": "#0"}, + "west": {"uv": [2, 14.75, 3, 14.75], "texture": "#0"}, + "up": {"uv": [3.5, 8, 3, 7], "texture": "#0"}, + "down": {"uv": [2.25, 14, 2.75, 15], "texture": "#0"} + } + }, + { + "from": [5, -3, 8], + "to": [7, 1, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [6, -3, 9]}, + "faces": { + "north": {"uv": [0, 7.25, 0.5, 8.25], "texture": "#0"}, + "east": {"uv": [14, 14.75, 14, 15.75], "texture": "#0"}, + "south": {"uv": [2.25, 14.75, 2.75, 15.75], "texture": "#0"}, + "west": {"uv": [2, 14.75, 2, 15.75], "texture": "#0"}, + "up": {"uv": [2.25, 2, 2.75, 2], "texture": "#0"}, + "down": {"uv": [2.25, 14, 2.75, 14], "texture": "#0"} + } + }, + { + "from": [5, -3, 4], + "to": [7, -3, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [6, -3, 9]}, + "faces": { + "north": {"uv": [2, 9.25, 2.5, 9.25], "texture": "#0"}, + "east": {"uv": [14, 14.75, 15, 14.75], "texture": "#0"}, + "south": {"uv": [2.25, 14.75, 2.75, 14.75], "texture": "#0"}, + "west": {"uv": [2, 14.75, 3, 14.75], "texture": "#0"}, + "up": {"uv": [4.5, 8, 4, 7], "texture": "#0"}, + "down": {"uv": [2.25, 14, 2.75, 15], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "translation": [0, 1, -1.25] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "sit", + "origin": [8, 3, 8], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + { + "name": "plant", + "origin": [8, 8, 4], + "color": 0, + "children": [ + { + "name": "face", + "origin": [8, 8, 4], + "color": 0, + "children": [5, 6] + }, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + }, + { + "name": "legs", + "origin": [8, 8, 4], + "color": 0, + "children": [19, 20, 21, 22] + } + ] + } + ] +} diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/stand.json b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/stand.json new file mode 100644 index 0000000..85713b4 --- /dev/null +++ b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/models/more_than_a_foxbox/plantie/stand.json @@ -0,0 +1,388 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "modfest_plushies:item/plushie/plantie" + }, + "elements": [ + { + "from": [4, 3, 4], + "to": [12, 11, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 3, 9]}, + "faces": { + "north": {"uv": [4, 0, 6, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 4, 2, 6], "texture": "#0"}, + "west": {"uv": [0, 2, 2, 4], "texture": "#0"}, + "up": {"uv": [2, 0, 4, 2], "texture": "#0"}, + "down": {"uv": [2, 2, 4, 4], "texture": "#0"} + } + }, + { + "from": [11, 11, 3], + "to": [13, 13, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 11, 8]}, + "faces": { + "north": {"uv": [7.75, 4.5, 8.25, 5], "texture": "#0"}, + "east": {"uv": [2, 4, 4.5, 4.5], "texture": "#0"}, + "south": {"uv": [4, 3.5, 4.5, 4], "texture": "#0"}, + "west": {"uv": [4, 2, 6.5, 2.5], "texture": "#0"}, + "up": {"uv": [2, 4.5, 2.5, 7], "texture": "#0"}, + "down": {"uv": [2.5, 4.5, 3, 7], "texture": "#0"} + } + }, + { + "from": [3, 11, 3], + "to": [5, 13, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 11, 8]}, + "faces": { + "north": {"uv": [5.5, 7.75, 6, 8.25], "texture": "#0"}, + "east": {"uv": [4, 2.5, 6.5, 3], "texture": "#0"}, + "south": {"uv": [7.75, 5, 8.25, 5.5], "texture": "#0"}, + "west": {"uv": [4, 3, 6.5, 3.5], "texture": "#0"}, + "up": {"uv": [3, 4.5, 3.5, 7], "texture": "#0"}, + "down": {"uv": [3.5, 4.5, 4, 7], "texture": "#0"} + } + }, + { + "from": [5, 11, 3], + "to": [11, 13, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 11, 8]}, + "faces": { + "north": {"uv": [6, 0, 7.5, 0.5], "texture": "#0"}, + "east": {"uv": [7.75, 6, 8.25, 6.5], "texture": "#0"}, + "south": {"uv": [0, 6, 1.5, 6.5], "texture": "#0"}, + "west": {"uv": [7.75, 6.5, 8.25, 7], "texture": "#0"}, + "up": {"uv": [5.75, 3.5, 7.25, 4], "texture": "#0"}, + "down": {"uv": [5.75, 4, 7.25, 4.5], "texture": "#0"} + } + }, + { + "from": [5, 11, 11], + "to": [11, 13, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 11, 16]}, + "faces": { + "north": {"uv": [5.5, 5.5, 7, 6], "texture": "#0"}, + "east": {"uv": [7.75, 6, 8.25, 6.5], "texture": "#0"}, + "south": {"uv": [4, 5.5, 5.5, 6], "texture": "#0"}, + "west": {"uv": [7.75, 6.5, 8.25, 7], "texture": "#0"}, + "up": {"uv": [5.25, 4.5, 6.75, 5], "texture": "#0"}, + "down": {"uv": [5.25, 5, 6.75, 5.5], "texture": "#0"} + } + }, + { + "from": [5, 20, 8], + "to": [8, 23, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 9]}, + "faces": { + "north": {"uv": [6, 6, 6.75, 6.75], "texture": "#0"}, + "east": {"uv": [6.5, 2.75, 7, 3.5], "texture": "#0"}, + "south": {"uv": [0, 6.5, 0.75, 7.25], "texture": "#0"}, + "west": {"uv": [7, 2.75, 7.5, 3.5], "texture": "#0"}, + "up": {"uv": [7.75, 6, 7, 5.5], "texture": "#0"}, + "down": {"uv": [1.25, 7.25, 0.5, 7.75], "texture": "#0"} + } + }, + { + "from": [0, 19, 7], + "to": [3, 22, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 20, 8]}, + "faces": { + "north": {"uv": [0.75, 6.5, 1.5, 7.25], "texture": "#0"}, + "east": {"uv": [7.25, 0.5, 7.75, 1.25], "texture": "#0"}, + "south": {"uv": [6.5, 2, 7.25, 2.75], "texture": "#0"}, + "west": {"uv": [7.25, 1.25, 7.75, 2], "texture": "#0"}, + "up": {"uv": [8, 2.5, 7.25, 2], "texture": "#0"}, + "down": {"uv": [8, 3.5, 7.25, 4], "texture": "#0"} + } + }, + { + "from": [6, 10, 6], + "to": [8, 12, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 7]}, + "faces": { + "north": {"uv": [7.75, 7, 8.25, 7.5], "texture": "#0"}, + "east": {"uv": [7.75, 7.5, 8.25, 8], "texture": "#0"}, + "south": {"uv": [1.25, 8, 1.75, 8.5], "texture": "#0"}, + "west": {"uv": [1.75, 8, 2.25, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 2.5, 8, 2], "texture": "#0"}, + "down": {"uv": [2.75, 8, 2.25, 8.5], "texture": "#0"} + } + }, + { + "from": [7, 12, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]}, + "faces": { + "north": {"uv": [8, 2.5, 8.5, 3], "texture": "#0"}, + "east": {"uv": [2.75, 8, 3.25, 8.5], "texture": "#0"}, + "south": {"uv": [8, 3, 8.5, 3.5], "texture": "#0"}, + "west": {"uv": [3.25, 8, 3.75, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 4, 8, 3.5], "texture": "#0"}, + "down": {"uv": [4.25, 8, 3.75, 8.5], "texture": "#0"} + } + }, + { + "from": [8, 14, 7], + "to": [10, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 14, 8]}, + "faces": { + "north": {"uv": [7.25, 4, 7.75, 4.75], "texture": "#0"}, + "east": {"uv": [7.25, 4.75, 7.75, 5.5], "texture": "#0"}, + "south": {"uv": [7.25, 6, 7.75, 6.75], "texture": "#0"}, + "west": {"uv": [7.25, 6.75, 7.75, 7.5], "texture": "#0"}, + "up": {"uv": [7, 8.5, 6.5, 8], "texture": "#0"}, + "down": {"uv": [8.25, 8, 7.75, 8.5], "texture": "#0"} + } + }, + { + "from": [9, 17, 8], + "to": [11, 21, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 17, 9]}, + "faces": { + "north": {"uv": [1.5, 6, 2, 7], "texture": "#0"}, + "east": {"uv": [4.75, 6.5, 5.25, 7.5], "texture": "#0"}, + "south": {"uv": [5.25, 6.5, 5.75, 7.5], "texture": "#0"}, + "west": {"uv": [6.75, 0.5, 7.25, 1.5], "texture": "#0"}, + "up": {"uv": [0.5, 8.75, 0, 8.25], "texture": "#0"}, + "down": {"uv": [8.75, 0, 8.25, 0.5], "texture": "#0"} + } + }, + { + "from": [7, 19, 9], + "to": [9, 22, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 19, 10]}, + "faces": { + "north": {"uv": [7.5, 2.5, 8, 3.25], "texture": "#0"}, + "east": {"uv": [4.5, 7.5, 5, 8.25], "texture": "#0"}, + "south": {"uv": [5, 7.5, 5.5, 8.25], "texture": "#0"}, + "west": {"uv": [7.25, 7.5, 7.75, 8.25], "texture": "#0"}, + "up": {"uv": [1, 8.75, 0.5, 8.25], "texture": "#0"}, + "down": {"uv": [4.75, 8.25, 4.25, 8.75], "texture": "#0"} + } + }, + { + "from": [4, 19, 10], + "to": [7, 23, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 20, 11]}, + "faces": { + "north": {"uv": [6, 0.5, 6.75, 1.5], "texture": "#0"}, + "east": {"uv": [6.75, 4.5, 7.25, 5.5], "texture": "#0"}, + "south": {"uv": [4, 6, 4.75, 7], "texture": "#0"}, + "west": {"uv": [5.75, 6.75, 6.25, 7.75], "texture": "#0"}, + "up": {"uv": [8.25, 0.5, 7.5, 0], "texture": "#0"}, + "down": {"uv": [1.25, 7.75, 0.5, 8.25], "texture": "#0"} + } + }, + { + "from": [1, 17, 9], + "to": [6, 21, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 18, 10]}, + "faces": { + "north": {"uv": [4.5, 3.5, 5.75, 4.5], "texture": "#0"}, + "east": {"uv": [6.75, 6, 7.25, 7], "texture": "#0"}, + "south": {"uv": [4, 4.5, 5.25, 5.5], "texture": "#0"}, + "west": {"uv": [6.25, 6.75, 6.75, 7.75], "texture": "#0"}, + "up": {"uv": [7.25, 2, 6, 1.5], "texture": "#0"}, + "down": {"uv": [6, 6, 4.75, 6.5], "texture": "#0"} + } + }, + { + "from": [3, 21, 9], + "to": [6, 22, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 22, 10]}, + "faces": { + "north": {"uv": [7, 8.25, 7.75, 8.5], "texture": "#0"}, + "east": {"uv": [7.5, 3.25, 7.75, 3.5], "texture": "#0"}, + "south": {"uv": [8.25, 7, 9, 7.25], "texture": "#0"}, + "west": {"uv": [8.25, 7.75, 8.5, 8], "texture": "#0"}, + "up": {"uv": [8.5, 1, 7.75, 0.75], "texture": "#0"}, + "down": {"uv": [8.5, 1, 7.75, 1.5], "texture": "#0"} + } + }, + { + "from": [1, 21, 10], + "to": [4, 22, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 18, 11]}, + "faces": { + "north": {"uv": [8.25, 7.25, 9, 7.5], "texture": "#0"}, + "east": {"uv": [8.25, 8, 8.75, 8.25], "texture": "#0"}, + "south": {"uv": [8.25, 7.5, 9, 7.75], "texture": "#0"}, + "west": {"uv": [8.25, 8.25, 8.75, 8.5], "texture": "#0"}, + "up": {"uv": [8.5, 2, 7.75, 1.5], "texture": "#0"}, + "down": {"uv": [8.5, 4, 7.75, 4.5], "texture": "#0"} + } + }, + { + "from": [1, 17, 8], + "to": [3, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 18, 9]}, + "faces": { + "north": {"uv": [8.25, 4.5, 8.75, 5], "texture": "#0"}, + "east": {"uv": [4.5, 7, 4.75, 7.5], "texture": "#0"}, + "south": {"uv": [4.75, 8.25, 5.25, 8.75], "texture": "#0"}, + "west": {"uv": [1.25, 7.25, 1.5, 7.75], "texture": "#0"}, + "up": {"uv": [9, 0.75, 8.5, 0.5], "texture": "#0"}, + "down": {"uv": [9, 0.75, 8.5, 1], "texture": "#0"} + } + }, + { + "from": [3, 16, 8], + "to": [5, 18, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 14, 9]}, + "faces": { + "north": {"uv": [8.25, 5, 8.75, 5.5], "texture": "#0"}, + "east": {"uv": [5.25, 8.25, 5.75, 8.75], "texture": "#0"}, + "south": {"uv": [8.25, 5.5, 8.75, 6], "texture": "#0"}, + "west": {"uv": [5.75, 8.25, 6.25, 8.75], "texture": "#0"}, + "up": {"uv": [8.75, 6.5, 8.25, 6], "texture": "#0"}, + "down": {"uv": [8.75, 6.5, 8.25, 7], "texture": "#0"} + } + }, + { + "from": [4, 18, 8], + "to": [5, 19, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 16, 9]}, + "faces": { + "north": {"uv": [9.25, 8.25, 9.5, 8.5], "texture": "#0"}, + "east": {"uv": [8.75, 8.25, 9.25, 8.5], "texture": "#0"}, + "south": {"uv": [10, 8.25, 10.25, 8.5], "texture": "#0"}, + "west": {"uv": [9.5, 8.25, 10, 8.5], "texture": "#0"}, + "up": {"uv": [9.5, 8.25, 9.25, 7.75], "texture": "#0"}, + "down": {"uv": [9.75, 7.75, 9.5, 8.25], "texture": "#0"} + } + }, + { + "from": [9, 0, 8], + "to": [11, 4, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 0, 9]}, + "faces": { + "north": {"uv": [2, 7, 2.5, 8], "texture": "#0"}, + "east": {"uv": [14, 14.75, 14, 15.75], "texture": "#0"}, + "south": {"uv": [2.5, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [2, 14.75, 2, 15.75], "texture": "#0"}, + "up": {"uv": [2.25, 2, 2.75, 2], "texture": "#0"}, + "down": {"uv": [2.25, 14, 2.75, 14], "texture": "#0"} + } + }, + { + "from": [9, 0, 4], + "to": [11, 0, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 0, 9]}, + "faces": { + "north": {"uv": [2, 9.25, 2.5, 9.25], "texture": "#0"}, + "east": {"uv": [14, 14.75, 15, 14.75], "texture": "#0"}, + "south": {"uv": [2.25, 14.75, 2.75, 14.75], "texture": "#0"}, + "west": {"uv": [2, 14.75, 3, 14.75], "texture": "#0"}, + "up": {"uv": [3.5, 8, 3, 7], "texture": "#0"}, + "down": {"uv": [3.5, 7, 3, 8], "texture": "#0"} + } + }, + { + "from": [5, 0, 8], + "to": [7, 4, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 0, 9]}, + "faces": { + "north": {"uv": [0, 7.25, 0.5, 8.25], "texture": "#0"}, + "east": {"uv": [14, 14.75, 14, 15.75], "texture": "#0"}, + "south": {"uv": [0.5, 7.25, 0, 8.25], "texture": "#0"}, + "west": {"uv": [2, 14.75, 2, 15.75], "texture": "#0"}, + "up": {"uv": [2.25, 2, 2.75, 2], "texture": "#0"}, + "down": {"uv": [2.25, 14, 2.75, 14], "texture": "#0"} + } + }, + { + "from": [5, 0, 4], + "to": [7, 0, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 0, 9]}, + "faces": { + "north": {"uv": [2, 9.25, 2.5, 9.25], "texture": "#0"}, + "east": {"uv": [14, 14.75, 15, 14.75], "texture": "#0"}, + "south": {"uv": [2.25, 14.75, 2.75, 14.75], "texture": "#0"}, + "west": {"uv": [2, 14.75, 3, 14.75], "texture": "#0"}, + "up": {"uv": [4.5, 8, 4, 7], "texture": "#0"}, + "down": {"uv": [4.5, 7, 4, 8], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "translation": [0, 1, -1.25] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "stand", + "origin": [8, 3, 8], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + { + "name": "plant", + "origin": [8, 8, 4], + "color": 0, + "children": [ + { + "name": "face", + "origin": [8, 8, 4], + "color": 0, + "children": [5, 6] + }, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + }, + { + "name": "legs", + "origin": [8, 8, 4], + "color": 0, + "children": [19, 20, 21, 22] + } + ] + } + ] +} diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/textures/item/plushie/littlebuddy.png b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/textures/item/plushie/littlebuddy.png new file mode 100644 index 0000000000000000000000000000000000000000..c28a223dd5e812949cc76e48e4aa2b695dbc5497 GIT binary patch literal 1077 zcmV-51j_q~P)Px&?@2^KR9J=WlwWL9RUF4Z_qJ^7pACA2(r!x^QP{eh5QjW~Iya+E6pd`gL?28g zL3mIIGI&&piJBOq5H(ATWN1uggoG?CjA@KG62p=iP4sRINM}pitsQH-t+(w;*W<(7 z6~o)zYd9OANL> z3&4{<^yBupNlYggxjZ6a0%_o{kl68HJpfm4M(8;bz@;ceBe$^I9jK~`rfC31Y>_3- zUG$OB!~7aLLvXN{L&uJr5+L96La8R6p2h04GcPTnX&S1klFjO9nubeJX!19c(Zhtp z;{fdMnm3bs*@4|1?PA61m8VNlNF|fF6os5^)BhIaqoY`4i8bDbdFSZ29C)(D#)~v;)@q z`&*5lLo1QVE4V#w;^|qclo|k{@o8g0Dw!l2xkcx$Wyk93N2&FCO$)fE2G&>DkkT1! z$mr1-_I4j+Z}&m+(NS!315f z8masuAFf?TMP-H2fabVEpIjt3KgU;%Tgabm2f%UoGJda**whrGqraIJAO|O-=;<`6 z{35QZO5+GDvV^8-l#&YsC!?hDi|m`Y&U>9-GqlmlnWdX(n#R=0N7?p}YFdEQ-_j^t zRh8VBnPq*o6M)+b875xXLu_h_IqtA;;ySk%GIVu3j-E~v_~a=7GOv8UsxAmXp%f5B zaY_`$DN!f|#PH6oqQ9k46iNZ{_hZ!}x$uN2lmcS*Wxp|}C{Bq#G>>>`?@@8CuUD8( z4#;EULllD{iu=zZOWPRO(aM(_ykzt+wZmP6!{cQ1FqJK@k^e|XmbOvce-@w5Pv7Yo zVv*2l@?-73?-&5~1s4ajJ;bKoMpab;Z-gl&L%5VjsP%feHvS_^C4psFV$0@6j(_$5 zuii)!nH*f50Q=#~B&HJ-{=M_5WRe@xQQRIk&ph2uBsRnQZ&mW{=gmBS^$G(!TKV|X vFQgMd_?MrBukD2S^Dk4TOqnue$^icWE*QPdEGFX$00000NkvXXu0mjf*Yydf literal 0 HcmV?d00001 diff --git a/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/textures/item/plushie/plantie.png b/pack/resources/resourcepack/required/ModfestPlushiesResourcePack/assets/modfest_plushies/textures/item/plushie/plantie.png new file mode 100644 index 0000000000000000000000000000000000000000..dadcc7918186570f759a999bb49899025dde6a63 GIT binary patch literal 2613 zcmV-53d;3~P)Px;?@2^KRCt{2nR{?l)g8w_8}9DiS9aNKo{J=bAe0I!7AO`AI-x=-nzrLK*s4Wh z>zJ7`73_;Lt*@e%htp{XJ5;4DDl$WBJ5`GcReTIiP$~}*3@KU2Ym?0`yUE?>mD@k= z-kZC5(8rkNpZl5FIrpA>_UwLt=XZYRoZq#qSvp-IhutP-;al|U ziV{!Wvrr_i*M}nUyz;4q0&-eL5CwYMdXN)Yx*k1Yx#*9L1A^Tqkjlsaq%yK@goGsN zMtHh$9snPAN2n|o@wnCc)w>VnwH+=}yADO-BqWKD!7$lDH&(X|uYV$4$IfwWXgPo4 zM4|N~Xrjk5f+pNZd{EMjptTvx2(5R$4nU9GL~F}QP6&-0z2m#AD)V!^^{m?AZEA7n zy6-6~X4Mqb3v{0!%Lp2Eo}%1U7D=%ZAC&T*J6$f_7@=X)p|;WmJx}pbVm^2vQ0Aw` z2FHP4Mb~pdlBuiq(J%Fnr`AysFbE!Q1dYmK5lI1;B?~~$K$^;8QGcGw$V{2+A!P6f z%>#@CW=&?nz+PVDCjji&@@qU)0kD0?=7P_EfTDCp6_v`!d4@2exx1uTX^UUTtJ4gn z3C{C`NSxRA&8NLby-y7!i3G!ZeZhQ!nF6Z32m(MllSQ;yVc5uP#vv#86X`s4o+2i= zCg!yfZB`=D7zs&Y%H%5D6Q)eAV*71-0M)f`t=tJ;gcXn001#YqOkWAuQ8>{?gjiC> z>kxDy#!^Fz_G6)aCzX-;sO=nfo1h28$%b~1cl?k{CPRB#p{uVSN3oM62^_`Fag=y* zEcdURr)YCkTelOEqZf zpXv>PGCu&vThG$?%LPb(?7k#1Ko~Aw!x#`X!m$JZR+~+)+pxG9fYa?=xE!{;_Fa83 zxDsx^te!AXqim-#eTtsTwooftxMt2gPR;Hh8%m9v!2d)M!^9g$5YS^oIF=xL0ritn zBbe7Au(M-74XZ^0WnR2)N8V>zZGeW=A`c(fMps`y>CRIC)QT2M{oY1qZc_IMl?$s2 zr+64eqlwpcfZA%HiPtb1Vb9N&LvFNVgUP(l>Gm!F4*lU?0D3Ol!WV9Ni}tjlw6>g7 z`wFG#KiyjxwWDCUf8{)dQN(Nasf|m#+%W^+ie1q%Dh+&Ev-c`sm!b2Yx{le zIw47VX$+_U?P>MwIX0Fjn(LL(rh)dSjlr<9F9xXMjjMxb zv(o>A!&s`CNhXrmW9p)Q-Jcs^6wla~oCCnRhki`tymV<-0i&C07?;2jpBJYKBGH&W z>chnYSgM-wd3*rWI9#;%NMjy{_w3pPKrjQ5^Ai4PDfS2yIj~ z_aE(mq&?R>Cq0lx>E1@98zQK6vy%t(w%TzyAxRvpP|pQ3TITD|-{X~W6*?A{HA|-} zM&X)4G_fT<)$Jouby#QCshis~=ekK{WInui4zd38$Z45(7heUyqd$EMhKY8%T)c3D z8-UaAoWwt^oRx>NI9)D|t*hmHe-Zna?Jjs6D6-oGswzq$=K;pxXQVT5vwp43?asi> zx_Chp5GT!mobc{YnAl)aFEvjoZCHUf;M4m`ND_XRpNalq>uiB2N@Zjck~G2ysf;{o zY#0qeRE@RdjeoEvoft7y$az#Wq-K@`rxiJ&{!VN#N!`q8%%A)DPgU4|i$2T=Ny6)P z=zD?gP*|_m>c+zBA37elosBZl;4S&Q27sK%66=Zr#fUa59UbRL52Qa0J^wR8I+NAi zUE9KH#F8>zcW#MvsCC)~M>ERjp8R-}Zd-JZGVU;EpRjSG{A~gctOcMcx)p$zq)rf> zY#(2(qau(KuA$`zj7MJM*`T7tkot0r-SP0#VQesol+3WI%&(sWeScpGz^cw3Jf)to zI~zv?<48GOF1)$&^s1?}ww&ZMCv3XdR7M`*0q@^69XYKU%O5DE%sD~t{B+_Ip1R@r zJi$%Tt;~I9DP70Up@qWRN*;j=u$|u)-T=mt(mbK7FGe`%Mowgbp;6SP%4jh`5Ct`} zyGdQ@tao-%=A1x{4Qi{WbNHW!sAnZr{YQuaB{ik`cVF>t9e1H)Aw2nPBLIiR^#ly= z84X1U%$f}Ck^kI@sJ`WCI~#?@s9KqT{mXV+b}7#)XM(2)W?*C6J%}D3seyLleKFpB zS`B<_znUfR5wTdr!=;GqX z{oSBAbqnMUDU}`T0Pr;Lz*=Fa|L3;?Q2m>~A@vXH_x=ZV;qtp_T)Uh%Up`7S6v0C@{Ujm@vnj^&e&-3U-FW9eniaQL>>F@ojhNf5=|9wXko7{15CR8%l9g zpoxPOS8#1;Ip-VC@zUj!0I;}=@^W@|Uw#JH<#%KEIXPjiCK`GJIgzFBObEeg1p%(F zIe?dmdEbfWj@4SfO=lkDY~uC;$Q_B04W+QSi`et@CSVi646Hl)jiClE8!{OdF4_iw zXM=ix(eCYc&%jgWg%4WvkuR+&SNHWB8x?JZFm9Gk2#pYh5{_Z5u=C+rHE*EpC<}>T zaTg)DZ0ZrUt`a#d^TF!RB=})$(qod}<}%+Bc~5ig(i> z9U=By6ed8X+jc|SkviA72z80KH! zSq8wGbONzhBt4+6@6RuK?vmvDOiWBnOiWBnOiWBnOiWBnOiWBnOiWBnOiWBnOmh4i XH=_R5uhcmv00000NkvXXu0mjfPQU|& literal 0 HcmV?d00001 From bfb5e6730ebebcab180797516fef306149f90888 Mon Sep 17 00:00:00 2001 From: Kat Date: Fri, 5 Sep 2025 18:00:55 -0400 Subject: [PATCH 2/2] No longer remove shulker box tags --- .../fireblanket/tags/block/block_interaction_restricted.json | 1 + 1 file changed, 1 insertion(+) diff --git a/pack/resources/datapack/required/mf_fireblanket/data/fireblanket/tags/block/block_interaction_restricted.json b/pack/resources/datapack/required/mf_fireblanket/data/fireblanket/tags/block/block_interaction_restricted.json index 8c6e500..b695a91 100644 --- a/pack/resources/datapack/required/mf_fireblanket/data/fireblanket/tags/block/block_interaction_restricted.json +++ b/pack/resources/datapack/required/mf_fireblanket/data/fireblanket/tags/block/block_interaction_restricted.json @@ -1,6 +1,7 @@ { "values": [ "#minecraft:trapdoors", + "#minecraft:shulker_boxes", "#minecraft:fence_gates", "#minecraft:flower_pots", "#minecraft:cave_vines",