write something there
This commit is contained in:
commit
b4b6c08f4f
8546 changed files with 309825 additions and 0 deletions
87
mods/ethereal/schematics/bamboo_tree.lua
Normal file
87
mods/ethereal/schematics/bamboo_tree.lua
Normal file
|
@ -0,0 +1,87 @@
|
|||
|
||||
local _ = {name = "air", param1 = 000}
|
||||
local b = {name = "ethereal:bamboo", param1 = 255}
|
||||
local B = {name = "ethereal:bamboo", param1 = 255, force_place = true}
|
||||
local L = {name = "ethereal:bamboo_leaves", param1 = 255}
|
||||
local l = {name = "ethereal:bamboo_leaves", param1 = 100}
|
||||
|
||||
ethereal.bambootree = {
|
||||
|
||||
size = {x = 3, y = 18, z = 3},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 2, prob = 127},
|
||||
{ypos = 3, prob = 127},
|
||||
{ypos = 4, prob = 127},
|
||||
{ypos = 5, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
l,L,l,
|
||||
_,L,_,
|
||||
_,_,_,
|
||||
|
||||
_,B,_,
|
||||
_,B,_,
|
||||
_,B,_,
|
||||
_,B,_,
|
||||
_,B,_,
|
||||
_,B,_,
|
||||
_,b,_,
|
||||
_,b,_,
|
||||
_,b,_,
|
||||
_,b,_,
|
||||
_,b,_,
|
||||
_,b,_,
|
||||
_,b,_,
|
||||
_,b,_,
|
||||
_,b,_,
|
||||
l,b,l,
|
||||
_,L,_,
|
||||
_,l,_,
|
||||
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
l,L,l,
|
||||
_,L,_,
|
||||
_,_,_,
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if ethereal.papyruswalk == true then
|
||||
|
||||
minetest.override_item("default:papyrus", {
|
||||
walkable = true,
|
||||
sunlight_propagates = true
|
||||
})
|
||||
end
|
85
mods/ethereal/schematics/banana_tree.lua
Normal file
85
mods/ethereal/schematics/banana_tree.lua
Normal file
|
@ -0,0 +1,85 @@
|
|||
|
||||
local _ = {name = "air", param1 = 0}
|
||||
local t = {name = "ethereal:banana_trunk", param1 = 255}
|
||||
local T = {name = "ethereal:banana_trunk", param1 = 255, force_place = true}
|
||||
local L = {name = "ethereal:bananaleaves", param1 = 255}
|
||||
local l = {name = "ethereal:bananaleaves", param1 = 180}
|
||||
local B = {name = "ethereal:banana", param1 = 255}
|
||||
local b = {name = "ethereal:banana", param1 = 070}
|
||||
|
||||
ethereal.bananatree = {
|
||||
|
||||
size = {x = 7, y = 8, z = 7},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 2, prob = 127},
|
||||
{ypos = 3, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,l,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,l,_,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,b,_,_,_,
|
||||
_,_,_,B,_,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,T,_,_,_,
|
||||
_,_,_,T,_,_,_,
|
||||
_,_,_,T,_,_,_,
|
||||
_,_,_,T,_,_,_,
|
||||
_,_,b,t,b,_,_,
|
||||
_,_,B,t,B,_,_,
|
||||
_,L,L,L,L,L,_,
|
||||
l,l,_,L,_,l,l,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,b,_,_,_,
|
||||
_,_,_,B,_,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,_,_,l,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,l,_,_,_,
|
||||
|
||||
}
|
||||
}
|
23
mods/ethereal/schematics/basandra_bush.lua
Normal file
23
mods/ethereal/schematics/basandra_bush.lua
Normal file
|
@ -0,0 +1,23 @@
|
|||
|
||||
local _ = {name = "air", param1 = 0}
|
||||
local S = {name = "ethereal:basandra_bush_stem", param1 = 255, force_place = true}
|
||||
local B = {name = "ethereal:basandra_bush_leaves", param1 = 255}
|
||||
local b = {name = "ethereal:basandra_bush_leaves", param1 = 100}
|
||||
|
||||
ethereal.basandrabush = {
|
||||
|
||||
size = {x = 3, y = 2, z = 3},
|
||||
|
||||
data = {
|
||||
|
||||
b,B,b,
|
||||
b,b,b,
|
||||
|
||||
B,S,B,
|
||||
b,B,b,
|
||||
|
||||
b,B,b,
|
||||
b,b,b,
|
||||
|
||||
}
|
||||
}
|
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,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
65
mods/ethereal/schematics/birch_tree.lua
Normal file
65
mods/ethereal/schematics/birch_tree.lua
Normal file
|
@ -0,0 +1,65 @@
|
|||
|
||||
local _ = {name = "air", param1 = 0}
|
||||
local t = {name = "ethereal:birch_trunk", param1 = 255}
|
||||
local T = {name = "ethereal:birch_trunk", param1 = 255, force_place = true}
|
||||
local L = {name = "ethereal:birch_leaves", param1 = 255}
|
||||
local l = {name = "ethereal:birch_leaves", param1 = 150}
|
||||
|
||||
ethereal.birchtree = {
|
||||
|
||||
size = {x = 5, y = 8, z = 5},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 2, prob = 127},
|
||||
{ypos = 3, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
l,L,L,L,l,
|
||||
l,L,L,L,l,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
L,L,L,L,L,
|
||||
L,L,L,L,L,
|
||||
_,l,L,l,_,
|
||||
_,_,L,_,_,
|
||||
|
||||
_,_,T,_,_,
|
||||
_,_,T,_,_,
|
||||
_,_,T,_,_,
|
||||
_,_,T,_,_,
|
||||
L,L,T,L,L,
|
||||
L,L,t,L,L,
|
||||
_,L,t,L,_,
|
||||
_,L,L,L,_,
|
||||
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
L,L,L,L,L,
|
||||
L,L,L,L,L,
|
||||
_,l,L,l,_,
|
||||
_,_,L,_,_,
|
||||
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
l,L,L,L,l,
|
||||
l,L,L,L,l,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
38
mods/ethereal/schematics/bush.lua
Normal file
38
mods/ethereal/schematics/bush.lua
Normal file
|
@ -0,0 +1,38 @@
|
|||
|
||||
local _ = {name = "air", param1 = 0}
|
||||
local B = {name = "ethereal:bush", param1 = 255}
|
||||
local b = {name = "ethereal:bush", param1 = 100}
|
||||
|
||||
ethereal.bush = {
|
||||
|
||||
size = {x = 5, y = 3, z = 5},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 0, prob = 127},
|
||||
{ypos = 2, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
b,B,B,B,b,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
|
||||
B,B,B,B,B,
|
||||
_,b,B,b,_,
|
||||
_,_,_,_,_,
|
||||
|
||||
B,B,B,B,B,
|
||||
_,B,B,B,_,
|
||||
_,_,b,_,_,
|
||||
|
||||
B,B,B,B,B,
|
||||
_,b,B,b,_,
|
||||
_,_,_,_,_,
|
||||
|
||||
b,B,B,B,b,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
BIN
mods/ethereal/schematics/cherry_tree_1.mts
Normal file
BIN
mods/ethereal/schematics/cherry_tree_1.mts
Normal file
Binary file not shown.
BIN
mods/ethereal/schematics/cherry_tree_2.mts
Normal file
BIN
mods/ethereal/schematics/cherry_tree_2.mts
Normal file
Binary file not shown.
BIN
mods/ethereal/schematics/corals.mts
Normal file
BIN
mods/ethereal/schematics/corals.mts
Normal file
Binary file not shown.
33
mods/ethereal/schematics/desertstone_spike.lua
Normal file
33
mods/ethereal/schematics/desertstone_spike.lua
Normal file
|
@ -0,0 +1,33 @@
|
|||
|
||||
-- simple fix for Flux's stairsplus mod as it breaks compatibility
|
||||
local nodname = minetest.get_modpath("stairsplus")
|
||||
and "default:stair_desert_cobble_outer" or "stairs:stair_outer_desert_cobble"
|
||||
|
||||
local _ = {name = "air", param1 = 0}
|
||||
local ds = {name = "default:desert_stone", param1 = 255, param2 = 0}
|
||||
local dc = {name = "default:desert_cobble", param1 = 255, param2 = 0}
|
||||
local s0 = {name = nodname, param1 = 255, param2 = 0}
|
||||
local s2 = {name = nodname, param1 = 255, param2 = 2}
|
||||
local s3 = {name = nodname, param1 = 255, param2 = 3}
|
||||
local et = {name = "ethereal:etherium_ore", param1 = 128}
|
||||
|
||||
ethereal.desertstone_spike = {
|
||||
|
||||
size = {x = 2, y = 3, z = 2},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 2, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
et, ds,
|
||||
dc, s0,
|
||||
s3, _,
|
||||
|
||||
ds, ds,
|
||||
s2,s3,
|
||||
_,_,
|
||||
|
||||
}
|
||||
}
|
48
mods/ethereal/schematics/desertstone_under_spike.lua
Normal file
48
mods/ethereal/schematics/desertstone_under_spike.lua
Normal file
|
@ -0,0 +1,48 @@
|
|||
|
||||
local _ = {name = "air", param1 = 000}
|
||||
local S = {name = "default:stone", param1 = 255}
|
||||
local s = {name = "default:stone", param1 = 127}
|
||||
local C = {name = "default:cobble", param1 = 255}
|
||||
local c = {name = "default:cobble", param1 = 127}
|
||||
|
||||
ethereal.desertstone_under_spike = {
|
||||
|
||||
size = {x = 3, y = 8, z = 3},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 3, prob = 127},
|
||||
{ypos = 5, prob = 127},
|
||||
{ypos = 6, prob = 127},
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
C,S,C,
|
||||
C,S,C,
|
||||
_,S,_,
|
||||
_,S,_,
|
||||
_,C,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
|
||||
S,S,S,
|
||||
S,S,S,
|
||||
S,S,S,
|
||||
_,S,_,
|
||||
_,S,_,
|
||||
_,S,_,
|
||||
_,S,_,
|
||||
_,C,_,
|
||||
|
||||
C,S,C,
|
||||
C,S,C,
|
||||
_,S,_,
|
||||
_,S,_,
|
||||
_,C,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
|
||||
}
|
||||
}
|
185
mods/ethereal/schematics/frosttrees.lua
Normal file
185
mods/ethereal/schematics/frosttrees.lua
Normal file
|
@ -0,0 +1,185 @@
|
|||
|
||||
local _ = {name = "air", prob = 0}
|
||||
local l = {name = "ethereal:frost_leaves", prob = 255}
|
||||
local t = {name = "ethereal:frost_tree", prob = 255}
|
||||
local T = {name = "ethereal:frost_tree", prob = 255, force_place = true}
|
||||
|
||||
ethereal.frosttrees = {
|
||||
|
||||
size = {x = 8, y = 19, z = 8},
|
||||
|
||||
yslice_prob = {
|
||||
{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}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,l,l,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,l,l,l,l,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,l,l,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,l,l,_,_,_,
|
||||
_,l,l,l,l,l,l,_,
|
||||
_,_,_,l,l,_,_,_,
|
||||
_,_,l,l,l,l,_,_,
|
||||
_,_,_,l,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,_,_,_,
|
||||
_,_,l,t,t,l,_,_,
|
||||
l,l,l,t,t,l,l,l,
|
||||
_,_,l,t,t,l,_,_,
|
||||
_,l,l,t,t,l,l,_,
|
||||
_,_,l,t,t,l,_,_,
|
||||
_,_,l,t,t,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,_,_,_,
|
||||
_,_,l,t,t,l,_,_,
|
||||
l,l,l,t,t,l,l,l,
|
||||
_,_,l,t,t,l,_,_,
|
||||
_,l,l,t,t,l,l,_,
|
||||
_,_,l,t,t,l,_,_,
|
||||
_,_,l,t,t,l,_,_,
|
||||
_,_,_,l,l,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,l,l,_,_,_,
|
||||
_,l,l,l,l,l,l,_,
|
||||
_,_,_,l,l,_,_,_,
|
||||
_,_,l,l,l,l,_,_,
|
||||
_,_,_,l,l,_,_,_,
|
||||
_,_,_,l,l,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,l,l,l,l,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,l,l,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,l,l,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
BIN
mods/ethereal/schematics/gaunt_tree_1.mts
Normal file
BIN
mods/ethereal/schematics/gaunt_tree_1.mts
Normal file
Binary file not shown.
BIN
mods/ethereal/schematics/gaunt_tree_2.mts
Normal file
BIN
mods/ethereal/schematics/gaunt_tree_2.mts
Normal file
Binary file not shown.
BIN
mods/ethereal/schematics/gaunt_tree_3.mts
Normal file
BIN
mods/ethereal/schematics/gaunt_tree_3.mts
Normal file
Binary file not shown.
62
mods/ethereal/schematics/igloo.lua
Normal file
62
mods/ethereal/schematics/igloo.lua
Normal file
|
@ -0,0 +1,62 @@
|
|||
|
||||
local _ = {name = "air", prob = 255, force_place = true}
|
||||
local S = {name = "default:snowblock", prob = 255}
|
||||
local P = {name = "default:pine_bush_stem", prob = 50}
|
||||
local C = {name = "ethereal:coconut", prob = 50}
|
||||
|
||||
ethereal.igloo = {
|
||||
|
||||
size = {x = 7, y = 5, z = 8},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,S,S,S,_,_,
|
||||
_,_,S,_,S,_,_,
|
||||
_,_,S,_,S,_,_,
|
||||
_,_,_,S,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,S,S,S,_,_,
|
||||
_,_,S,_,S,_,_,
|
||||
_,_,S,_,S,_,_,
|
||||
_,_,_,S,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,S,S,S,S,S,_,
|
||||
_,S,_,_,_,S,_,
|
||||
_,S,_,_,_,S,_,
|
||||
_,_,S,S,S,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
S,S,S,S,S,S,S,
|
||||
S,P,_,_,_,C,S,
|
||||
S,_,_,_,_,_,S,
|
||||
_,S,_,_,_,S,_,
|
||||
_,_,S,S,S,_,_,
|
||||
|
||||
S,S,S,S,S,S,S,
|
||||
S,_,_,_,_,_,S,
|
||||
S,_,_,_,_,_,S,
|
||||
_,S,_,_,_,S,_,
|
||||
_,_,S,S,S,_,_,
|
||||
|
||||
S,S,S,S,S,S,S,
|
||||
S,_,_,_,_,_,S,
|
||||
S,_,_,_,_,_,S,
|
||||
_,S,_,_,_,S,_,
|
||||
_,_,S,S,S,_,_,
|
||||
|
||||
_,S,S,S,S,S,_,
|
||||
_,S,_,_,_,S,_,
|
||||
_,S,_,_,_,S,_,
|
||||
_,_,S,S,S,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,S,S,S,_,_,
|
||||
_,_,S,S,S,_,_,
|
||||
_,_,S,S,S,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
71
mods/ethereal/schematics/lemon_tree.lua
Normal file
71
mods/ethereal/schematics/lemon_tree.lua
Normal file
|
@ -0,0 +1,71 @@
|
|||
|
||||
local _ = {name = "air", param1 = 0}
|
||||
local L = {name = "ethereal:lemon_leaves", param1 = 255}
|
||||
local l = {name = "ethereal:lemon_leaves", param1 = 127}
|
||||
local t = {name = "default:tree", param1 = 255}
|
||||
local T = {name = "default:tree", param1 = 255, force_place = true}
|
||||
local e = {name = "ethereal:lemon", param1 = 100}
|
||||
|
||||
ethereal.lemontree = {
|
||||
|
||||
size = {x = 5, y = 9, z = 5},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 1, prob = 127},
|
||||
{ypos = 3, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,e,_,_,
|
||||
_,L,L,L,e,
|
||||
e,L,L,l,_,
|
||||
_,l,L,L,_,
|
||||
_,_,l,_,_,
|
||||
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,L,L,l,_,
|
||||
l,L,l,L,L,
|
||||
L,l,L,L,L,
|
||||
L,L,L,l,L,
|
||||
_,L,L,L,_,
|
||||
|
||||
_,_,T,_,_,
|
||||
_,_,T,_,_,
|
||||
_,_,T,_,_,
|
||||
_,_,T,_,_,
|
||||
l,e,T,l,l,
|
||||
L,L,t,L,l,
|
||||
l,L,t,L,L,
|
||||
L,L,L,l,L,
|
||||
l,L,L,L,l,
|
||||
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,L,L,L,_,
|
||||
L,l,L,L,L,
|
||||
L,L,L,L,L,
|
||||
L,L,L,L,l,
|
||||
_,l,L,L,_,
|
||||
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,l,_,_,
|
||||
e,L,L,l,_,
|
||||
_,l,L,L,_,
|
||||
_,L,L,L,e,
|
||||
_,_,l,_,_,
|
||||
|
||||
}
|
||||
}
|
BIN
mods/ethereal/schematics/meadow_tree_1.mts
Normal file
BIN
mods/ethereal/schematics/meadow_tree_1.mts
Normal file
Binary file not shown.
BIN
mods/ethereal/schematics/meadow_tree_2.mts
Normal file
BIN
mods/ethereal/schematics/meadow_tree_2.mts
Normal file
Binary file not shown.
117
mods/ethereal/schematics/mushroomone.lua
Normal file
117
mods/ethereal/schematics/mushroomone.lua
Normal file
|
@ -0,0 +1,117 @@
|
|||
|
||||
local _ = {name = "air", prob = 0}
|
||||
local M = {name = "ethereal:mushroom", prob = 255}
|
||||
local t = {name = "ethereal:mushroom_trunk", prob = 255}
|
||||
local T = {name = "ethereal:mushroom_trunk", prob = 255, force_place = true}
|
||||
local P = {name = "ethereal:mushroom_pore", prob = 255}
|
||||
|
||||
ethereal.mushroomone = {
|
||||
|
||||
size = {x = 8, y = 11, z = 8},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 3, prob = 127},
|
||||
{ypos = 4, prob = 127},
|
||||
{ypos = 7, prob = 220}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,M,M,_,_,_,
|
||||
_,_,_,M,M,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,M,_,_,M,_,_,
|
||||
_,_,M,_,_,M,_,_,
|
||||
_,_,_,M,M,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,M,_,_,_,_,M,_,
|
||||
_,M,_,_,_,_,M,_,
|
||||
_,_,M,P,P,M,_,_,
|
||||
_,_,_,M,M,_,_,_,
|
||||
|
||||
_,_,_,T,T,_,_,_,
|
||||
_,_,_,T,T,_,_,_,
|
||||
_,_,_,T,T,_,_,_,
|
||||
_,_,_,t,t,_,_,_,
|
||||
_,_,_,t,t,_,_,_,
|
||||
_,_,_,t,t,_,_,_,
|
||||
_,_,_,t,t,_,_,_,
|
||||
M,_,_,t,t,_,_,M,
|
||||
M,_,_,t,t,_,_,M,
|
||||
_,M,P,P,P,P,M,_,
|
||||
_,_,M,M,M,M,_,_,
|
||||
|
||||
_,_,_,T,T,_,_,_,
|
||||
_,_,_,T,T,_,_,_,
|
||||
_,_,_,T,T,_,_,_,
|
||||
_,_,_,t,t,_,_,_,
|
||||
_,_,_,t,t,_,_,_,
|
||||
_,_,_,t,t,_,_,_,
|
||||
_,_,_,t,t,_,_,_,
|
||||
M,_,_,t,t,_,_,M,
|
||||
M,_,_,t,t,_,_,M,
|
||||
_,M,P,P,P,P,M,_,
|
||||
_,_,M,M,M,M,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,M,_,_,_,_,M,_,
|
||||
_,M,_,_,_,_,M,_,
|
||||
_,_,M,P,P,M,_,_,
|
||||
_,_,_,M,M,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,M,_,_,M,_,_,
|
||||
_,_,M,_,_,M,_,_,
|
||||
_,_,_,M,M,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,M,M,_,_,_,
|
||||
_,_,_,M,M,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
60
mods/ethereal/schematics/mushroomtwo.lua
Normal file
60
mods/ethereal/schematics/mushroomtwo.lua
Normal file
|
@ -0,0 +1,60 @@
|
|||
|
||||
local _ = {name = "air", param1 = 000}
|
||||
local t = {name = "ethereal:mushroom_trunk", param1 = 255}
|
||||
local T = {name = "ethereal:mushroom_trunk", param1 = 255, force_place = true}
|
||||
local M = {name = "ethereal:mushroom_brown", param1 = 255}
|
||||
local P = {name = "ethereal:mushroom_pore", param1 = 255}
|
||||
local l = {name = "ethereal:lightstring", param1 = 255, param2 = 10}
|
||||
|
||||
ethereal.mushroomtwo = {
|
||||
|
||||
size = {x = 3, y = 11, z = 3},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 3, prob = 127},
|
||||
{ypos = 4, prob = 127},
|
||||
{ypos = 5, prob = 127},
|
||||
{ypos = 6, prob = 127},
|
||||
{ypos = 8, prob = 127},
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,l,_,
|
||||
_,l,_,
|
||||
_,l,_,
|
||||
_,l,_,
|
||||
M,M,M,
|
||||
M,M,M,
|
||||
M,M,M,
|
||||
M,M,M,
|
||||
_,M,_,
|
||||
|
||||
_,T,_,
|
||||
_,T,_,
|
||||
_,T,_,
|
||||
_,t,_,
|
||||
_,t,_,
|
||||
_,t,_,
|
||||
M,t,M,
|
||||
M,t,M,
|
||||
M,P,M,
|
||||
M,P,M,
|
||||
M,M,M,
|
||||
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
_,_,_,
|
||||
M,M,M,
|
||||
M,M,M,
|
||||
M,M,M,
|
||||
M,M,M,
|
||||
_,M,_,
|
||||
|
||||
}
|
||||
}
|
89
mods/ethereal/schematics/olive_tree.lua
Normal file
89
mods/ethereal/schematics/olive_tree.lua
Normal file
|
@ -0,0 +1,89 @@
|
|||
|
||||
local _ = {name = "air", param1 = 0}
|
||||
local L = {name = "ethereal:olive_leaves", param1 = 255}
|
||||
local t = {name = "ethereal:olive_trunk", param1 = 255}
|
||||
local T = {name = "ethereal:olive_trunk", param1 = 255, force_place = true}
|
||||
local o = {name = "ethereal:olive", param1 = 150}
|
||||
|
||||
ethereal.olivetree = {
|
||||
|
||||
size = {x = 8, y = 9, z = 7},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 2, prob = 127},
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,L,_,_,_,_,L,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,L,_,L,L,o,_,
|
||||
L,t,L,L,o,L,t,L,
|
||||
_,L,_,_,_,_,L,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,t,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,L,t,L,_,t,L,_,
|
||||
_,L,L,_,L,L,L,_,
|
||||
_,_,_,L,L,_,_,_,
|
||||
_,_,o,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,T,T,_,_,_,
|
||||
_,_,_,T,T,_,_,_,
|
||||
_,_,_,T,T,_,_,_,
|
||||
_,_,L,t,t,_,_,_,
|
||||
_,o,L,t,t,t,L,_,
|
||||
_,L,L,t,t,L,o,_,
|
||||
_,_,L,t,t,L,_,_,
|
||||
_,_,L,t,t,L,_,_,
|
||||
_,_,_,L,L,_,_,_,
|
||||
|
||||
_,_,_,_,t,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,_,_,_,
|
||||
_,_,L,t,L,L,_,_,
|
||||
_,_,L,L,t,L,_,_,
|
||||
_,_,_,L,L,L,_,_,
|
||||
_,_,L,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,o,L,_,_,_,_,
|
||||
_,L,t,L,L,o,_,_,
|
||||
_,_,L,_,L,t,L,_,
|
||||
_,_,o,_,_,L,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,L,_,_,_,_,_,
|
||||
_,_,_,_,_,L,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
56
mods/ethereal/schematics/orange_tree.lua
Normal file
56
mods/ethereal/schematics/orange_tree.lua
Normal file
|
@ -0,0 +1,56 @@
|
|||
|
||||
local _ = {name = "air", param1 = 0}
|
||||
local L = {name = "ethereal:orange_leaves", param1 = 255}
|
||||
local l = {name = "ethereal:orange_leaves", param1 = 200}
|
||||
local t = {name = "default:tree", param1 = 255}
|
||||
local T = {name = "default:tree", param1 = 255, force_place = true}
|
||||
local o = {name = "ethereal:orange", param1 = 200}
|
||||
|
||||
ethereal.orangetree = {
|
||||
|
||||
size = {x = 5, y = 7, z = 5},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,L,_,_,
|
||||
_,_,L,_,_,
|
||||
_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,_,_,_,_,
|
||||
_,o,L,o,_,
|
||||
_,L,L,L,_,
|
||||
_,_,L,_,_,
|
||||
|
||||
_,_,T,_,_,
|
||||
_,_,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,_,_,
|
||||
_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
BIN
mods/ethereal/schematics/overgrown_tree.mts
Normal file
BIN
mods/ethereal/schematics/overgrown_tree.mts
Normal file
Binary file not shown.
129
mods/ethereal/schematics/palmtree.lua
Normal file
129
mods/ethereal/schematics/palmtree.lua
Normal file
|
@ -0,0 +1,129 @@
|
|||
|
||||
local _ = {name = "air", param = 0}
|
||||
local L = {name = "ethereal:palmleaves", param = 255}
|
||||
local l = {name = "ethereal:palmleaves", param = 191}
|
||||
local T = {name = "ethereal:palm_trunk", param = 255}
|
||||
local t = {name = "ethereal:palm_trunk", param = 191}
|
||||
local M = {name = "ethereal:palm_trunk", param = 255, force_place = true}
|
||||
local C = {name = "ethereal:coconut", param = 127, prob = 80}
|
||||
|
||||
ethereal.palmtree = {
|
||||
|
||||
size = {x = 9, y = 11, z = 9},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 3, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,l,_,_,_,
|
||||
_,_,_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,L,_,L,_,
|
||||
_,_,_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,C,_,_,_,
|
||||
_,_,_,_,L,L,L,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,M,_,_,_,_,
|
||||
_,_,_,_,M,_,_,_,_,
|
||||
_,_,_,_,M,_,_,_,_,
|
||||
_,_,_,_,M,_,_,_,_,
|
||||
_,_,_,_,M,_,_,_,_,
|
||||
_,_,_,_,T,t,_,_,_,
|
||||
_,_,_,_,_,T,_,_,_,
|
||||
_,_,l,_,_,T,_,_,l,
|
||||
_,_,L,L,C,T,C,L,L,
|
||||
_,_,_,L,L,L,L,L,_,
|
||||
_,_,_,_,_,L,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,C,_,_,_,
|
||||
_,_,_,_,L,L,L,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,L,_,L,_,
|
||||
_,_,_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,l,_,_,_,
|
||||
_,_,_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
89
mods/ethereal/schematics/pinetree.lua
Normal file
89
mods/ethereal/schematics/pinetree.lua
Normal file
|
@ -0,0 +1,89 @@
|
|||
|
||||
local _ = {name = "air", prob = 0}
|
||||
local L = {name = "ethereal:pineleaves", prob = 255}
|
||||
local t = {name = "default:pinetree", prob = 255}
|
||||
local T = {name = "default:pinetree", prob = 255, force_place = true}
|
||||
|
||||
ethereal.pinetree = {
|
||||
|
||||
size = {x = 7, y = 9, z = 7},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 1, prob = 127},
|
||||
{ypos = 5, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,L,L,L,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,L,L,L,L,L,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,_,L,L,L,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,T,_,_,_,
|
||||
_,_,_,T,_,_,_,
|
||||
_,_,_,T,_,_,_,
|
||||
_,_,L,T,L,_,_,
|
||||
L,L,L,T,L,L,L,
|
||||
_,_,L,t,L,_,_,
|
||||
_,L,L,t,L,L,_,
|
||||
_,_,L,t,L,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,L,L,L,L,L,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,_,L,L,L,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,L,L,L,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
95
mods/ethereal/schematics/pond.lua
Normal file
95
mods/ethereal/schematics/pond.lua
Normal file
|
@ -0,0 +1,95 @@
|
|||
|
||||
local _ = {name = "air", param1 = 0}
|
||||
local a = {name = "air", param1 = 255, force_place = true}
|
||||
local w = {name = "default:river_water_source", param1 = 255, force_place = true}
|
||||
local C = {name = "default:clay", param1 = 255, force_place = true}
|
||||
local D = {name = "default:dirt", param1 = 255, force_place = true}
|
||||
local M = {name = "default:mossycobble", param1 = 127, force_place = true}
|
||||
local e = {name = "ethereal:bush2", param1 = 127, force_place = true}
|
||||
local f = {name = "default:fern_1", param1 = 127, force_place = true}
|
||||
local g = {name = "default:fern_2", param1 = 127, force_place = true}
|
||||
local h = {name = "default:fern_3", param1 = 127, force_place = true}
|
||||
local i = {name = "default:grass_4", param1 = 127, force_place = true}
|
||||
|
||||
|
||||
ethereal.pond = {
|
||||
|
||||
size = {x = 12, y = 4, z = 15},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_, _,_,_,_,D,D,D,D,_,_,_,_, _,_,_,_,f,g,i,f,e,_,_,_,
|
||||
_,_,_,_,a,a,a,a,_,_,_,_,
|
||||
_,_,_,_,_,C,C,_,_,_,_,_, _,_,D,D,M,w,w,D,M,_,_,_, _,_,f,g,a,a,a,a,a,a,_,_,
|
||||
_,_,a,a,a,a,a,a,a,_,_,_,
|
||||
_,_,_,C,C,C,C,C,_,_,_,_, _,M,D,w,w,w,w,w,D,D,_,_, _,_,f,a,a,a,a,a,g,i,_,_,
|
||||
_,a,a,a,a,a,a,a,a,a,_,_,
|
||||
_,_,_,C,C,C,C,C,C,C,_,_, _,D,D,w,w,w,w,w,w,w,M,_, e,i,a,a,a,a,a,a,a,a,_,_,
|
||||
a,a,a,a,a,a,a,a,a,a,a,_,
|
||||
_,_,_,C,C,C,C,C,C,C,_,_, M,D,M,w,w,w,w,w,w,w,D,_, _,f,a,a,a,a,a,a,a,a,g,_,
|
||||
a,a,a,a,a,a,a,a,a,a,a,_,
|
||||
_,_,C,C,C,C,C,C,C,C,_,_, D,D,w,w,w,w,w,w,w,w,D,D, e,i,a,a,a,a,a,a,a,a,h,i,
|
||||
a,a,a,a,a,a,a,a,a,a,a,a,
|
||||
_,C,C,C,C,C,C,C,C,C,C,_, D,w,w,w,w,w,w,w,w,w,w,D, h,a,a,a,a,a,a,a,a,a,a,f,
|
||||
a,a,a,a,a,a,a,a,a,a,a,a,
|
||||
_,C,C,C,C,C,C,C,C,C,C,_, D,w,w,w,w,w,w,w,w,w,w,M, g,a,a,a,a,a,a,a,a,a,a,_,
|
||||
a,a,a,a,a,a,a,a,a,a,a,a,
|
||||
_,C,C,C,C,C,C,C,C,C,C,_, D,w,w,w,w,w,w,w,w,w,w,D, f,a,a,a,a,a,a,a,a,a,a,i,
|
||||
a,a,a,a,a,a,a,a,a,a,a,a,
|
||||
_,_,C,C,C,C,C,C,C,C,_,_, _,D,w,w,w,w,w,w,w,w,D,M, i,f,a,a,a,a,a,a,a,a,g,_,
|
||||
a,a,a,a,a,a,a,a,a,a,a,a,
|
||||
_,_,C,C,C,C,C,C,C,C,_,_, _,D,w,w,w,w,w,w,w,w,D,_, _,i,a,a,a,a,a,a,a,a,a,_,
|
||||
_,a,a,a,a,a,a,a,a,a,a,_,
|
||||
_,_,C,C,C,C,C,C,C,_,_,_, D,D,w,w,w,w,w,w,w,D,D,_, g,h,a,a,a,a,a,a,a,a,f,i,
|
||||
a,a,a,a,a,a,a,a,a,a,a,_,
|
||||
_,_,C,C,C,C,C,C,_,_,_,_, D,D,w,w,w,w,w,w,D,D,_,_, _,e,g,a,a,a,a,a,a,g,e,_,
|
||||
a,a,a,a,a,a,a,a,a,a,_,_,
|
||||
_,_,_,C,C,C,C,_,_,_,_,_, _,M,D,w,w,w,w,D,M,_,_,_, _,_,i,a,a,a,a,a,a,a,_,_,
|
||||
_,a,a,a,a,a,a,a,a,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_, _,_,D,D,D,D,D,D,D,_,_,_, _,_,e,f,i,g,g,i,h,_,_,_,
|
||||
_,_,a,a,a,a,a,a,a,_,_,_,
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
minetest.register_node("ethereal:pond", {
|
||||
paramtype = "light",
|
||||
sunlight_propagetes = true,
|
||||
walkable = false, pointable = false, diggable = false, floodable = false,
|
||||
drawtype = "airlike",
|
||||
drops = "",
|
||||
groups = {not_in_creative_inventory = 1},
|
||||
on_blast = function() end,
|
||||
})
|
||||
|
||||
local math_random = math.random
|
||||
local replace_with = {
|
||||
"air", "air", "air", "air", "default:dry_grass_2", "default:dry_shrub",
|
||||
"default:grass_2", "default:fern_1", "air", "air", "default:dry_shrub"}
|
||||
|
||||
minetest.register_abm({
|
||||
label = "Ethereal pond",
|
||||
nodenames = {"ethereal:pond"},
|
||||
interval = 5,
|
||||
chance = 1,
|
||||
action = function(pos, node)
|
||||
|
||||
minetest.swap_node(pos, {name = replace_with[math_random(#replace_with)]})
|
||||
|
||||
local radius = 7
|
||||
|
||||
pos.y = pos.y - 1
|
||||
|
||||
local num = #minetest.find_nodes_in_area(
|
||||
{x = pos.x - radius, y = pos.y, z = pos.z - radius},
|
||||
{x = pos.x + radius, y = pos.y, z = pos.z + radius}, "group:bakedclay")
|
||||
|
||||
if num > 200 then
|
||||
|
||||
pos.y = pos.y - 1
|
||||
|
||||
minetest.place_schematic(pos, ethereal.pond, "random", nil, false,
|
||||
"place_center_x, place_center_z")
|
||||
end
|
||||
end
|
||||
})
|
220
mods/ethereal/schematics/redwood_small_tree.lua
Normal file
220
mods/ethereal/schematics/redwood_small_tree.lua
Normal file
|
@ -0,0 +1,220 @@
|
|||
|
||||
local _ = {name = "air", prob = 0}
|
||||
local t = {name = "ethereal:redwood_trunk", prob = 255}
|
||||
local T = {name = "ethereal:redwood_trunk", prob = 255, force_place = true}
|
||||
local L = {name = "ethereal:redwood_leaves", prob = 255}
|
||||
|
||||
ethereal.redwood_small_tree = {
|
||||
|
||||
size = {x = 9, y = 21, z = 9},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 2, prob = 127},
|
||||
{ypos = 3, prob = 127},
|
||||
{ypos = 4, prob = 127},
|
||||
{ypos = 5, prob = 127},
|
||||
{ypos = 7, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,t,L,L,
|
||||
_,_,_,_,_,L,L,L,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,_,_,
|
||||
_,_,_,_,L,L,t,L,L,
|
||||
_,_,_,_,_,L,L,L,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
L,L,L,L,L,L,_,_,_,
|
||||
_,_,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,L,L,L,_,_,
|
||||
_,_,_,L,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,t,t,_,_,
|
||||
_,_,_,_,_,L,L,_,L,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
L,L,t,t,L,L,_,_,_,
|
||||
_,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,L,L,L,L,L,L,_,_,
|
||||
_,_,L,L,L,L,L,_,_,
|
||||
_,_,_,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,_,_,L,L,
|
||||
_,_,_,_,t,_,_,_,L,
|
||||
_,_,_,_,t,_,_,_,_,
|
||||
_,L,L,t,t,_,_,_,_,
|
||||
_,L,_,_,t,_,_,_,_,
|
||||
_,_,_,L,t,L,_,_,_,
|
||||
_,L,L,L,L,L,L,L,_,
|
||||
_,L,L,L,L,L,L,L,_,
|
||||
_,_,L,L,L,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,_,L,t,
|
||||
_,_,_,t,t,t,_,_,L,
|
||||
L,L,L,t,t,t,_,_,_,
|
||||
_,_,_,t,t,t,_,_,_,
|
||||
_,_,_,t,t,t,_,_,_,
|
||||
_,_,L,t,t,t,L,_,_,
|
||||
_,L,L,L,t,L,L,L,_,
|
||||
_,L,L,L,L,L,L,L,_,
|
||||
_,_,L,L,L,L,L,_,_,
|
||||
_,_,_,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,_,_,_,L,
|
||||
_,t,t,t,t,_,_,_,L,
|
||||
L,L,L,_,t,_,_,_,_,
|
||||
L,L,_,_,t,L,L,L,L,
|
||||
_,_,_,_,t,_,_,_,_,
|
||||
_,_,_,L,t,L,_,_,_,
|
||||
_,L,L,L,L,L,L,L,_,
|
||||
_,L,L,L,L,L,L,_,_,
|
||||
_,_,_,L,L,L,_,_,_,
|
||||
_,_,_,_,L,L,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,t,_,_,_,_,_,_,_,
|
||||
t,t,L,L,t,t,t,_,_,
|
||||
L,L,_,_,L,L,t,L,L,
|
||||
_,_,_,_,_,L,L,L,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,_,L,L,L,L,L,_,_,
|
||||
_,_,L,L,L,L,L,_,_,
|
||||
_,_,_,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
L,L,L,L,_,_,_,_,_,
|
||||
L,L,_,_,L,L,t,L,L,
|
||||
_,_,_,_,_,L,L,L,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,L,L,_,_,_,
|
||||
_,_,_,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
L,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,L,
|
||||
_,_,_,_,_,_,L,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
534
mods/ethereal/schematics/redwood_tree.lua
Normal file
534
mods/ethereal/schematics/redwood_tree.lua
Normal file
|
@ -0,0 +1,534 @@
|
|||
|
||||
local _ = {name = "air", prob = 0}
|
||||
local t = {name = "ethereal:redwood_trunk", prob = 255}
|
||||
local T = {name = "ethereal:redwood_trunk", prob = 255, force_place = true}
|
||||
local L = {name = "ethereal:redwood_leaves", prob = 255}
|
||||
|
||||
ethereal.redwood_tree = {
|
||||
|
||||
size = {x = 15, y = 33, z = 15},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 1, prob = 127},
|
||||
{ypos = 5, prob = 127},
|
||||
{ypos = 6, prob = 127},
|
||||
{ypos = 7, prob = 127},
|
||||
{ypos = 14, prob = 127},
|
||||
{ypos = 15, prob = 127},
|
||||
{ypos = 16, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,_,L,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,t,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,t,L,L,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,t,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,L,L,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,t,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,L,t,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,L,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,T,T,T,T,T,_,_,_,_,_,
|
||||
_,_,_,_,_,_,T,T,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,t,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,L,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,t,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,L,t,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,L,L,L,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,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,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,L,L,_,L,L,L,L,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,L,t,t,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,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,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
L,L,L,L,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,t,_,_,L,L,L,L,L,
|
||||
_,_,_,_,_,_,_,t,_,_,_,L,L,L,_,
|
||||
_,_,_,_,_,_,_,t,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,t,t,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,_,_,t,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,t,L,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,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,t,t,t,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,t,t,t,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,L,L,L,L,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,L,L,L,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,t,t,t,t,t,t,_,_,_,_,_,_,
|
||||
L,L,L,L,L,_,t,t,t,_,_,_,_,_,_,
|
||||
L,L,L,L,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,t,t,t,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,L,t,t,t,L,
|
||||
_,_,_,_,_,_,t,t,t,_,_,L,L,L,L,
|
||||
_,_,L,L,L,L,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,t,t,t,L,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,t,L,L,L,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,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,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,t,t,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,L,t,t,L,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,L,L,L,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,t,_,_,t,t,t,_,_,_,_,_,_,
|
||||
L,t,t,t,L,_,t,t,t,_,_,_,_,_,_,
|
||||
L,L,L,L,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,t,_,_,_,L,L,L,L,
|
||||
_,_,_,_,t,t,t,t,_,_,_,L,L,L,_,
|
||||
_,L,L,L,L,L,_,t,_,_,_,_,_,_,_,
|
||||
_,_,_,L,L,_,_,t,L,L,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,t,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,t,L,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,L,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,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,L,L,L,L,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,L,L,L,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,t,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,L,L,_,_,_,_,_,
|
||||
L,L,L,L,L,_,_,_,L,_,_,_,_,_,_,
|
||||
L,L,L,L,_,_,t,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,L,L,L,L,
|
||||
_,_,_,_,t,_,_,_,_,_,_,_,_,_,_,
|
||||
_,L,L,t,t,L,L,t,t,t,_,_,_,_,_,
|
||||
_,_,L,L,L,_,_,L,L,t,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,T,T,T,T,T,_,_,_,_,_,
|
||||
_,_,_,_,_,_,T,T,T,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,T,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,L,L,L,L,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,t,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,L,L,_,_,_,_,_,
|
||||
L,L,L,L,_,_,_,_,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,L,L,L,L,L,L,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,L,_,_,L,L,t,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,L,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,L,L,L,L,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,L,L,L,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,t,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,t,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,t,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
98
mods/ethereal/schematics/sakura.lua
Normal file
98
mods/ethereal/schematics/sakura.lua
Normal file
|
@ -0,0 +1,98 @@
|
|||
|
||||
local t = {name = "ethereal:sakura_trunk", param1 = 255}
|
||||
local T = {name = "ethereal:sakura_trunk", param1 = 255, force_place = true}
|
||||
local P = {name = "ethereal:sakura_leaves", param1 = 255}
|
||||
local W = {name = "ethereal:sakura_leaves2", param1 = 255}
|
||||
local _ = {name = "air", param1 = 255}
|
||||
|
||||
ethereal.sakura_tree = {
|
||||
|
||||
size = {x=9, y=10, z=7},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 1, prob = 127},
|
||||
{ypos = 3, prob = 127},
|
||||
{ypos = 8, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,P,P,_,_,_,
|
||||
_,_,_,P,P,P,P,_,_,
|
||||
_,_,_,P,P,P,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,P,P,P,P,_,_,
|
||||
_,_,_,P,P,P,P,_,_,
|
||||
_,_,P,P,t,P,P,P,_,
|
||||
_,_,P,P,P,P,P,P,_,
|
||||
_,_,P,_,P,P,P,P,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,P,P,P,_,_,_,
|
||||
_,_,P,P,P,P,P,P,_,
|
||||
_,_,P,P,t,P,P,P,P,
|
||||
_,P,P,P,P,P,P,P,P,
|
||||
_,P,P,P,P,P,P,P,P,
|
||||
_,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,
|
||||
_,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,
|
||||
P,P,t,P,P,P,P,t,P,
|
||||
_,P,P,P,P,P,P,P,P,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,P,_,P,_,_,_,
|
||||
_,_,P,P,t,P,P,P,_,
|
||||
_,_,P,P,_,P,P,P,P,
|
||||
_,P,P,P,P,P,P,P,P,
|
||||
_,P,P,P,P,P,P,P,P,
|
||||
_,P,P,P,P,P,P,P,P,
|
||||
_,_,P,P,P,P,P,P,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,P,_,_,_,_,
|
||||
_,_,_,P,P,P,_,_,_,
|
||||
_,_,_,P,t,P,_,_,_,
|
||||
_,_,P,P,t,P,P,P,P,
|
||||
_,_,P,P,P,P,P,P,P,
|
||||
_,_,P,P,P,P,_,P,P,
|
||||
_,_,_,_,P,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,P,_,_,_,_,
|
||||
_,_,_,P,P,P,_,_,_,
|
||||
_,_,_,P,P,P,_,_,_,
|
||||
_,_,_,P,P,P,_,_,_,
|
||||
_,_,_,_,P,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
85
mods/ethereal/schematics/vinetree.lua
Normal file
85
mods/ethereal/schematics/vinetree.lua
Normal file
|
@ -0,0 +1,85 @@
|
|||
|
||||
local _ = {name = "air", prob = 0}
|
||||
local T = {name = "default:tree", prob = 255}
|
||||
local l = {name = "default:leaves", prob = 127}
|
||||
local L = {name = "default:leaves", prob = 255}
|
||||
local u = {name = "ethereal:vine", prob = 255, param2 = 2}
|
||||
local U = {name = "ethereal:vine", prob = 255, param2 = 3}
|
||||
local W = {name = "ethereal:vine", prob = 255, param2 = 4}
|
||||
local w = {name = "ethereal:vine", prob = 255, param2 = 5}
|
||||
|
||||
ethereal.vinetree = {
|
||||
|
||||
size = {x = 7, y = 8, z = 7},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 0, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,W,_,W,_,_,_,
|
||||
_,W,_,W,_,_,_,
|
||||
_,W,_,W,_,_,_,
|
||||
_,W,_,_,_,W,_,
|
||||
_,W,_,_,_,W,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,L,_,l,_,L,_,
|
||||
_,L,L,L,L,L,U,
|
||||
_,L,L,L,L,L,U,
|
||||
_,L,L,L,L,L,U,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,U,
|
||||
_,_,_,_,_,_,U,
|
||||
_,_,_,_,_,_,U,
|
||||
_,L,T,_,T,L,U,
|
||||
u,L,L,L,L,L,_,
|
||||
_,L,L,L,L,L,_,
|
||||
_,_,L,L,L,_,_,
|
||||
|
||||
_,_,_,T,_,_,_,
|
||||
_,_,_,T,_,_,_,
|
||||
_,_,_,T,_,_,_,
|
||||
u,l,_,T,_,l,_,
|
||||
u,L,_,L,_,L,_,
|
||||
u,L,L,L,L,L,_,
|
||||
u,L,L,L,L,L,_,
|
||||
_,_,L,L,L,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,U,
|
||||
_,_,_,_,_,_,U,
|
||||
_,L,T,_,T,L,U,
|
||||
_,L,L,L,L,L,U,
|
||||
_,L,L,L,L,L,_,
|
||||
_,_,_,L,L,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
u,_,_,_,_,_,U,
|
||||
u,L,_,l,_,L,U,
|
||||
u,L,L,L,L,L,U,
|
||||
u,L,L,L,L,L,_,
|
||||
_,l,L,L,L,L,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,w,_,_,_,_,
|
||||
_,_,w,_,_,_,_,
|
||||
_,_,w,w,_,_,_,
|
||||
_,_,_,w,w,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
96
mods/ethereal/schematics/volcanol.lua
Normal file
96
mods/ethereal/schematics/volcanol.lua
Normal file
|
@ -0,0 +1,96 @@
|
|||
|
||||
local _ = {name = "air", prob = 0}
|
||||
local d = {name = "ethereal:fiery_dirt", prob = 245}
|
||||
local s = {name = "default:cobble", prob = 255}
|
||||
local l = {name = "default:lava_source", prob = 255, force_place = true}
|
||||
local f = {name = "default:lava_flowing", prob = 255}
|
||||
local o = {name = "default:obsidian", prob = 215}
|
||||
|
||||
ethereal.volcanol = {
|
||||
|
||||
size = {x = 17, y = 4, z = 15},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 0, prob = 127},
|
||||
{ypos = 1, prob = 127},
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,d,d,d,d,_,_,d,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,d,s,s,s,s,d,d,s,d,d,_,_,_,_,
|
||||
_,_,_,_,s,s,s,s,_,_,s,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,d,s,o,o,o,o,s,s,o,s,s,d,_,_,_,
|
||||
_,_,_,s,f,f,s,f,s,s,f,s,s,_,_,_,_,
|
||||
_,_,_,_,s,s,_,s,_,_,s,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,d,s,o,s,s,s,s,o,o,s,o,o,s,d,_,_,
|
||||
_,_,s,l,l,l,l,f,s,f,f,l,l,s,_,_,_,
|
||||
_,_,_,s,f,f,s,s,o,s,o,s,s,_,_,_,_,
|
||||
_,_,_,_,o,o,o,_,_,_,o,_,_,_,_,_,_,
|
||||
|
||||
_,d,s,o,s,o,o,o,s,s,o,s,s,o,s,d,_,
|
||||
_,_,s,f,l,l,l,l,l,l,l,l,l,l,s,_,_,
|
||||
_,_,_,s,f,f,f,f,f,f,l,f,l,s,_,_,_,
|
||||
_,_,_,_,o,_,_,o,o,o,_,o,o,_,_,_,_,
|
||||
|
||||
_,d,s,o,s,o,s,s,o,o,s,o,s,o,s,d,_,
|
||||
_,_,s,s,l,l,l,l,l,l,l,l,l,l,s,_,_,
|
||||
_,_,_,_,o,f,f,f,f,f,f,f,l,s,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,o,_,_,_,_,
|
||||
|
||||
_,_,d,s,o,s,o,s,s,s,s,o,s,o,s,d,_,
|
||||
_,_,_,s,l,l,l,l,l,l,l,l,l,l,s,_,_,
|
||||
_,_,_,s,f,f,f,f,f,f,f,f,l,s,_,_,_,
|
||||
_,_,_,_,o,_,_,_,_,_,_,_,s,_,_,_,_,
|
||||
|
||||
_,d,s,o,s,o,o,o,o,o,o,s,o,s,d,_,_,
|
||||
_,_,s,l,l,l,l,l,l,l,l,l,l,s,_,_,_,
|
||||
_,_,_,s,f,f,f,f,f,f,f,l,s,_,_,_,_,
|
||||
_,_,_,_,o,_,_,_,_,_,_,_,o,_,_,_,_,
|
||||
|
||||
_,d,s,o,s,s,s,s,s,s,o,s,o,s,d,_,_,
|
||||
_,_,s,l,l,l,l,l,l,l,l,l,l,s,_,_,_,
|
||||
_,_,_,s,f,f,f,f,l,l,f,l,s,_,_,_,_,
|
||||
_,_,_,_,o,o,_,_,_,o,_,o,_,_,_,_,_,
|
||||
|
||||
_,_,d,s,o,o,o,o,o,o,s,o,s,d,_,_,_,
|
||||
_,_,_,s,s,l,f,f,f,f,l,l,s,_,_,_,_,
|
||||
_,_,_,_,s,s,s,s,s,s,f,s,_,_,_,_,_,
|
||||
_,_,_,_,_,s,o,o,o,_,s,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,d,s,s,s,s,s,s,o,s,d,_,_,_,_,
|
||||
_,_,_,_,s,s,s,s,s,s,l,s,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,s,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,d,d,d,d,d,d,s,s,d,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,s,s,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,d,d,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
36
mods/ethereal/schematics/volcanom.lua
Normal file
36
mods/ethereal/schematics/volcanom.lua
Normal file
|
@ -0,0 +1,36 @@
|
|||
|
||||
local _ = {name = "air", prob = 0}
|
||||
local l = {name = "default:lava_source", prob = 225, force_place = true}
|
||||
local s = {name = "default:cobble", prob = 255}
|
||||
local d = {name = "ethereal:fiery_dirt", prob = 255}
|
||||
|
||||
ethereal.volcanom = {
|
||||
|
||||
size = {x = 6, y = 2, z = 6},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 0, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,s,_,_,_,
|
||||
_,_,_,_,_,_,
|
||||
|
||||
_,s,l,s,_,_,
|
||||
_,_,s,d,_,_,
|
||||
|
||||
_,s,l,l,s,_,
|
||||
_,s,_,_,s,_,
|
||||
|
||||
s,l,l,l,s,_,
|
||||
_,s,_,_,d,_,
|
||||
|
||||
_,d,l,l,d,d,
|
||||
_,_,s,d,_,_,
|
||||
|
||||
_,_,d,d,d,_,
|
||||
_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
24
mods/ethereal/schematics/waterlily.lua
Normal file
24
mods/ethereal/schematics/waterlily.lua
Normal file
|
@ -0,0 +1,24 @@
|
|||
|
||||
-- waterlily
|
||||
|
||||
ethereal.waterlily = {
|
||||
|
||||
size = {x = 1, y = 3, z = 1},
|
||||
|
||||
data = {
|
||||
{name = "default:sand", param1 = 255},
|
||||
{name = "default:water_source", param1 = 255},
|
||||
{name = "flowers:waterlily", param1 = 255},
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if ethereal.lilywalk == true then
|
||||
|
||||
minetest.override_item("flowers:waterlily", {walkable = true})
|
||||
|
||||
if minetest.registered_nodes["flowers:waterlily_waving"] then
|
||||
|
||||
minetest.override_item("flowers:waterlily_waving", {walkable = true})
|
||||
end
|
||||
end
|
200
mods/ethereal/schematics/willow.lua
Normal file
200
mods/ethereal/schematics/willow.lua
Normal file
|
@ -0,0 +1,200 @@
|
|||
|
||||
local _ = {name = "air", prob = 0}
|
||||
local L = {name = "ethereal:willow_twig", prob = 255}
|
||||
local T = {name = "ethereal:willow_trunk", prob = 255}
|
||||
local t = {name = "ethereal:willow_trunk", prob = 127}
|
||||
local M = {name = "ethereal:willow_trunk", prob = 255, force_place = true}
|
||||
|
||||
ethereal.willow = {
|
||||
|
||||
size = {x = 12, y = 14, z = 12},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 0, prob = 127},
|
||||
{ypos = 1, prob = 127}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,_,_,_,_,_,
|
||||
_,_,_,_,L,_,L,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,L,_,_,_,
|
||||
_,_,L,L,L,L,T,L,L,_,_,_,
|
||||
_,_,_,_,_,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,t,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,L,_,L,_,_,_,_,
|
||||
_,_,_,L,L,L,L,L,L,L,_,_,
|
||||
_,_,L,L,L,T,T,L,L,_,_,_,
|
||||
_,_,_,L,L,L,L,L,L,_,_,_,
|
||||
_,_,_,L,L,L,L,L,L,_,_,_,
|
||||
_,_,_,L,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,t,T,T,T,_,_,t,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,L,_,L,_,_,_,_,_,_,_,_,
|
||||
_,L,L,L,L,L,L,_,L,L,L,_,
|
||||
_,L,T,T,L,T,L,L,L,L,_,_,
|
||||
_,_,L,L,L,L,L,L,L,L,_,_,
|
||||
_,_,L,L,L,L,L,L,T,L,_,_,
|
||||
_,_,L,L,L,L,L,L,L,_,_,_,
|
||||
_,_,L,L,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,T,_,_,T,_,_,_,
|
||||
_,_,_,_,_,T,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,L,_,_,
|
||||
_,_,_,_,_,L,L,_,_,L,_,_,
|
||||
_,_,L,L,_,L,L,L,L,L,L,_,
|
||||
L,L,L,T,L,T,L,L,T,L,L,_,
|
||||
_,L,L,L,L,L,L,L,L,L,L,_,
|
||||
_,L,L,L,L,L,L,L,T,T,L,_,
|
||||
_,L,L,L,L,L,L,L,L,L,L,_,
|
||||
_,L,T,T,T,T,T,L,L,_,_,_,
|
||||
_,_,L,L,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,L,T,L,L,_,_,_,_,
|
||||
_,_,_,_,_,L,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,M,M,M,M,t,_,_,
|
||||
_,_,_,_,_,M,M,_,_,_,_,_,
|
||||
_,_,_,_,_,M,M,_,_,_,_,_,
|
||||
_,L,_,_,_,T,T,_,_,_,_,_,
|
||||
_,L,L,_,_,T,_,_,_,L,L,_,
|
||||
_,L,L,L,_,T,L,L,L,L,L,L,
|
||||
L,L,L,T,L,T,T,T,T,T,L,_,
|
||||
_,L,L,L,L,T,L,L,L,L,L,_,
|
||||
_,_,L,L,L,T,T,T,T,L,L,_,
|
||||
_,_,L,L,L,L,L,L,L,L,_,_,
|
||||
_,_,L,T,L,T,T,L,L,_,_,_,
|
||||
_,_,_,L,L,T,T,L,_,_,_,_,
|
||||
_,_,_,L,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,L,L,L,_,_,_,_,_,
|
||||
|
||||
_,_,t,M,M,M,M,M,_,_,_,_,
|
||||
_,_,_,_,_,M,M,M,_,_,_,_,
|
||||
_,_,_,_,_,M,M,_,_,_,_,_,
|
||||
_,_,_,_,_,T,T,_,_,_,_,_,
|
||||
_,L,_,_,_,T,T,_,_,_,_,_,
|
||||
L,L,L,L,L,T,T,T,L,L,L,L,
|
||||
L,T,T,T,T,T,T,L,T,L,L,_,
|
||||
_,L,L,L,L,L,T,L,L,L,L,_,
|
||||
_,_,L,L,L,L,T,L,L,L,L,_,
|
||||
_,_,_,L,_,L,T,L,L,_,_,_,
|
||||
_,_,_,L,L,L,T,L,L,_,_,_,
|
||||
_,_,_,L,L,L,L,L,L,_,_,_,
|
||||
_,_,_,_,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,L,L,L,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,T,_,_,_,_,_,_,
|
||||
_,_,_,_,_,T,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,L,_,L,_,L,L,_,_,
|
||||
_,L,L,L,L,L,L,_,L,L,L,_,
|
||||
_,L,T,L,L,L,L,L,L,L,_,_,
|
||||
_,L,L,L,L,L,T,L,L,L,_,_,
|
||||
_,_,L,L,L,L,L,L,L,L,_,_,
|
||||
_,_,L,L,L,L,T,L,L,L,_,_,
|
||||
_,_,_,L,L,L,L,L,L,_,_,_,
|
||||
_,_,_,L,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,T,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,L,_,_,_,_,_,_,_,_,_,
|
||||
_,L,L,_,_,L,L,_,L,L,L,_,
|
||||
_,L,T,L,L,L,L,L,L,L,_,_,
|
||||
_,_,L,_,L,L,T,L,L,L,_,_,
|
||||
_,_,L,L,L,L,L,L,L,_,_,_,
|
||||
_,_,_,_,L,L,T,T,L,_,_,_,
|
||||
_,_,_,_,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,L,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,T,T,t,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,L,_,_,_,_,
|
||||
_,_,_,_,L,_,_,L,_,L,_,_,
|
||||
_,_,L,L,L,L,L,L,L,L,_,_,
|
||||
_,_,L,L,L,L,T,L,L,_,_,_,
|
||||
_,_,_,L,L,L,T,L,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,L,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,t,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,L,L,L,L,L,_,_,_,
|
||||
_,_,_,L,L,L,T,L,_,_,_,_,
|
||||
_,_,_,_,_,L,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,_,_,_,_,_,
|
||||
_,_,_,_,_,L,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,L,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
202
mods/ethereal/schematics/yellowtree.lua
Normal file
202
mods/ethereal/schematics/yellowtree.lua
Normal file
|
@ -0,0 +1,202 @@
|
|||
|
||||
local _ = {name = "air", prob = 0}
|
||||
local T = {name = "ethereal:yellow_trunk", prob = 255}
|
||||
local t = {name = "ethereal:yellow_trunk", prob = 127}
|
||||
local M = {name = "ethereal:yellow_trunk", prob = 255, force_place = true}
|
||||
local L = {name = "ethereal:yellowleaves", prob = 255}
|
||||
local A = {name = "ethereal:golden_apple", prob = 115}
|
||||
|
||||
ethereal.yellowtree = {
|
||||
|
||||
size = {x = 9, y = 19, z = 9},
|
||||
|
||||
yslice_prob = {
|
||||
{ypos = 1, prob = 254},
|
||||
{ypos = 3, prob = 254},
|
||||
{ypos = 5, prob = 254}
|
||||
},
|
||||
|
||||
data = {
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,A,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,T,L,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,L,A,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,t,_,_,_,_,
|
||||
_,_,_,L,T,L,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,t,L,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,T,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,T,_,_,_,_,
|
||||
_,_,_,_,L,L,_,_,_,
|
||||
_,_,_,_,_,_,L,L,_,
|
||||
_,_,_,L,_,_,_,_,_,
|
||||
A,L,L,L,T,L,_,_,_,
|
||||
_,_,_,_,_,L,_,_,_,
|
||||
_,_,_,_,L,_,L,L,_,
|
||||
_,_,L,L,L,_,_,_,_,
|
||||
A,L,L,L,T,L,_,_,_,
|
||||
_,_,_,L,T,L,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
|
||||
_,_,_,_,M,_,_,_,_,
|
||||
_,_,_,_,M,_,_,_,_,
|
||||
_,_,_,_,M,_,_,_,_,
|
||||
_,_,_,T,M,_,_,_,_,
|
||||
_,_,_,_,M,_,_,_,_,
|
||||
_,_,_,_,T,T,_,_,_,
|
||||
_,_,_,_,T,_,_,_,_,
|
||||
_,_,_,T,T,_,_,_,_,
|
||||
_,_,_,_,T,_,_,_,_,
|
||||
_,_,_,_,T,T,t,_,_,
|
||||
_,_,_,_,T,_,T,T,L,
|
||||
_,_,t,T,T,_,L,L,_,
|
||||
L,T,T,_,T,_,_,_,_,
|
||||
_,L,L,_,T,T,t,_,_,
|
||||
_,_,_,_,T,L,T,T,L,
|
||||
_,_,t,T,T,L,L,L,_,
|
||||
L,T,T,L,T,L,_,_,_,
|
||||
_,L,L,_,L,A,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,T,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,_,_,_,
|
||||
_,_,_,_,T,L,L,L,A,
|
||||
_,_,_,L,_,_,_,_,_,
|
||||
_,L,L,_,_,_,_,_,_,
|
||||
_,_,_,_,_,L,_,_,_,
|
||||
_,_,_,L,T,L,L,L,A,
|
||||
_,_,L,L,L,_,_,_,_,
|
||||
_,L,L,_,L,_,_,_,_,
|
||||
_,_,_,_,A,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,t,_,_,_,_,
|
||||
_,_,_,L,T,L,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,t,L,_,_,_,
|
||||
_,_,_,L,T,L,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,T,L,_,_,_,
|
||||
_,_,_,L,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,L,T,L,_,_,_,
|
||||
_,_,_,_,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,A,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,A,L,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
_,_,_,_,_,_,_,_,_,
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue