Move glistering melon to mcl_potions
This commit is contained in:
parent
5aba29d076
commit
95bef458bb
5 changed files with 21 additions and 17 deletions
3
mods/mcl_potions/depends.txt
Normal file
3
mods/mcl_potions/depends.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
default
|
||||
farming
|
||||
mcl_mobitems
|
|
@ -27,6 +27,22 @@ minetest.register_craft( {
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_potions:speckled_melon", {
|
||||
description = "Glistering Melon",
|
||||
stack_max = 64,
|
||||
groups = { brewitem = 1 },
|
||||
inventory_image = "mcl_potions_melon_speckled.png",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_potions:speckled_melon",
|
||||
recipe = {
|
||||
{'default:gold_nugget', 'default:gold_nugget', 'default:gold_nugget'},
|
||||
{'default:gold_nugget', 'farming:melon_item', 'default:gold_nugget'},
|
||||
{'default:gold_nugget', 'default:gold_nugget', 'default:gold_nugget'},
|
||||
}
|
||||
})
|
||||
|
||||
-- TODO: Get texture
|
||||
--[[
|
||||
minetest.register_craftitem("mcl_potions:dragon_breath", {
|
||||
|
|
BIN
mods/mcl_potions/textures/mcl_potions_melon_speckled.png
Normal file
BIN
mods/mcl_potions/textures/mcl_potions_melon_speckled.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 511 B |
Loading…
Add table
Add a link
Reference in a new issue