warfactoryracine/gameData/MapFeatures/coal.json
StillHammer fd1ec4f503 Implement complete world generation system with geological simulation and resource distribution
## World Generation Pipeline
- Add comprehensive 7-phase geological simulation (4.6 billion years)
- Implement WindRegions-based climate system with ITCZ zones
- Create 18 biome types with scientific classification parameters
- Establish Phase 7 budget assignment and natural feature placement

## Resource System Architecture
- Add 70+ natural features across 8 categories (geological, water, forest, volcanic, etc.)
- Implement complete resource-to-feature mapping for all game materials
- Create individual resource files for metals (iron, copper, gold, uranium, etc.)
- Add comprehensive cross-referencing between features and game resources

## Biome Integration System
- Design scalable blacklist + frequent biomes compatibility system
- Implement mass-based feature selection with geological strength requirements
- Add 5 spatial distribution patterns (concentrated, uniform, ring, clustered, gradient)
- Create region-based feature placement with biome-aware filtering

## Documentation and Architecture
- Add detailed geological and climate simulation system documentation
- Update project overview with world generation achievements
- Establish JSON-driven configuration system for all generation parameters
- Create comprehensive system for Phase 8 integration readiness

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-29 17:19:01 +08:00

58 lines
2.1 KiB
JSON

{
"coal_resources": {
"rich_coal_seam": {
"display_name": "Rich Coal Seam",
"description": "High-quality coal deposit with excellent heating value and low impurities",
"formation_type": "compressed_carboniferous_forest",
"extraction_difficulty": "medium",
"budget_impact": 4,
"resource_yield": "high",
"quality": "premium"
},
"coal_seam": {
"display_name": "Coal Seam",
"description": "Standard coal deposit suitable for industrial and heating applications",
"formation_type": "compressed_carboniferous_forest",
"extraction_difficulty": "medium",
"budget_impact": 3,
"resource_yield": "medium",
"quality": "standard"
},
"coal_outcrop": {
"display_name": "Coal Outcrop",
"description": "Surface-exposed coal formation easy to access but lower quality",
"formation_type": "exposed_carboniferous_forest",
"extraction_difficulty": "easy",
"budget_impact": 2,
"resource_yield": "medium",
"quality": "standard"
},
"surface_coal": {
"display_name": "Surface Coal",
"description": "Weathered coal deposits scattered on surface with minimal extraction requirements",
"formation_type": "eroded_coal_seam",
"extraction_difficulty": "very_easy",
"budget_impact": 1,
"resource_yield": "low",
"quality": "low"
},
"peat_bog": {
"display_name": "Peat Bog",
"description": "Early-stage coal formation providing low-grade fuel and soil amendment",
"formation_type": "partially_decomposed_organic_matter",
"extraction_difficulty": "easy",
"budget_impact": 1,
"resource_yield": "low",
"quality": "low"
},
"lignite_deposit": {
"display_name": "Lignite Deposit",
"description": "Brown coal with moderate heating value, intermediate between peat and bituminous coal",
"formation_type": "intermediate_carboniferous_compression",
"extraction_difficulty": "medium",
"budget_impact": 2,
"resource_yield": "medium",
"quality": "medium"
}
}
}