Ajout du mod nalc_mobs.
This commit is contained in:
parent
5f3f928568
commit
3755ba2c80
1
nalc_mobs/depends.txt
Normal file
1
nalc_mobs/depends.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
mobs
|
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")
|
BIN
nalc_mobs/textures/default_scorched_stuff.png
Executable file
BIN
nalc_mobs/textures/default_scorched_stuff.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 212 B |
Loading…
Reference in New Issue
Block a user