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

{
"anomalies": {
"magnetic_anomaly": {
"display_name": "Magnetic Anomaly",
"description": "Area with unusual magnetic properties affecting instruments and containing rare metals",
"formation_type": "magnetic_field",
"budget_impact": 2
},
"radio_silence_zone": {
"display_name": "Radio Silence Zone",
"description": "Mysterious area where radio communications are disrupted",
"formation_type": "electromagnetic",
"budget_impact": -1
},
"meteorite_impact": {
"display_name": "Meteorite Impact",
"description": "Site of ancient meteorite strike with rare metals and unique minerals",
"formation_type": "extraterrestrial",
"budget_impact": 5
},
"crystalline_formation": {
"display_name": "Crystalline Formation",
"description": "Natural crystal deposits with technological and commercial value",
"formation_type": "mineral_crystal",
"budget_impact": 2
},
"thermal_vent": {
"display_name": "Thermal Vent",
"description": "Underground heat source with geothermal energy potential",
"formation_type": "geothermal",
"budget_impact": 2
},
"unstable_ground": {
"display_name": "Unstable Ground",
"description": "Geologically unstable area prone to landslides and collapse",
"formation_type": "geological_instability",
"budget_impact": -3
}
}
}