From aed4ccbfe8c867286b175a8a1c778ca7b0a9ddf6 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 20:48:25 +0200 Subject: [PATCH 01/18] register statues and fix booster rendering --- scripts/contenttweaker/itemsblocks.zs | 28 ++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/scripts/contenttweaker/itemsblocks.zs b/scripts/contenttweaker/itemsblocks.zs index 680d28cd..472c29be 100644 --- a/scripts/contenttweaker/itemsblocks.zs +++ b/scripts/contenttweaker/itemsblocks.zs @@ -125,6 +125,7 @@ rocketBlocktwo.setEntitySpawnable(false); rocketBlocktwo.register(); var rocketBoosterOne = VanillaFactory.createBlock("booster_block_1", ); +rocketBoosterOne.setFullBlock(false); rocketBoosterOne.setBlockHardness(30.0); rocketBoosterOne.setBlockResistance(1000.0); rocketBoosterOne.setToolClass("pickaxe"); @@ -134,6 +135,7 @@ rocketBoosterOne.axisAlignedBB = AxisAlignedBB.create(0.2, 0, 0.2, 0.8, 1, 0.8); rocketBoosterOne.register(); var rocketBoosterTwo = VanillaFactory.createBlock("booster_block_2", ); +rocketBoosterTwo.setFullBlock(false); rocketBoosterTwo.setBlockHardness(60.0); rocketBoosterTwo.setBlockResistance(1800.0); rocketBoosterTwo.setToolClass("pickaxe"); @@ -374,4 +376,28 @@ heartofthemachinegod.setBlockResistance(2000.0); heartofthemachinegod.setToolClass("pickaxe"); heartofthemachinegod.setToolLevel(6); heartofthemachinegod.setEntitySpawnable(false); -heartofthemachinegod.register(); \ No newline at end of file +heartofthemachinegod.register(); + +var yellowstatue = VanillaFactory.createBlock("ornate_guardian_statue_yellow", ); +yellowstatue.setBlockLayer("CUTOUT"); +yellowstatue.setFullBlock(false); +yellowstatue.setToolClass("pickaxe"); +yellowstatue.setToolLevel(0); +yellowstatue.setEntitySpawnable(false); +yellowstatue.register(); + +var greenstatue = VanillaFactory.createBlock("ornate_guardian_statue_green", ); +greenstatue.setBlockLayer("CUTOUT"); +greenstatue.setFullBlock(false); +greenstatue.setToolClass("pickaxe"); +greenstatue.setToolLevel(0); +greenstatue.setEntitySpawnable(false); +greenstatue.register(); + +var bluestatue = VanillaFactory.createBlock("ornate_guardian_statue_blue", ); +bluestatue.setBlockLayer("CUTOUT"); +bluestatue.setFullBlock(false); +bluestatue.setToolClass("pickaxe"); +bluestatue.setToolLevel(0); +bluestatue.setEntitySpawnable(false); +bluestatue.register(); From 3a941e28d3030588ad1458bd589028086bb3ca27 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 20:49:10 +0200 Subject: [PATCH 02/18] Add lang for guardians --- resources/contenttweaker/lang/en_us.lang | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/resources/contenttweaker/lang/en_us.lang b/resources/contenttweaker/lang/en_us.lang index 0885d9cc..88732f07 100644 --- a/resources/contenttweaker/lang/en_us.lang +++ b/resources/contenttweaker/lang/en_us.lang @@ -78,4 +78,7 @@ tile.contenttweaker.rocket_block_6.name=Heavy-Duty Block tile.contenttweaker.rocket_block_7.name=Heavy-Duty Block tile.contenttweaker.rocket_block_8.name=Heavy-Duty Block tile.contenttweaker.rocket_block_9.name=Heavy-Duty Block -tile.contenttweaker.rocket_block_10.name=Heavy-Duty Block \ No newline at end of file +tile.contenttweaker.rocket_block_10.name=Heavy-Duty Block +tile.contenttweaker.ornate_guardian_statue_yellow.name=Ornate Guardian Statue (Yellow) +tile.contenttweaker.ornate_guardian_statue_green.name=Ornate Guardian Statue (Green) +tile.contenttweaker.ornate_guardian_statue_blue.name=Ornate Guardian Statue (Blue) From 11ca03be707b0bc0abe8bd188ad4bb50615629a9 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 20:49:44 +0200 Subject: [PATCH 03/18] Add guardian blockstates --- .../blockstates/ornate_guardian_statue_blue.json | 8 ++++++++ .../blockstates/ornate_guardian_statue_green.json | 8 ++++++++ .../blockstates/ornate_guardian_statue_yellow.json | 8 ++++++++ 3 files changed, 24 insertions(+) create mode 100644 resources/contenttweaker/blockstates/ornate_guardian_statue_blue.json create mode 100644 resources/contenttweaker/blockstates/ornate_guardian_statue_green.json create mode 100644 resources/contenttweaker/blockstates/ornate_guardian_statue_yellow.json diff --git a/resources/contenttweaker/blockstates/ornate_guardian_statue_blue.json b/resources/contenttweaker/blockstates/ornate_guardian_statue_blue.json new file mode 100644 index 00000000..52de2a20 --- /dev/null +++ b/resources/contenttweaker/blockstates/ornate_guardian_statue_blue.json @@ -0,0 +1,8 @@ +{ + "variants": { + "normal": [ + { "model": "contenttweaker:ornate_guardian_statue_blue" } + ], + "inventory": { "model": "contenttweaker:ornate_guardian_statue_blue" } + } +} \ No newline at end of file diff --git a/resources/contenttweaker/blockstates/ornate_guardian_statue_green.json b/resources/contenttweaker/blockstates/ornate_guardian_statue_green.json new file mode 100644 index 00000000..7b08a205 --- /dev/null +++ b/resources/contenttweaker/blockstates/ornate_guardian_statue_green.json @@ -0,0 +1,8 @@ +{ + "variants": { + "normal": [ + { "model": "contenttweaker:ornate_guardian_statue_green" } + ], + "inventory": { "model": "contenttweaker:ornate_guardian_statue_green" } + } +} \ No newline at end of file diff --git a/resources/contenttweaker/blockstates/ornate_guardian_statue_yellow.json b/resources/contenttweaker/blockstates/ornate_guardian_statue_yellow.json new file mode 100644 index 00000000..81d1c64c --- /dev/null +++ b/resources/contenttweaker/blockstates/ornate_guardian_statue_yellow.json @@ -0,0 +1,8 @@ +{ + "variants": { + "normal": [ + { "model": "contenttweaker:ornate_guardian_statue_yellow" } + ], + "inventory": { "model": "contenttweaker:ornate_guardian_statue_yellow" } + } +} \ No newline at end of file From 64e83f6b42c861945c920fd47a39db17d1d0821c Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 20:50:35 +0200 Subject: [PATCH 04/18] Add statue models --- .../block/ornate_guardian_statue_blue.json | 191 ++++++++++++++++++ .../block/ornate_guardian_statue_green.json | 191 ++++++++++++++++++ .../block/ornate_guardian_statue_yellow.json | 191 ++++++++++++++++++ 3 files changed, 573 insertions(+) create mode 100644 resources/contenttweaker/models/block/ornate_guardian_statue_blue.json create mode 100644 resources/contenttweaker/models/block/ornate_guardian_statue_green.json create mode 100644 resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json diff --git a/resources/contenttweaker/models/block/ornate_guardian_statue_blue.json b/resources/contenttweaker/models/block/ornate_guardian_statue_blue.json new file mode 100644 index 00000000..b0c6c8cf --- /dev/null +++ b/resources/contenttweaker/models/block/ornate_guardian_statue_blue.json @@ -0,0 +1,191 @@ +{ + "format_version": "1.9.0", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "1": "blocks/statue/bcenter", + "2": "blocks/statue/bright", + "3": "blocks/statue/bleft", + "4": "blocks/statue/legleft", + "5": "blocks/statue/legright", + "particle": "blocks/statue/bcenter" + }, + "elements": [ + { + "name": "Left", + "from": [12.5, 2, 6], + "to": [13.5, 8, 10], + "faces": { + "north": {"uv": [0, 6, 1, 12], "texture": "#3"}, + "east": {"uv": [0, 0, 4, 6], "texture": "#3"}, + "south": {"uv": [1, 6, 2, 12], "texture": "#3"}, + "west": {"uv": [4, 0, 8, 6], "texture": "#3"}, + "up": {"uv": [3, 10, 2, 6], "texture": "#3"}, + "down": {"uv": [4, 6, 3, 10], "texture": "#3"} + } + }, + { + "name": "Right", + "from": [2.5, 2, 6], + "to": [3.5, 8, 10], + "faces": { + "north": {"uv": [0, 6, 1, 12], "texture": "#2"}, + "east": {"uv": [0, 0, 4, 6], "texture": "#2"}, + "south": {"uv": [1, 6, 2, 12], "texture": "#2"}, + "west": {"uv": [4, 0, 8, 6], "texture": "#2"}, + "up": {"uv": [3, 10, 2, 6], "texture": "#2"}, + "down": {"uv": [4, 6, 3, 10], "texture": "#2"} + } + }, + { + "name": "Center", + "from": [5, 3, 7], + "to": [11, 9, 9], + "faces": { + "north": {"uv": [0, 0, 6, 6], "texture": "#1"}, + "east": {"uv": [6, 0, 8, 6], "texture": "#1"}, + "south": {"uv": [0, 6, 6, 12], "texture": "#1"}, + "west": {"uv": [6, 6, 8, 12], "texture": "#1"}, + "up": {"uv": [14, 2, 8, 0], "texture": "#1"}, + "down": {"uv": [14, 2, 8, 4], "texture": "#1"} + } + }, + { + "name": "L1", + "from": [12.5, 0, 9.5], + "to": [13.5, 2, 10], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "L2", + "from": [12.5, 0, 8.5], + "to": [13.5, 2, 9], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "L3", + "from": [12.5, 0, 7], + "to": [13.5, 2, 7.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "L4", + "from": [12.5, 0, 6], + "to": [13.5, 2, 6.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "R1", + "from": [2.5, 0, 9.5], + "to": [3.5, 2, 10], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + }, + { + "name": "R2", + "from": [2.5, 0, 8.5], + "to": [3.5, 2, 9], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + }, + { + "name": "R3", + "from": [2.5, 0, 7], + "to": [3.5, 2, 7.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + }, + { + "name": "R4", + "from": [2.5, 0, 6], + "to": [3.5, 2, 6.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [67.5, 45, 0], + "translation": [1, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "rotation": [67.5, 45, 0], + "translation": [1, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [22.5, -135, 0], + "translation": [0, 2, 0] + }, + "head": { + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + } +} \ No newline at end of file diff --git a/resources/contenttweaker/models/block/ornate_guardian_statue_green.json b/resources/contenttweaker/models/block/ornate_guardian_statue_green.json new file mode 100644 index 00000000..ae80cf06 --- /dev/null +++ b/resources/contenttweaker/models/block/ornate_guardian_statue_green.json @@ -0,0 +1,191 @@ +{ + "format_version": "1.9.0", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "1": "blocks/statue/gcenter", + "2": "blocks/statue/gright", + "3": "blocks/statue/gleft", + "4": "blocks/statue/legleft", + "5": "blocks/statue/legright", + "particle": "blocks/statue/gcenter" + }, + "elements": [ + { + "name": "Left", + "from": [12.5, 2, 6], + "to": [13.5, 8, 10], + "faces": { + "north": {"uv": [0, 6, 1, 12], "texture": "#3"}, + "east": {"uv": [0, 0, 4, 6], "texture": "#3"}, + "south": {"uv": [1, 6, 2, 12], "texture": "#3"}, + "west": {"uv": [4, 0, 8, 6], "texture": "#3"}, + "up": {"uv": [3, 10, 2, 6], "texture": "#3"}, + "down": {"uv": [4, 6, 3, 10], "texture": "#3"} + } + }, + { + "name": "Right", + "from": [2.5, 2, 6], + "to": [3.5, 8, 10], + "faces": { + "north": {"uv": [0, 6, 1, 12], "texture": "#2"}, + "east": {"uv": [0, 0, 4, 6], "texture": "#2"}, + "south": {"uv": [1, 6, 2, 12], "texture": "#2"}, + "west": {"uv": [4, 0, 8, 6], "texture": "#2"}, + "up": {"uv": [3, 10, 2, 6], "texture": "#2"}, + "down": {"uv": [4, 6, 3, 10], "texture": "#2"} + } + }, + { + "name": "Center", + "from": [5, 3, 7], + "to": [11, 9, 9], + "faces": { + "north": {"uv": [0, 0, 6, 6], "texture": "#1"}, + "east": {"uv": [6, 0, 8, 6], "texture": "#1"}, + "south": {"uv": [0, 6, 6, 12], "texture": "#1"}, + "west": {"uv": [6, 6, 8, 12], "texture": "#1"}, + "up": {"uv": [14, 2, 8, 0], "texture": "#1"}, + "down": {"uv": [14, 2, 8, 4], "texture": "#1"} + } + }, + { + "name": "L1", + "from": [12.5, 0, 9.5], + "to": [13.5, 2, 10], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "L2", + "from": [12.5, 0, 8.5], + "to": [13.5, 2, 9], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "L3", + "from": [12.5, 0, 7], + "to": [13.5, 2, 7.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "L4", + "from": [12.5, 0, 6], + "to": [13.5, 2, 6.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "R1", + "from": [2.5, 0, 9.5], + "to": [3.5, 2, 10], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + }, + { + "name": "R2", + "from": [2.5, 0, 8.5], + "to": [3.5, 2, 9], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + }, + { + "name": "R3", + "from": [2.5, 0, 7], + "to": [3.5, 2, 7.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + }, + { + "name": "R4", + "from": [2.5, 0, 6], + "to": [3.5, 2, 6.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [67.5, 45, 0], + "translation": [1, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "rotation": [67.5, 45, 0], + "translation": [1, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [22.5, -135, 0], + "translation": [0, 2, 0] + }, + "head": { + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + } +} \ No newline at end of file diff --git a/resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json b/resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json new file mode 100644 index 00000000..60f2e7aa --- /dev/null +++ b/resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json @@ -0,0 +1,191 @@ +{ + "format_version": "1.9.0", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "1": "blocks/statue/ycenter", + "2": "blocks/statue/yright", + "3": "blocks/statue/yleft", + "4": "blocks/statue/legleft", + "5": "blocks/statue/legright", + "particle": "blocks/statue/ycenter" + }, + "elements": [ + { + "name": "Left", + "from": [12.5, 2, 6], + "to": [13.5, 8, 10], + "faces": { + "north": {"uv": [0, 6, 1, 12], "texture": "#3"}, + "east": {"uv": [0, 0, 4, 6], "texture": "#3"}, + "south": {"uv": [1, 6, 2, 12], "texture": "#3"}, + "west": {"uv": [4, 0, 8, 6], "texture": "#3"}, + "up": {"uv": [3, 10, 2, 6], "texture": "#3"}, + "down": {"uv": [4, 6, 3, 10], "texture": "#3"} + } + }, + { + "name": "Right", + "from": [2.5, 2, 6], + "to": [3.5, 8, 10], + "faces": { + "north": {"uv": [0, 6, 1, 12], "texture": "#2"}, + "east": {"uv": [0, 0, 4, 6], "texture": "#2"}, + "south": {"uv": [1, 6, 2, 12], "texture": "#2"}, + "west": {"uv": [4, 0, 8, 6], "texture": "#2"}, + "up": {"uv": [3, 10, 2, 6], "texture": "#2"}, + "down": {"uv": [4, 6, 3, 10], "texture": "#2"} + } + }, + { + "name": "Center", + "from": [5, 3, 7], + "to": [11, 9, 9], + "faces": { + "north": {"uv": [0, 0, 6, 6], "texture": "#1"}, + "east": {"uv": [6, 0, 8, 6], "texture": "#1"}, + "south": {"uv": [0, 6, 6, 12], "texture": "#1"}, + "west": {"uv": [6, 6, 8, 12], "texture": "#1"}, + "up": {"uv": [14, 2, 8, 0], "texture": "#1"}, + "down": {"uv": [14, 2, 8, 4], "texture": "#1"} + } + }, + { + "name": "L1", + "from": [12.5, 0, 9.5], + "to": [13.5, 2, 10], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "L2", + "from": [12.5, 0, 8.5], + "to": [13.5, 2, 9], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "L3", + "from": [12.5, 0, 7], + "to": [13.5, 2, 7.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "L4", + "from": [12.5, 0, 6], + "to": [13.5, 2, 6.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#4"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#4"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#4"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#4"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#4"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#4"} + } + }, + { + "name": "R1", + "from": [2.5, 0, 9.5], + "to": [3.5, 2, 10], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + }, + { + "name": "R2", + "from": [2.5, 0, 8.5], + "to": [3.5, 2, 9], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + }, + { + "name": "R3", + "from": [2.5, 0, 7], + "to": [3.5, 2, 7.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + }, + { + "name": "R4", + "from": [2.5, 0, 6], + "to": [3.5, 2, 6.5], + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#5"}, + "east": {"uv": [0, 4, 1, 8], "texture": "#5"}, + "south": {"uv": [2, 0, 4, 4], "texture": "#5"}, + "west": {"uv": [4, 0, 5, 4], "texture": "#5"}, + "up": {"uv": [4, 5, 2, 4], "texture": "#5"}, + "down": {"uv": [6, 4, 4, 5], "texture": "#5"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [67.5, 45, 0], + "translation": [1, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "rotation": [67.5, 45, 0], + "translation": [1, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [22.5, -135, 0], + "translation": [0, 2, 0] + }, + "head": { + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + } +} \ No newline at end of file From 38eb9bda70657dff4431ca0286d09f4b2dce24d8 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 20:53:17 +0200 Subject: [PATCH 05/18] statue folder --- resources/contenttweaker/textures/blocks/statue/a | 1 + 1 file changed, 1 insertion(+) create mode 100644 resources/contenttweaker/textures/blocks/statue/a diff --git a/resources/contenttweaker/textures/blocks/statue/a b/resources/contenttweaker/textures/blocks/statue/a new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/resources/contenttweaker/textures/blocks/statue/a @@ -0,0 +1 @@ + From ad1db27c198e4a6e4ef1764f735517ec5ccef028 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 20:53:39 +0200 Subject: [PATCH 06/18] Add statue textures --- .../textures/blocks/statue/bcenter.png | Bin 0 -> 1820 bytes .../textures/blocks/statue/bleft.png | Bin 0 -> 1199 bytes .../textures/blocks/statue/bright.png | Bin 0 -> 1183 bytes .../textures/blocks/statue/gcenter.png | Bin 0 -> 1823 bytes .../textures/blocks/statue/gleft.png | Bin 0 -> 1201 bytes .../textures/blocks/statue/gright.png | Bin 0 -> 1194 bytes .../textures/blocks/statue/legleft.png | Bin 0 -> 253 bytes .../textures/blocks/statue/legright.png | Bin 0 -> 255 bytes .../textures/blocks/statue/ycenter.png | Bin 0 -> 1825 bytes .../textures/blocks/statue/yleft.png | Bin 0 -> 1208 bytes .../textures/blocks/statue/yright.png | Bin 0 -> 1193 bytes 11 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 resources/contenttweaker/textures/blocks/statue/bcenter.png create mode 100644 resources/contenttweaker/textures/blocks/statue/bleft.png create mode 100644 resources/contenttweaker/textures/blocks/statue/bright.png create mode 100644 resources/contenttweaker/textures/blocks/statue/gcenter.png create mode 100644 resources/contenttweaker/textures/blocks/statue/gleft.png create mode 100644 resources/contenttweaker/textures/blocks/statue/gright.png create mode 100644 resources/contenttweaker/textures/blocks/statue/legleft.png create mode 100644 resources/contenttweaker/textures/blocks/statue/legright.png create mode 100644 resources/contenttweaker/textures/blocks/statue/ycenter.png create mode 100644 resources/contenttweaker/textures/blocks/statue/yleft.png create mode 100644 resources/contenttweaker/textures/blocks/statue/yright.png diff --git a/resources/contenttweaker/textures/blocks/statue/bcenter.png b/resources/contenttweaker/textures/blocks/statue/bcenter.png new file mode 100644 index 0000000000000000000000000000000000000000..b186ba8bdcb3106d8fa506d916dc6ac5b59662b6 GIT binary patch literal 1820 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 literal 0 HcmV?d00001 diff --git a/resources/contenttweaker/textures/blocks/statue/gcenter.png b/resources/contenttweaker/textures/blocks/statue/gcenter.png new file mode 100644 index 0000000000000000000000000000000000000000..5f18d151c797e37fc6d32582a87d6c80a31e2209 GIT binary patch literal 1823 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 IM6N<$f?|a`ssI20 literal 0 HcmV?d00001 diff --git a/resources/contenttweaker/textures/blocks/statue/legleft.png b/resources/contenttweaker/textures/blocks/statue/legleft.png new file mode 100644 index 0000000000000000000000000000000000000000..312d4b7ed6e688b070d80c545d179c1f1e171092 GIT binary patch literal 253 zcmV#PXqXz6h`F_(cqBXqLDQy{a%!-Vd}&uV+;sWfEt~~c@wdG) zUGLL;K1&ZYT20z*w&?-RbN?($-T5Q_0VHpjF){-${d7SQ7-(&c00000NkvXXu0mjf Dsv~Ea literal 0 HcmV?d00001 diff --git a/resources/contenttweaker/textures/blocks/statue/legright.png b/resources/contenttweaker/textures/blocks/statue/legright.png new file mode 100644 index 0000000000000000000000000000000000000000..55a4a39b377d183ac2efd0032edc14e7adb27061 GIT binary patch literal 255 zcmV;KL>a=^-qQBJvZjhC#n?iXF)J(M|Fmf{ z$TuJ^CjS4TB@4+nfT+mEqlj#qVP=jRzyQvC6ak72006^rJrR%@#l`>t002ovPDHLk FV1g>ha!ddK literal 0 HcmV?d00001 diff --git a/resources/contenttweaker/textures/blocks/statue/ycenter.png b/resources/contenttweaker/textures/blocks/statue/ycenter.png new file mode 100644 index 0000000000000000000000000000000000000000..d8de224d72e6cff06525c4cdcfd875dba39d34a0 GIT binary patch literal 1825 zcmV++2j2LJP)HZ-|qa0J%xp zgb0La1d}vP(wcVCs*SOYHPu)}!3rn~D1zaB5%#|4>$_|IDCs}RtbclTcJ`dJ=e*zZ zJ@4~A@2i!Sl_}k$a5(K~cn=MwdC)yZES471GSjhMAEv)=kiMQCGVZz)kIO|<(Mk59m(bhj)Lm5Ytd=yG0N`Pz+TzBsg^qCz!q^3%jk z2aiW%*rs_QFg#+QvsW=UPDi3~u|sjX^Jk=|r4kpll}jyS5cDGF>dumwP|M|xM~RHS z&9`uOS2xDM03xPNW$Lu4=nj{BH*%?KH5KI*;{mK+|F{aXy+TLNjr)mn?qOiyD#HVx z<8s-Uo3VuM&Q=yCwQ=x5E;DA$q|MS!dQuHq$cr@8pXUePc@Kjr2wg%bn-$Fzf>F~r zcWy`+(U~?yHYc&$uWh2Vv~)ZGvpHAAgzTrYTlku27Al>x3nPI6LC9v%<-^e1%)HIP z6>F|<5#8-(#`L%3ofQNJ1u|!TiZ6X`ry_jvBSHg^+g8n@)JBfBZjzuHeS^K2mp5?W(A^{_&m}Ip zlv54)!oPu$kx@pj5BWH^IfMz(PfScS3p304o<61 z-MegjKF~*L-h)H@rKyM@{TSJ?pK!G8SAp+10vgM(C7R(=VS|K0&eG;R_hse&##3^r#3=N{mTV2<>nP&Q@q~Jds zv24cR-KW&^-RZyK;L$wFUww64!2hlBuX3(!*}O$%Mn22Or@|#?V`Sa+03&0vxX9fq zTzUo7e(5tZ5=Xf>wt=wFFyDWfsn7H0!z-w+uJ#W=e%>ne+#_#rsvgdq*I2Pk@wej; z6(J(B8yU5GD;TbHLYr+Brr=O!NADI@>oi@-XV0EJ{sCB-lcO}F=8Y!`7k0g7BFYUg z2FS7sw-||dwNQ^3lLu2sh$KPBDL$*@yT7)^KLEa7Ai*6ro3~U&$~p#*cR8@MS(u-i zigk31zJXr)d-}-A%EGO?X=-c|uQ2dhRh54Lio^%f=RAXHLO3VRtR;Ki3j#vJ<*?J) zrRW^^H4C$TEBFLd5PI3wbPmH(LuMNO#Ua7oR zIcs_i9bIOj7hizMG&(%(Dy>GHGGH9SmwY$2bXDewu@%R=O&=g`8+ zXt!MErI&X32Vl$QZ7MW8l(e`a-alw2Kc|&9-$@a_ck|%V_xbGfTJDujc;wiReCZ9J z6i!A)HSZm`PbMQbd-uHVAApkLVr7&59Y13yhmYs7{Qg?`T|+`#Ji4ubQCA@gGIw+0 z^e?3Lodg<#<@#kT?N8F!)I>!^xqkqPpDtD-))8h+E9K-FGkIp2^>i0w_BLND{o|jO z^U#u7j@NCtA#hpl9_a(0)_bdBNJgyP{sGv$ZL@OPoXnoNi+|VWktKCLEXL!tKBv`A z@Pr^j)OIYLKPS*+V&cSb7G%84zfL?#cVFMl=mmLdZpu7K!8RJ3?PO;r(b3UNL_{EV zn;VDAJEH1*e0-J9rcJ>iQl`6oZMM-Oz2FT$dqK|19A#8SpYQ8ZjxtQknUXoqJ7mf| zF$PWg!Hro^CoouMMQ@J~12>3g?DMx5d|l_d+0XkWpql~a7Jyp}++yIr{uU5U8kYR2 P00000NkvXXu0mjfiE5DI literal 0 HcmV?d00001 diff --git a/resources/contenttweaker/textures/blocks/statue/yleft.png b/resources/contenttweaker/textures/blocks/statue/yleft.png new file mode 100644 index 0000000000000000000000000000000000000000..93cd7f25962f356277998007a8cfb7bdcd9d467a GIT binary patch literal 1208 zcmV;p1V{UcP)1wOBfDTB;sQkkv499m5SySDnEY-!a||b>4=N9;PLe0_Xi*dX)~tdak)?w=;`f4(P@ac#G+^w{oxE1`dYbk( z$|wH+q14scMP_O<4#y?5@;%wJa!}CV3wSttp;(>;(T!G+J0}<4sEgr;9ke-M!TdbV z{;`Nnn>MQhsI9FR$+7Qn^oQl7Wz1lpZ-9q`4|wT?k2&48j)z0{Ns6)4-CrhQ6#57H z@%n~Yx#Tk6{WzapyLPDqsMt{{G$U2q>nUdGqE0C=jQZrv3o5P;>?dkx^%gTi%vKmc9Es2xX6K0Cy7soo% zr`S05({jShX7XQk@cZSZxZE!Ca_Z#zTRbN_r&b%CO-daKEYs+ z*feOG51+JryZqCd%A|?Hj;~%I*E)35Ispt zSVRl& zgurMr;`NSlu(??sz_!Y5qQ~tfGBOH{4F3LsJ|;>Py1Q;O!)j&oW_3|J-jq;EN{U5L zW>0eBR2f7tIPB%_oh}k4C&-Gywo{$N;{p^FtrqEW^7(u+V}(LQxJmXxgWKuGY%;NB zYq=_k#|0=UDiUcK8Tf{WaQAxf^tcH~kXTC$S~&-H*VKd-VCk}DLMLZ{U+!^(RzrCB z1d@`HX}^9&j%Pu0^MTL;>}zNc0r{bGZD+~LoBK%m@Cg$znT-q$dMPbkA6kHVd#$+9 z(SbF~ip%N55N1HHHR5#LL8H}StFna_ptxkU2zUd`nmvp2=PzQ==+K9mWZ;yNeC|0?DQz!L?YDDXFW WoVPGYl9dDi00002KYZMVW;1$OMp*cgn%W&y#&0Dl;QMt*qs0f_^Zjg8F!X3Hd#%|*f(Ye_hS zEG9UzL+Lb8jL}4mM8#-8CI@$bY{8wtfLpf}h$-vw>+3syipip%yH@k_Bjw|Siuzcm?l2IWX z@o=%TgzD;QZ2%P&6=HtM5pLbtgI-a%d*?P2em@2IJ)AzXj%1641*z41`Q2ugEM1D{ z_FX0>ysUrLN&AJJ)YjE%11Q*5DCSw5%rra5&Zxp4fYU#|&Zd{Y=HpLaAU!J+#b3+F zcrmZOa*^Nv=;F-Ttz=rA4Bp&Io6D&Upily2XSC2iRDh7;W~R2%KfDEN(nnk$&c~?8 z{wF!P<<3WuomQ0h~B-To?jx($!zirk8pNhurku*hy|?6Q7;V zBP%_NWOF&=6AjX7iu8nZf&|E2?4q$H3)e}F3KW-?h&MKNa`9?DV`FaCu4v#~=Uc2< z*1%Wa=aZO_NMgJLW#%#FC6-~DHiz@S?qborI@zktxLj@86eum-E?(SliuOypm>xHs z#}@9FQ&7gbXHIeHN-;vflgmHglh2_~tUM|K$|Mx5UUiILI?9-DIY{RGEPgnFnynY@UVPQ6F7^^0zC5*XzZWBW0CFoSTu3$uyk{=i6llByhkUWq_ih0uc^} z$;?>5z~GQH!Xlwa)2SjvFf1^|#xgC&gxCA0w45GSo3^N( z(gVkjH;SIC-DEFX%)pHy%yBbh;R37GN~}JH!s2bwRiLD_SmZ3VF*-Jk$L(QGO0rBp zmAH7bjA22I#tX-k3T&4EX(?&MNZDlo;`jSx4j^wl>izXxf8aoL6*zk6u;}jX!D_Lh zlaJcJU)v35s*3-9uB)l35sIQim1#G*2OJJZR4aY}px$m5exH Date: Sun, 10 Aug 2025 20:54:25 +0200 Subject: [PATCH 07/18] Delete temp file --- resources/contenttweaker/textures/blocks/statue/a | 1 - 1 file changed, 1 deletion(-) delete mode 100644 resources/contenttweaker/textures/blocks/statue/a diff --git a/resources/contenttweaker/textures/blocks/statue/a b/resources/contenttweaker/textures/blocks/statue/a deleted file mode 100644 index 8b137891..00000000 --- a/resources/contenttweaker/textures/blocks/statue/a +++ /dev/null @@ -1 +0,0 @@ - From aa20492c8e522d9dcf773d1a8391555ae44b3ba3 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 21:33:52 +0200 Subject: [PATCH 08/18] parent --- .../models/block/ornate_guardian_statue_blue.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/contenttweaker/models/block/ornate_guardian_statue_blue.json b/resources/contenttweaker/models/block/ornate_guardian_statue_blue.json index b0c6c8cf..ff5634c9 100644 --- a/resources/contenttweaker/models/block/ornate_guardian_statue_blue.json +++ b/resources/contenttweaker/models/block/ornate_guardian_statue_blue.json @@ -1,6 +1,7 @@ { "format_version": "1.9.0", "credit": "Made with Blockbench", + "parent": "minecraft:block/block", "texture_size": [32, 32], "textures": { "1": "blocks/statue/bcenter", @@ -188,4 +189,4 @@ "scale": [0.5, 0.5, 0.5] } } -} \ No newline at end of file +} From 049c0bf1a42dfdb0665017fa8a125184e906acad Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 21:34:08 +0200 Subject: [PATCH 09/18] parent --- .../models/block/ornate_guardian_statue_green.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/contenttweaker/models/block/ornate_guardian_statue_green.json b/resources/contenttweaker/models/block/ornate_guardian_statue_green.json index ae80cf06..5aa253d5 100644 --- a/resources/contenttweaker/models/block/ornate_guardian_statue_green.json +++ b/resources/contenttweaker/models/block/ornate_guardian_statue_green.json @@ -1,6 +1,7 @@ { "format_version": "1.9.0", "credit": "Made with Blockbench", + "parent": "minecraft:block/block", "texture_size": [32, 32], "textures": { "1": "blocks/statue/gcenter", @@ -188,4 +189,4 @@ "scale": [0.5, 0.5, 0.5] } } -} \ No newline at end of file +} From 7e85241e04927a26f953975192fb518c32404f3c Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 21:34:22 +0200 Subject: [PATCH 10/18] parent --- .../models/block/ornate_guardian_statue_yellow.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json b/resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json index 60f2e7aa..84f7ef0d 100644 --- a/resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json +++ b/resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json @@ -1,6 +1,7 @@ { "format_version": "1.9.0", "credit": "Made with Blockbench", + "parent": "minecraft:block/block", "texture_size": [32, 32], "textures": { "1": "blocks/statue/ycenter", @@ -188,4 +189,4 @@ "scale": [0.5, 0.5, 0.5] } } -} \ No newline at end of file +} From 07793764b307f4443fb59dd2e937f422c41a8f0e Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 21:35:40 +0200 Subject: [PATCH 11/18] contenttweaker --- .../models/block/ornate_guardian_statue_yellow.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json b/resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json index 84f7ef0d..206396ca 100644 --- a/resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json +++ b/resources/contenttweaker/models/block/ornate_guardian_statue_yellow.json @@ -4,12 +4,12 @@ "parent": "minecraft:block/block", "texture_size": [32, 32], "textures": { - "1": "blocks/statue/ycenter", - "2": "blocks/statue/yright", - "3": "blocks/statue/yleft", - "4": "blocks/statue/legleft", - "5": "blocks/statue/legright", - "particle": "blocks/statue/ycenter" + "1": "contenttweaker:blocks/statue/ycenter", + "2": "contenttweaker:blocks/statue/yright", + "3": "contenttweaker:blocks/statue/yleft", + "4": "contenttweaker:blocks/statue/legleft", + "5": "contenttweaker:blocks/statue/legright", + "particle": "contenttweaker:blocks/statue/ycenter" }, "elements": [ { From c1163b312b0356d75503ed653b3a16eaff9a04fc Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 21:35:58 +0200 Subject: [PATCH 12/18] contenttweaker --- .../models/block/ornate_guardian_statue_green.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/contenttweaker/models/block/ornate_guardian_statue_green.json b/resources/contenttweaker/models/block/ornate_guardian_statue_green.json index 5aa253d5..7b346f69 100644 --- a/resources/contenttweaker/models/block/ornate_guardian_statue_green.json +++ b/resources/contenttweaker/models/block/ornate_guardian_statue_green.json @@ -4,12 +4,12 @@ "parent": "minecraft:block/block", "texture_size": [32, 32], "textures": { - "1": "blocks/statue/gcenter", - "2": "blocks/statue/gright", - "3": "blocks/statue/gleft", - "4": "blocks/statue/legleft", - "5": "blocks/statue/legright", - "particle": "blocks/statue/gcenter" + "1": "contenttweaker:blocks/statue/gcenter", + "2": "contenttweaker:blocks/statue/gright", + "3": "contenttweaker:blocks/statue/gleft", + "4": "contenttweaker:blocks/statue/legleft", + "5": "contenttweaker:blocks/statue/legright", + "particle": "contenttweaker:blocks/statue/gcenter" }, "elements": [ { From ecba820e03f9c7c075abfbda19dc7a28a1fe5047 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 21:36:12 +0200 Subject: [PATCH 13/18] contenttweaker --- .../models/block/ornate_guardian_statue_blue.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/contenttweaker/models/block/ornate_guardian_statue_blue.json b/resources/contenttweaker/models/block/ornate_guardian_statue_blue.json index ff5634c9..20456d40 100644 --- a/resources/contenttweaker/models/block/ornate_guardian_statue_blue.json +++ b/resources/contenttweaker/models/block/ornate_guardian_statue_blue.json @@ -4,12 +4,12 @@ "parent": "minecraft:block/block", "texture_size": [32, 32], "textures": { - "1": "blocks/statue/bcenter", - "2": "blocks/statue/bright", - "3": "blocks/statue/bleft", - "4": "blocks/statue/legleft", - "5": "blocks/statue/legright", - "particle": "blocks/statue/bcenter" + "1": "contenttweaker:blocks/statue/bcenter", + "2": "contenttweaker:blocks/statue/bright", + "3": "contenttweaker:blocks/statue/bleft", + "4": "contenttweaker:blocks/statue/legleft", + "5": "contenttweaker:blocks/statue/legright", + "particle": "contenttweaker:blocks/statue/bcenter" }, "elements": [ { From 54ebc920a4d08996280512cc3b62e9480ac5701d Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Sun, 10 Aug 2025 21:53:29 +0200 Subject: [PATCH 14/18] change guardian quest icons also change tier 10 schematic to non-electric --- config/betterquesting/DefaultQuests.json | 28 +++++++----------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/config/betterquesting/DefaultQuests.json b/config/betterquesting/DefaultQuests.json index 9fe295a3..3bee7dab 100644 --- a/config/betterquesting/DefaultQuests.json +++ b/config/betterquesting/DefaultQuests.json @@ -56981,7 +56981,7 @@ "desc:8": "quests.dimhopper.default.chapter9.1243.desc", "icon:10": { "Count:3": 1, - "id:8": "extraplanets:schematic_tier10_electric_rocket" + "id:8": "extraplanets:schematic_tier10" }, "name:8": "quests.dimhopper.default.chapter9.1243.name", "snd_complete:8": "contenttweaker:questcommon", @@ -56995,7 +56995,7 @@ "requiredItems:9": { "0:10": { "Count:3": 1, - "id:8": "extraplanets:schematic_tier10_electric_rocket" + "id:8": "extraplanets:schematic_tier10" } }, "taskID:8": "bq_standard:retrieval" @@ -72411,12 +72411,8 @@ "desc:8": "quests.dimhopper.default.bosses.81686143.desc", "icon:10": { "Count:3": 1, - "id:8": "minecraft:spawn_egg", - "tag:10": { - "EntityTag:10": { - "id:8": "aoa3:blue_guardian" - } - } + "id:8": "contenttweaker:ornate_guardian_statue_blue", + "tag:10": {} }, "name:8": "quests.dimhopper.default.bosses.81686143.name", "questlogic:8": "OR", @@ -72709,12 +72705,8 @@ "desc:8": "quests.dimhopper.default.bosses.287457859.desc", "icon:10": { "Count:3": 1, - "id:8": "minecraft:spawn_egg", - "tag:10": { - "EntityTag:10": { - "id:8": "aoa3:yellow_guardian" - } - } + "id:8": "contenttweaker:ornate_guardian_statue_yellow", + "tag:10": {} }, "name:8": "quests.dimhopper.default.bosses.287457859.name", "questlogic:8": "OR", @@ -73819,12 +73811,8 @@ "desc:8": "quests.dimhopper.default.bosses.783863246.desc", "icon:10": { "Count:3": 1, - "id:8": "minecraft:spawn_egg", - "tag:10": { - "EntityTag:10": { - "id:8": "aoa3:green_guardian" - } - } + "id:8": "contenttweaker:ornate_guardian_statue_green", + "tag:10": {} }, "name:8": "quests.dimhopper.default.bosses.783863246.name", "questlogic:8": "OR", From a8694be6f6ec73b14fc8bc2c6159f442abebaff9 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Mon, 11 Aug 2025 17:43:27 +0200 Subject: [PATCH 15/18] Light can now pass through --- scripts/contenttweaker/itemsblocks.zs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/contenttweaker/itemsblocks.zs b/scripts/contenttweaker/itemsblocks.zs index 472c29be..3426e7a5 100644 --- a/scripts/contenttweaker/itemsblocks.zs +++ b/scripts/contenttweaker/itemsblocks.zs @@ -126,6 +126,7 @@ rocketBlocktwo.register(); var rocketBoosterOne = VanillaFactory.createBlock("booster_block_1", ); rocketBoosterOne.setFullBlock(false); +rocketBoosterOne.setLightOpacity(0); rocketBoosterOne.setBlockHardness(30.0); rocketBoosterOne.setBlockResistance(1000.0); rocketBoosterOne.setToolClass("pickaxe"); @@ -136,6 +137,7 @@ rocketBoosterOne.register(); var rocketBoosterTwo = VanillaFactory.createBlock("booster_block_2", ); rocketBoosterTwo.setFullBlock(false); +rocketBoosterTwo.setLightOpacity(0); rocketBoosterTwo.setBlockHardness(60.0); rocketBoosterTwo.setBlockResistance(1800.0); rocketBoosterTwo.setToolClass("pickaxe"); @@ -380,6 +382,7 @@ heartofthemachinegod.register(); var yellowstatue = VanillaFactory.createBlock("ornate_guardian_statue_yellow", ); yellowstatue.setBlockLayer("CUTOUT"); +yellowstatue.setLightOpacity(0); yellowstatue.setFullBlock(false); yellowstatue.setToolClass("pickaxe"); yellowstatue.setToolLevel(0); @@ -388,6 +391,7 @@ yellowstatue.register(); var greenstatue = VanillaFactory.createBlock("ornate_guardian_statue_green", ); greenstatue.setBlockLayer("CUTOUT"); +greenstatue.setLightOpacity(0); greenstatue.setFullBlock(false); greenstatue.setToolClass("pickaxe"); greenstatue.setToolLevel(0); @@ -396,6 +400,7 @@ greenstatue.register(); var bluestatue = VanillaFactory.createBlock("ornate_guardian_statue_blue", ); bluestatue.setBlockLayer("CUTOUT"); +bluestatue.setLightOpacity(0); bluestatue.setFullBlock(false); bluestatue.setToolClass("pickaxe"); bluestatue.setToolLevel(0); From 28899d0107ce2e2c15ded6cc449bb89ece30f42e Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Mon, 11 Aug 2025 18:34:16 +0200 Subject: [PATCH 16/18] random rotation --- .../blockstates/ornate_guardian_statue_blue.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/resources/contenttweaker/blockstates/ornate_guardian_statue_blue.json b/resources/contenttweaker/blockstates/ornate_guardian_statue_blue.json index 52de2a20..0d82cd95 100644 --- a/resources/contenttweaker/blockstates/ornate_guardian_statue_blue.json +++ b/resources/contenttweaker/blockstates/ornate_guardian_statue_blue.json @@ -1,8 +1,11 @@ { "variants": { "normal": [ - { "model": "contenttweaker:ornate_guardian_statue_blue" } + { "model": "contenttweaker:ornate_guardian_statue_blue" }, + { "model": "contenttweaker:ornate_guardian_statue_blue", "y": 90 }, + { "model": "contenttweaker:ornate_guardian_statue_blue", "y": 180 }, + { "model": "contenttweaker:ornate_guardian_statue_blue", "y": 270 } ], "inventory": { "model": "contenttweaker:ornate_guardian_statue_blue" } } -} \ No newline at end of file +} From c758882e9fa3679ef0c1acdd1d8dbc532d41d11e Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Mon, 11 Aug 2025 18:34:41 +0200 Subject: [PATCH 17/18] random rotation --- .../blockstates/ornate_guardian_statue_green.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/resources/contenttweaker/blockstates/ornate_guardian_statue_green.json b/resources/contenttweaker/blockstates/ornate_guardian_statue_green.json index 7b08a205..197c9140 100644 --- a/resources/contenttweaker/blockstates/ornate_guardian_statue_green.json +++ b/resources/contenttweaker/blockstates/ornate_guardian_statue_green.json @@ -1,8 +1,11 @@ { "variants": { "normal": [ - { "model": "contenttweaker:ornate_guardian_statue_green" } + { "model": "contenttweaker:ornate_guardian_statue_green" }, + { "model": "contenttweaker:ornate_guardian_statue_green", "y": 90 }, + { "model": "contenttweaker:ornate_guardian_statue_green", "y": 180 }, + { "model": "contenttweaker:ornate_guardian_statue_green", "y": 270 } ], "inventory": { "model": "contenttweaker:ornate_guardian_statue_green" } } -} \ No newline at end of file +} From 2365dbfc0c0cc4acef5e174917ad648d4082f470 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Mon, 11 Aug 2025 18:35:31 +0200 Subject: [PATCH 18/18] random rotation --- .../blockstates/ornate_guardian_statue_yellow.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/resources/contenttweaker/blockstates/ornate_guardian_statue_yellow.json b/resources/contenttweaker/blockstates/ornate_guardian_statue_yellow.json index 81d1c64c..5157ebe1 100644 --- a/resources/contenttweaker/blockstates/ornate_guardian_statue_yellow.json +++ b/resources/contenttweaker/blockstates/ornate_guardian_statue_yellow.json @@ -1,8 +1,11 @@ { "variants": { "normal": [ - { "model": "contenttweaker:ornate_guardian_statue_yellow" } + { "model": "contenttweaker:ornate_guardian_statue_yellow" }, + { "model": "contenttweaker:ornate_guardian_statue_yellow", "y": 90 }, + { "model": "contenttweaker:ornate_guardian_statue_yellow", "y": 180 }, + { "model": "contenttweaker:ornate_guardian_statue_yellow", "y": 270 } ], "inventory": { "model": "contenttweaker:ornate_guardian_statue_yellow" } } -} \ No newline at end of file +}