From 87aee95650be385beeefa2da3c681cb2ea752e8a Mon Sep 17 00:00:00 2001 From: paulevsGitch Date: Thu, 15 Oct 2020 03:58:57 +0300 Subject: [PATCH] Chorus plant remake (WIP) --- .../models/block/chorus_plant_center.json | 22 ++++++ .../models/block/chorus_plant_roots.json | 49 +++++++++++++ .../models/block/chorus_plant_stem.json | 45 ++++++++++++ .../models/block/chorus_plant_stem_2.json | 45 ++++++++++++ .../models/block/chorus_plant_stem_3.json | 45 ++++++++++++ .../models/block/chorus_plant_stem_4.json | 45 ++++++++++++ .../betterend/textures/block/chorus_plant.png | Bin 0 -> 2234 bytes .../textures/block/chorus_plant_2.png | Bin 0 -> 2244 bytes .../textures/block/chorus_plant_needles.png | Bin 0 -> 1963 bytes .../textures/block/chorus_plant_needles_2.png | Bin 0 -> 1968 bytes .../textures/block/chorus_plant_needles_3.png | Bin 0 -> 1924 bytes .../textures/block/chorus_plant_needles_4.png | Bin 0 -> 1847 bytes .../textures/block/chorus_plant_roots.png | Bin 0 -> 2256 bytes .../minecraft/blockstates/chorus_plant.json | 69 ++++++++++++++++++ 14 files changed, 320 insertions(+) create mode 100644 src/main/resources/assets/betterend/models/block/chorus_plant_center.json create mode 100644 src/main/resources/assets/betterend/models/block/chorus_plant_roots.json create mode 100644 src/main/resources/assets/betterend/models/block/chorus_plant_stem.json create mode 100644 src/main/resources/assets/betterend/models/block/chorus_plant_stem_2.json create mode 100644 src/main/resources/assets/betterend/models/block/chorus_plant_stem_3.json create mode 100644 src/main/resources/assets/betterend/models/block/chorus_plant_stem_4.json create mode 100644 src/main/resources/assets/betterend/textures/block/chorus_plant.png create mode 100644 src/main/resources/assets/betterend/textures/block/chorus_plant_2.png create mode 100644 src/main/resources/assets/betterend/textures/block/chorus_plant_needles.png create mode 100644 src/main/resources/assets/betterend/textures/block/chorus_plant_needles_2.png create mode 100644 src/main/resources/assets/betterend/textures/block/chorus_plant_needles_3.png create mode 100644 src/main/resources/assets/betterend/textures/block/chorus_plant_needles_4.png create mode 100644 src/main/resources/assets/betterend/textures/block/chorus_plant_roots.png create mode 100644 src/main/resources/assets/minecraft/blockstates/chorus_plant.json diff --git a/src/main/resources/assets/betterend/models/block/chorus_plant_center.json b/src/main/resources/assets/betterend/models/block/chorus_plant_center.json new file mode 100644 index 00000000..8b68aea6 --- /dev/null +++ b/src/main/resources/assets/betterend/models/block/chorus_plant_center.json @@ -0,0 +1,22 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/chorus_plant", + "texture": "betterend:block/chorus_plant" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 4, 4, 4 ], + "to": [ 12, 12, 12 ], + "faces": { + "down": { "uv": [ 4, 4, 12, 12 ], "texture": "#texture" }, + "up": { "uv": [ 4, 4, 12, 12 ], "texture": "#texture" }, + "north": { "uv": [ 4, 4, 12, 12 ], "texture": "#texture" }, + "south": { "uv": [ 4, 4, 12, 12 ], "texture": "#texture" }, + "west": { "uv": [ 4, 4, 12, 12 ], "texture": "#texture" }, + "east": { "uv": [ 4, 4, 12, 12 ], "texture": "#texture" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/betterend/models/block/chorus_plant_roots.json b/src/main/resources/assets/betterend/models/block/chorus_plant_roots.json new file mode 100644 index 00000000..f577c244 --- /dev/null +++ b/src/main/resources/assets/betterend/models/block/chorus_plant_roots.json @@ -0,0 +1,49 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/chorus_plant_roots", + "texture": "betterend:block/chorus_plant_roots" + }, + "elements": [ + { + "__comment": "PlaneX4", + "from": [ 6, 0, 0 ], + "to": [ 6.001, 16, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneZ5", + "from": [ 0, 0, 6 ], + "to": [ 16, 16, 6.001 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneZ5", + "from": [ 0, 0, 10 ], + "to": [ 16, 16, 10.001 ], + "shade": false, + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX4", + "from": [ 10, 0, 0 ], + "to": [ 10.001, 16, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/betterend/models/block/chorus_plant_stem.json b/src/main/resources/assets/betterend/models/block/chorus_plant_stem.json new file mode 100644 index 00000000..b3e6601f --- /dev/null +++ b/src/main/resources/assets/betterend/models/block/chorus_plant_stem.json @@ -0,0 +1,45 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/chorus_plant", + "texture": "betterend:block/chorus_plant", + "needles": "betterend:block/chorus_plant_needles" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 5, 0, 5 ], + "to": [ 11, 8, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 11, 11 ], "texture": "#texture" }, + "up": { "uv": [ 5, 5, 11, 11 ], "texture": "#texture" }, + "north": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX2", + "from": [ 0, 0, 0 ], + "to": [ 0.001, 8, 22.5 ], + "rotation": { "origin": [ 0, 0, 0 ], "axis": "y", "angle": 45 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" } + } + }, + { + "__comment": "PlaneX2", + "from": [ 16, 0, 0 ], + "to": [ 16.001, 8, 22.5 ], + "rotation": { "origin": [ 16, 0, 0 ], "axis": "y", "angle": -45 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/betterend/models/block/chorus_plant_stem_2.json b/src/main/resources/assets/betterend/models/block/chorus_plant_stem_2.json new file mode 100644 index 00000000..893841a8 --- /dev/null +++ b/src/main/resources/assets/betterend/models/block/chorus_plant_stem_2.json @@ -0,0 +1,45 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/chorus_plant", + "texture": "betterend:block/chorus_plant", + "needles": "betterend:block/chorus_plant_needles_2" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 5, 0, 5 ], + "to": [ 11, 8, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 11, 11 ], "texture": "#texture" }, + "up": { "uv": [ 5, 5, 11, 11 ], "texture": "#texture" }, + "north": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX2", + "from": [ 0, 0, 0 ], + "to": [ 0.001, 8, 22.5 ], + "rotation": { "origin": [ 0, 0, 0 ], "axis": "y", "angle": 45 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" } + } + }, + { + "__comment": "PlaneX2", + "from": [ 16, 0, 0 ], + "to": [ 16.001, 8, 22.5 ], + "rotation": { "origin": [ 16, 0, 0 ], "axis": "y", "angle": -45 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/betterend/models/block/chorus_plant_stem_3.json b/src/main/resources/assets/betterend/models/block/chorus_plant_stem_3.json new file mode 100644 index 00000000..aaae8628 --- /dev/null +++ b/src/main/resources/assets/betterend/models/block/chorus_plant_stem_3.json @@ -0,0 +1,45 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/chorus_plant", + "texture": "betterend:block/chorus_plant", + "needles": "betterend:block/chorus_plant_needles_3" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 5, 0, 5 ], + "to": [ 11, 8, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 11, 11 ], "texture": "#texture" }, + "up": { "uv": [ 5, 5, 11, 11 ], "texture": "#texture" }, + "north": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX2", + "from": [ 0, 0, 0 ], + "to": [ 0.001, 8, 22.5 ], + "rotation": { "origin": [ 0, 0, 0 ], "axis": "y", "angle": 45 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" } + } + }, + { + "__comment": "PlaneX2", + "from": [ 16, 0, 0 ], + "to": [ 16.001, 8, 22.5 ], + "rotation": { "origin": [ 16, 0, 0 ], "axis": "y", "angle": -45 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/betterend/models/block/chorus_plant_stem_4.json b/src/main/resources/assets/betterend/models/block/chorus_plant_stem_4.json new file mode 100644 index 00000000..3659621a --- /dev/null +++ b/src/main/resources/assets/betterend/models/block/chorus_plant_stem_4.json @@ -0,0 +1,45 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/chorus_plant", + "texture": "betterend:block/chorus_plant", + "needles": "betterend:block/chorus_plant_needles_4" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 5, 0, 5 ], + "to": [ 11, 8, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 11, 11 ], "texture": "#texture" }, + "up": { "uv": [ 5, 5, 11, 11 ], "texture": "#texture" }, + "north": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5, 8, 11, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX2", + "from": [ 0, 0, 0 ], + "to": [ 0.001, 8, 22.5 ], + "rotation": { "origin": [ 0, 0, 0 ], "axis": "y", "angle": 45 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" } + } + }, + { + "__comment": "PlaneX2", + "from": [ 16, 0, 0 ], + "to": [ 16.001, 8, 22.5 ], + "rotation": { "origin": [ 16, 0, 0 ], "axis": "y", "angle": -45 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#needles" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/betterend/textures/block/chorus_plant.png b/src/main/resources/assets/betterend/textures/block/chorus_plant.png new file mode 100644 index 0000000000000000000000000000000000000000..3b3f3f167139fc90b49b65733bc0ff80c9cc94fa GIT binary patch literal 2234 zcmbVO3sBQ$9FM5;flkC1^VG$P6NNNM+dva3h^-2hDnmBG*G!YIZG<)@iIj3q9rLX? z@I6m&Zs_oFZt5va-R5MvDL8k&V7Pgk&nf3?I?nmn+!rVv?$mkfHO-gg_x*mq|0DnF z!n84?I(O{d5kZj7Dan>}cn(vK_95`MxWp9;PaV9;Su%ozc2kd5$l7%g2-5b1kddim z+EN)#bZc2&v;%Fv+Y8YM5}%mwWw~sipmyLCJSNSp{RcFtz?(GVDH~z)nt@A5E|9>u zf-xCfK{iM8n#2S&KA(XEZlJJezB|VwGx;V>BQFEj>TO(uHbRtalO{FwPDLK+!x!a)jE@jXlC73o@*pKk$l- z1G#}!j(|3{1;cV`yPGteT4%s(0=I>y( zbs3zp@FF;;fd^7ca0M2QbyGGJxWr>c2A0!m;Gsd{rlIlN(Pn|vyrb% z3h#pU9~s_I=KpO}?pH2*eDRviM|u{6sq^agmDSd7E&qJRYW(Lr30)rje*WV9tGWe+ zX(N`=8<3ZKjGcBP*SMwn?Bzc?c0WAjR_BnY?@k^$bm{7q{O$KI85W+5k4|f4NWQRf z_J;o1z7revpDszh{y2Vin=Ag~g9n{ld84N4+U@v7rCA$RWsknRXf!fq^X{b&zHN8l zz}a^frgT00dPMmUTOpdh_s*%==@+b9KD=4ZMDN*@x+TTXI-=7f_VBjItdRags>21k z=+C!4D2?oyx~6hT*~M;otIFz`t9nb>v{k*B+pVwdTTyaz`20z2D<*lnCn4{&Zlm&TJ1KzHz{wlgk#*l}^PZfWq2!^-&RZd$tKE|GYAU{bZ0eIbFE@N55@y~m%?ZnLC;TP*w%$qY^;-JQfsWl-TNACPPDhv) z&sfm4>{z+caqOkUy@~C1M2s2-R-DOM^igEwz!-B?m)6=JTnUA3H!iW(cFoM}P#53f zV$4wqWS`si#@u`MoxT~fJ}xT%?8fM@gN89hH8owTcCS6|T#^>ODaM)4Ir7V;2iI?3 znP0Q7Vi()@ZTeyPq$x_@ia9^|`-IPV{Odw4^!BTpMDLaL9>*Q^-$lxZF_uq;Pc8f# DJ9sGC literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/betterend/textures/block/chorus_plant_2.png b/src/main/resources/assets/betterend/textures/block/chorus_plant_2.png new file mode 100644 index 0000000000000000000000000000000000000000..50e226d931360dda4a610b2551edbb6ae5d6a526 GIT binary patch literal 2244 zcmbVO3sBQ`7%w0q3iE+ZRNP_^g=w2KO=%mbUTK+tl$VG&H#N-zB5hNeK+9uy_}Ih; zlkH$CW2kfLJW+4+ffMnKkJFv+Ib}}7LqND86BSRzrBHgCQ|Fn>8YESzR1l0n2qG2`VlKzb<94x`3+!XiQ5<1qEIh-S0S6;)V6%8N zC`8(ug302dHFM4~2?c}fxCN3*U`I+lK$39bELm1#k8_fMC?jQ}%seMxr7o;cCB5DS ze<`iW7$p!qi!qa|jSF!&a@tTjoTtl=a!iTN&Xa!i{gw;}QwevPRabXGx*T zGDi#dv=SD@aDrYr&W~aSmFZj=8K9?oFr08SxEdrJ%2Fige9XM0GH;eyFRd+|5=dVo zcQ1@%Y2JogDNUMC#W(3F=vDD^c=qd~e=}WQ75xkS_mA<}^x}nGop62Xai8 zUTL5gRqJ{8k4e-A7si`o>6)v;jcYPfW`Wu&%w1)6U8_jsz9m|xNe(_2^i^HFpJw<8 zTQ&`uLMAsR#jGe18$uL8pvJ9eS;vv%T{K$OHL-P$Sy_v(K9st@a&^cn-pF(<#~TDJ$U=V_a*D6+>cl{Z9t$;UGVb#mtzYvN3Hm} zX-VR#%m930Q*P&l2i5c9Z4Ha^^{2_w-DiGFp~6;vH*wRGk{_Ycc8!0WFMZ{fcW3t> zbB6le&8uIW6Yk%7b^G4J$l1j|#Md15x&rv#Ma7_ zZP$igS+DNQ?e_HbFFcZWWMr)7y}$U6{r0)lY}j{kcUb*kpZb7#)8mdV2&zhm-B$Xm zD!3#3X7ML%Wx zR2)9$+kEIw%lOO3`=i@Fn;E%BJu)+@Dy*P!-zSZ#gUp^W+10IO@)=(1i+vZ&9}R>* zUvKexSe&%0Ow_L;zE!?w?ioX9WuWAG`CPYL*exMNHpb2wOyj~X?cL9{wA30CPh31W zH*u-8c4!ujp385)c-~VNv-aq!`)YY<;Q37(X3yOC&UWqRm*PySK|3XUz{cw}ZOS`W gl8>by>8ELX{@kk|BG+RC=J?Nuj*Qdoh?u|VZ>)tac>n+a literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/betterend/textures/block/chorus_plant_needles.png b/src/main/resources/assets/betterend/textures/block/chorus_plant_needles.png new file mode 100644 index 0000000000000000000000000000000000000000..cb072a9d23fbdb1d259960fb3ce3fdba80b53057 GIT binary patch literal 1963 zcmb_dU1%Id9N$YM#C()mU)qSeY+j7Ix1YCrJN8V|yJ!x2F{B5HDE8)NX785V?X0_- z+$9yP5^GxY#XeYK9~55-LZChfwODP1KG+I^4=N%We9#B+gZe0*v-gG8q=w*eyE{Ak zo8SNIH}gL=GyVARz{mi{al_fE%q)BEjjsMacEA5-1G2}R-qe!;#|_>cT`_L`+wpndNeKCRwc-Y#o)Vh8fQ_SRN#L81a3Lj3Lf+G*N_YhNlH*M#4z8yk+Y%6fH(Y?5xLZeUWIYX=t`+tHcxyr0Zf*GZUhP zEFBpdG;NJ^>_6cXJ0%=;IevV?6Wi66$Q%YdU30S?B+neGjdA2>OIDAt* z0HR3XDFH>5C0J-rJ6mLCXOXpNYh}VnZ&U6TETDE+gFcxku`KRHQPOt)2XN{3-V+7O zCQe$SsoScEZ5@ly)RLlJL;<8lvtdE@gz!+ma=yEnQ zkxyPne>587y+hB{FTA?hXgoi3xv?Z%+|{m)-LGBmg6SkLvB zZsc+DcxB)GGoSN48`;^h``(H1pEllFzv7?%?TyU=*vBtilexaa#v$XoKM#M~0Pn2~ zeRA!=!sWHM?-)HDaRU1hHKWb94v(4JnscmHQkpE$5KwSHlQ z3u66eU;nc3K6md=PrW>{I6d+8mEUh3AKZN5)E8Xwqw}$kuX5Z*c6HNwZS7*zPP3EK KnT^AR7yklgR&xgc literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/betterend/textures/block/chorus_plant_needles_2.png b/src/main/resources/assets/betterend/textures/block/chorus_plant_needles_2.png new file mode 100644 index 0000000000000000000000000000000000000000..76ee6872e004f42498333998e3e7103ce1b3cdc7 GIT binary patch literal 1968 zcmb_dU1%Id9N(n%NMl0-6-=t=y3x?u%?b>UMcZmtOX-rNM9}1nFnY~+bx3k^d z9=E%*v%mTM zzkW0SXXj=g9q2#Q&vD$q%yeO%JqMGkFU9Wn{?dT#u`if@GUB+~4<=U+cmBc<$E7ZM z#ie-3e#}C&nueGR2@a_tS?Zsk`ysn-_kRth;ejNXK4x{MA8kQLI(jEX$~;8j07}n zU`fd+2FkW#XWpC$J+`G_<$Bh{E6f-jqAEs4b%Co817wh z;*a;p!+G~X{%Rn_l^T4b!&+Jy7~Kot7G@yxA)a^-c;(d^N;W6zUjMq z?T5<`O&xh+cnVMccIO{|Zc6q~jki|57)o6l7(D$7x14(a<&!&Io536Y0y} z_okkAMpFw^eW`cIJ$tB6dF|(~-#D?qcI8|6srT`Bca1il?jPE?`=fJ5zZ#bJ9)4kJ iG}XWLPR}QoIIj5S@#kKDapIn&r_M~y7B(I^^~_&?0B*35bfN|?A?;voppDU zyNil7AU5rjZ#9VGi&6wX`qGCWRa!yu!6!lA^H5)mMG!^doV|~=)})5wal1P^`o@aXo1Hm6dfyfeA>?_>9ee(6H?xIHL88*$tn_axUIZvE{sj@$R1 zTV043>?Z-DUIt=XBbl}rFf_+aPPGGw7D>$4NZs}G!q&zmfp>9Un9tg>9TZ8!Ew6;+ z#L7$+tt=u73saBtlWo8VJQ72`?KS-fwDUrb7qD?MEeU)N5-;Y3LSm3#uxI%q4GEvk zRM06=cWO|udoESP5G-ynt2Hhc!^m7_b0E!`jF%7GfHiw0p9kTGnVp15B ze`MbEF>OUh5<`PEqy%G<7gSl5MTPydRaphP1!VnESp%}%huTaE7{>75U=3tdpsN1> zQ|vmO|Ab-$92$C%CCc?+ok)RS?^&~LQ1PP}`iN9Yd4ai_aa{~*nxQ+E1x1a>nyBi! zBbo^1MBRa=ESu0$3^ZI{qG%~8VzR!kXG{^}NK*$iq9DDdm?CxzRYZoK6JeIgRzq@5 zfx4yW7!KK<3SG9PVDoy`#4DV5MKsmOX^!Zq#1L~x*F{q^vZ9479pyA=I2sZ7zwH)j zlZH0MEazGx=$^1Z*^OBBI)g28g1k5wHC?`^B>+((_q>3TIuk4mrrquGv@4JLw5MW4s>Thw>wk?$O3u!{)TA3#*!yT&Tefk3HNNbf+p=y4E{_J+AMh>4^d+q4wtM*(*7xq5){M?c8jXhiMQuy0Tmp8i~9+$p&`J6L$@|CLxuYG*? z$iy=vPpogf^VvvEJ@fV1%U@m^FaO@XI)3`qHwr&2ynfdQ_n%rn^l9hE?~13-UfH~I pX!^m!vzueLP2P8GbS%s5+Cq?#jTTmsJmjtb(G|`KWvr+YV#*=rowwVYXpsZ&s=*-ElgpY?7Jo znUm{5ls(9L5)s5d;7t$|6t5n{tH_EMue;zu4?k;Lnk1r_7%BRV2x7rO~ zM}(&xOnJmQvosfIMY*&#%Q4wwl^U^8l6AE^Uw*Br3GHfEozMvL9vdf{M+Libv^6A0 zdnBOR+RN&t84?63tFSstCs~PRU9ILtVl1b1O|2o-URPU}2G!kgTkY|JsZPfQ#I!Bd z3p%E21eX1hY8j@d8=h`LV3^2o5e(GkrwMBXjnPj3)y9^1>uTew%8{;5r_;_9c6c$; z%^(PL!_qAa2m~k(vkK2ZR$g2(^jS%YB(D;lsge;#e81{y!qY_vY2MOiWs@e6Fnxw| z-Ru}Lq#8&`i_7D$7`IuL{9P<<6Xg{~n&e3S>ho8VjPhyu zf;7~uVSQY&u4WmQ0Zj3ChK7ag02%g+21JIjfQCW}6j%7)V2B(8Sz$`>$&NJWuMhq2$e;81+L`Cxx}HCIH=f^|Prtv7zbO8A{KHSaGH>2`_RQ_I vpTE8P`#WcUI{(4yg_Rrro8P?aD9R5%Zv688jmw|Q);8GK>VNji8*l#w%O*r< literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/betterend/textures/block/chorus_plant_roots.png b/src/main/resources/assets/betterend/textures/block/chorus_plant_roots.png new file mode 100644 index 0000000000000000000000000000000000000000..791d4da45d0fcb6c122652159fbd496192e3a1de GIT binary patch literal 2256 zcmb_eYj6`)6i%T)TLsEPDv#Rj7K#X)ePxsG+LYD?ZIP5x0#pQXvwJsPo9r&xElDa4 z43E*`4+O=E(hFa%J7hfZ?qxPAUP;~IZ^p$o9^R6*qNj9=<-UIAm0)>u#e)`0 z_jhDZxl!&O#|dh{%8RNOSi=DgqAix((P51jDuID`flpSPXv?;pC?bnabPD4p+*%>1 zkc+B=U}ANNN2sn8SP>nahvbGiXdnO#9tj8hiq3_dXw)tT$L2JSB2kD@=|l@mhe)}* z6e(1L0AZ|lOdxF(;$W?$onR^3D1;(N2TnL}lEw&D9FB)VA!~@XszD!4vMh@e6i!hXL|}SEG59d1=vf^WTtF9svS!Gtf|wS0uUcg| zQOLACgn$+|tLU*b!Gz&qUc*T%VTKe1ib5QxRR#S~=c0fEKL`ND&>@zLW3>v^Q1uG+ zHm2jRZ*l-r>vqR|+>%Qm5O<*)V`jlHVhOn=TK7aWfR_PXtqKZY%q&PV%Zx_j3WI<* z)SyRI{T+oW?VyYl7Mg|0K^~qWE20|GN8GRmxOf9NQHr1ljD%m>Ll7Ke=SX@aL30Gr z4t1-dEJZp&84pCzEJv_6L7{3y-r)ZeEDD^Y1_L~dSq|_%fNP2mMdF#{3RS-vgpMIQ zI?BTB=86^F;1vNByPPNt+bYWq>cyP0Kwo47~titHK8~Q9PXLJfSZ*v$wHQ+=1+yM$q zRS=#kd7(bC#gcHa*j3=kX{;}69GgBN_3Vz8*6lO0HxEdh^U?H8SLWvrn2iZT)LUVA4@`{_{Pglet^hu3d8^>*KtOf2>X@3C$_rGHufyNoYK= zKV{*(Wn+g;?>pqwg^kVC+nXYbF8oy2(xv=^$tQoS9=UAM9*OQYv+ignK6_(1ob0!I zcAjJB;n8~?>q@f6iAd|ZX1_g<`_R)3Q+uARTlrzX^Pe57soFMu@crG_e4cg&N$Q*Q zeWKbh)jp(GBqLmvom|_)*HmF!FnQE~Vd+L)<=9pIt3P4(T813><+V)j51|(iy}P(E z{{deWv9u}iD`ud!xY^R&l$zH%Ls^(&Q|gy&l|4I;r-7l>s}Cd(ee}D&iO=kN`TQ3f zdhg$V=F>Ha+Xn5+`tp3OI)2Na8(+w6Sb8`)-~Q5) z%l_<7=lZXmJI%iRNa>zS!+Y;uFjwq$E@5JQ#<83?mbc|bCZ%baSH~?nH+$qOo)h-` zU5F!f-Oz(=$FD6J@!nfk8(*(~E~$UH{nsvE|6H@MZTt25Ub`acqO-Qox8JZx5<}OV z61!X#2VZZw9Lis