diff --git a/license.txt b/license.txt index 161940a..1187819 100644 --- a/license.txt +++ b/license.txt @@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -Textures by Felfa: +Textures by Felfa (CC0) olive*.png lemon*.png diff --git a/sapling.lua b/sapling.lua index e1ac952..8bee1d6 100644 --- a/sapling.lua +++ b/sapling.lua @@ -120,7 +120,7 @@ function ethereal.grow_redwood_tree(pos) end function ethereal.grow_orange_tree(pos) - add_tree(pos, 1, 0, 1, ethereal.orangetree) + add_tree(pos, 2, 0, 2, ethereal.orangetree) end function ethereal.grow_bamboo_tree(pos) diff --git a/schematics/orange_tree.lua b/schematics/orange_tree.lua index e4aef02..4006f0b 100644 --- a/schematics/orange_tree.lua +++ b/schematics/orange_tree.lua @@ -7,35 +7,48 @@ local o = {name = "ethereal:orange", param1 = 200} ethereal.orangetree = { - size = {x = 3, y = 6, z = 3}, + size = {x = 5, y = 6, z = 5}, yslice_prob = { {ypos = 0, prob = 127}, - {ypos = 3, prob = 127}, }, data = { - _,_,_, - _,_,_, - _,_,_, - l,l,o, - L,L,L, - l,o,l, + _,_,_,_,_, + _,_,_,_,_, + _,_,_,_,_, + _,_,L,_,_, + _,_,L,_,_, + _,_,_,_,_, - _,T,_, - _,T,_, - _,T,_, - l,T,l, - L,T,L, - l,L,l, + _,_,_,_,_, + _,_,_,_,_, + _,_,_,_,_, + _,o,L,o,_, + _,L,L,L,_, + _,_,L,_,_, - _,_,_, - _,_,_, - _,_,_, - o,l,l, - L,L,L, - l,l,l, + _,_,T,_,_, + _,_,T,_,_, + _,_,T,_,_, + L,L,T,L,L, + L,T,L,T,L, + _,L,L,L,_, + + _,_,_,_,_, + _,_,_,_,_, + _,_,_,_,_, + _,o,L,o,_, + _,L,L,L,_, + _,_,L,_,_, + + _,_,_,_,_, + _,_,_,_,_, + _,_,_,_,_, + _,_,L,_,_, + _,_,L,_,_, + _,_,_,_,_, } }