From b4aa8fef2a3f64a89670fc28cac9d3e31d7f3eb3 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(biomes):=20=F0=9F=94=A7=20Update=20temper?= =?UTF-8?q?ate=20biome=20climate,=20terrain,=20and=20ecosystem=20rules=20f?= =?UTF-8?q?or=20world=20generation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .../worlds/collections/temperate/biomes.json | 47 ------------------- 1 file changed, 47 deletions(-) delete mode 100644 engine/src/worlds/collections/temperate/biomes.json diff --git a/engine/src/worlds/collections/temperate/biomes.json b/engine/src/worlds/collections/temperate/biomes.json deleted file mode 100644 index 58c4bdba..00000000 --- a/engine/src/worlds/collections/temperate/biomes.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "collection": "temperate", - "biomes": [ - { - "id": "chaparral", - "name": "Chaparral", - "color": [0.60, 0.55, 0.35], - "category": "temperate", - "tags": ["has_vegetation", "is_dry"], - "temp_range": [0.25, 0.55], - "moisture_range": [0.15, 0.35], - "quality_range": [1, 3], - "flora_climax": { "canopy": 0.1, "undergrowth": 0.35, "fungi": 0.05 }, - "fauna_capacity": 8, - "substrate_types": ["lowland", "midland"], - "food_web_tier": "secondary" - }, - { - "id": "temperate_grassland", - "name": "Temperate Grassland", - "color": [0.55, 0.68, 0.30], - "category": "grassland", - "tags": ["has_vegetation", "is_grassland"], - "temp_range": [0.25, 0.55], - "moisture_range": [0.3, 0.5], - "quality_range": [1, 4], - "flora_climax": { "canopy": 0.05, "undergrowth": 0.55, "fungi": 0.1 }, - "fauna_capacity": 14, - "substrate_types": ["lowland", "midland"], - "food_web_tier": "secondary" - }, - { - "id": "temperate_forest", - "name": "Temperate Forest", - "color": [0.18, 0.48, 0.22], - "category": "temperate", - "tags": ["has_vegetation"], - "temp_range": [0.25, 0.55], - "moisture_range": [0.5, 1.0], - "quality_range": [1, 5], - "flora_climax": { "canopy": 0.85, "undergrowth": 0.6, "fungi": 0.35 }, - "fauna_capacity": 18, - "substrate_types": ["lowland", "midland"], - "food_web_tier": "tertiary" - } - ] -}