From 2e0fa714ed476906b659aaa3e2cc059faeaac491 Mon Sep 17 00:00:00 2001 From: PrairieAstronomer Date: Sat, 25 Jun 2022 15:42:52 -0600 Subject: [PATCH 1/4] Nautilus Shell Item. Shell Texture by RandomLegoBrick. --- mods/ITEMS/mcl_fishing/init.lua | 1 + mods/ITEMS/mcl_mobitems/init.lua | 9 +++++++++ mods/ITEMS/mcl_mobitems/locale/template.txt | 4 ++++ .../textures/mcl_mobitems_nautilus_shell.png | Bin 0 -> 495 bytes 4 files changed, 14 insertions(+) create mode 100644 mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_nautilus_shell.png diff --git a/mods/ITEMS/mcl_fishing/init.lua b/mods/ITEMS/mcl_fishing/init.lua index efc66e00e..20f4e6f26 100644 --- a/mods/ITEMS/mcl_fishing/init.lua +++ b/mods/ITEMS/mcl_fishing/init.lua @@ -111,6 +111,7 @@ local fish = function(itemstack, player, pointed_thing) { itemstring = "mcl_mobs:nametag", }, { itemstring = "mcl_mobitems:saddle", }, { itemstring = "mcl_flowers:waterlily", }, + { itemstring = "mcl_mobitems:nautilus_shell", }, }, stacks_min = 1, stacks_max = 1, diff --git a/mods/ITEMS/mcl_mobitems/init.lua b/mods/ITEMS/mcl_mobitems/init.lua index 6b3c9bec4..38d4a4e63 100644 --- a/mods/ITEMS/mcl_mobitems/init.lua +++ b/mods/ITEMS/mcl_mobitems/init.lua @@ -327,6 +327,15 @@ minetest.register_tool("mcl_mobitems:carrot_on_a_stick", { _mcl_toollike_wield = true, }) +minetest.register_craftitem("mcl_mobitems:nautilus_shell", { + description = S("Nautilus Shell"), + _tt_help = S("Used to craft a conduit"), + _doc_items_longdesc = S("The Nautilus Shell is used to craft a conduit. They can be obtained by fishing or killing a drowned that is wielding a shell."), + inventory_image = "mcl_mobitems_nautilus_shell.png", + groups = { craftitem=1 }, + stack_max = 64, +}) + local horse_armor_use = S("Place it on a horse to put on the horse armor. Donkeys and mules can't wear horse armor.") minetest.register_craftitem("mcl_mobitems:iron_horse_armor", { diff --git a/mods/ITEMS/mcl_mobitems/locale/template.txt b/mods/ITEMS/mcl_mobitems/locale/template.txt index a3066dd1b..3f9cf1054 100644 --- a/mods/ITEMS/mcl_mobitems/locale/template.txt +++ b/mods/ITEMS/mcl_mobitems/locale/template.txt @@ -93,6 +93,10 @@ A carrot on a stick can be used on saddled pigs to ride them.= Place it on a saddled pig to mount it. You can now ride the pig like a horse. Pigs will also walk towards you when you just wield the carrot on a stick.= +Nautilus Shell= +Used to craft a conduit= +The Nautilus Shell is used to craft a conduit. They can be obtained by fishing or killing a drowned that is wielding a shell.= + Iron Horse Armor= Iron horse armor can be worn by horses to increase their protection from harm a bit.= Golden Horse Armor= diff --git a/mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_nautilus_shell.png b/mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_nautilus_shell.png new file mode 100644 index 0000000000000000000000000000000000000000..34c4db041f43679b526b8402e69baa69bb999f78 GIT binary patch literal 495 zcmVPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0fb3JK~y+TW1ti; zLTOy!Ka_?64E5LyfNScl&tgzkkOs5wK6uJd+&B%)1_HP~bOZixnBU6q{=;Vm9?_Ky zp)vR2h9HYU0fy!OS1ncq*$&1)gZ}T^rV3^Q4MAapFjO4_3y6S$uW!N`_HJDZW;=UV zgJ}>jFx$=G~1SD27fcPMA_u*5ZVT)110~s(u zX|QIHMi2%8kjBKq4u&sZzk~TO&5xeG0@E-63ka}(fMLKOEW`q|@is$2Y6!!G*=xX( zg=wJ-GLoWTHV8mt10@i_0SI(9IPgGx5Z=30^*>NEoR5Uz0PX@<7=XM03~{jFr Date: Sat, 25 Jun 2022 16:41:32 -0600 Subject: [PATCH 2/4] Heart of the Sea Item. Item Texture by RandomLegoBrick. --- mods/ITEMS/mcl_mobitems/init.lua | 9 +++++++++ mods/ITEMS/mcl_mobitems/locale/template.txt | 2 ++ .../textures/mcl_mobitems_heart_of_the_sea.png | Bin 0 -> 440 bytes 3 files changed, 11 insertions(+) create mode 100644 mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_heart_of_the_sea.png diff --git a/mods/ITEMS/mcl_mobitems/init.lua b/mods/ITEMS/mcl_mobitems/init.lua index 38d4a4e63..2f3bd3c01 100644 --- a/mods/ITEMS/mcl_mobitems/init.lua +++ b/mods/ITEMS/mcl_mobitems/init.lua @@ -336,6 +336,15 @@ minetest.register_craftitem("mcl_mobitems:nautilus_shell", { stack_max = 64, }) +minetest.register_craftitem("mcl_mobitems:heart_of_the_sea", { + description = S("Heart of the Sea"), + _tt_help = S("Used to craft a conduit"), + _doc_items_longdesc = S("The Heart of the Sea is used to craft a conduit. They can be obtained by finding them in a buried treasure chest."), + inventory_image = "mcl_mobitems_heart_of_the_sea.png", + groups = { craftitem=1 }, + stack_max = 64, +}) + local horse_armor_use = S("Place it on a horse to put on the horse armor. Donkeys and mules can't wear horse armor.") minetest.register_craftitem("mcl_mobitems:iron_horse_armor", { diff --git a/mods/ITEMS/mcl_mobitems/locale/template.txt b/mods/ITEMS/mcl_mobitems/locale/template.txt index 3f9cf1054..690ae3fac 100644 --- a/mods/ITEMS/mcl_mobitems/locale/template.txt +++ b/mods/ITEMS/mcl_mobitems/locale/template.txt @@ -96,6 +96,8 @@ Place it on a saddled pig to mount it. You can now ride the pig like a horse. Pi Nautilus Shell= Used to craft a conduit= The Nautilus Shell is used to craft a conduit. They can be obtained by fishing or killing a drowned that is wielding a shell.= +Heart of the Sea= +The Heart of the Sea is used to craft a conduit. They can be obtained by finding them in a buried treasure chest.= Iron Horse Armor= Iron horse armor can be worn by horses to increase their protection from harm a bit.= diff --git a/mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_heart_of_the_sea.png b/mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_heart_of_the_sea.png new file mode 100644 index 0000000000000000000000000000000000000000..4f6affbf123f6d2eeb69bdbd9fc6bea0183af14f GIT binary patch literal 440 zcmV;p0Z0CcP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0ZmCnK~y+TW1ti; zLTL;jYT^DL$^?VgCw5|0iy;Wpm|0l}=HI#VnBn=0Hw;$}9{}^w4MO37H0#(pFnD>` zFqjx=G3-Bdn&I$~^H5m`02zdA2oscsYqqs91Z&0xKx&Y^2R8r)9PLcOG%nj=UV#Cy zQ;=;J7ZYaq_U#A5wjD>n3P1p+Y1d>E21C<^@n#z`Y_bVbOE`boGCbZ7_hY@%QKV@Tf!y z5DHvawjo#EfFAJ`2*_8+n)5CCZe0c6b}fYSv`Y#d-d41hF(0J3Hfz%T#? iU Date: Sat, 25 Jun 2022 16:47:48 -0600 Subject: [PATCH 3/4] Heart of the Sea Textures by RandomLegoBrick --- .../textures/mcl_mobitems_heart_of_the_sea.png | Bin 440 -> 399 bytes .../mcl_mobitems_heart_of_the_sea_split.png | Bin 0 -> 440 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_heart_of_the_sea_split.png diff --git a/mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_heart_of_the_sea.png b/mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_heart_of_the_sea.png index 4f6affbf123f6d2eeb69bdbd9fc6bea0183af14f..7e8983d3389082b4b80f800ff8a0360a39727d69 100644 GIT binary patch delta 218 zcmV<0044vp1CIlcRskfDS8IPZ+pz(#Q;=;J7ZYaq_U#A5wjD>n3b27+Uq3V4I(HWA z6%-eMY(IMJ0#3~!jbC0r2Wy4_xB-$9B4B5OLL40+YkY9yCIhFK3{(a!43PZ{(gf3Z zMQ53s?gTz-)wR{QdboJSs6_0ohKO$Tq?>|NZ$L zOv3<1LPEC<24EWh{rZ8DkWdT&0azkoV&eewVF08N1n?$hWPqI7Kmc7Ml>h?+0O?<# UT6+h!;{X5v07*qoM6N<$f`xHeA^-pY delta 259 zcmV+e0sQ`t1Goc_Rsl_sS8IPR+hJaT0kBh$Z5J04X888)2g9}fEHP*}jdASodNb~Y@;LHO0-EQVJ{ zTNorI`N3-3a?gM@bBf7;`5=Jeg6Zx3U>f99aWP&7hX2nP82&LZh}m~-0E@#k{`vkD zOoIU2KOmD~(R2QE^?#6UFo3S{_viQUs6+`65PPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0ZmCnK~y+TW1ti; zLTL;jYT^DL$^?VgCw5|0iy;Wpm|0l}=HI#VnBn=0Hw;$}9{}^w4MO37H0#(pFnD>` zFqjx=G3-Bdn&I$~^H5m`02zdA2oscsYqqs91Z&0xKx&Y^2R8r)9PLcOG%nj=UV#Cy zQ;=;J7ZYaq_U#A5wjD>n3P1p+Y1d>E21C<^@n#z`Y_bVbOE`boGCbZ7_hY@%QKV@Tf!y z5DHvawjo#EfFAJ`2*_8+n)5CCZe0c6b}fYSv`Y#d-d41hF(0J3Hfz%T#? iU Date: Sat, 25 Jun 2022 16:54:19 -0600 Subject: [PATCH 4/4] Nautilus Shell Texture, by RandomLegoBrick --- .../textures/mcl_mobitems_nautilus_shell.png | Bin 495 -> 536 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_nautilus_shell.png b/mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_nautilus_shell.png index 34c4db041f43679b526b8402e69baa69bb999f78..62e2ffc1006e9c508c04d81482bc3c2500ff9264 100644 GIT binary patch delta 460 zcmV;-0W<#Z1DFJmR)4KYL_t(IPh+4IFhXgpz{du$4;EVP>&&itSQ*tj6qpJ z8qB`?;3>n}ou|NTWP_NXG#G$1m!$_Xq=vgN6z04IYXE5k0U-fCuows+Tfz*b!GZ0KV&#}^&W$rVKjrM_eqAS^WHK@i10CJ=xlOsNN`Fg5n&HdO{|%3yJZofu z>IZ|bZ^9XxYuAF=wax2+BtMvKV78l~rimZ!C77!~0PGi#?I33h3h;sjyJoHjdjkaS zK77is@5FVi;Q7sCokOx^I-sMG$Lzmsrv}V zpI;?_HM21MVi4kGWsni$hN?yYumKn%0gRme!!^NA=Q2Y-9C>$6-PO8WNT{9H`0|NkSB&;Dpb#{aR0000?>>0S zP~12T%mxCuK6C^AZ>#4|5q(m1lbP8K!g78+olR; z0}Vl8gD_Mb0}F_Nfv<1E8TM{n3uZfeSA%H~FfiNA;N*21?tdDPcVGZ!!2kLE6%2v` zybPaTB`^deRx^P3AaM8LQ=nmsQNjZmFhOasW{^e@1_6-9#KI1SFJHfd`7q6op1uOp zFaQe(uz!GIz#uHd0<`fqLqTc?!-Uyuz>ZQF zg@L#4{-9_U;Nu2*jhBIwgB_{@0pNj%48DHnfwCCDHVX>!GJOC36X*gCs3-y;8^8#Q zf#1JAgJ}=|Is5(l&kVwX{0!3