From caa41b322ce0a19822656b87395da9a31eeb3592 Mon Sep 17 00:00:00 2001 From: tenplus1 Date: Sat, 7 Dec 2024 18:25:33 +0000 Subject: [PATCH] tweak schematics --- schematics/bamboo_tree.lua | 10 +++++----- schematics/banana_tree.lua | 6 +++--- schematics/bigtree.lua | 2 +- schematics/birch_tree.lua | 6 +++--- schematics/frosttrees.lua | 12 ++++++------ schematics/lemon_tree.lua | 6 +++--- schematics/mushroomone.lua | 12 ++++++------ schematics/mushroomtwo.lua | 4 ++-- schematics/olive_tree.lua | 6 +++--- schematics/orange_tree.lua | 4 ++-- schematics/palmtree.lua | 4 ++-- schematics/pinetree.lua | 6 +++--- schematics/redwood_small_tree.lua | 12 ++++++------ schematics/redwood_tree.lua | 32 +++++++++++++++---------------- schematics/sakura.lua | 8 ++++---- schematics/vinetree.lua | 2 +- schematics/yellowtree.lua | 4 ++-- 17 files changed, 68 insertions(+), 68 deletions(-) diff --git a/schematics/bamboo_tree.lua b/schematics/bamboo_tree.lua index b5e7e2d..9c37b31 100644 --- a/schematics/bamboo_tree.lua +++ b/schematics/bamboo_tree.lua @@ -38,11 +38,11 @@ ethereal.bambootree = { _,_,_, _,B,_, - _,b,_, - _,b,_, - _,b,_, - _,b,_, - _,b,_, + _,B,_, + _,B,_, + _,B,_, + _,B,_, + _,B,_, _,b,_, _,b,_, _,b,_, diff --git a/schematics/banana_tree.lua b/schematics/banana_tree.lua index 3104e77..4c85f2d 100644 --- a/schematics/banana_tree.lua +++ b/schematics/banana_tree.lua @@ -46,9 +46,9 @@ ethereal.bananatree = { _,_,_,_,_,_,_, _,_,_,T,_,_,_, - _,_,_,t,_,_,_, - _,_,_,t,_,_,_, - _,_,_,t,_,_,_, + _,_,_,T,_,_,_, + _,_,_,T,_,_,_, + _,_,_,T,_,_,_, _,_,b,t,b,_,_, _,_,B,t,B,_,_, _,L,L,L,L,L,_, diff --git a/schematics/bigtree.lua b/schematics/bigtree.lua index 5483025..9004df8 100644 --- a/schematics/bigtree.lua +++ b/schematics/bigtree.lua @@ -54,7 +54,7 @@ ethereal.bigtree = { _,_,t,T,M,T,t,_,_, _,_,_,T,M,T,_,_,_, - _,_,_,T,T,T,_,_,_, + _,_,_,T,M,T,_,_,_, _,_,_,T,T,T,_,_,_, L,L,L,L,T,L,L,L,L, _,L,L,L,T,L,L,L,_, diff --git a/schematics/birch_tree.lua b/schematics/birch_tree.lua index cfc6161..d019a3f 100644 --- a/schematics/birch_tree.lua +++ b/schematics/birch_tree.lua @@ -33,9 +33,9 @@ ethereal.birchtree = { _,_,L,_,_, _,_,T,_,_, - _,_,t,_,_, - _,_,t,_,_, - L,L,t,L,L, + _,_,T,_,_, + _,_,T,_,_, + L,L,T,L,L, L,L,t,L,L, _,L,t,L,_, _,L,L,L,_, diff --git a/schematics/frosttrees.lua b/schematics/frosttrees.lua index 67b8ffc..4267b72 100644 --- a/schematics/frosttrees.lua +++ b/schematics/frosttrees.lua @@ -9,12 +9,12 @@ ethereal.frosttrees = { size = {x = 8, y = 19, z = 8}, yslice_prob = { - {ypos = 1, prob = 127}, -- trunk - {ypos = 2, prob = 127}, + {ypos = 2, prob = 127}, -- trunk {ypos = 3, prob = 127}, {ypos = 4, prob = 127}, {ypos = 5, prob = 127}, {ypos = 6, prob = 127}, + {ypos = 7, prob = 127}, {ypos = 13, prob = 127}, -- leaves {ypos = 15, prob = 127} }, @@ -82,8 +82,8 @@ ethereal.frosttrees = { _,_,_,_,_,_,_,_, _,_,_,T,T,_,_,_, - _,_,_,t,t,_,_,_, - _,_,_,t,t,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, _,_,_,t,t,_,_,_, _,_,_,t,t,_,_,_, _,_,_,t,t,_,_,_, @@ -102,8 +102,8 @@ ethereal.frosttrees = { _,_,_,l,l,_,_,_, _,_,_,T,T,_,_,_, - _,_,_,t,t,_,_,_, - _,_,_,t,t,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, _,_,_,t,t,_,_,_, _,_,_,t,t,_,_,_, _,_,_,t,t,_,_,_, diff --git a/schematics/lemon_tree.lua b/schematics/lemon_tree.lua index d78f60f..f841b8e 100644 --- a/schematics/lemon_tree.lua +++ b/schematics/lemon_tree.lua @@ -36,9 +36,9 @@ ethereal.lemontree = { _,L,L,L,_, _,_,T,_,_, - _,_,t,_,_, - _,_,t,_,_, - l,e,t,l,l, + _,_,T,_,_, + _,_,T,_,_, + l,e,T,l,l, L,L,t,L,l, l,L,t,L,L, L,L,L,l,L, diff --git a/schematics/mushroomone.lua b/schematics/mushroomone.lua index 49054f8..ba24184 100644 --- a/schematics/mushroomone.lua +++ b/schematics/mushroomone.lua @@ -10,8 +10,8 @@ ethereal.mushroomone = { size = {x = 8, y = 11, z = 8}, yslice_prob = { - {ypos = 1, prob = 127}, - {ypos = 2, prob = 127}, + {ypos = 3, prob = 127}, + {ypos = 4, prob = 127}, {ypos = 7, prob = 127} }, @@ -54,8 +54,8 @@ ethereal.mushroomone = { _,_,_,M,M,_,_,_, _,_,_,T,T,_,_,_, - _,_,_,t,t,_,_,_, - _,_,_,t,t,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, _,_,_,t,t,_,_,_, _,_,_,t,t,_,_,_, _,_,_,t,t,_,_,_, @@ -66,8 +66,8 @@ ethereal.mushroomone = { _,_,M,M,M,M,_,_, _,_,_,T,T,_,_,_, - _,_,_,t,t,_,_,_, - _,_,_,t,t,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, _,_,_,t,t,_,_,_, _,_,_,t,t,_,_,_, _,_,_,t,t,_,_,_, diff --git a/schematics/mushroomtwo.lua b/schematics/mushroomtwo.lua index ae6786c..91f56ab 100644 --- a/schematics/mushroomtwo.lua +++ b/schematics/mushroomtwo.lua @@ -33,8 +33,8 @@ ethereal.mushroomtwo = { _,M,_, _,T,_, - _,t,_, - _,t,_, + _,T,_, + _,T,_, _,t,_, _,t,_, _,t,_, diff --git a/schematics/olive_tree.lua b/schematics/olive_tree.lua index 54e9f52..8b7f890 100644 --- a/schematics/olive_tree.lua +++ b/schematics/olive_tree.lua @@ -10,7 +10,7 @@ ethereal.olivetree = { size = {x = 8, y = 9, z = 7}, yslice_prob = { - {ypos = 1, prob = 127}, + {ypos = 2, prob = 127}, }, data = { @@ -46,8 +46,8 @@ ethereal.olivetree = { _,_,_,_,_,_,_,_, _,_,_,T,T,_,_,_, - _,_,_,t,t,_,_,_, - _,_,_,t,t,_,_,_, + _,_,_,T,T,_,_,_, + _,_,_,T,T,_,_,_, _,_,L,t,t,_,_,_, _,o,L,t,t,t,L,_, _,L,L,t,t,L,o,_, diff --git a/schematics/orange_tree.lua b/schematics/orange_tree.lua index 875008c..45a7660 100644 --- a/schematics/orange_tree.lua +++ b/schematics/orange_tree.lua @@ -27,8 +27,8 @@ ethereal.orangetree = { _,_,L,_,_, _,_,T,_,_, - _,_,t,_,_, - _,_,t,_,_, + _,_,T,_,_, + _,_,T,_,_, L,L,t,L,L, L,T,L,T,L, _,L,L,L,_, diff --git a/schematics/palmtree.lua b/schematics/palmtree.lua index 2eb6633..2e3800a 100644 --- a/schematics/palmtree.lua +++ b/schematics/palmtree.lua @@ -58,8 +58,8 @@ ethereal.palmtree = { _,_,_,_,_,_,_,_,_, _,_,_,_,M,_,_,_,_, - _,_,_,_,T,_,_,_,_, - _,_,_,_,T,_,_,_,_, + _,_,_,_,M,_,_,_,_, + _,_,_,_,M,_,_,_,_, _,_,_,_,T,t,_,_,_, _,_,_,_,_,T,_,_,_, _,_,l,_,_,T,_,_,l, diff --git a/schematics/pinetree.lua b/schematics/pinetree.lua index b0fe551..30c0320 100644 --- a/schematics/pinetree.lua +++ b/schematics/pinetree.lua @@ -43,9 +43,9 @@ ethereal.pinetree = { _,_,_,_,_,_,_, _,_,_,T,_,_,_, - _,_,_,t,_,_,_, - _,_,L,t,L,_,_, - L,L,L,t,L,L,L, + _,_,_,T,_,_,_, + _,_,L,T,L,_,_, + L,L,L,T,L,L,L, _,_,L,t,L,_,_, _,L,L,t,L,L,_, _,_,L,t,L,_,_, diff --git a/schematics/redwood_small_tree.lua b/schematics/redwood_small_tree.lua index 383abac..4a556c4 100644 --- a/schematics/redwood_small_tree.lua +++ b/schematics/redwood_small_tree.lua @@ -86,8 +86,8 @@ ethereal.redwood_small_tree = { _,_,_,T,T,T,_,_,_, _,_,_,T,T,T,_,_,_, - _,_,_,t,t,t,_,_,_, - _,_,_,t,t,t,_,_,_, + _,_,_,T,T,T,_,_,_, + _,_,_,T,T,T,_,_,_, _,_,_,t,t,t,_,_,_, _,_,_,t,t,t,_,_,_, _,_,_,t,t,t,_,_,_, @@ -108,8 +108,8 @@ ethereal.redwood_small_tree = { _,_,_,T,T,T,_,_,_, _,_,_,T,T,T,_,_,_, - _,_,_,t,t,t,_,_,_, - _,_,_,t,t,t,_,_,_, + _,_,_,T,T,T,_,_,_, + _,_,_,T,T,T,_,_,_, _,_,_,t,t,t,_,_,_, _,_,_,t,t,t,_,_,_, _,_,_,t,t,t,_,_,_, @@ -130,8 +130,8 @@ ethereal.redwood_small_tree = { _,_,_,T,T,T,_,_,_, _,_,_,T,T,T,_,_,_, - _,_,_,t,t,t,_,_,_, - _,_,_,t,t,t,_,_,_, + _,_,_,T,T,T,_,_,_, + _,_,_,T,T,T,_,_,_, _,_,_,t,t,t,_,_,_, _,_,_,t,t,t,_,_,_, _,_,_,t,t,t,_,_,_, diff --git a/schematics/redwood_tree.lua b/schematics/redwood_tree.lua index cd6cdbf..742d1c1 100644 --- a/schematics/redwood_tree.lua +++ b/schematics/redwood_tree.lua @@ -157,7 +157,7 @@ ethereal.redwood_tree = { _,_,_,_,_,_,_,_,_,_,_,_,_,_,_, _,_,_,_,_,T,T,T,T,T,_,_,_,_,_, - _,_,_,_,_,_,t,t,_,_,_,_,_,_,_, + _,_,_,_,_,_,T,T,_,_,_,_,_,_,_, _,_,_,_,_,_,_,_,_,_,_,_,_,_,_, _,_,_,_,_,_,_,_,_,_,_,_,_,_,_, _,_,_,_,_,_,_,_,_,_,_,_,_,_,_, @@ -191,9 +191,9 @@ ethereal.redwood_tree = { _,_,_,_,_,_,_,_,_,_,_,_,_,_,_, _,_,_,_,_,T,T,T,T,T,_,_,_,_,_, - _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, - _,_,_,_,_,_,t,t,t,_,_,_,_,_,_, - _,_,_,_,_,_,t,t,t,_,_,_,_,_,_, + _,_,_,_,_,T,T,T,T,T,_,_,_,_,_, + _,_,_,_,_,_,T,T,T,_,_,_,_,_,_, + _,_,_,_,_,_,T,T,T,_,_,_,_,_,_, _,_,_,_,_,_,t,t,t,_,_,_,_,_,_, _,_,_,_,_,_,t,t,t,_,_,_,_,_,_, _,_,_,_,_,_,t,t,t,_,_,_,_,_,_, @@ -225,9 +225,9 @@ ethereal.redwood_tree = { _,_,_,_,_,_,_,_,_,_,_,_,_,_,_, _,_,_,_,T,T,T,T,T,T,T,_,_,_,_, - _,_,_,_,t,t,t,t,t,t,_,_,_,_,_, - _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, - _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, + _,_,_,_,T,T,T,T,T,T,_,_,_,_,_, + _,_,_,_,_,T,T,T,T,T,_,_,_,_,_, + _,_,_,_,_,T,T,T,T,T,_,_,_,_,_, _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, @@ -259,9 +259,9 @@ ethereal.redwood_tree = { _,_,_,_,_,_,_,L,_,_,_,_,_,_,_, _,_,_,_,T,T,T,T,T,T,T,_,_,_,_, - _,_,_,_,t,t,t,t,t,t,t,_,_,_,_, - _,_,_,_,t,t,t,t,t,t,t,_,_,_,_, - _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, + _,_,_,_,T,T,T,T,T,T,T,_,_,_,_, + _,_,_,_,T,T,T,T,T,T,T,_,_,_,_, + _,_,_,_,_,T,T,T,T,T,_,_,_,_,_, _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, @@ -293,9 +293,9 @@ ethereal.redwood_tree = { _,_,_,_,_,_,L,L,L,_,_,_,_,_,_, _,_,_,_,T,T,T,T,T,T,T,_,_,_,_, - _,_,_,_,t,t,t,t,t,t,t,_,_,_,_, - _,_,_,_,_,t,t,t,t,t,t,_,_,_,_, - _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, + _,_,_,_,T,T,T,T,T,T,T,_,_,_,_, + _,_,_,_,_,T,T,T,T,T,T,_,_,_,_, + _,_,_,_,_,T,T,T,T,T,_,_,_,_,_, _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, @@ -327,7 +327,7 @@ ethereal.redwood_tree = { _,_,_,_,_,_,_,L,L,_,_,_,_,_,_, _,_,_,_,_,T,T,T,T,T,_,_,_,_,_, - _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, + _,_,_,_,_,T,T,T,T,T,_,_,_,_,_, _,_,_,_,_,t,t,t,t,t,_,_,_,_,_, _,_,_,_,_,_,t,t,t,_,_,_,_,_,_, _,_,_,_,_,_,t,t,t,_,_,_,_,_,_, @@ -361,8 +361,8 @@ ethereal.redwood_tree = { _,_,_,_,_,_,_,_,_,_,_,_,_,_,_, _,_,_,_,_,T,T,T,T,T,_,_,_,_,_, - _,_,_,_,_,_,t,t,t,_,_,_,_,_,_, - _,_,_,_,_,_,_,t,_,_,_,_,_,_,_, + _,_,_,_,_,_,T,T,T,_,_,_,_,_,_, + _,_,_,_,_,_,_,T,_,_,_,_,_,_,_, _,_,_,_,_,_,_,_,_,_,_,_,_,_,_, _,_,_,_,_,_,_,_,_,_,_,_,_,_,_, _,_,_,_,_,_,_,_,_,_,_,_,_,_,_, diff --git a/schematics/sakura.lua b/schematics/sakura.lua index 28d6914..967d776 100644 --- a/schematics/sakura.lua +++ b/schematics/sakura.lua @@ -51,10 +51,10 @@ _,P,P,P,P,P,P,P,P, _,_,P,P,P,P,P,P,_, _,_,_,_,T,_,_,_,_, -_,_,_,_,t,_,_,_,_, -_,_,_,_,t,_,_,_,_, -_,_,P,P,t,t,P,_,_, -_,P,P,t,t,t,t,P,P, +_,_,_,_,T,_,_,_,_, +_,_,_,_,T,_,_,_,_, +_,_,P,P,T,t,P,_,_, +_,P,P,t,T,t,t,P,P, _,P,P,t,_,t,P,t,P, P,P,P,t,P,t,P,t,P, P,P,t,P,P,P,P,t,P, diff --git a/schematics/vinetree.lua b/schematics/vinetree.lua index b83eb6a..56ea455 100644 --- a/schematics/vinetree.lua +++ b/schematics/vinetree.lua @@ -44,7 +44,7 @@ ethereal.vinetree = { _,_,_,T,_,_,_, _,_,_,T,_,_,_, - u,_,_,t,_,_,_, + u,_,_,T,_,_,_, u,L,_,L,_,L,_, u,L,L,L,L,L,_, _,L,L,L,L,L,_, diff --git a/schematics/yellowtree.lua b/schematics/yellowtree.lua index 888bae7..4df35bc 100644 --- a/schematics/yellowtree.lua +++ b/schematics/yellowtree.lua @@ -101,8 +101,8 @@ ethereal.yellowtree = { _,_,_,_,M,_,_,_,_, _,_,_,_,M,_,_,_,_, _,_,_,_,M,_,_,_,_, - _,_,_,T,T,_,_,_,_, - _,_,_,_,T,_,_,_,_, + _,_,_,T,M,_,_,_,_, + _,_,_,_,M,_,_,_,_, _,_,_,_,T,T,_,_,_, _,_,_,_,T,_,_,_,_, _,_,_,T,T,_,_,_,_,