Noch mehr mods
This commit is contained in:
parent
a063db5d3b
commit
cf017b2ca1
527 changed files with 21113 additions and 181 deletions
|
@ -59,6 +59,42 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craftitem("caverealms:glow_obsidian_shard", {
|
||||
description = "Glow Obsidian Shard",
|
||||
inventory_image = "caverealms_glow_obsidian_shard.png",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "caverealms:glow_obsidian_shard 9",
|
||||
type = "shapeless",
|
||||
recipe = {"caverealms:glow_obsidian"},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "caverealms:glow_obsidian_shard 9",
|
||||
type = "shapeless",
|
||||
recipe = {"caverealms:glow_obsidian_2"},
|
||||
})
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
output = "caverealms:glow_obsidian",
|
||||
recipe = {
|
||||
{"caverealms:glow_obsidian_shard", "caverealms:glow_obsidian_shard", "caverealms:glow_obsidian_shard"},
|
||||
{"caverealms:glow_obsidian_shard", "caverealms:glow_obsidian_shard", "caverealms:glow_obsidian_shard"},
|
||||
{"caverealms:glow_obsidian_shard", "caverealms:glow_obsidian_shard", "caverealms:glow_obsidian_shard"},
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "caverealms:glow_obsidian_glass",
|
||||
recipe = "caverealms:glow_obsidian_shard",
|
||||
})
|
||||
|
||||
|
||||
|
||||
-- Requires ethereal:fish_raw
|
||||
if minetest.get_modpath("ethereal") then
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue