mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-05 07:13:51 +01:00
Merge pull request 'Nautilus Shell and Heart of the Sea Items' (#2369) from netherquatics_items into master
Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/2369 Reviewed-by: cora <cora@noreply.git.minetest.land>
This commit is contained in:
commit
1262216f9d
@ -111,6 +111,7 @@ local fish = function(itemstack, player, pointed_thing)
|
|||||||
{ itemstring = "mcl_mobs:nametag", },
|
{ itemstring = "mcl_mobs:nametag", },
|
||||||
{ itemstring = "mcl_mobitems:saddle", },
|
{ itemstring = "mcl_mobitems:saddle", },
|
||||||
{ itemstring = "mcl_flowers:waterlily", },
|
{ itemstring = "mcl_flowers:waterlily", },
|
||||||
|
{ itemstring = "mcl_mobitems:nautilus_shell", },
|
||||||
},
|
},
|
||||||
stacks_min = 1,
|
stacks_min = 1,
|
||||||
stacks_max = 1,
|
stacks_max = 1,
|
||||||
|
@ -327,6 +327,24 @@ minetest.register_tool("mcl_mobitems:carrot_on_a_stick", {
|
|||||||
_mcl_toollike_wield = true,
|
_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,
|
||||||
|
})
|
||||||
|
|
||||||
|
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.")
|
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", {
|
minetest.register_craftitem("mcl_mobitems:iron_horse_armor", {
|
||||||
|
@ -93,6 +93,12 @@ 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.=
|
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.=
|
||||||
|
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=
|
||||||
Iron horse armor can be worn by horses to increase their protection from harm a bit.=
|
Iron horse armor can be worn by horses to increase their protection from harm a bit.=
|
||||||
Golden Horse Armor=
|
Golden Horse Armor=
|
||||||
|
Binary file not shown.
After Width: | Height: | Size: 399 B |
Binary file not shown.
After Width: | Height: | Size: 440 B |
BIN
mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_nautilus_shell.png
Normal file
BIN
mods/ITEMS/mcl_mobitems/textures/mcl_mobitems_nautilus_shell.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 536 B |
Loading…
Reference in New Issue
Block a user