## 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>
103 lines
3.8 KiB
JSON
103 lines
3.8 KiB
JSON
{
|
|
"stone_resources": {
|
|
"stone_quarry": {
|
|
"display_name": "Stone Quarry",
|
|
"description": "Generic rock outcrop suitable for basic construction materials",
|
|
"formation_type": "surface_rock_exposure",
|
|
"extraction_difficulty": "medium",
|
|
"budget_impact": 2,
|
|
"resource_yield": "very_high",
|
|
"quality": "standard"
|
|
},
|
|
"granite_quarry": {
|
|
"display_name": "Granite Quarry",
|
|
"description": "High-quality igneous rock perfect for construction and monuments",
|
|
"formation_type": "plutonic_igneous_intrusion",
|
|
"extraction_difficulty": "hard",
|
|
"budget_impact": 4,
|
|
"resource_yield": "very_high",
|
|
"quality": "premium"
|
|
},
|
|
"limestone_quarry": {
|
|
"display_name": "Limestone Quarry",
|
|
"description": "Sedimentary rock ideal for cement production and building materials",
|
|
"formation_type": "marine_carbonate_precipitation",
|
|
"extraction_difficulty": "medium",
|
|
"budget_impact": 3,
|
|
"resource_yield": "very_high",
|
|
"quality": "standard"
|
|
},
|
|
"sandstone_quarry": {
|
|
"display_name": "Sandstone Quarry",
|
|
"description": "Layered sedimentary rock suitable for construction blocks and aggregate",
|
|
"formation_type": "clastic_sedimentary_formation",
|
|
"extraction_difficulty": "easy",
|
|
"budget_impact": 2,
|
|
"resource_yield": "very_high",
|
|
"quality": "standard"
|
|
},
|
|
"marble_deposit": {
|
|
"display_name": "Marble Deposit",
|
|
"description": "Metamorphic limestone with excellent carving properties and durability",
|
|
"formation_type": "limestone_metamorphism",
|
|
"extraction_difficulty": "hard",
|
|
"budget_impact": 4,
|
|
"resource_yield": "high",
|
|
"quality": "premium"
|
|
},
|
|
"clay_pit": {
|
|
"display_name": "Clay Pit",
|
|
"description": "Fine sedimentary material essential for ceramics and construction",
|
|
"formation_type": "weathering_accumulation",
|
|
"extraction_difficulty": "very_easy",
|
|
"budget_impact": 1,
|
|
"resource_yield": "very_high",
|
|
"quality": "standard"
|
|
},
|
|
"sand_deposit": {
|
|
"display_name": "Sand Deposit",
|
|
"description": "Fine granular material perfect for concrete and glass production",
|
|
"formation_type": "weathering_erosion_accumulation",
|
|
"extraction_difficulty": "very_easy",
|
|
"budget_impact": 1,
|
|
"resource_yield": "very_high",
|
|
"quality": "standard"
|
|
},
|
|
"gravel_pit": {
|
|
"display_name": "Gravel Pit",
|
|
"description": "Mixed rock fragments perfect for concrete aggregate and road base",
|
|
"formation_type": "fluvial_glacial_accumulation",
|
|
"extraction_difficulty": "very_easy",
|
|
"budget_impact": 1,
|
|
"resource_yield": "very_high",
|
|
"quality": "standard"
|
|
},
|
|
"slate_deposit": {
|
|
"display_name": "Slate Deposit",
|
|
"description": "Fine-grained metamorphic rock perfect for roofing and flooring",
|
|
"formation_type": "shale_metamorphism",
|
|
"extraction_difficulty": "medium",
|
|
"budget_impact": 3,
|
|
"resource_yield": "high",
|
|
"quality": "premium"
|
|
},
|
|
"quartzite_deposit": {
|
|
"display_name": "Quartzite Deposit",
|
|
"description": "Hard metamorphic quartz rock with excellent abrasive properties",
|
|
"formation_type": "sandstone_metamorphism",
|
|
"extraction_difficulty": "hard",
|
|
"budget_impact": 3,
|
|
"resource_yield": "high",
|
|
"quality": "premium"
|
|
},
|
|
"gneiss_outcrop": {
|
|
"display_name": "Gneiss Outcrop",
|
|
"description": "Banded metamorphic rock suitable for decorative construction",
|
|
"formation_type": "high_grade_metamorphism",
|
|
"extraction_difficulty": "hard",
|
|
"budget_impact": 3,
|
|
"resource_yield": "high",
|
|
"quality": "standard"
|
|
}
|
|
}
|
|
} |