From c21df329821e69027bb55fa272f6a62b9ec55173 Mon Sep 17 00:00:00 2001 From: Ampflower Date: Wed, 23 Aug 2023 14:32:14 -0500 Subject: [PATCH] Trans Allium --- assets/minecraft/blockstates/allium.json | 26 ++++++++++++++++++ .../minecraft/blockstates/potted_allium.json | 26 ++++++++++++++++++ .../models/block/allium_trans_1.json | 6 ++++ .../models/block/allium_trans_2.json | 6 ++++ .../models/block/allium_trans_3.json | 6 ++++ .../models/block/allium_trans_4.json | 6 ++++ .../models/block/potted_allium_trans_1.json | 6 ++++ .../models/block/potted_allium_trans_2.json | 6 ++++ .../models/block/potted_allium_trans_3.json | 6 ++++ .../models/block/potted_allium_trans_4.json | 6 ++++ .../textures/block/allium_trans_1.png | Bin 0 -> 252 bytes .../textures/block/allium_trans_2.png | Bin 0 -> 252 bytes .../textures/block/allium_trans_3.png | Bin 0 -> 251 bytes .../textures/block/allium_trans_4.png | Bin 0 -> 264 bytes 14 files changed, 100 insertions(+) create mode 100644 assets/minecraft/blockstates/allium.json create mode 100644 assets/minecraft/blockstates/potted_allium.json create mode 100644 assets/minecraft/models/block/allium_trans_1.json create mode 100644 assets/minecraft/models/block/allium_trans_2.json create mode 100644 assets/minecraft/models/block/allium_trans_3.json create mode 100644 assets/minecraft/models/block/allium_trans_4.json create mode 100644 assets/minecraft/models/block/potted_allium_trans_1.json create mode 100644 assets/minecraft/models/block/potted_allium_trans_2.json create mode 100644 assets/minecraft/models/block/potted_allium_trans_3.json create mode 100644 assets/minecraft/models/block/potted_allium_trans_4.json create mode 100644 assets/minecraft/textures/block/allium_trans_1.png create mode 100644 assets/minecraft/textures/block/allium_trans_2.png create mode 100644 assets/minecraft/textures/block/allium_trans_3.png create mode 100644 assets/minecraft/textures/block/allium_trans_4.png diff --git a/assets/minecraft/blockstates/allium.json b/assets/minecraft/blockstates/allium.json new file mode 100644 index 0000000..1fd7b25 --- /dev/null +++ b/assets/minecraft/blockstates/allium.json @@ -0,0 +1,26 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/allium", + "weight": 1000 + }, + { + "model": "minecraft:block/allium_trans_1", + "weight": 30 + }, + { + "model": "minecraft:block/allium_trans_2", + "weight": 30 + }, + { + "model": "minecraft:block/allium_trans_3", + "weight": 30 + }, + { + "model": "minecraft:block/allium_trans_4", + "weight": 1 + } + ] + } +} \ No newline at end of file diff --git a/assets/minecraft/blockstates/potted_allium.json b/assets/minecraft/blockstates/potted_allium.json new file mode 100644 index 0000000..25abb58 --- /dev/null +++ b/assets/minecraft/blockstates/potted_allium.json @@ -0,0 +1,26 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/potted_allium", + "weight": 1000 + }, + { + "model": "minecraft:block/potted_allium_trans_1", + "weight": 30 + }, + { + "model": "minecraft:block/potted_allium_trans_2", + "weight": 30 + }, + { + "model": "minecraft:block/potted_allium_trans_3", + "weight": 30 + }, + { + "model": "minecraft:block/potted_allium_trans_4", + "weight": 1 + } + ] + } +} \ No newline at end of file diff --git a/assets/minecraft/models/block/allium_trans_1.json b/assets/minecraft/models/block/allium_trans_1.json new file mode 100644 index 0000000..f8a9a1c --- /dev/null +++ b/assets/minecraft/models/block/allium_trans_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/allium_trans_1" + } +} \ No newline at end of file diff --git a/assets/minecraft/models/block/allium_trans_2.json b/assets/minecraft/models/block/allium_trans_2.json new file mode 100644 index 0000000..4d91a88 --- /dev/null +++ b/assets/minecraft/models/block/allium_trans_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/allium_trans_2" + } +} \ No newline at end of file diff --git a/assets/minecraft/models/block/allium_trans_3.json b/assets/minecraft/models/block/allium_trans_3.json new file mode 100644 index 0000000..b541e67 --- /dev/null +++ b/assets/minecraft/models/block/allium_trans_3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/allium_trans_3" + } +} \ No newline at end of file diff --git a/assets/minecraft/models/block/allium_trans_4.json b/assets/minecraft/models/block/allium_trans_4.json new file mode 100644 index 0000000..fb911dd --- /dev/null +++ b/assets/minecraft/models/block/allium_trans_4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/allium_trans_4" + } +} \ No newline at end of file diff --git a/assets/minecraft/models/block/potted_allium_trans_1.json b/assets/minecraft/models/block/potted_allium_trans_1.json new file mode 100644 index 0000000..364e0de --- /dev/null +++ b/assets/minecraft/models/block/potted_allium_trans_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/allium_trans_1" + } +} \ No newline at end of file diff --git a/assets/minecraft/models/block/potted_allium_trans_2.json b/assets/minecraft/models/block/potted_allium_trans_2.json new file mode 100644 index 0000000..2cb3d15 --- /dev/null +++ b/assets/minecraft/models/block/potted_allium_trans_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/allium_trans_2" + } +} \ No newline at end of file diff --git a/assets/minecraft/models/block/potted_allium_trans_3.json b/assets/minecraft/models/block/potted_allium_trans_3.json new file mode 100644 index 0000000..baf3516 --- /dev/null +++ b/assets/minecraft/models/block/potted_allium_trans_3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/allium_trans_3" + } +} \ No newline at end of file diff --git a/assets/minecraft/models/block/potted_allium_trans_4.json b/assets/minecraft/models/block/potted_allium_trans_4.json new file mode 100644 index 0000000..57224c7 --- /dev/null +++ b/assets/minecraft/models/block/potted_allium_trans_4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/allium_trans_4" + } +} \ No newline at end of file diff --git a/assets/minecraft/textures/block/allium_trans_1.png b/assets/minecraft/textures/block/allium_trans_1.png new file mode 100644 index 0000000000000000000000000000000000000000..b4b57aac9184ea560f94acdb244662eca89cfa9a GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkP;i~6 zi(`nz>Er~7i~}9sPG6tw{=Z$mE;*s%cWa|!F!ORNwU}9}m+p`VdAd_VqNP$of-C*6 z`Yq2@>i7S~fB12{UgE65-(&SxC%^yq*r`V>|eiM!}!6Q+tw_+KtI&G1jSC^G6TAt!PC{xWt~$(69Ay!Wl8`5 literal 0 HcmV?d00001 diff --git a/assets/minecraft/textures/block/allium_trans_2.png b/assets/minecraft/textures/block/allium_trans_2.png new file mode 100644 index 0000000000000000000000000000000000000000..650f4201b17dc9c6ddae2ec7f436786391cdc809 GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkP;i~6 zi(`nz>Er~7i~}9skG|e%|8GC9>iCC`_t@DU-|e%wYWVQdnZ?>C4&7x^Exegofv`*bJ#c4TTlyTdggPW(z92CDaBl?HXOxtfv%etQhSc!Tq+~X%1 zRZ#azF^XlzwK7vf;+0RZI-W-tBE) zrNnykKVMQ${M?zEEgSTh-`n;Wnxq{#ld@JfY^k}U9_~ph; x47-g#F?eSQeb^^1ZCzm(SJ`m-trhnVhO#Q({f9OSlmH#h;OXk;vd$@?2>?HoVLAW+ literal 0 HcmV?d00001 diff --git a/assets/minecraft/textures/block/allium_trans_4.png b/assets/minecraft/textures/block/allium_trans_4.png new file mode 100644 index 0000000000000000000000000000000000000000..d4adf619523032e41499d981b4f43d252e611d98 GIT binary patch literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkP;i&0 zi(`nz>Er~7i~}9skG|e%|8GC9>iCC`_t@DU-|g#BnYpU!)7}59{q=vsZGXPAKfFr) zza&@sU-hWZhuiu8gMfWc+_s#X|J(WH|K;cBAJ5|8-gRJY^!9*^z`($^#qRx+B-k$J z{|Pr0O5XAJgEaHu+xk2_hirIw5{;I$9u`^t?tk20ssHbn%>VCSCQ|t|Tj0u>7XL}j zvwItrm}jv54^Cq+WLVEwf8UsI19x4`U)Pz8>G$s`W-u@;_!ju#`Woj|KwmI;y85}S Ib4q9e07IB=$p8QV literal 0 HcmV?d00001