forked from VoxeLibre/VoxeLibre
Add shulker shell and dragon's breath
This commit is contained in:
parent
97bd4fe734
commit
b85683ecdd
|
@ -222,6 +222,12 @@ minetest.register_craftitem("mcl_mobitems:rabbit_stew", {
|
||||||
groups = { food = 3, eatable = 10 },
|
groups = { food = 3, eatable = 10 },
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craftitem("mcl_mobitems:shulker_shell", {
|
||||||
|
description = "Shulker Shell",
|
||||||
|
inventory_image = "mcl_mobitems_shulker_shell.png",
|
||||||
|
groups = { craftitem = 1 },
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_tool("mcl_mobitems:carrot_on_a_stick", {
|
minetest.register_tool("mcl_mobitems:carrot_on_a_stick", {
|
||||||
description = "Carrot on a Stick",
|
description = "Carrot on a Stick",
|
||||||
wield_image = "mcl_mobitems_carrot_on_a_stick.png",
|
wield_image = "mcl_mobitems_carrot_on_a_stick.png",
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
|
@ -43,12 +43,10 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
-- TODO: Get texture
|
|
||||||
--[[
|
|
||||||
minetest.register_craftitem("mcl_potions:dragon_breath", {
|
minetest.register_craftitem("mcl_potions:dragon_breath", {
|
||||||
description = "Dragon's Breath",
|
description = "Dragon's Breath",
|
||||||
wield_image = "mcl_potions_dragon_breath.png",
|
wield_image = "mcl_potions_dragon_breath.png",
|
||||||
inventory_image = "mcl_potions_dragon_breath.png",
|
inventory_image = "mcl_potions_dragon_breath.png",
|
||||||
|
groups = { brewitem = 1 },
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
})
|
})
|
||||||
]]
|
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
Loading…
Reference in New Issue