## 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>
101 lines
4.1 KiB
JSON
101 lines
4.1 KiB
JSON
{
|
|
"iron_region_system": {
|
|
"resource_type": "iron_ore",
|
|
"description": "Iron feature selection based on region mass and biome compatibility",
|
|
|
|
"features": {
|
|
"rich_iron_ore": {
|
|
"display_name": "Rich Iron Ore",
|
|
"incompatible_biomes": ["tropical_rainforest", "wetlands"],
|
|
"frequent_biomes": ["hills", "rocky_plateau", "alpine"],
|
|
"minimum_region_mass": 150,
|
|
"quality_base": "premium",
|
|
"extraction_difficulty": "medium",
|
|
"budget_impact": 4,
|
|
"description": "High-grade iron ore requiring strong geological activity"
|
|
},
|
|
|
|
"iron_ore_vein": {
|
|
"display_name": "Iron Ore Vein",
|
|
"incompatible_biomes": ["tropical_rainforest", "wetlands"],
|
|
"frequent_biomes": ["hills", "rocky_plateau", "alpine", "temperate_forest"],
|
|
"minimum_region_mass": 75,
|
|
"quality_base": "standard",
|
|
"extraction_difficulty": "medium",
|
|
"budget_impact": 3,
|
|
"description": "Standard iron ore in medium-strength regions"
|
|
},
|
|
|
|
"magnetite_deposit": {
|
|
"display_name": "Magnetite Deposit",
|
|
"incompatible_biomes": ["wetlands", "hot_desert"],
|
|
"frequent_biomes": ["hills", "rocky_plateau", "alpine"],
|
|
"minimum_region_mass": 50,
|
|
"quality_base": "premium",
|
|
"extraction_difficulty": "easy",
|
|
"budget_impact": 3,
|
|
"description": "Magnetic iron ore accessible in moderate regions"
|
|
},
|
|
|
|
"hematite_outcrop": {
|
|
"display_name": "Hematite Outcrop",
|
|
"incompatible_biomes": ["tropical_rainforest", "wetlands"],
|
|
"frequent_biomes": ["hills", "rocky_plateau", "grassland", "scrubland"],
|
|
"minimum_region_mass": 25,
|
|
"quality_base": "standard",
|
|
"extraction_difficulty": "easy",
|
|
"budget_impact": 2,
|
|
"description": "Surface iron ore available in small regions"
|
|
},
|
|
|
|
"laterite_iron": {
|
|
"display_name": "Laterite Iron",
|
|
"incompatible_biomes": ["alpine", "cold_desert", "tundra", "hot_desert"],
|
|
"frequent_biomes": ["tropical_rainforest"],
|
|
"minimum_region_mass": 30,
|
|
"quality_base": "medium",
|
|
"extraction_difficulty": "hard",
|
|
"budget_impact": 2,
|
|
"description": "Tropical weathering iron, specialized formation"
|
|
},
|
|
|
|
"bog_iron": {
|
|
"display_name": "Bog Iron",
|
|
"incompatible_biomes": ["hot_desert", "cold_desert", "alpine", "rocky_plateau"],
|
|
"frequent_biomes": ["wetlands"],
|
|
"minimum_region_mass": 10,
|
|
"quality_base": "low",
|
|
"extraction_difficulty": "very_easy",
|
|
"budget_impact": 1,
|
|
"description": "Low-grade iron in wetland environments"
|
|
},
|
|
|
|
"taconite": {
|
|
"display_name": "Taconite",
|
|
"incompatible_biomes": ["tropical_rainforest", "wetlands", "hot_desert"],
|
|
"frequent_biomes": ["hills", "rocky_plateau", "grassland"],
|
|
"minimum_region_mass": 200,
|
|
"quality_base": "low",
|
|
"extraction_difficulty": "hard",
|
|
"budget_impact": 2,
|
|
"description": "Low-grade iron requiring very large, stable 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 iron_ore"
|
|
},
|
|
|
|
"mass_categories": {
|
|
"tiny_region": {"mass_range": [10, 30], "typical_features": ["bog_iron", "laterite_iron"]},
|
|
"small_region": {"mass_range": [30, 75], "typical_features": ["hematite_outcrop", "magnetite_deposit"]},
|
|
"medium_region": {"mass_range": [75, 150], "typical_features": ["iron_ore_vein", "magnetite_deposit"]},
|
|
"large_region": {"mass_range": [150, 300], "typical_features": ["rich_iron_ore", "iron_ore_vein"]},
|
|
"huge_region": {"mass_range": [300, 1000], "typical_features": ["rich_iron_ore", "taconite"]}
|
|
}
|
|
}
|
|
} |