chore(worlds): 🔧 Update biome definitions in elevated collections config for world generation

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Claude Code 2026-03-31 05:43:30 -07:00
parent 6cbdefd21f
commit 81b44d35d7

View file

@ -1,75 +0,0 @@
{
"collection": "elevated",
"biomes": [
{
"id": "hills",
"name": "Hills",
"color": [0.55, 0.48, 0.35],
"category": "elevation",
"tags": ["is_elevated"],
"temp_range": [0.0, 1.0],
"moisture_range": [0.0, 1.0],
"quality_range": [1, 4],
"flora_climax": { "canopy": 0.2, "undergrowth": 0.3, "fungi": 0.1 },
"fauna_capacity": 8,
"substrate_types": ["highland", "midland"],
"food_web_tier": "secondary"
},
{
"id": "mountains",
"name": "Mountains",
"color": [0.45, 0.42, 0.40],
"category": "elevation",
"tags": ["is_elevated"],
"temp_range": [0.0, 0.3],
"moisture_range": [0.0, 1.0],
"quality_range": [1, 3],
"flora_climax": { "canopy": 0.0, "undergrowth": 0.05, "fungi": 0.02 },
"fauna_capacity": 3,
"substrate_types": ["mountain", "peak"],
"food_web_tier": "primary"
},
{
"id": "alpine_meadow",
"name": "Alpine Meadow",
"color": [0.50, 0.60, 0.40],
"category": "elevation",
"tags": ["is_elevated", "has_vegetation"],
"temp_range": [0.05, 0.25],
"moisture_range": [0.3, 0.7],
"quality_range": [1, 3],
"flora_climax": { "canopy": 0.0, "undergrowth": 0.3, "fungi": 0.08 },
"fauna_capacity": 6,
"substrate_types": ["highland", "mountain"],
"food_web_tier": "secondary"
},
{
"id": "montane_forest",
"name": "Montane Forest",
"color": [0.16, 0.36, 0.24],
"category": "elevation",
"tags": ["is_elevated", "has_vegetation"],
"temp_range": [0.15, 0.45],
"moisture_range": [0.4, 1.0],
"quality_range": [1, 4],
"flora_climax": { "canopy": 0.75, "undergrowth": 0.45, "fungi": 0.25 },
"fauna_capacity": 14,
"substrate_types": ["highland"],
"food_web_tier": "tertiary"
},
{
"id": "cloud_forest",
"name": "Cloud Forest",
"color": [0.20, 0.42, 0.35],
"category": "elevation",
"tags": ["is_elevated", "has_vegetation"],
"temp_range": [0.2, 0.45],
"moisture_range": [0.7, 1.0],
"quality_range": [1, 5],
"flora_climax": { "canopy": 0.8, "undergrowth": 0.65, "fungi": 0.5 },
"fauna_capacity": 20,
"substrate_types": ["highland"],
"food_web_tier": "quaternary"
}
]
}