warfactoryracine/gameData/MapFeatures/volcanic_features.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

40 lines
1.4 KiB
JSON

{
"volcanic_features": {
"volcano": {
"display_name": "Volcano",
"description": "Active or dormant volcanic cone with potential geothermal energy",
"formation_type": "volcanic_activity",
"budget_impact": 3
},
"lava_field": {
"display_name": "Lava Field",
"description": "Solidified lava flows creating rough terrain with mineral deposits",
"formation_type": "volcanic_flow",
"budget_impact": 1
},
"volcanic_vent": {
"display_name": "Volcanic Vent",
"description": "Secondary volcanic opening with gas emissions and sulfur deposits",
"formation_type": "volcanic_secondary",
"budget_impact": 2
},
"caldera": {
"display_name": "Caldera",
"description": "Large volcanic depression with fertile soils and geothermal activity",
"formation_type": "volcanic_collapse",
"budget_impact": 4
},
"fumarole": {
"display_name": "Fumarole",
"description": "Volcanic gas vent with sulfur deposits and geothermal potential",
"formation_type": "volcanic_gas",
"budget_impact": 1
},
"obsidian_field": {
"display_name": "Obsidian Field",
"description": "Natural volcanic glass deposits valuable for precision tools",
"formation_type": "volcanic_glass",
"budget_impact": 2
}
}
}