Generate wheat and cotton in map

This commit is contained in:
Wuzzy 2022-05-14 13:19:30 +02:00
parent e6392c7a7c
commit 92183e279d
3 changed files with 17 additions and 8 deletions

View File

@ -11,4 +11,5 @@ dofile(minetest.get_modpath("rp_farming").."/nodes.lua")
dofile(minetest.get_modpath("rp_farming").."/plants.lua")
dofile(minetest.get_modpath("rp_farming").."/craft.lua")
dofile(minetest.get_modpath("rp_farming").."/achievements.lua")
dofile(minetest.get_modpath("rp_farming").."/mapgen.lua")
dofile(minetest.get_modpath("rp_farming").."/aliases.lua")

View File

@ -11,7 +11,7 @@ minetest.register_decoration(
fill_ratio = 0.008,
biomes = {"Wilderness"},
decoration = {"rp_farming:wheat_4"},
y_min = 0,
y_min = 1,
y_max = 32000,
})
@ -20,21 +20,29 @@ minetest.register_decoration(
deco_type = "simple",
place_on = "rp_default:dirt_with_grass",
sidelen = 16,
fill_ratio = 0.006,
biomes = {"Grassland", "Savanna"},
fill_ratio = 0.001,
biomes = {"Grassland"},
decoration = {"rp_farming:wheat_4"},
y_min = 0,
y_min = 1,
y_max = 32000,
noise_params = {
seed = 13,
octaves = 2,
scale = 0.001,
offset = 0.0,
spread = { x = 50, y = 50, z = 50 },
},
})
minetest.register_decoration(
{
deco_type = "simple",
place_on = "rp_default:sand",
place_on = {"rp_default:sand", "rp_default:dirt_with_dry_grass"},
sidelen = 16,
fill_ratio = 0.004,
biomes = {"Desert"},
biomes = {"Desert", "Savanna"},
decoration = {"rp_farming:cotton_4"},
y_min = 0,
y_min = 1,
y_max = 32000,
})

View File

@ -1,2 +1,2 @@
name = rp_farming
depends = rp_sounds, rp_weather, rp_crafting, rp_achievements, rp_item_drop
depends = rp_sounds, rp_weather, rp_crafting, rp_achievements, rp_item_drop, rp_default