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

89 lines
3.6 KiB
JSON

{
"copper_region_system": {
"resource_type": "copper_ore",
"description": "Copper feature selection based on region mass and biome compatibility",
"features": {
"porphyry_copper": {
"display_name": "Porphyry Copper",
"incompatible_biomes": ["wetlands", "coastal_plain"],
"frequent_biomes": ["hills", "rocky_plateau", "alpine"],
"minimum_region_mass": 200,
"quality_base": "premium",
"extraction_difficulty": "hard",
"budget_impact": 5,
"description": "Large-scale copper system requiring massive geological activity"
},
"copper_vein": {
"display_name": "Copper Vein",
"incompatible_biomes": ["wetlands"],
"frequent_biomes": ["hills", "rocky_plateau", "alpine"],
"minimum_region_mass": 75,
"quality_base": "premium",
"extraction_difficulty": "medium",
"budget_impact": 4,
"description": "High-grade copper veins in medium-strength regions"
},
"chalcopyrite_deposit": {
"display_name": "Chalcopyrite Deposit",
"incompatible_biomes": ["wetlands", "tropical_rainforest"],
"frequent_biomes": ["hills", "temperate_forest", "grassland", "scrubland"],
"minimum_region_mass": 50,
"quality_base": "standard",
"extraction_difficulty": "medium",
"budget_impact": 3,
"description": "Standard copper sulfide in moderate regions"
},
"malachite_outcrop": {
"display_name": "Malachite Outcrop",
"incompatible_biomes": ["wetlands", "tropical_rainforest"],
"frequent_biomes": ["hills", "scrubland", "grassland"],
"minimum_region_mass": 30,
"quality_base": "standard",
"extraction_difficulty": "easy",
"budget_impact": 2,
"description": "Surface copper ore in small to medium regions"
},
"native_copper": {
"display_name": "Native Copper",
"incompatible_biomes": ["wetlands", "tropical_rainforest", "hot_desert"],
"frequent_biomes": ["rocky_plateau", "hills", "alpine"],
"minimum_region_mass": 100,
"quality_base": "premium",
"extraction_difficulty": "easy",
"budget_impact": 3,
"description": "Pure copper requiring specific geological conditions"
},
"copper_shale": {
"display_name": "Copper Shale",
"incompatible_biomes": ["wetlands", "alpine", "rocky_plateau"],
"frequent_biomes": ["grassland", "temperate_forest", "scrubland"],
"minimum_region_mass": 150,
"quality_base": "low",
"extraction_difficulty": "very_hard",
"budget_impact": 2,
"description": "Low-grade copper in large sedimentary regions"
}
},
"selection_logic": {
"step_1": "Check region mass against minimum_region_mass",
"step_2": "Filter out features with incompatible biomes",
"step_3": "Prioritize features with frequent biomes for this location",
"step_4": "Select from available features",
"fallback": "If no features available, place generic copper_ore"
},
"mass_categories": {
"small_region": {"mass_range": [30, 75], "typical_features": ["malachite_outcrop", "chalcopyrite_deposit"]},
"medium_region": {"mass_range": [75, 150], "typical_features": ["copper_vein", "chalcopyrite_deposit"]},
"large_region": {"mass_range": [150, 300], "typical_features": ["porphyry_copper", "copper_shale", "native_copper"]},
"huge_region": {"mass_range": [300, 1000], "typical_features": ["porphyry_copper", "copper_shale"]}
}
}
}