forked from VoxeLibre/VoxeLibre
add all sizes of sea pickles not just 1
This commit is contained in:
parent
f883b45809
commit
2b87958678
|
@ -2609,7 +2609,7 @@ local function register_decorations()
|
||||||
deco_type = "simple",
|
deco_type = "simple",
|
||||||
place_on = {"mcl_ocean:dead_brain_coral_block"},
|
place_on = {"mcl_ocean:dead_brain_coral_block"},
|
||||||
sidelen = 16,
|
sidelen = 16,
|
||||||
fill_ratio = 10,
|
fill_ratio = 3,
|
||||||
y_min = OCEAN_MIN,
|
y_min = OCEAN_MIN,
|
||||||
y_max = 1,
|
y_max = 1,
|
||||||
decoration = "mcl_ocean:sea_pickle_1_dead_brain_coral_block",
|
decoration = "mcl_ocean:sea_pickle_1_dead_brain_coral_block",
|
||||||
|
@ -2619,6 +2619,48 @@ local function register_decorations()
|
||||||
height_max = 1,
|
height_max = 1,
|
||||||
place_offset_y = -1,
|
place_offset_y = -1,
|
||||||
})
|
})
|
||||||
|
minetest.register_decoration({
|
||||||
|
deco_type = "simple",
|
||||||
|
place_on = {"mcl_ocean:dead_brain_coral_block"},
|
||||||
|
sidelen = 16,
|
||||||
|
fill_ratio = 3,
|
||||||
|
y_min = OCEAN_MIN,
|
||||||
|
y_max = 1,
|
||||||
|
decoration = "mcl_ocean:sea_pickle_2_dead_brain_coral_block",
|
||||||
|
biomes = warm_oceans,
|
||||||
|
flags = "force_placement, all_floors",
|
||||||
|
height = 1,
|
||||||
|
height_max = 1,
|
||||||
|
place_offset_y = -1,
|
||||||
|
})
|
||||||
|
minetest.register_decoration({
|
||||||
|
deco_type = "simple",
|
||||||
|
place_on = {"mcl_ocean:dead_brain_coral_block"},
|
||||||
|
sidelen = 16,
|
||||||
|
fill_ratio = 2,
|
||||||
|
y_min = OCEAN_MIN,
|
||||||
|
y_max = 1,
|
||||||
|
decoration = "mcl_ocean:sea_pickle_3_dead_brain_coral_block",
|
||||||
|
biomes = warm_oceans,
|
||||||
|
flags = "force_placement, all_floors",
|
||||||
|
height = 1,
|
||||||
|
height_max = 1,
|
||||||
|
place_offset_y = -1,
|
||||||
|
})
|
||||||
|
minetest.register_decoration({
|
||||||
|
deco_type = "simple",
|
||||||
|
place_on = {"mcl_ocean:dead_brain_coral_block"},
|
||||||
|
sidelen = 16,
|
||||||
|
fill_ratio = 2,
|
||||||
|
y_min = OCEAN_MIN,
|
||||||
|
y_max = 1,
|
||||||
|
decoration = "mcl_ocean:sea_pickle_4_dead_brain_coral_block",
|
||||||
|
biomes = warm_oceans,
|
||||||
|
flags = "force_placement, all_floors",
|
||||||
|
height = 1,
|
||||||
|
height_max = 1,
|
||||||
|
place_offset_y = -1,
|
||||||
|
})
|
||||||
--rare CORAl
|
--rare CORAl
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "schematic",
|
deco_type = "schematic",
|
||||||
|
|
Loading…
Reference in New Issue