write something there
This commit is contained in:
commit
b4b6c08f4f
8546 changed files with 309825 additions and 0 deletions
101
mods/ethereal/schematics/bigtree.lua
Normal file
101
mods/ethereal/schematics/bigtree.lua
Normal file
|
@ -0,0 +1,101 @@
|
|||
|
||||
local _ = {name = "air", prob = 0}
|
||||
local L = {name = "default:leaves", prob = 255}
|
||||
local T = {name = "default:tree", prob = 255}
|
||||
local t = {name = "default:tree", prob = 127}
|
||||
local M = {name = "default:tree", prob = 255, force_place = true}
|
||||
|
||||
ethereal.bigtree = {
|
||||
|
||||
size = {x = 9, y = 8, z = 9},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 0, prob = 127},
|
||||
{ypos = 1, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,t,t,_,t,t,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,L,L,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,t,t,t,t,t,t,t,_,
|
||||
_,_,_,t,_,t,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,L,L,L,L,L,_,_,
|
||||
_,_,_,L,L,L,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,t,t,t,T,t,t,t,_,
|
||||
_,_,t,t,T,t,t,_,_,
|
||||
_,_,_,_,T,_,_,_,_,
|
||||
_,_,_,_,T,_,_,_,_,
|
||||
_,L,L,L,T,L,L,L,_,
|
||||
_,_,L,L,L,L,L,_,_,
|
||||
_,_,_,L,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,t,T,M,T,t,_,_,
|
||||
_,_,_,T,M,T,_,_,_,
|
||||
_,_,_,T,M,T,_,_,_,
|
||||
_,_,_,T,T,T,_,_,_,
|
||||
L,L,L,L,T,L,L,L,L,
|
||||
_,L,L,L,T,L,L,L,_,
|
||||
_,_,L,L,L,L,L,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,t,t,t,T,t,t,t,_,
|
||||
_,_,t,t,T,t,t,_,_,
|
||||
_,_,_,_,T,_,_,_,_,
|
||||
_,_,_,_,T,_,_,_,_,
|
||||
_,L,L,L,T,L,L,L,_,
|
||||
_,_,L,L,L,L,L,_,_,
|
||||
_,_,_,L,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,t,t,t,t,t,t,t,_,
|
||||
_,_,_,t,_,t,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,L,L,L,L,L,_,_,
|
||||
_,_,_,L,L,L,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,t,t,_,t,t,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,L,L,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue