write something there
This commit is contained in:
commit
b4b6c08f4f
8546 changed files with 309825 additions and 0 deletions
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,
|
||||
_,_,
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue