warfactoryracine/gameData/Regions/stone_regions.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

92 lines
3.3 KiB
JSON

{
"stone_region_system": {
"resource_type": "construction_materials",
"description": "Construction stone regions with biome-compatible feature selection",
"features": {
"granite_quarry": {
"display_name": "Granite Quarry",
"compatible_biomes": ["hills", "rocky_plateau", "alpine"],
"incompatible_biomes": ["wetlands", "coastal_plain"],
"pattern": "concentrated",
"probability": 0.20,
"quality_base": "premium",
"extraction_difficulty": "hard",
"budget_impact": 4,
"geological_requirements": ["plutonic_igneous_intrusion"]
},
"limestone_quarry": {
"display_name": "Limestone Quarry",
"compatible_biomes": ["hills", "grassland", "temperate_forest"],
"incompatible_biomes": ["alpine", "hot_desert"],
"pattern": "uniform",
"probability": 0.25,
"quality_base": "standard",
"extraction_difficulty": "medium",
"budget_impact": 3,
"geological_requirements": ["marine_carbonate_precipitation"]
},
"sandstone_quarry": {
"display_name": "Sandstone Quarry",
"compatible_biomes": ["grassland", "scrubland", "temperate_forest"],
"incompatible_biomes": ["alpine", "wetlands"],
"pattern": "uniform",
"probability": 0.20,
"quality_base": "standard",
"extraction_difficulty": "easy",
"budget_impact": 2,
"geological_requirements": ["clastic_sedimentary_formation"]
},
"marble_deposit": {
"display_name": "Marble Deposit",
"compatible_biomes": ["hills", "rocky_plateau"],
"incompatible_biomes": ["wetlands", "coastal_plain", "hot_desert"],
"pattern": "concentrated",
"probability": 0.10,
"quality_base": "premium",
"extraction_difficulty": "hard",
"budget_impact": 4,
"geological_requirements": ["limestone_metamorphism"]
},
"clay_pit": {
"display_name": "Clay Pit",
"compatible_biomes": ["temperate_forest", "grassland", "coastal_plain"],
"incompatible_biomes": ["alpine", "rocky_plateau", "hot_desert"],
"pattern": "uniform",
"probability": 0.15,
"quality_base": "standard",
"extraction_difficulty": "very_easy",
"budget_impact": 1,
"geological_requirements": ["weathering_accumulation"]
},
"sand_deposit": {
"display_name": "Sand Deposit",
"compatible_biomes": ["coastal_plain", "grassland", "scrubland"],
"incompatible_biomes": ["alpine", "rocky_plateau"],
"pattern": "uniform",
"probability": 0.08,
"quality_base": "standard",
"extraction_difficulty": "very_easy",
"budget_impact": 1,
"geological_requirements": ["weathering_erosion_accumulation"]
},
"gravel_pit": {
"display_name": "Gravel Pit",
"compatible_biomes": ["temperate_forest", "grassland", "hills"],
"incompatible_biomes": ["hot_desert", "wetlands"],
"pattern": "clustered",
"probability": 0.02,
"quality_base": "standard",
"extraction_difficulty": "very_easy",
"budget_impact": 1,
"geological_requirements": ["fluvial_glacial_accumulation"]
}
}
}
}