2018-09-21 22:28:58 +02:00
|
|
|
-- scorched stuff
|
|
|
|
minetest.register_craftitem(
|
|
|
|
":mobs:scorched_stuff",
|
|
|
|
{
|
|
|
|
description = "Scorched Stuff",
|
|
|
|
inventory_image = "default_scorched_stuff.png",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "mobs:scorched_stuff",
|
|
|
|
recipe = "mobs:rat_cooked",
|
|
|
|
cooktime = 10
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "dye:black",
|
|
|
|
recipe = {"mobs:scorched_stuff"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "mobs:scorched_stuff",
|
|
|
|
burntime = 20,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_alias("default:scorched_stuff", "mobs:scorched_stuff")
|
2018-09-29 17:17:10 +02:00
|
|
|
|
|
|
|
minetest.log("action", "[nalc_mobs] loaded.")
|