stripped_tree/ethereal.lua

25 lines
454 B
Lua
Raw Permalink Normal View History

2020-11-19 01:53:39 +01:00
--Register stripped trees
local mod_name = "ethereal"
local trunk_names = {
"banana_trunk",
"birch_trunk",
"scorched_tree",
"yellow_trunk",
"willow_trunk",
"redwood_trunk",
"sakura_trunk",
"frost_tree",
"palm_trunk",
}
stripped_tree.register_trunk(mod_name,trunk_names)
--Register axes
local axe_types = {
"axe_crystal",
}
2020-12-20 19:34:38 +01:00
if not stripped_tree.ENABLE_CHISEL then
2020-11-19 01:53:39 +01:00
stripped_tree.register_axes(mod_name,axe_types)
2020-12-20 19:26:15 +01:00
end