mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-04 23:40:01 +07:00
Added roads
Removed libGdx images
This commit is contained in:
@ -67,5 +67,15 @@
|
|||||||
"TechRequired":"Masonry",
|
"TechRequired":"Masonry",
|
||||||
"ImprovingTech":"Chemistry",
|
"ImprovingTech":"Chemistry",
|
||||||
"ImprovingTechStats":{"Production":1}
|
"ImprovingTechStats":{"Production":1}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name":"Road",
|
||||||
|
"TurnsToBuild":6,
|
||||||
|
"TechRequired":"The Wheel"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name":"Railroad",
|
||||||
|
"TurnsToBuild":12,
|
||||||
|
"TechRequired":"Railroad"
|
||||||
}
|
}
|
||||||
]
|
]
|
Binary file not shown.
Before Width: | Height: | Size: 16 KiB |
Binary file not shown.
Before Width: | Height: | Size: 16 KiB |
Binary file not shown.
Before Width: | Height: | Size: 18 KiB |
Binary file not shown.
Before Width: | Height: | Size: 18 KiB |
Binary file not shown.
Before Width: | Height: | Size: 19 KiB |
@ -123,6 +123,8 @@ public class TileInfo
|
|||||||
if(turnsToImprovement == 0)
|
if(turnsToImprovement == 0)
|
||||||
{
|
{
|
||||||
if (improvementInProgress.startsWith("Remove")) terrainFeature = null;
|
if (improvementInProgress.startsWith("Remove")) terrainFeature = null;
|
||||||
|
else if(improvement.equals("Road")) roadStatus = RoadStatus.Road;
|
||||||
|
else if(improvement.equals("Railroad")) roadStatus = RoadStatus.Railroad;
|
||||||
else improvement = improvementInProgress;
|
else improvement = improvementInProgress;
|
||||||
|
|
||||||
improvementInProgress = null;
|
improvementInProgress = null;
|
||||||
|
Reference in New Issue
Block a user