From 81b44d35d703126ffe71c64ce6d8420d7db70c77 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Tue, 31 Mar 2026 05:43:30 -0700 Subject: [PATCH] =?UTF-8?q?chore(worlds):=20=F0=9F=94=A7=20Update=20biome?= =?UTF-8?q?=20definitions=20in=20elevated=20collections=20config=20for=20w?= =?UTF-8?q?orld=20generation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .../worlds/collections/elevated/biomes.json | 75 ------------------- 1 file changed, 75 deletions(-) delete mode 100644 engine/src/worlds/collections/elevated/biomes.json diff --git a/engine/src/worlds/collections/elevated/biomes.json b/engine/src/worlds/collections/elevated/biomes.json deleted file mode 100644 index ed68edd6..00000000 --- a/engine/src/worlds/collections/elevated/biomes.json +++ /dev/null @@ -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" - } - ] -}