mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 16:41:06 +01:00
20 lines
553 B
Lua
20 lines
553 B
Lua
-- Pumpkin
|
|
mcl_mapgen_core.register_decoration({
|
|
deco_type = "simple",
|
|
decoration = "mcl_farming:pumpkin",
|
|
param2 = 0,
|
|
param2_max = 3,
|
|
place_on = {"group:grass_block_no_snow"},
|
|
sidelen = 16,
|
|
noise_params = {
|
|
offset = -0.016,
|
|
scale = 0.01332,
|
|
spread = vector.new(125, 125, 125),
|
|
seed = 666,
|
|
octaves = 6,
|
|
persist = 0.666
|
|
},
|
|
y_min = 1,
|
|
y_max = vl_biomes.overworld_max,
|
|
biomes = {"ExtremeHills", "ExtremeHillsM", "ExtremeHills+", "Taiga", "MegaTaiga", "MegaSpruceTaiga", "Plains", "SunflowerPlains", "Swampland", "MangroveSwamp"},
|
|
})
|