Ajout du mod nalc_mobs.

This commit is contained in:
sys4-fr 2018-09-21 22:28:58 +02:00
parent 5f3f928568
commit 3755ba2c80
3 changed files with 29 additions and 0 deletions

1
nalc_mobs/depends.txt Normal file
View File

@ -0,0 +1 @@
mobs

28
nalc_mobs/init.lua Normal file
View 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")

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 B