From a9a077ead81a308606f80a85168a7b3dfac30034 Mon Sep 17 00:00:00 2001 From: thunderdog1138 Date: Wed, 15 Jul 2020 17:15:13 +0000 Subject: [PATCH] Add 'mods/ethereal/schematics/bush.lua' --- mods/ethereal/schematics/bush.lua | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 mods/ethereal/schematics/bush.lua diff --git a/mods/ethereal/schematics/bush.lua b/mods/ethereal/schematics/bush.lua new file mode 100644 index 00000000..9e282cb8 --- /dev/null +++ b/mods/ethereal/schematics/bush.lua @@ -0,0 +1,25 @@ +local _ = {name = "air", param = 0} +local L = {name = "ethereal:bush_leaves", param = 255} +local S = {name = "ethereal:bush_stem", param = 255} + +ethereal.bush = { + + size = {x = 3, y = 2, z = 3}, + + yslice_prob = { + {ypos = 3, prob = 127}, + }, + + data = { + + L,L,L, + _,L,_, + + L,S,L, + L,L,L, + + L,L,L, + _,L,_, + + } +} \ No newline at end of file