summaryrefslogtreecommitdiff
path: root/schematics
diff options
context:
space:
mode:
Diffstat (limited to 'schematics')
-rw-r--r--schematics/waterlily.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/schematics/waterlily.lua b/schematics/waterlily.lua
new file mode 100644
index 0000000..4bd8b3a
--- /dev/null
+++ b/schematics/waterlily.lua
@@ -0,0 +1,17 @@
+
+-- Waterlily (built column by column, bottom to top)
+
+local a = "default:sand"
+local b = "default:water_source"
+local c = "flowers:waterlily"
+
+ethereal.waterlily = {
+ size = {x = 1, y = 3, z = 1},
+ data = {
+
+ {name=a, param1=255},
+ {name=b, param1=255},
+ {name=c, param1=255},
+
+ },
+}