change orange tree schematic

This commit is contained in:
tenplus1 2020-12-14 13:19:10 +00:00
parent 52d949c61e
commit 8dc704b001
3 changed files with 35 additions and 22 deletions

View File

@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE. THE SOFTWARE.
Textures by Felfa: Textures by Felfa (CC0)
olive*.png olive*.png
lemon*.png lemon*.png

View File

@ -120,7 +120,7 @@ function ethereal.grow_redwood_tree(pos)
end end
function ethereal.grow_orange_tree(pos) function ethereal.grow_orange_tree(pos)
add_tree(pos, 1, 0, 1, ethereal.orangetree) add_tree(pos, 2, 0, 2, ethereal.orangetree)
end end
function ethereal.grow_bamboo_tree(pos) function ethereal.grow_bamboo_tree(pos)

View File

@ -7,35 +7,48 @@ local o = {name = "ethereal:orange", param1 = 200}
ethereal.orangetree = { ethereal.orangetree = {
size = {x = 3, y = 6, z = 3}, size = {x = 5, y = 6, z = 5},
yslice_prob = { yslice_prob = {
{ypos = 0, prob = 127}, {ypos = 0, prob = 127},
{ypos = 3, prob = 127},
}, },
data = { data = {
_,_,_, _,_,_,_,_,
_,_,_, _,_,_,_,_,
_,_,_, _,_,_,_,_,
l,l,o, _,_,L,_,_,
L,L,L, _,_,L,_,_,
l,o,l, _,_,_,_,_,
_,T,_, _,_,_,_,_,
_,T,_, _,_,_,_,_,
_,T,_, _,_,_,_,_,
l,T,l, _,o,L,o,_,
L,T,L, _,L,L,L,_,
l,L,l, _,_,L,_,_,
_,_,_, _,_,T,_,_,
_,_,_, _,_,T,_,_,
_,_,_, _,_,T,_,_,
o,l,l, L,L,T,L,L,
L,L,L, L,T,L,T,L,
l,l,l, _,L,L,L,_,
_,_,_,_,_,
_,_,_,_,_,
_,_,_,_,_,
_,o,L,o,_,
_,L,L,L,_,
_,_,L,_,_,
_,_,_,_,_,
_,_,_,_,_,
_,_,_,_,_,
_,_,L,_,_,
_,_,L,_,_,
_,_,_,_,_,
} }
} }