From b756002208129d88c8ded6d8acf30c68f317c3cd Mon Sep 17 00:00:00 2001 From: AntumDeluge Date: Fri, 2 Sep 2016 21:54:42 -0700 Subject: [PATCH] [antum_overrides] Re-add textures & fix textures no loading correctly. --- mods/antum/overrides/items/animalmaterials.lua | 16 ++++++++-------- mods/antum/overrides/items/cooking.lua | 16 ++++++++-------- mods/antum/overrides/items/kpgmobs.lua | 6 +++--- mods/antum/overrides/textures/description.txt | 1 + mods/antum/overrides/textures/fish_cooked.png | Bin 0 -> 633 bytes mods/antum/overrides/textures/fish_raw.png | Bin 0 -> 669 bytes mods/antum/overrides/textures/glass/test.png | Bin 0 -> 170 bytes mods/antum/overrides/textures/green.png | Bin 0 -> 198 bytes mods/antum/overrides/textures/green_detail.png | Bin 0 -> 176 bytes mods/antum/overrides/textures/horse_black.png | Bin 0 -> 356 bytes mods/antum/overrides/textures/horse_brown.png | Bin 0 -> 564 bytes mods/antum/overrides/textures/horse_white.png | Bin 0 -> 356 bytes mods/antum/overrides/textures/meat_cooked.png | Bin 0 -> 500 bytes mods/antum/overrides/textures/meat_raw.png | Bin 0 -> 505 bytes mods/antum/overrides/textures/screenshot.png | Bin 0 -> 1616 bytes 15 files changed, 20 insertions(+), 19 deletions(-) create mode 100644 mods/antum/overrides/textures/description.txt create mode 100644 mods/antum/overrides/textures/fish_cooked.png create mode 100644 mods/antum/overrides/textures/fish_raw.png create mode 100644 mods/antum/overrides/textures/glass/test.png create mode 100644 mods/antum/overrides/textures/green.png create mode 100644 mods/antum/overrides/textures/green_detail.png create mode 100644 mods/antum/overrides/textures/horse_black.png create mode 100644 mods/antum/overrides/textures/horse_brown.png create mode 100644 mods/antum/overrides/textures/horse_white.png create mode 100644 mods/antum/overrides/textures/meat_cooked.png create mode 100644 mods/antum/overrides/textures/meat_raw.png create mode 100644 mods/antum/overrides/textures/screenshot.png diff --git a/mods/antum/overrides/items/animalmaterials.lua b/mods/antum/overrides/items/animalmaterials.lua index 5c1c23df..d66017ba 100644 --- a/mods/antum/overrides/items/animalmaterials.lua +++ b/mods/antum/overrides/items/animalmaterials.lua @@ -25,22 +25,22 @@ --]] -minetest.register_craftitem(":animalmaterials:fish_bluewhite", { - description = "Raw Bluewhite Fish", - image = "food/fish_raw", +minetest.register_craftitem(':animalmaterials:fish_bluewhite', { + description = 'Raw Bluewhite Fish', + image = 'fish_raw.png', on_use = minetest.item_eat(1), groups = { meat=1, eatable=1 }, stack_max = 25 }) -minetest.register_alias("fish_bluewhite_raw", "animalmaterials:fish_bluewhite") +minetest.register_alias('fish_bluewhite_raw', 'animalmaterials:fish_bluewhite') -minetest.register_craftitem(":animalmaterials:fish_clownfish", { - description = "Raw Clownfish", - image = "food/fish_raw", +minetest.register_craftitem(':animalmaterials:fish_clownfish', { + description = 'Raw Clownfish', + image = 'fish_raw.png', on_use = minetest.item_eat(1), groups = { meat=1, eatable=1 }, stack_max = 25 }) -minetest.register_alias("clownfish_raw", "animalmaterials:fish_clownfish") +minetest.register_alias('clownfish_raw', 'animalmaterials:fish_clownfish') diff --git a/mods/antum/overrides/items/cooking.lua b/mods/antum/overrides/items/cooking.lua index c97c6999..ed07a5cc 100644 --- a/mods/antum/overrides/items/cooking.lua +++ b/mods/antum/overrides/items/cooking.lua @@ -25,22 +25,22 @@ --]] -minetest.register_craftitem(":cooking:fish_bluewhite_cooked", { - description = "Cooked Bluewhite Fish", - image = "food/fish_cooked", +minetest.register_craftitem(':cooking:fish_bluewhite_cooked', { + description = 'Cooked Bluewhite Fish', + image = 'fish_cooked.png', on_use = core.item_eat(6), groups = { meat=1 , eatable=1}, stack_max = 25 }) -minetest.register_alias("fish_bluewhite_cooked", "cooking:fish_bluewhite_cooked") +minetest.register_alias('fish_bluewhite_cooked', 'cooking:fish_bluewhite_cooked') -minetest.register_craftitem(":cooking:fish_clownfish_cooked", { - description = "Cooked Clownfish", - image = "food/fish_cooked", +minetest.register_craftitem(':cooking:fish_clownfish_cooked', { + description = 'Cooked Clownfish', + image = 'fish_cooked.png', on_use = core.item_eat(6), groups = { meat=1 , eatable=1}, stack_max = 25 }) -minetest.register_alias("clownfish_cooked", "cooking:fish_clownfish_cooked") +minetest.register_alias('clownfish_cooked', 'cooking:fish_clownfish_cooked') diff --git a/mods/antum/overrides/items/kpgmobs.lua b/mods/antum/overrides/items/kpgmobs.lua index 7115971f..8db2013f 100644 --- a/mods/antum/overrides/items/kpgmobs.lua +++ b/mods/antum/overrides/items/kpgmobs.lua @@ -30,7 +30,7 @@ local tdir = 'animal_inventory' minetest.register_craftitem(':kpgmobs:horseh1', { description = 'Brown Horse', - inventory_image = tdir .. '/horse_brown', + inventory_image = 'horse_brown.png', on_place = function(itemstack, placer, pointed_thing) if pointed_thing.above then @@ -45,7 +45,7 @@ minetest.register_alias('brown_horse', 'kpgmobs:horseh1') minetest.register_craftitem(':kpgmobs:horsepegh1', { description = 'White Horse', - inventory_image = tdir .. '/horse_white', + inventory_image = 'horse_white.png', on_place = function(itemstack, placer, pointed_thing) if pointed_thing.above then @@ -60,7 +60,7 @@ minetest.register_alias('white_horse', 'kpgmobs:horsepegh1') minetest.register_craftitem(':kpgmobs:horsearah1', { description = 'Black Horse', - inventory_image = tdir .. '/horse_black', + inventory_image = 'horse_black.png', on_place = function(itemstack, placer, pointed_thing) if pointed_thing.above then diff --git a/mods/antum/overrides/textures/description.txt b/mods/antum/overrides/textures/description.txt new file mode 100644 index 00000000..7f7577ad --- /dev/null +++ b/mods/antum/overrides/textures/description.txt @@ -0,0 +1 @@ +The texture pack for the Antum Minetest/Freeminer game. diff --git a/mods/antum/overrides/textures/fish_cooked.png b/mods/antum/overrides/textures/fish_cooked.png new file mode 100644 index 0000000000000000000000000000000000000000..545ccae9dd8e65ef3897e21bf276afa7ab8450f8 GIT binary patch literal 633 zcmV-<0*3vGP)d29lErs-e2a|6czAV>l5moh$bo*!f`E3J zoqL&`%7uc@g@eqCh=ib`&5n!Dl8=d{rirJh)0UIcmz2|+m)Dw?oT{g!sHWPTn%AG3 z)}fr+q@miUqTZ;a+^MGBtEb_utKhG!-?Odex3a~-yy&>J<+-!yxwPuMxa+*R=)Jh? zy}Inby6wWf?8Cn8!@cdqzw5=n@5I0E#lY^yz|_vi?#ROL$;0o;!|uz(@65&U&Boo+ z%ka*|@y^HI)XVVC$lle<@X^Te(aG`B%kk68^3%-n)XehM&hppJ^4QSx+0XLX((~ET z^x4q#+R*gd((~Qb^xoF>-_`Zs*Yx1l_2Ad_;n(fs-Sy(z_Tt+0-uC9+_UPjF>Eie8=lAaEYZuxA00001bW%=J06^y0W&i*H32;bRa{vGh*8l(w z*8xH(n|J^K00(qQO+^Rb2p$3z2^Y&ykpKVyuSrBfR2b7^V1NN}DFp^(AS`X4myg8f z7jnyujSq$MIk~(u6C*=>J)nGcHqVUM;1C~c6GJecgGDbpHY(6rM@~!-EWpf{8yn{D zYM>$^zzgEDG9|@C_`6uBNs4fbf&>^96NCJmtTbh1d29 zlHhG-e2a|ZaBAXmY;}*4aFUhib#LQ&aO`??cA1@fnVsl;b>)C|>V$rTprYxAe(s5a z?2CknrKaqSg^8!A@sEk`l8T(Fr=+N+?U{}Eot5^Ul=GjJ_o0{iqMG}noA;!e{G^=x zq@Db#q5Q0({;Z_@uA}{~r24O<{I8|>vZnm9r^Ug%{j{n5wyOQOtNgmG{kp9EysrJc zum8NR{lBsOz_R|pvHZcZ{lT;T!L$Ctv;D)g)XvBL#kT&%xBkky{mZ=F)64$Ly8X<( z-qg$9)yw|Pz5mU<{?5Do&cFZ9zW>m@{n5hy)WiSP!vEF7|JKI;*T(+X#{SvI|Jlm$ z-O>Kq%>UZU{@cv{+s*#m%l_QW{@l*}-Ov8r&i>uc{oc?0-q8Kv(f#4o{NmO9Z00001bW%=J06^y0W&i*H32;bRa{vGh*8l(w*8xH(n|J^K00(qQO+^Rb z2p$3w3@G3-*#H0luSrBfR2b7^V1NNdRV@Z&AgdlwRgJ`#kO{3!N{fN>1%)C@(&NLu z+@XA4u85-Kun=!sV*@aspT)i`IWEvyM~aUFEWj*YkreCarY|qR$p+%HGi4@5`@2{x z33IdZfCLz|(}R7TEY-wBC8a@p5s|_KPe&U~ITffCDXBTG4pw>!a5tnBN7W` zyW=uYoU_0qvY3H^TNs2H8D`Cq01C2~c>21sKj08!Qd1OOxOEFq$k5ZpF@)oKaza94 zLV^Gv My85}Sb4q9e06z#X{Qv*} literal 0 HcmV?d00001 diff --git a/mods/antum/overrides/textures/green.png b/mods/antum/overrides/textures/green.png new file mode 100644 index 0000000000000000000000000000000000000000..b057abd1f51f251210dcbda3f7c1ad314dbbfb4f GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?bO)b$~|6tLUM=SO|-E{T+ z`HhWrQ9voik|4ie28U-i(tsS!0*}aI1_o|n5N2eUHAey{$X?><>&pIsLySRNusKNI z8YpDz>Eal|aXnc;L?neJ$&rnb%^<-gX#;~MyMh=)r(x658IDdpJUlbH3?+LK)+z|H m&L|VxARzWuL7juakm2NKrd0|8|K|Y>V(@hJb6Mw<&;$T=$TkfC literal 0 HcmV?d00001 diff --git a/mods/antum/overrides/textures/green_detail.png b/mods/antum/overrides/textures/green_detail.png new file mode 100644 index 0000000000000000000000000000000000000000..6cd707d31069d48fc344bdc1d4016d196126c0af GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHV5AX?bO)b$~|6tLUM=SO|-E{T+ z`HhWrQ9voik|4ie28U-i(tsS!0*}aI1_o|n5N2eUHAey{$X?><>&pIsLySSo;>Pbb zF`$sTr;B3<$Mxid1I!T(HyFief`Wpg zqN0+LlCrY0ii(P=s;Zirn!38WrlzKrmX@}*wvLX@zS-|T0;3=**-JcqUD+RSGBHZ>&iu8+3nEak7ak;nuHXoBBkITiY zPOG_3Z(>^d=IQ_aK|W6$g@u1#Nb@tA+!s`T_FQfx)BkJjjKWiVvt0F9US?4~AYu{a zV-@FTk>Y2O6kw4SV2~1El@?%@5@3@Mb_FpGC2=klaSlZZP6Y`bMF}n?2_TzS zS%OPNl3hiTOI?yxRgzmxl3QJhM@d>xO`20xnpa(#OGBDRONK*BhFepXTT7N(8;In1 zwB>np<@vM~c=hFZ^%Qt@6!{Dk`1KWe3>5i{6nP94`Sq3fOn?j}UPC2*BPBi~C4Lhn zJ_BVTBV|5gWdRdqJ`-hrQ)NLD6@F6?5-?NYH&X>70dpWy6R}Viv{V;OkH}&M25w;xW@MN(M*=9wUgGKN%Km_piBUp5 zIx6NaP-wcRi(`ny<>Ukft|LF0I8!D4lr`)fXT+YdF;G!D(R82jL@93>|JURvz2CQo zO)BVO;<|CNeTGN-#t2U>t9F(qla|+&t0b#8cb$G^%@%#g$27%g@&^9iD^Hs^StNdQ z+`4gUwbwzGJx+^nrno-cBAUQ-X4XP2o+ufsR|br7jO!y5R1dKW3talZ;aF(Bz0sRz gR=LmJf=UsFi?>A=8tk5R0_a2rPgg&ebxsLQ0L&|Op#T5? literal 0 HcmV?d00001 diff --git a/mods/antum/overrides/textures/horse_white.png b/mods/antum/overrides/textures/horse_white.png new file mode 100644 index 0000000000000000000000000000000000000000..8bf07a5377da1ab9e63357d3f9faf2ee86068ee7 GIT binary patch literal 356 zcmV-q0h|7bP)UY$;rve%F4^j%goHo&CSiu&d$%z&(P4&(b3V;($dq@)6~?|)z#J3*4Ee8 z*Vx$D+1c6J+S=RO+uYpT-QC^Z-rnEe-{9cj;o;%q-<^R7@Oyofm6Z_C+PBN2@Qh&|PZCL{U)`tNT zic|?YHJOE_ob+BEBc`>1NHU`g3*NJom!VEiar5svh1yP9TI0004#Nkl`}R)5d*N#Rc~2Ba3cWZq7Y zT}m+ja#Y#|tPb}{$7Poz&%@7rqrASx{;z=9SL1RbAUSeh^ra3g%R<-ouy1tX^!C$r z?;*a4NKQ@&fb~Csb{$ZfYOz49GtTwfcR6TicD}4o&SyDD{b=1lDMch;>KEAG+QoG* z;sBeAAK6N$sA`**4N#hTXc2}ErXp0m5=UW3{92r=cWyB_Hm+I%qK3xQZH%!YW>fVF zWb-*9sqDI;8862^chX06sJ*oZbm-8dn4`o6+p1NA(hH8xs9(JmdZRBdV0F8 q0Ngn4g5=J0004)Nkl1v7%I&pK zOvR`~CI^QOn6PO=Ad*-U|AL|+uKofCRtFa+H6aXyFoJ`NAzGthAw&!a#2X{EgA{FP zZ^LbG?>%ilHzJ|74L<94-X~wq_bR%evN$K9l^`r1a%u9O`g^83g?~?`q#|(+p1q{7 zoMz|ov~(>9Qb~#T_TcATE~XvMzkWlpZutDIiB#hhOk16+R&% zjQ-eCt=_g2gu~Zqtjx0S))>z^s$Ex32)5rYNv>Gp#>R%~rsfJD$T{M96|&A($_GVm vK6uns_!ybhWqCjULO3nk?_Qlg{6G8wOo*w%qNV`N00000NkvXXu0mjf)<)bM literal 0 HcmV?d00001 diff --git a/mods/antum/overrides/textures/screenshot.png b/mods/antum/overrides/textures/screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..d52f240ffc991270e0254ff1b0fbc3b297efd1bb GIT binary patch literal 1616 zcmV-W2Cw;vP)G_HN000H=NklYit}>6~})wJNvR7 z*IhfY(^SMwAE^bcXeDSsR>P}_N(!PP1yUTMDo_;(q4EJ-HBqGkYLEgFq9Q7wNTd~f zYxuxJG`I;xp_P&*eUP{~2D^3=+w1kt&d$#B-kE#(U{M7S&hDm273!7lhZ&9j_c!;P z^FPM`H1EJ=@(x{AD<6ON=TDQ(TJ&ZOzWlizZ6DfP_(wlR0^8qrJwt1Hu&Ng@?K#xxKePmOsm_LV>rk#u z>Q-q?ywW<@1K;}rfk=61_*MoxEeziQDbZdCZh#&;+!WNMIs>H=I`Yv{q9TEc1ohJ| zH6O~6$M;baDNpX$%3v{r5&7sKL}Q|ZfTZrBT@TWf;;ygKjLtyM)o2-$Mll#BDvpp| zxcrY_xJ5TV^Oqr*4-oyH?9ER_LkRTGYA5fp3A$apVqPzrkpJsFhO1oML!BS|o%Q%S7{Kr0t;G z2D%Y)Ii1^Xz6l*PNJWYkF|DnBuC=m2d3N zlNb2u&TVuj0R$mBj3JEBL4-R!OI)$ZWGo8TuEV-+kiI9r&q_K4B}k(PousHJLWzX> zLYc^Mu`G+i>eXZh2DoYWgZ~|D@BZaOc6?w6?KL2XAc)Yhq;X-M#Bu0YJ3!wz_pVrl z|J1p6_zqMYy;XraO=(oB2+yOVRN{uu-`||U>hTxB0Bz;aGqcNK6q49+@a7g-v-jIg z*@Hj*#;vQYm4rp~>LHVw3u122F`fRKdM8l}<4ng;S`CoxO|G8QU|mXkhB3F{3u zd|{-GCTP}$5ZN9?y+QxZk+u(=J@!kK*-hlS-2AEguk6MacW%Mg zT~vSg6iY{rGXCgeZ9yG>{4+$N!1&V#n0ny|&+p&UK3KeEh^`Kcu;Q@h=mfpL{ylag zd1c@JmY`l9-9*=_0*y)qcl>YIZ@fw^hqUWiq{el-~bAoYZ9Q%t`FoDV$RmS`4LWqJWT2 zyy*q<#ZC&!4b+4{iZb^3%3jrBzfXE zOOz`jUq6jVBw3j-eDUv1L!J26CZx3WEA^_)M|XX# zEtt1M=U?n1zjh<8y+plMZyW0E)X|sjv(NuZ|NFak_Lb_qJ1G9&fc*nYf`C2*QdYVE O0000