mirror of
https://github.com/yairm210/Unciv.git
synced 2025-02-25 22:18:50 +07:00
Making game data a little more JSON compliant (#3780)
This commit is contained in:
parent
61730ca93b
commit
b6fe55778a
@ -25,7 +25,7 @@
|
||||
"hurryCostModifier": 25,
|
||||
"uniques": ["[+1 Food] from [Deer] tiles in this city",
|
||||
"[+1 Food] from [Bananas] tiles in this city",
|
||||
"[+1 Food] from [Wheat] tiles in this city"]
|
||||
"[+1 Food] from [Wheat] tiles in this city"],
|
||||
"requiredTech": "Pottery"
|
||||
},
|
||||
{
|
||||
@ -215,7 +215,7 @@
|
||||
"uniques": ["+[15]% Production when constructing [Mounted] units [in this city]",
|
||||
"[+1 Production] from [Cattle] tiles in this city",
|
||||
"[+1 Production] from [Horses] tiles in this city",
|
||||
"[+1 Production] from [Sheep] tiles in this city"]
|
||||
"[+1 Production] from [Sheep] tiles in this city"],
|
||||
"requiredTech": "Horseback Riding"
|
||||
},
|
||||
{
|
||||
@ -341,7 +341,7 @@
|
||||
{
|
||||
"name": "Mint",
|
||||
"maintenance": 0,
|
||||
"requiredNearbyImprovedResources": ["Gold Ore", "Silver"]
|
||||
"requiredNearbyImprovedResources": ["Gold Ore", "Silver"],
|
||||
"hurryCostModifier": 25,
|
||||
"uniques": ["[+2 Gold] from [Gold Ore] tiles in this city", "[+2 Gold] from [Silver] tiles in this city"],
|
||||
"requiredTech": "Currency"
|
||||
@ -714,7 +714,7 @@
|
||||
"maintenance": 3,
|
||||
"requiredBuilding": "Harbor",
|
||||
"uniques": ["[+1 Production, +1 Gold] from [Water resource] tiles in this city",
|
||||
"Must be next to [Coast]", "+[15]% Production when constructing [Water] units [in this city]"]
|
||||
"Must be next to [Coast]", "+[15]% Production when constructing [Water] units [in this city]"],
|
||||
"requiredTech": "Navigation"
|
||||
},
|
||||
{
|
||||
|
@ -218,7 +218,7 @@
|
||||
"cities": ["Rome","Antium","Cumae","Neapolis","Ravenna","Arretium","Mediolanum","Arpinum","Circei","Setia",
|
||||
"Satricum","Ardea","Ostia","Velitrae","Viroconium","Tarentum","Brundisium","Caesaraugusta","Caesarea","Palmyra",
|
||||
"Signia","Aquileia","Clusium","Sutrium","Cremona","Placentia","Hispalis","Artaxata","Aurelianorum","Nicopolis",
|
||||
"Agrippina","Verona","Corfinium","Treverii","Sirmium","Augustadorum","Curia","Interrama","Adria",]
|
||||
"Agrippina","Verona","Corfinium","Treverii","Sirmium","Augustadorum","Curia","Interrama","Adria"]
|
||||
},
|
||||
{
|
||||
"name": "Arabia",
|
||||
@ -1049,9 +1049,8 @@
|
||||
{
|
||||
"name": "Barbarians",
|
||||
"outerColor": [0,0,0],
|
||||
"innerColor": [182,0,0]
|
||||
"uniques": ["Can only heal by pillaging"],
|
||||
|
||||
"innerColor": [182,0,0],
|
||||
"uniques": ["Can only heal by pillaging"]
|
||||
}
|
||||
|
||||
]
|
||||
|
@ -2,25 +2,25 @@
|
||||
{
|
||||
"name":"Scientist",
|
||||
"science":3,
|
||||
"greatPersonPoints": {"science":3}
|
||||
"greatPersonPoints": {"science":3},
|
||||
"color": [0,0,255]
|
||||
},
|
||||
{
|
||||
"name":"Merchant",
|
||||
"gold":3,
|
||||
"greatPersonPoints": {"gold":3}
|
||||
"greatPersonPoints": {"gold":3},
|
||||
"color": [255,215,0]
|
||||
},
|
||||
{
|
||||
"name":"Artist",
|
||||
"culture":2,
|
||||
"greatPersonPoints": {"culture":3}
|
||||
"greatPersonPoints": {"culture":3},
|
||||
"color": [160,32,240]
|
||||
},
|
||||
{
|
||||
"name":"Engineer",
|
||||
"production":2,
|
||||
"greatPersonPoints": {"production":3}
|
||||
"greatPersonPoints": {"production":3},
|
||||
"color": [139,69,19]
|
||||
}
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user