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

76 lines
2.8 KiB
JSON

{
"rare_metal_resources": {
"tungsten_vein": {
"display_name": "Tungsten Vein",
"description": "High-grade tungsten ore in quartz veins with scheelite and wolframite",
"formation_type": "hydrothermal_tungsten_precipitation",
"extraction_difficulty": "very_hard",
"budget_impact": 6,
"resource_yield": "medium",
"quality": "premium"
},
"molybdenum_porphyry": {
"display_name": "Molybdenum Porphyry",
"description": "Molybdenum sulfide in large porphyry copper systems",
"formation_type": "porphyry_molybdenum_system",
"extraction_difficulty": "very_hard",
"budget_impact": 5,
"resource_yield": "medium",
"quality": "premium"
},
"chromite_deposit": {
"display_name": "Chromite Deposit",
"description": "Chromium-iron oxide ore in layered mafic intrusions",
"formation_type": "layered_mafic_intrusion",
"extraction_difficulty": "hard",
"budget_impact": 4,
"resource_yield": "high",
"quality": "standard"
},
"antimony_vein": {
"display_name": "Antimony Vein",
"description": "Stibnite ore in hydrothermal veins with mercury associations",
"formation_type": "epithermal_antimony_vein",
"extraction_difficulty": "medium",
"budget_impact": 3,
"resource_yield": "medium",
"quality": "standard"
},
"cobalt_arsenide": {
"display_name": "Cobalt Arsenide",
"description": "Cobalt-arsenic minerals in hydrothermal deposits with silver traces",
"formation_type": "hydrothermal_cobalt_precipitation",
"extraction_difficulty": "hard",
"budget_impact": 4,
"resource_yield": "low",
"quality": "premium"
},
"iridium_placer": {
"display_name": "Iridium Placer",
"description": "Ultra-rare platinum group metal in alluvial concentrations",
"formation_type": "alluvial_pge_concentration",
"extraction_difficulty": "very_hard",
"budget_impact": 7,
"resource_yield": "very_low",
"quality": "premium"
},
"lithium_pegmatite": {
"display_name": "Lithium Pegmatite",
"description": "Spodumene-bearing granite pegmatite with lithium silicate minerals",
"formation_type": "granitic_pegmatite",
"extraction_difficulty": "hard",
"budget_impact": 4,
"resource_yield": "medium",
"quality": "premium"
},
"lithium_brine": {
"display_name": "Lithium Brine",
"description": "Salt lake brines with concentrated lithium chloride solutions",
"formation_type": "evaporite_lithium_concentration",
"extraction_difficulty": "medium",
"budget_impact": 3,
"resource_yield": "high",
"quality": "standard"
}
}
}