master
PilzAdam 2013-08-27 17:28:53 +02:00
parent b2a15804a6
commit 337fcc3eac
2 changed files with 19 additions and 0 deletions

View File

@ -42,6 +42,15 @@ minetest.register_biome({
humidity_point = 70.0,
})
minetest.register_biome({
name = "base_firforest",
height_min = 3,
height_max = 40,
heat_point = 20.0,
humidity_point = 55.0,
})
minetest.register_biome({
name = "base_highland",
@ -117,6 +126,16 @@ minetest.register_decoration({
flags = "place_center_x, place_center_z",
})
minetest.register_decoration({
deco_type = "schematic",
place_on = "base:dirt_with_grass",
sidelen = 16,
fill_ratio = 0.02,
biomes = {"base_firforest"},
schematic = minetest.get_modpath("base").."/schematics/base_fir.mts",
flags = "place_center_x, place_center_z",
})
minetest.register_ore({
ore_type = "scatter",
ore = "base:broken_stone",

Binary file not shown.