From c882f46eb6b7b0ad2ed47006484016124698f64d Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 18 May 2018 22:11:08 +0200 Subject: [PATCH] Fix head node texture bugs --- mods/ITEMS/mcl_heads/init.lua | 11 +++++------ .../ITEMS/mcl_heads/textures/mcl_heads_creeper_node.png | Bin 0 -> 676 bytes .../mcl_heads/textures/mcl_heads_skeleton_node.png | Bin 0 -> 432 bytes mods/ITEMS/mcl_heads/textures/mcl_heads_steve_node.png | Bin 0 -> 626 bytes .../mcl_heads/textures/mcl_heads_wither_skeleton.png | Bin 256 -> 271 bytes .../textures/mcl_heads_wither_skeleton_node.png | Bin 0 -> 432 bytes .../textures/mcl_heads_wither_skeleton_preview.png | Bin 160 -> 156 bytes mods/ITEMS/mcl_heads/textures/mcl_heads_zombie_node.png | Bin 0 -> 1112 bytes 8 files changed, 5 insertions(+), 6 deletions(-) create mode 100644 mods/ITEMS/mcl_heads/textures/mcl_heads_creeper_node.png create mode 100644 mods/ITEMS/mcl_heads/textures/mcl_heads_skeleton_node.png create mode 100644 mods/ITEMS/mcl_heads/textures/mcl_heads_steve_node.png create mode 100644 mods/ITEMS/mcl_heads/textures/mcl_heads_wither_skeleton_node.png create mode 100644 mods/ITEMS/mcl_heads/textures/mcl_heads_zombie_node.png diff --git a/mods/ITEMS/mcl_heads/init.lua b/mods/ITEMS/mcl_heads/init.lua index 88ba0c64..180affe2 100644 --- a/mods/ITEMS/mcl_heads/init.lua +++ b/mods/ITEMS/mcl_heads/init.lua @@ -19,7 +19,6 @@ local function addhead(name, texture, desc, longdesc) }, groups = {handy=1, armor_head=1,non_combat_armor=1, head=1, deco_block=1, dig_by_piston=1}, -- The head textures are based off the textures of an actual mob. - -- FIXME: This code assumes 16×16 textures for the mob textures! tiles = { -- Note: bottom texture is overlaid over top texture to get rid of possible transparency. -- This is required for skeleton skull and wither skeleton skull. @@ -49,9 +48,9 @@ local function addhead(name, texture, desc, longdesc) end -- Add heads -addhead("zombie", "mobs_mc_zombie.png", "Zombie Head", "A zombie head is a small decorative block which resembles the head of a zombie. It can also be worn as a helmet for fun, but does not offer any protection.") -addhead("creeper", "mobs_mc_creeper.png", "Creeper Head", "A creeper head is a small decorative block which resembles the head of a creeper. It can also be worn as a helmet for fun, but does not offer any protection.") +addhead("zombie", "mcl_heads_zombie_node.png", "Zombie Head", "A zombie head is a small decorative block which resembles the head of a zombie. It can also be worn as a helmet for fun, but does not offer any protection.") +addhead("creeper", "mcl_heads_creeper_node.png", "Creeper Head", "A creeper head is a small decorative block which resembles the head of a creeper. It can also be worn as a helmet for fun, but does not offer any protection.") -- Original Minecraft name: “Head” -addhead("steve", "character.png", "Human Head", "A human head is a small decorative block which resembles the head of a human (i.e. a player character). It can also be worn as a helmet for fun, but does not offer any protection.") -addhead("skeleton", "mobs_mc_skeleton.png", "Skeleton Skull", "A skeleton skull is a small decorative block which resembles the head of a skeleton. It can also be worn as a helmet for fun, but does not offer any protection.") -addhead("wither_skeleton", "mobs_mc_wither_skeleton.png", "Wither Skeleton Skull", "A wither skeleton skull is a small decorative block which resembles the head of a wither skeleton. It can also be worn as a helmet for fun, but does not offer any protection.") +addhead("steve", "mcl_heads_steve_node.png", "Human Head", "A human head is a small decorative block which resembles the head of a human (i.e. a player character). It can also be worn as a helmet for fun, but does not offer any protection.") +addhead("skeleton", "mcl_heads_skeleton_node.png", "Skeleton Skull", "A skeleton skull is a small decorative block which resembles the head of a skeleton. It can also be worn as a helmet for fun, but does not offer any protection.") +addhead("wither_skeleton", "mcl_heads_wither_skeleton_node.png", "Wither Skeleton Skull", "A wither skeleton skull is a small decorative block which resembles the head of a wither skeleton. It can also be worn as a helmet for fun, but does not offer any protection.") diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_creeper_node.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_creeper_node.png new file mode 100644 index 0000000000000000000000000000000000000000..99b432ac67db7900cdbf4ad0075288fc59381168 GIT binary patch literal 676 zcwPad0$crwP)-`Z<|gO2k=b4ojZ{2kvo1$J@UYc88LTiDHF~+Rm6Mu)TyY) z)R98Q*dPn_-@rrTf3D`-AS1co>B0Mm-}Vfd=lD;shQj@r z=MP=K%+%+sOqzF4(1Q0sBlbzNR~_(}zx;9zR2k=Df%Q8Wu}9MAZS;pe~+|*}NsHN*0S20Cu^Tfnz`KKSvxyq6ppYQpH`&%FbSA)AI&P#j{ zEpT7M!uLGe{&dgj#vN!-3ss8UX$mJz*JQ9Xz3A08w_{U-L#z%-ldW1XNd=Aa+;G!+ zY^6SGuusaj1;+XaQ=pkHuZ<8zP@yF?5DS#qYVr3js4GSLmU6IB={i%m6L^=M0E4(X ztqq}ZU6;plw-PE-qB;T2PT<&QnFd|{)4*V;PXs zW{(&H*w76z*mOpEpa`yi2KIRB0^3G205+WS9(WoJUQFM;vB^5TJ+`k2tb1Tmi=c8% zpV5~w3}1%65j^&Q{9j5;_^N10000< KMNUMnLSTaNDmEqn literal 0 HcwPel00001 diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_skeleton_node.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_skeleton_node.png new file mode 100644 index 0000000000000000000000000000000000000000..0af86cd6a5e79a56e21ea9fb18cc64e40cc99731 GIT binary patch literal 432 zcwPap0Z;ykP)J${R5dg`bu`y)-C>?L6Z|>8%S`W(g^ikPBD@yH8E*mntaAu zcznz}1{I2thXU5v#kha}?&~+K5epVD{}i@B_kY5|3RMzVFX;-2*hBHW0lC2STmMVr zKWsL9I+itc6*MJd;SkHb)N>5@jH;x82s% zY!-&87AznHm}Cy#Ny{cUw?-+P`FPHr{SV?mvoMBdq0XXU4yB|URd0YO_m99_C)6JJ z%eHGm;qcZbv`h;m9!N4xSQ2L1gtxha7CQTy4doCh5IbXCdn?d5_mTK}d$EL1lsvZ= anE3-#<3ZF1Q5;kN0000qAY_|{l^=Dm&EFYPlBq~0-4pR%6ozS1j!o#EL&ERF_JtNP_l@O zh5G`CwkZ%Icnk$D!b<^7NdS5Qfc`KkFX_e$1e%qNqPfn=w*<6Cgg_VrOD98KA8<<` zBygkkUr12aI2zW=jc(u4iof}|_?R`Jf^ zRbU@5uL0iUxp6j<&T$4Y1bdyoX#OR@f#5-aLNIe4dH2zxiYdjIbKKjKO%l!Gv0p_r z6d!H?3ChskuG#j`tT@0`#CccV0mS$KfIBE}JVJ!BU{Dv2fIA46;iUx8n`-OIJ5XV* zQfn3I0ueyb4*;*s!3bTU0YX}53*)s9`i9US16tEIrZB*oE^{o<2Gn!F$a##MAe07B z?Grby8!)@dLjc1YKsSJpAZm4$KD2It5&-IxN1#O7=%Oa%8$twNsHt8)0{X}Xg7FHC zZS-a}@`!Ml8bp8i83{sfn5>|qusb~00qApfj?vNKcH(C48kQGuU+CgDKBxZ!+2|am z{`e(A=j4S+GhM29HdjJHcW3J%FBxY)H{;Rjy*CC|9G5Zy!I!Y}f5(O{1$(Yz#{d8T M07*qoM6N<$f)@%2a{vGU literal 0 HcwPel00001 diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_wither_skeleton.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_wither_skeleton.png index 15c33350e15b7c0456caafff63dc1f8d03124e9d..2e02a81a663cd5757f39ad8ee1e64295e8d466b0 100644 GIT binary patch delta 243 zcwPbX01W?t0*?ZaB!3%FOjJbx001&FGB!3gFfcGIEG#A_CObPjAt50+I5<&lb2tD1 z00DGTPE!Ct=GbNc005#%L_t(|0i=*IuEH=7ME8G*97no zAG@|q!?P?Ge%cwWv`}}%jPw}Yr{nJN>CLpfnGDl;o7NK=Py00001bW%=J z06^y0W&i*HnMp)JRCodHkHHPXKnw)$0R_ZV;5G2aO92RSyb*F5K=fY&_XEin(m>{P zuN_&trH7C@Hp(1Edfh%^Rv@XDQZ|1C-z^DT5G)C~WGSiS>|M+he!maB^LqjGO1klc z-U2l@7h^-LCrEuALye@9NdSTS?feD^CoKyY>XSUg02ttTMKdP1spTr|C1DgpRSCF` eQKSB5D=Qx$Tp)Vb13Gd50000jFE42HUQz%600DGTPE!Ct=GbNc00BTrL_t(| z0i}>J${R5dg`bu`y)-C>?L6Z|>8%S`W(g^ikPBD@yH8E*mntaAu zcznz}1{I2thXU5v#kha}?&~+K5epVD{}i@B_kY5|3RMzVFX;-2*hBHW0lC2STmMVr zKWsL9I+itc6*MJd;SkHb)N>5@jH;x82s% zY!-&87AznHm}Cy#Ny{cUw?-+P`FPHr{SV?mvoMBdq0XXU4yB|URd0YO_m99_C)6JJ z%eHGm;qcZbv`h;m9!N4xSQ2L1gtxha7CQTy4doCh5IbXCdn?d5_mTK}d$EL1lsvZ= anE3-#<3ZF1Q5;kN0000Plzi61A~!~k(rs9wY9aPqN0wDj&*rq5>S+}B*-tA!Qt7BG$6;q z)5S5Qf-yNEK|m-ZEQNtFG11l8z}fR+0LLMNCa;+mvn`q>Pc1v>mC)AJ-7P#raY@dS d69zeq3~Y(4`kRaxtbt}Qc)I$ztaD0e0sxIPB)I?p delta 131 zcwU>sxPWnjN{wiMPlzi614B!&+tiHk6^;2t&X$QrTE^O%9>MK-Kncc@AirP+hi5m^ zfE-It7srqa#^i(q0VA_8mLP|=NkT0PbC%?=r0q~!+1enPcTP<+!EM6EjaoAVvzEwk g1uoVQIb@K-$WZ!_ZE5kHB#zopr0C)c?NB{r; diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_zombie_node.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_zombie_node.png new file mode 100644 index 0000000000000000000000000000000000000000..ef85701e8f5f965cf902bee67349bf5d1fc54a96 GIT binary patch literal 1112 zcwXxa@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!?gjXSxPk;TT*8~eqdTH~D+6P@ zVtq<|3_{Gqo1_2#|G#Bj$L6)I8&)^w&CFiCuyoeMWQ!OZ-(uf@iU5}^_n@jE=XB?k z$tg3p_RFZt1~?mNc^P;H>`LiLigq;2_Oo?wY4$Ae^wd}JpE6l5GSYwA)QF`^tQ=+= zS+qwiUS#jK%D%KDZS9)WHLKm*TJ1_p4C7*_wMMU;RkUD2YI{YHuG=glztyI}J1V*p z+GgbjN9`-FJf&vc+`p*YKJHjj%|)5)Z27V>iP+fUG`E?p*+6Ien`sx!%&v;_Y|01* zisU7WSp$9ORubeF%vCs8QT9D1?E5>9MDaV@L&K&E!VDMFs*c*36sM z1g!6v_u_y33*U>g?zq)*&de!@E96|sSoXJ(na6q>lf*H>cXe~p3}u5`{xY`vvCUuz zN{}#)@%ij|Cb+9a;J5M{1=cI=-9Nv$&v_=&D7WDKN%;jKA)9k z!Ry@)ZF7#VXKGj^*`RSj=%~exA3Iz`6|=T;>2Uct?D+BCblTHBanrIlhHpP>IGcfa zGq(Y^lJ4uJG3QQ;vi(uL@NC93#iF;twX5oPpPX>c^#upB^(mmB)`}-n81#bQhC6Fn zCB#l=%_>*9B{TWRT5 zk!lTD3irLQ-1RaPP+4=)!n8(;+|Ir6O0D3a}W? zSpQ96tLEXI*>~^%U+A&z_@jU2>FOSbp3W!<5dPEovgFq5v(Hk@cE1+55dFpN%Cvr_ zW!t~J{BzG>JL9UR4@dtqiS50Y&d7h|NMXzai_Pl}pXU0of8B%99}Urs8s`RqJGvm^DSZMpA%Ly>G6Fvn&f|kE4UJ`y!76ryD#a z{L~b+9cDF{oZV#OeL1?pWzlwqYl#OqZZOQsWiYEhSQx;dKQT%)FUB=e%r#WB<@aSS zrl67pZp9DEju};!`q~d3+?2c$df>7(UzLjsPhhOb*V8}0+`q9!_q@<_L5Z%kt#Rw) zl9(v{-CGPoLK&($}#kF@!E`a>q=9Z&&iq;&%U=MINkv?X3eg`POc)I$ztaD0e0s!yu B0pkDw literal 0 HcwPel00001 -- 2.11.4.GIT