summaryrefslogtreecommitdiff
path: root/dryplants/meadowvariation.lua
blob: 847765714d5de8e6c3cb2acc60b80f7513f4b79a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
-----------------------------------------------------------------------------------------------
-- Grasses - Meadow Variation 0.0.1
-----------------------------------------------------------------------------------------------
-- by Mossmanikin

-- License (everything): 	WTFPL
-- Contains code from: 		biome_lib
-- Looked at code from:		default				
-----------------------------------------------------------------------------------------------

abstract_dryplants.grow_grass_variation = function(pos)
	local right_here = {x=pos.x, y=pos.y, z=pos.z}
	minetest.set_node(right_here, {name="dryplants:grass_short"})
end

biome_lib:register_generate_plant({
    surface = {
		"default:dirt_with_grass",
	},
    max_count = 4800,
    rarity = 25,
    min_elevation = 1, -- above sea level
	plantlife_limit = -0.9,
  },
  abstract_dryplants.grow_grass_variation
)