diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-01-21 20:31:28 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-01-21 20:31:28 -0500 |
commit | 1b14c24ea17dabefc44627d49239378dc20c930b (patch) | |
tree | 1b35e5a312e56af8b7115386207e9a0230813d30 /crafts.lua | |
parent | 7f5b7065cbf5644b23541f7ad2003b61ba294ad3 (diff) |
weeded out all the old node and texture names from jungletree and conifers
mods, added aliases for backwards compatibility.
All nodes are named
moretrees:something_sapling,
moretrees:something_trunk
moretrees:something_leaves
moretrees:something_planks
Also, added sideways trunks for all trees and crafting recipes for them, plus
added in the missing trunks -> planks recipes.
Diffstat (limited to 'crafts.lua')
-rw-r--r-- | crafts.lua | 88 |
1 files changed, 76 insertions, 12 deletions
@@ -1,32 +1,96 @@ --- --- Conifers crafting definitions --- + +for i in ipairs(simple_trees) do + minetest.register_craft({ + output = "moretrees:"..simple_trees[i].."_trunk_sideways 2", + recipe = { + {"moretrees:"..simple_trees[i].."_trunk", "moretrees:"..simple_trees[i].."_trunk"} + } + }) + + minetest.register_craft({ + output = "moretrees:"..simple_trees[i].."_trunk 2", + recipe = { + {"moretrees:"..simple_trees[i].."_trunk_sideways"}, + {"moretrees:"..simple_trees[i].."_trunk_sideways"} + } + }) + + minetest.register_craft({ + type = "shapeless", + output = "moretrees:"..simple_trees[i].."_planks 4", + recipe = { + "moretrees:"..simple_trees[i].."_trunk" + } + }) + + minetest.register_craft({ + type = "shapeless", + output = "moretrees:"..simple_trees[i].."_planks 4", + recipe = { + "moretrees:"..simple_trees[i].."_trunk_sideways" + } + }) +end + +---- + +minetest.register_craft({ + output = "moretrees:jungletree_trunk_sideways 2", + recipe = { + {"default:jungletree", "default:jungletree"}, + } +}) + +minetest.register_craft({ + output = "default:jungletree 2", + recipe = { + {"moretrees:jungletree_trunk_sideways"}, + {"moretrees:jungletree_trunk_sideways"} + } +}) + +minetest.register_craft({ + output = "moretrees:jungletree_planks 4", + recipe = { + {"default:jungletree"} + } +}) + +minetest.register_craft({ + output = "moretrees:jungletree_planks 4", + recipe = { + {"moretrees:jungletree_trunk_sideways"} + } +}) + +---- + minetest.register_craft({ - output = 'node "conifers:trunk_reversed" 2', + output = "conifers:trunk_reversed 2", recipe = { - {'node "conifers:trunk"', 'node "conifers:trunk"'}, + {"conifers:trunk", "conifers:trunk"}, } }) minetest.register_craft({ - output = 'node "conifers:trunk" 2', + output = "conifers:trunk 2", recipe = { - {'node "conifers:trunk_reversed"'}, - {'node "conifers:trunk_reversed"'} + {"conifers:trunk_reversed"}, + {"conifers:trunk_reversed"} } }) minetest.register_craft({ - output = 'default:wood 4', + output = "default:wood 4", recipe = { - {'conifers:trunk'} + {"conifers:trunk"} } }) minetest.register_craft({ - output = 'default:wood 4', + output = "default:wood 4", recipe = { - {'conifers:trunk_reversed'} + {"conifers:trunk_reversed"} } }) |