mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-07-14 18:31:57 -04:00
Add Titanium, Phosphorus, and Silicon
Also add Iron and Mese. Phosphorus can be used for fuel.
This commit is contained in:
parent
ec3fbc4606
commit
8d5c08ea8b
12 changed files with 206 additions and 0 deletions
|
@ -143,8 +143,20 @@ minetest.register_craft({
|
|||
recipe = "moontest:dust",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "moontest:titanium_ingot",
|
||||
recipe = "moontest:titanium_lump",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "default:mese_crystal",
|
||||
burntime = 50,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "moontest:phosphorus_lump",
|
||||
burntime = 50,
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue