2023-01-21 16:48:47 +01:00
|
|
|
local S = minetest.get_translator("people")
|
|
|
|
|
2021-03-02 08:08:35 +01:00
|
|
|
minetest.register_node("people:firstaidnode", {
|
2023-01-21 16:48:47 +01:00
|
|
|
description = S"First Aid Node",
|
2021-03-02 08:08:35 +01:00
|
|
|
tiles = {
|
|
|
|
"people_firstaidnode_top.png",
|
|
|
|
"people_firstaidnode_bottom.png",
|
|
|
|
"people_firstaidnode_right.png",
|
|
|
|
"people_firstaidnode_left.png",
|
|
|
|
"people_firstaidnode_back.png",
|
|
|
|
"people_firstaidnode_front.png"
|
|
|
|
},
|
|
|
|
groups = {choppy = 2}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "people:firstaidnode",
|
|
|
|
burntime = 4,
|
|
|
|
})
|