From 5a9ed6f2834437d0f64b2893d949f10de19ef52b Mon Sep 17 00:00:00 2001 From: minefaco <63024226+minefaco@users.noreply.github.com> Date: Wed, 18 Nov 2020 19:53:39 -0500 Subject: [PATCH] Add files via upload --- ethereal.lua | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ethereal.lua diff --git a/ethereal.lua b/ethereal.lua new file mode 100644 index 0000000..8cc0818 --- /dev/null +++ b/ethereal.lua @@ -0,0 +1,23 @@ +--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", +} + +stripped_tree.register_axes(mod_name,axe_types)