mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-08 23:08:35 +07:00
Add missing Natural Wonders (#5204)
* Add files via upload * Add files via upload * Add files via upload * Update Terrains.json * Update Constants.kt * Update Constants.kt * Update NaturalWonderGenerator.kt * Update Constants.kt * Update NaturalWonderGenerator.kt * Natural Wonders generation fixes.
This commit is contained in:
@ -305,18 +305,85 @@
|
||||
"impassable": true,
|
||||
"unbuildable": true,
|
||||
"weight": 10
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Mount Kailash",
|
||||
"type": "NaturalWonder",
|
||||
"faith": 6,
|
||||
"happiness": 2,
|
||||
"occursOn": ["Plains","Grassland"],
|
||||
"turnsInto": "Mountain",
|
||||
"impassable": true,
|
||||
"unbuildable": true,
|
||||
"weight": 10
|
||||
},
|
||||
{
|
||||
"name": "Mount Sinai",
|
||||
"type": "NaturalWonder",
|
||||
"faith": 8,
|
||||
"occursOn": ["Desert","Plains"],
|
||||
"turnsInto": "Mountain",
|
||||
"impassable": true,
|
||||
"unbuildable": true,
|
||||
"weight": 10
|
||||
},
|
||||
{
|
||||
"name": "Sri Pada",
|
||||
"type": "NaturalWonder",
|
||||
"food": 2,
|
||||
"faith": 4,
|
||||
"happiness": 2,
|
||||
"occursOn": ["Plains","Grassland"],
|
||||
"turnsInto": "Mountain",
|
||||
"impassable": true,
|
||||
"unbuildable": true,
|
||||
"weight": 10
|
||||
},
|
||||
{
|
||||
"name": "Uluru",
|
||||
"type": "NaturalWonder",
|
||||
"food": 2,
|
||||
"faith": 6,
|
||||
"occursOn": ["Plains","Desert"],
|
||||
"turnsInto": "Mountain",
|
||||
"impassable": true,
|
||||
"unbuildable": true,
|
||||
"weight": 10
|
||||
}
|
||||
/*
|
||||
// BNW wonders
|
||||
{
|
||||
"name": "King Solomon's Mines",
|
||||
"type": "NaturalWonder",
|
||||
"production": 6,
|
||||
"occursOn": ["Plains","Desert"],
|
||||
"turnsInto": "Plains",
|
||||
"impassable": true,
|
||||
"unbuildable": true,
|
||||
"weight": 4
|
||||
},
|
||||
{// Will be introduced in Brave New World. Despite being a lake, it cannot be sailed on and it blocks line of sight like a mountain.
|
||||
"name": "Lake Victoria",
|
||||
"type": "NaturalWonder",
|
||||
"food": 6,
|
||||
"occursOn": [Plains"],
|
||||
"occursOn": ["Plains"],
|
||||
"turnsInto": "Mountain",
|
||||
"impassable": true,
|
||||
"unbuildable": true,
|
||||
"uniques": ["Fresh water"],
|
||||
"weight": 5
|
||||
"weight": 10
|
||||
},
|
||||
{
|
||||
"name": "Mount Kilimanjaro",
|
||||
"type": "NaturalWonder",
|
||||
"food": 3,
|
||||
"culture": 2,
|
||||
"occursOn": ["Plains","Grassland"],
|
||||
"turnsInto": "Mountain",
|
||||
"impassable": true,
|
||||
"unbuildable": true,
|
||||
"uniques": ["Grants Altitude Training (double movement and +10% Strength in hills) to adjacent land units for the rest of the game"], //ToDo
|
||||
"weight": 10
|
||||
}
|
||||
*/
|
||||
]
|
||||
|
Reference in New Issue
Block a user