Make it possible to craft planks from stripped trunks

This commit is contained in:
2025-12-09 07:33:43 +01:00
parent 87b6a5b070
commit 9fa0f17f63
4 changed files with 54 additions and 42 deletions

View File

@@ -1,15 +1,15 @@
-- Register stripped trees
local mod_name = "ethereal"
stripped_tree.register_strippable_trunk("ethereal:banana_trunk")
stripped_tree.register_strippable_trunk("ethereal:birch_trunk")
stripped_tree.register_strippable_trunk("ethereal:scorched_tree")
stripped_tree.register_strippable_trunk("ethereal:yellow_trunk")
stripped_tree.register_strippable_trunk("ethereal:willow_trunk")
stripped_tree.register_strippable_trunk("ethereal:redwood_trunk")
stripped_tree.register_strippable_trunk("ethereal:sakura_trunk")
stripped_tree.register_strippable_trunk("ethereal:frost_tree")
stripped_tree.register_strippable_trunk("ethereal:palm_trunk")
stripped_tree.register_strippable_trunk("ethereal:banana_trunk", "ethereal:banana_wood")
stripped_tree.register_strippable_trunk("ethereal:birch_trunk", "ethereal:birch_wood")
stripped_tree.register_strippable_trunk("ethereal:scorched_tree", "ethereal:scorched_wood")
stripped_tree.register_strippable_trunk("ethereal:yellow_trunk", "ethereal:yellow_wood")
stripped_tree.register_strippable_trunk("ethereal:willow_trunk", "ethereal:willow_wood")
stripped_tree.register_strippable_trunk("ethereal:redwood_trunk", "ethereal:redwood_wood")
stripped_tree.register_strippable_trunk("ethereal:sakura_trunk", "ethereal:sakura_wood")
stripped_tree.register_strippable_trunk("ethereal:frost_tree", "ethereal:frost_wood")
stripped_tree.register_strippable_trunk("ethereal:palm_trunk", "ethereal:palm_wood")
-- Register axes
local axe_types = {"axe_crystal"}