Ajout du mod nalc_mobs.
This commit is contained in:
28
nalc_mobs/init.lua
Normal file
28
nalc_mobs/init.lua
Normal file
@ -0,0 +1,28 @@
|
||||
-- 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")
|
Reference in New Issue
Block a user