2023-01-25 09:47:20 -03:00
|
|
|
|
|
|
|
-- DECO HOME 1 :
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {
|
|
|
|
"default:dirt_with_coniferous",
|
|
|
|
"default:dirt_with_coniferous_litter",
|
|
|
|
"default:dirt_with_grass",
|
|
|
|
"default:dirt_with_snow"
|
|
|
|
},
|
2023-01-27 16:07:50 -03:00
|
|
|
sidelen = 80, -- 16
|
2023-01-25 09:47:20 -03:00
|
|
|
fill_ratio = 0.00008,
|
|
|
|
flags = "place_center_x,place_center_z,force_placement,all_floors",
|
2023-01-29 13:25:14 -03:00
|
|
|
y_max = 10,
|
2023-01-25 09:47:20 -03:00
|
|
|
y_min = 0,
|
|
|
|
schematic = minetest.get_modpath("structures").."/schematics/home1.mts",
|
|
|
|
rotation = "random",
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|