Index: ps/trunk/binaries/data/mods/public/maps/random/caledonian_meadows.js =================================================================== --- ps/trunk/binaries/data/mods/public/maps/random/caledonian_meadows.js +++ ps/trunk/binaries/data/mods/public/maps/random/caledonian_meadows.js @@ -39,9 +39,9 @@ // Food, fences with domestic animals g_WallStyles.other = { "overlap": 0, - "fence": readyWallElement("other/fence_long", "gaia"), - "fence_short": readyWallElement("other/fence_short", "gaia"), - "bench": { "angle": Math.PI / 2, "length": 1.5, "indent": 0, "bend": 0, "templateName": "other/bench" }, + "fence": readyWallElement("structures/fence_long", "gaia"), + "fence_short": readyWallElement("structures/fence_short", "gaia"), + "bench": { "angle": Math.PI / 2, "length": 1.5, "indent": 0, "bend": 0, "templateName": "structures/bench" }, "sheep": { "angle": 0, "length": 0, "indent": 0.75, "bend": 0, "templateName": "gaia/fauna_sheep" }, "foodBin": { "angle": Math.PI / 2, "length": 1.5, "indent": 0, "bend": 0, "templateName": "gaia/treasure/food_bin" }, "farmstead": { "angle": Math.PI, "length": 0, "indent": -3, "bend": 0, "templateName": "structures/brit_farmstead" } Index: ps/trunk/binaries/data/mods/public/maps/random/danubius.js =================================================================== --- ps/trunk/binaries/data/mods/public/maps/random/danubius.js +++ ps/trunk/binaries/data/mods/public/maps/random/danubius.js @@ -65,8 +65,8 @@ const oTemple = "uncapturable|structures/gaul_temple"; const oTavern = "uncapturable|structures/gaul_tavern"; const oHouse = "uncapturable|structures/gaul_house"; -const oLongHouse = "uncapturable|other/celt_longhouse"; -const oHut = "uncapturable|other/celt_hut"; +const oLongHouse = "uncapturable|structures/celt_longhouse"; +const oHut = "uncapturable|structures/celt_hut"; const oSentryTower = "uncapturable|structures/gaul_sentry_tower"; const oWatchTower = "uncapturable|structures/palisades_watchtower"; Index: ps/trunk/binaries/data/mods/public/maps/random/hellas_biomes.json =================================================================== --- ps/trunk/binaries/data/mods/public/maps/random/hellas_biomes.json +++ ps/trunk/binaries/data/mods/public/maps/random/hellas_biomes.json @@ -97,7 +97,7 @@ }, "athen": { "columns": "gaia/ruins/column_doric", - "stoa": "other/hellenic_stoa" + "stoa": "structures/hellenic_stoa" } }, "actors": Index: ps/trunk/binaries/data/mods/public/maps/random/island_stronghold.js =================================================================== --- ps/trunk/binaries/data/mods/public/maps/random/island_stronghold.js +++ ps/trunk/binaries/data/mods/public/maps/random/island_stronghold.js @@ -35,7 +35,7 @@ const oWhale = "gaia/fauna_whale_humpback"; const oShipwreck = "gaia/treasure/shipwreck"; const oShipDebris = "gaia/treasure/shipwreck_debris"; -const oObelisk = "other/obelisk"; +const oObelisk = "structures/obelisk"; const aGrass = g_Decoratives.grass; const aGrassShort = g_Decoratives.grassShort; Index: ps/trunk/binaries/data/mods/public/maps/random/rmgen-common/wall_builder.js =================================================================== --- ps/trunk/binaries/data/mods/public/maps/random/rmgen-common/wall_builder.js +++ ps/trunk/binaries/data/mods/public/maps/random/rmgen-common/wall_builder.js @@ -24,7 +24,7 @@ for (let path of civInfo.WallSets) { // File naming conventions: - // - other/wallset_{style} + // - structures/wallset_{style} // - structures/{civ}_wallset_{style} let style = basename(path).split("_"); style = style[0] == "wallset" ? style[1] : style[0] + "_" + style[2]; Index: ps/trunk/binaries/data/mods/public/maps/random/the_nile.js =================================================================== --- ps/trunk/binaries/data/mods/public/maps/random/the_nile.js +++ ps/trunk/binaries/data/mods/public/maps/random/the_nile.js @@ -25,7 +25,7 @@ var oMetalLarge = "gaia/ore/desert_large"; var oDatePalm = "gaia/tree/date_palm"; var oSDatePalm = "gaia/tree/cretan_date_palm_short"; -var eObelisk = "other/obelisk"; +var eObelisk = "structures/obelisk"; var ePyramid = "gaia/ruins/pyramid_minor"; var oWoodTreasure = "gaia/treasure/wood"; var oFoodTreasure = "gaia/treasure/food_bin"; Index: ps/trunk/binaries/data/mods/public/maps/random/wall_demo.js =================================================================== --- ps/trunk/binaries/data/mods/public/maps/random/wall_demo.js +++ ps/trunk/binaries/data/mods/public/maps/random/wall_demo.js @@ -107,7 +107,7 @@ new Vector2D(styleIndex * buildableMapSize / wallStyleList.length, 0) ]); - g_Map.placeEntityPassable("other/obelisk", playerID, pos, orientation); + g_Map.placeEntityPassable("structures/obelisk", playerID, pos, orientation); placeFortress(pos, type, style, playerID, orientation); } @@ -135,7 +135,7 @@ new Vector2D(styleIndex * buildableMapSize / wallStyleList.length, 0) ]); - g_Map.placeEntityPassable("other/obelisk", playerID, pos, 0); + g_Map.placeEntityPassable("structures/obelisk", playerID, pos, 0); placeGenericFortress(pos, radius, playerID, style); } @@ -176,7 +176,7 @@ // If less than Pi * 2, then the wall will be an arc. let maxAngle = Math.PI / 2 * (styleIndex % 3 + 2); - g_Map.placeEntityPassable("other/obelisk", playerID, center, orientation); + g_Map.placeEntityPassable("structures/obelisk", playerID, center, orientation); placeCircularWall(center, radius, wallPart, style, playerID, orientation, maxAngle); } @@ -225,7 +225,7 @@ // If true, the first side will not be drawn, leaving the wall open. let skipFirstWall = true; - g_Map.placeEntityPassable("other/obelisk", playerID, centerPosition, orientation); + g_Map.placeEntityPassable("structures/obelisk", playerID, centerPosition, orientation); placePolygonalWall(centerPosition, radius, wallParts, cornerWallElement, style, playerID, orientation, numCorners, skipFirstWall); } @@ -283,7 +283,7 @@ // If true, the first side will not be drawn, leaving the wall open. let skipFirstWall = true; - g_Map.placeEntityPassable("other/obelisk", playerID, centerPosition, orientation); + g_Map.placeEntityPassable("structures/obelisk", playerID, centerPosition, orientation); placeIrregularPolygonalWall(centerPosition, radius, cornerWallElement, style, playerID, orientation, numCorners, irregularity, skipFirstWall); } Index: ps/trunk/binaries/data/mods/public/maps/random/wild_lake.js =================================================================== --- ps/trunk/binaries/data/mods/public/maps/random/wild_lake.js +++ ps/trunk/binaries/data/mods/public/maps/random/wild_lake.js @@ -279,9 +279,9 @@ g_WallStyles.other = { "overlap": 0, - "fence": readyWallElement("other/fence_long", "gaia"), - "fence_short": readyWallElement("other/fence_short", "gaia"), - "bench": { "angle": Math.PI / 2, "length": 1.5, "indent": 0, "bend": 0, "templateName": "other/bench" }, + "fence": readyWallElement("structures/fence_long", "gaia"), + "fence_short": readyWallElement("structures/fence_short", "gaia"), + "bench": { "angle": Math.PI / 2, "length": 1.5, "indent": 0, "bend": 0, "templateName": "structures/bench" }, "foodBin": { "angle": Math.PI / 2, "length": 1.5, "indent": 0, "bend": 0, "templateName": "gaia/treasure/food_bin" }, "animal": { "angle": 0, "length": 0, "indent": 0.75, "bend": 0, "templateName": farmEntities[currentBiome()].animal }, "farmstead": { "angle": Math.PI, "length": 0, "indent": -3, "bend": 0, "templateName": farmEntities[currentBiome()].building } Index: ps/trunk/binaries/data/mods/public/maps/scenarios/arcadia.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/arcadia.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/arcadia.xml @@ -4031,103 +4031,103 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -9099,25 +9099,25 @@ - + 0 - + 0 - + 0 - + 0 @@ -12529,7 +12529,7 @@ - + 1 @@ -21439,25 +21439,25 @@ - + 0 - + 0 - + 0 - + 0 @@ -21595,7 +21595,7 @@ - + 2 @@ -21643,25 +21643,25 @@ - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/azure_coast_2p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/azure_coast_2p.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/azure_coast_2p.xml @@ -1470,13 +1470,13 @@ - + 0 - + 0 @@ -2748,13 +2748,13 @@ - + 0 - + 0 @@ -8931,7 +8931,7 @@ - + 0 @@ -13715,13 +13715,13 @@ - + 0 - + 0 @@ -28141,13 +28141,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/azure_coast_4p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/azure_coast_4p.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/azure_coast_4p.xml @@ -1490,13 +1490,13 @@ - + 0 - + 0 @@ -2768,13 +2768,13 @@ - + 0 - + 0 @@ -8951,7 +8951,7 @@ - + 0 @@ -13735,13 +13735,13 @@ - + 0 - + 0 @@ -28161,13 +28161,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/azure_coast_8p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/azure_coast_8p.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/azure_coast_8p.xml @@ -1542,13 +1542,13 @@ - + 0 - + 0 @@ -2820,13 +2820,13 @@ - + 0 - + 0 @@ -9003,7 +9003,7 @@ - + 0 @@ -13790,13 +13790,13 @@ - + 0 - + 0 @@ -28218,13 +28218,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/battle_for_the_tiber.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/battle_for_the_tiber.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/battle_for_the_tiber.xml @@ -12454,229 +12454,229 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -36635,12 +36635,12 @@ - + - + Index: ps/trunk/binaries/data/mods/public/maps/scenarios/belgian_bog_night.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/belgian_bog_night.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/belgian_bog_night.xml @@ -4793,19 +4793,19 @@ - + 0 - + 0 - + 0 @@ -4931,13 +4931,13 @@ - + 1 - + 1 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/bridge_demo.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/bridge_demo.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/bridge_demo.xml @@ -3983,103 +3983,103 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -8915,25 +8915,25 @@ - + 0 - + 0 - + 0 - + 0 @@ -21234,25 +21234,25 @@ - + 0 - + 0 - + 0 - + 0 @@ -21444,25 +21444,25 @@ - + 0 - + 0 - + 0 - + 0 @@ -22275,13 +22275,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/death_canyon_invasion_force.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/death_canyon_invasion_force.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/death_canyon_invasion_force.xml @@ -16250,13 +16250,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/fast_oasis.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/fast_oasis.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/fast_oasis.xml @@ -6521,13 +6521,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/gold_rush.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/gold_rush.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/gold_rush.xml @@ -558,25 +558,25 @@ - + 0 - + 0 - + 0 - + 0 @@ -594,13 +594,13 @@ - + 0 - + 0 @@ -4807,61 +4807,61 @@ - + 0 - + 0 - + 1 - + 1 - + 2 - + 2 - + 3 - + 3 - + 4 - + 4 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/laconia.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/laconia.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/laconia.xml @@ -5397,7 +5397,7 @@ - + 1 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/migration.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/migration.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/migration.xml @@ -4621,19 +4621,19 @@ - + 0 - + 0 - + 0 @@ -7164,19 +7164,19 @@ - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/miletus.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/miletus.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/miletus.xml @@ -93,13 +93,13 @@ ]]> - + 1 - + 1 @@ -1810,7 +1810,7 @@ - + 1 @@ -1828,13 +1828,13 @@ - + 1 - + 1 @@ -2901,61 +2901,61 @@ - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/napata_reconstruction.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/napata_reconstruction.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/napata_reconstruction.xml @@ -62,111 +62,111 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -645,98 +645,98 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -4014,147 +4014,147 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -4167,14 +4167,14 @@ - + 0 - + 0 @@ -4235,126 +4235,126 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -4379,28 +4379,28 @@ - + 0 - + 0 - + 0 - + 0 @@ -4431,336 +4431,336 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -5582,28 +5582,28 @@ - + 0 - + 0 - + 0 - + 0 @@ -5611,203 +5611,203 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -6001,63 +6001,63 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -6099,7 +6099,7 @@ - + 0 @@ -6494,7 +6494,7 @@ - + 0 @@ -6509,14 +6509,14 @@ - + 0 - + 0 @@ -6524,104 +6524,104 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -6629,56 +6629,56 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -24613,7 +24613,7 @@ - + 0 @@ -24621,84 +24621,84 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -24711,21 +24711,21 @@ - + 0 - + 0 - + 0 @@ -24750,21 +24750,21 @@ - + 0 - + 0 - + 0 @@ -24778,7 +24778,7 @@ - + 0 @@ -26165,35 +26165,35 @@ - + 0 - + 0 - + 0 - + 0 - + 0 @@ -26243,35 +26243,35 @@ - + 0 - + 0 - + 0 - + 0 - + 0 @@ -26292,7 +26292,7 @@ - + 0 @@ -26601,63 +26601,63 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -26772,42 +26772,42 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -27053,42 +27053,42 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -28523,14 +28523,14 @@ - + 0 - + 0 @@ -28544,21 +28544,21 @@ - + 0 - + 0 - + 0 @@ -28573,7 +28573,7 @@ - + 0 @@ -28589,70 +28589,70 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -28791,98 +28791,98 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -29698,231 +29698,231 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -30606,28 +30606,28 @@ - + 0 - + 0 - + 0 - + 0 @@ -35334,21 +35334,21 @@ - + 0 - + 0 - + 0 @@ -35362,21 +35362,21 @@ - + 0 - + 0 - + 0 @@ -35481,21 +35481,21 @@ - + 0 - + 0 - + 0 @@ -35509,21 +35509,21 @@ - + 0 - + 0 - + 0 @@ -35614,70 +35614,70 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -35789,70 +35789,70 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -35992,42 +35992,42 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -36742,28 +36742,28 @@ - + 0 - + 0 - + 0 - + 0 @@ -36798,7 +36798,7 @@ - + 0 @@ -36875,21 +36875,21 @@ - + 0 - + 0 - + 0 @@ -37250,7 +37250,7 @@ - + 0 @@ -37264,14 +37264,14 @@ - + 0 - + 0 @@ -39806,49 +39806,49 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -39946,70 +39946,70 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -40992,21 +40992,21 @@ - + 0 - + 0 - + 0 @@ -41062,63 +41062,63 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -43018,42 +43018,42 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -43738,98 +43738,98 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -43964,42 +43964,42 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -47755,14 +47755,14 @@ - + 0 - + 0 @@ -47940,126 +47940,126 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -48284,91 +48284,91 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -48533,63 +48533,63 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -48656,77 +48656,77 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -50296,203 +50296,203 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -52508,42 +52508,42 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -52602,42 +52602,42 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -52968,35 +52968,35 @@ - + 0 - + 0 - + 0 - + 0 - + 0 @@ -55679,42 +55679,42 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -56265,490 +56265,490 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -57342,7 +57342,7 @@ - + 0 @@ -57355,14 +57355,14 @@ - + 0 - + 0 @@ -57513,14 +57513,14 @@ - + 0 - + 0 @@ -57533,14 +57533,14 @@ - + 0 - + 0 @@ -57691,7 +57691,7 @@ - + 0 @@ -59238,7 +59238,7 @@ - + 0 @@ -59267,14 +59267,14 @@ - + 0 - + 0 @@ -59282,7 +59282,7 @@ - + 0 @@ -59463,49 +59463,49 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -59988,77 +59988,77 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -66668,70 +66668,70 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -66933,7 +66933,7 @@ - + 0 @@ -66954,21 +66954,21 @@ - + 0 - + 0 - + 0 @@ -67101,7 +67101,7 @@ - + 0 @@ -67115,7 +67115,7 @@ - + 0 @@ -67180,7 +67180,7 @@ - + 0 @@ -67209,7 +67209,7 @@ - + 0 @@ -67373,21 +67373,21 @@ - + 0 - + 0 - + 0 @@ -67395,7 +67395,7 @@ - + 0 @@ -67403,7 +67403,7 @@ - + 0 @@ -67411,7 +67411,7 @@ - + 0 @@ -67625,7 +67625,7 @@ - + 0 @@ -68740,14 +68740,14 @@ - + 0 - + 0 @@ -69882,84 +69882,84 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -70350,14 +70350,14 @@ - + 0 - + 0 @@ -70841,14 +70841,14 @@ - + 0 - + 0 @@ -70961,84 +70961,84 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -71108,7 +71108,7 @@ - + 0 @@ -71241,7 +71241,7 @@ - + 0 @@ -72544,7 +72544,7 @@ - + 0 @@ -72557,21 +72557,21 @@ - + 0 - + 0 - + 0 @@ -72722,7 +72722,7 @@ - + 0 @@ -72735,21 +72735,21 @@ - + 0 - + 0 - + 0 @@ -72900,7 +72900,7 @@ - + 0 @@ -72913,21 +72913,21 @@ - + 0 - + 0 - + 0 @@ -73078,7 +73078,7 @@ - + 0 @@ -73091,21 +73091,21 @@ - + 0 - + 0 - + 0 @@ -73256,7 +73256,7 @@ - + 0 @@ -73269,21 +73269,21 @@ - + 0 - + 0 - + 0 @@ -73434,7 +73434,7 @@ - + 0 @@ -73447,21 +73447,21 @@ - + 0 - + 0 - + 0 @@ -73612,7 +73612,7 @@ - + 0 @@ -73625,21 +73625,21 @@ - + 0 - + 0 - + 0 @@ -73790,14 +73790,14 @@ - + 0 - + 0 @@ -73822,7 +73822,7 @@ - + 0 @@ -74063,7 +74063,7 @@ - + 0 @@ -74246,21 +74246,21 @@ - + 0 - + 0 - + 0 @@ -74273,7 +74273,7 @@ - + 0 @@ -74812,35 +74812,35 @@ - + 0 - + 0 - + 0 - + 0 - + 0 @@ -75075,7 +75075,7 @@ - + 0 @@ -75204,21 +75204,21 @@ - + 0 - + 0 - + 0 @@ -75280,56 +75280,56 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -75462,42 +75462,42 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -75540,21 +75540,21 @@ - + 0 - + 0 - + 0 @@ -75669,7 +75669,7 @@ - + 0 @@ -75683,7 +75683,7 @@ - + 0 @@ -75697,7 +75697,7 @@ - + 0 @@ -76119,7 +76119,7 @@ - + 0 @@ -76173,49 +76173,49 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -76257,21 +76257,21 @@ - + 0 - + 0 - + 0 @@ -76392,49 +76392,49 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -76489,7 +76489,7 @@ - + 0 @@ -76514,7 +76514,7 @@ - + 0 @@ -76533,7 +76533,7 @@ - + 0 @@ -76547,140 +76547,140 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -76828,14 +76828,14 @@ - + 0 - + 0 @@ -76873,35 +76873,35 @@ - + 0 - + 0 - + 0 - + 0 - + 0 @@ -76980,49 +76980,49 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -77112,7 +77112,7 @@ - + 0 @@ -77131,14 +77131,14 @@ - + 0 - + 0 @@ -77205,14 +77205,14 @@ - + 0 - + 0 @@ -77501,21 +77501,21 @@ - + 0 - + 0 - + 0 @@ -77528,7 +77528,7 @@ - + 0 @@ -77573,35 +77573,35 @@ - + 0 - + 0 - + 0 - + 0 - + 0 @@ -77949,21 +77949,21 @@ - + 0 - + 0 - + 0 @@ -77989,14 +77989,14 @@ - + 0 - + 0 @@ -78017,21 +78017,21 @@ - + 0 - + 0 - + 0 @@ -78057,14 +78057,14 @@ - + 0 - + 0 @@ -78550,35 +78550,35 @@ - + 0 - + 0 - + 0 - + 0 - + 0 @@ -78825,21 +78825,21 @@ - + 0 - + 0 - + 0 @@ -78907,28 +78907,28 @@ - + 0 - + 0 - + 0 - + 0 @@ -78954,14 +78954,14 @@ - + 0 - + 0 @@ -78975,14 +78975,14 @@ - + 0 - + 0 @@ -79050,14 +79050,14 @@ - + 0 - + 0 @@ -79125,7 +79125,7 @@ - + 0 @@ -79198,14 +79198,14 @@ - + 0 - + 0 @@ -79237,14 +79237,14 @@ - + 0 - + 0 @@ -79282,14 +79282,14 @@ - + 0 - + 0 @@ -79414,7 +79414,7 @@ - + 0 @@ -79428,7 +79428,7 @@ - + 0 @@ -79531,7 +79531,7 @@ - + 0 @@ -79545,14 +79545,14 @@ - + 0 - + 0 @@ -79608,14 +79608,14 @@ - + 0 - + 0 @@ -79689,7 +79689,7 @@ - + 0 @@ -79924,35 +79924,35 @@ - + 0 - + 0 - + 0 - + 0 - + 0 @@ -80270,7 +80270,7 @@ - + 0 @@ -80283,14 +80283,14 @@ - + 0 - + 0 @@ -80330,14 +80330,14 @@ - + 0 - + 0 @@ -80357,7 +80357,7 @@ - + 0 @@ -80384,7 +80384,7 @@ - + 0 @@ -80398,49 +80398,49 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -80485,7 +80485,7 @@ - + 0 @@ -80506,7 +80506,7 @@ - + 0 @@ -80546,21 +80546,21 @@ - + 0 - + 0 - + 0 @@ -80616,14 +80616,14 @@ - + 0 - + 0 @@ -80717,7 +80717,7 @@ - + 0 @@ -80827,7 +80827,7 @@ - + 0 @@ -80869,7 +80869,7 @@ - + 0 @@ -80931,7 +80931,7 @@ - + 0 @@ -81041,7 +81041,7 @@ - + 0 @@ -81083,7 +81083,7 @@ - + 0 @@ -81139,7 +81139,7 @@ - + 0 @@ -81275,35 +81275,35 @@ - + 0 - + 0 - + 0 - + 0 - + 0 @@ -81564,7 +81564,7 @@ - + 0 @@ -81637,14 +81637,14 @@ - + 0 - + 0 @@ -81676,14 +81676,14 @@ - + 0 - + 0 @@ -81721,7 +81721,7 @@ - + 0 @@ -81741,7 +81741,7 @@ - + 0 @@ -81768,7 +81768,7 @@ - + 0 @@ -81782,49 +81782,49 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -81845,7 +81845,7 @@ - + 0 @@ -81872,7 +81872,7 @@ - + 0 @@ -81910,7 +81910,7 @@ - + 0 @@ -81967,21 +81967,21 @@ - + 0 - + 0 - + 0 @@ -82021,7 +82021,7 @@ - + 0 @@ -82049,21 +82049,21 @@ - + 0 - + 0 - + 0 @@ -82089,14 +82089,14 @@ - + 0 - + 0 @@ -82216,7 +82216,7 @@ - + 0 @@ -82236,21 +82236,21 @@ - + 0 - + 0 - + 0 @@ -82292,7 +82292,7 @@ - + 0 @@ -82358,7 +82358,7 @@ - + 0 @@ -82385,7 +82385,7 @@ - + 0 @@ -82501,21 +82501,21 @@ - + 0 - + 0 - + 0 @@ -82535,7 +82535,7 @@ - + 0 @@ -82641,7 +82641,7 @@ - + 0 @@ -82681,21 +82681,21 @@ - + 0 - + 0 - + 0 @@ -82752,7 +82752,7 @@ - + 0 @@ -82790,7 +82790,7 @@ - + 0 @@ -82817,7 +82817,7 @@ - + 0 @@ -82839,21 +82839,21 @@ - + 0 - + 0 - + 0 @@ -82880,7 +82880,7 @@ - + 0 @@ -82894,21 +82894,21 @@ - + 0 - + 0 - + 0 @@ -82928,7 +82928,7 @@ - + 0 @@ -83034,7 +83034,7 @@ - + 0 @@ -83074,21 +83074,21 @@ - + 0 - + 0 - + 0 @@ -83145,7 +83145,7 @@ - + 0 @@ -83183,7 +83183,7 @@ - + 0 @@ -83210,7 +83210,7 @@ - + 0 @@ -83231,21 +83231,21 @@ - + 0 - + 0 - + 0 @@ -83272,7 +83272,7 @@ - + 0 @@ -83314,7 +83314,7 @@ - + 0 @@ -83349,14 +83349,14 @@ - + 0 - + 0 @@ -83377,7 +83377,7 @@ - + 0 @@ -83391,7 +83391,7 @@ - + 0 @@ -83412,7 +83412,7 @@ - + 0 @@ -83426,7 +83426,7 @@ - + 0 @@ -83447,7 +83447,7 @@ - + 0 @@ -83461,7 +83461,7 @@ - + 0 @@ -83510,7 +83510,7 @@ - + 0 @@ -83552,7 +83552,7 @@ - + 0 @@ -83656,7 +83656,7 @@ - + 0 @@ -83834,7 +83834,7 @@ - + 0 @@ -83879,14 +83879,14 @@ - + 0 - + 0 @@ -83941,14 +83941,14 @@ - + 0 - + 0 @@ -83975,7 +83975,7 @@ - + 0 @@ -83996,7 +83996,7 @@ - + 0 @@ -84023,7 +84023,7 @@ - + 0 @@ -84061,7 +84061,7 @@ - + 0 @@ -84118,21 +84118,21 @@ - + 0 - + 0 - + 0 @@ -84172,7 +84172,7 @@ - + 0 @@ -85599,7 +85599,7 @@ - + 0 @@ -87631,14 +87631,14 @@ - + 0 - + 0 @@ -87665,7 +87665,7 @@ - + 0 @@ -87697,7 +87697,7 @@ - + 0 @@ -87722,14 +87722,14 @@ - + 0 - + 0 @@ -87748,7 +87748,7 @@ - + 0 @@ -87812,35 +87812,35 @@ - + 0 - + 0 - + 0 - + 0 - + 0 @@ -88080,7 +88080,7 @@ - + 0 @@ -88122,7 +88122,7 @@ - + 0 @@ -88175,7 +88175,7 @@ - + 0 @@ -88249,7 +88249,7 @@ - + 0 @@ -88329,7 +88329,7 @@ - + 0 @@ -88798,7 +88798,7 @@ - + 0 @@ -88823,14 +88823,14 @@ - + 0 - + 0 @@ -89029,7 +89029,7 @@ - + 0 @@ -89376,7 +89376,7 @@ - + 0 @@ -89417,7 +89417,7 @@ - + 0 @@ -89443,112 +89443,112 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -89693,84 +89693,84 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -90113,161 +90113,161 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -90808,21 +90808,21 @@ - + 0 - + 0 - + 0 @@ -90847,21 +90847,21 @@ - + 0 - + 0 - + 0 @@ -92448,7 +92448,7 @@ - + 0 @@ -92475,7 +92475,7 @@ - + 0 @@ -92488,21 +92488,21 @@ - + 0 - + 0 - + 0 @@ -92545,7 +92545,7 @@ - + 0 @@ -92564,7 +92564,7 @@ - + 0 @@ -92699,84 +92699,84 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -92970,28 +92970,28 @@ - + 0 - + 0 - + 0 - + 0 @@ -93022,56 +93022,56 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -93187,28 +93187,28 @@ - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/necropolis.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/necropolis.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/necropolis.xml @@ -124,7 +124,7 @@ - + 1 @@ -1048,13 +1048,13 @@ - + 1 - + 1 @@ -5476,19 +5476,19 @@ - + 3 - + 3 - + 3 @@ -12706,19 +12706,19 @@ - + 4 - + 4 - + 4 @@ -12730,19 +12730,19 @@ - + 2 - + 2 - + 2 @@ -18544,229 +18544,229 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -47058,97 +47058,97 @@ - + 1 - + 1 - + 1 - + 1 - + 2 - + 2 - + 2 - + 2 - + 3 - + 3 - + 3 - + 3 - + 4 - + 4 - + 4 - + 4 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/pathfinding_demo.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/pathfinding_demo.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/pathfinding_demo.xml @@ -420,7 +420,7 @@ - + 2 @@ -522,7 +522,7 @@ - + 2 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/peloponnese.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/peloponnese.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/peloponnese.xml @@ -31979,13 +31979,13 @@ - + 0 - + 0 @@ -32387,55 +32387,55 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/saharan_oases.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/saharan_oases.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/saharan_oases.xml @@ -2936,25 +2936,25 @@ - + 1 - + 2 - + 3 - + 4 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_athenians.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_athenians.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_athenians.xml @@ -283,7 +283,7 @@ - + 1 @@ -295,7 +295,7 @@ - + 1 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_britons.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_britons.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_britons.xml @@ -4648,13 +4648,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_carthaginians.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_carthaginians.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_carthaginians.xml @@ -5483,7 +5483,7 @@ - + 2 @@ -5501,13 +5501,13 @@ - + 0 - + 1 @@ -5519,103 +5519,103 @@ - + 0 - + 0 - + 0 - + 1 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_gauls.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_gauls.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_gauls.xml @@ -4656,13 +4656,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_kushites.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_kushites.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_kushites.xml @@ -13623,14 +13623,14 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_macedonians.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_macedonians.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_macedonians.xml @@ -4913,7 +4913,7 @@ - + 1 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_persians.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_persians.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_persians.xml @@ -6315,13 +6315,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_ptolemies.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_ptolemies.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_ptolemies.xml @@ -11024,14 +11024,14 @@ - + 1 - + 1 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_ptolemies_02.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_ptolemies_02.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_ptolemies_02.xml @@ -3807,49 +3807,49 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_spartans.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_spartans.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/sandbox_spartans.xml @@ -121,7 +121,7 @@ - + 1 @@ -133,7 +133,7 @@ - + 1 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/the_massacre_of_delphi.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/the_massacre_of_delphi.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/the_massacre_of_delphi.xml @@ -2394,13 +2394,13 @@ - + 2 - + 1 @@ -4869,217 +4869,217 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -5475,7 +5475,7 @@ - + 0 @@ -11133,193 +11133,193 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -15825,7 +15825,7 @@ - + 1 @@ -15873,175 +15873,175 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/scenarios/walls.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/scenarios/walls.xml +++ ps/trunk/binaries/data/mods/public/maps/scenarios/walls.xml @@ -6332,13 +6332,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/acropolis_bay_2p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/acropolis_bay_2p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/acropolis_bay_2p.xml @@ -9412,13 +9412,13 @@ - + 0 - + 0 @@ -9436,13 +9436,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/alpine_mountains_3p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/alpine_mountains_3p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/alpine_mountains_3p.xml @@ -1426,49 +1426,49 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -2791,28 +2791,28 @@ - + 0 - + 0 - + 0 - + 0 @@ -2820,7 +2820,7 @@ - + 0 @@ -2834,63 +2834,63 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -8245,56 +8245,56 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/belgian_bog_2p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/belgian_bog_2p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/belgian_bog_2p.xml @@ -4781,19 +4781,19 @@ - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/butana_steppe_2p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/butana_steppe_2p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/butana_steppe_2p.xml @@ -3705,14 +3705,14 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/corinthian_isthmus_4p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/corinthian_isthmus_4p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/corinthian_isthmus_4p.xml @@ -5458,14 +5458,14 @@ - + 0 - + 0 @@ -8514,14 +8514,14 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/death_canyon_2p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/death_canyon_2p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/death_canyon_2p.xml @@ -66,25 +66,25 @@ ]]> - + 1 - + 1 - + 2 - + 2 @@ -17122,13 +17122,13 @@ - + 2 - + 1 @@ -17449,13 +17449,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/deccan_plateau_2p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/deccan_plateau_2p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/deccan_plateau_2p.xml @@ -13751,7 +13751,7 @@ - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/egypt_3pv3p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/egypt_3pv3p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/egypt_3pv3p.xml @@ -19664,63 +19664,63 @@ - + 1 - + 1 - + 1 - + 1 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -19948,28 +19948,28 @@ - + 0 - + 0 - + 0 - + 0 @@ -21199,14 +21199,14 @@ - + 0 - + 0 @@ -28249,14 +28249,14 @@ - + 5 - + 5 @@ -28408,28 +28408,28 @@ - + 6 - + 6 - + 6 - + 6 @@ -28592,28 +28592,28 @@ - + 6 - + 6 - + 6 - + 6 @@ -33357,147 +33357,147 @@ - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 - + 1 @@ -34128,7 +34128,7 @@ - + 1 @@ -34417,14 +34417,14 @@ - + 1 - + 1 @@ -35221,7 +35221,7 @@ - + 1 @@ -35973,14 +35973,14 @@ - + 1 - + 1 @@ -47657,25 +47657,25 @@ - + 0 - + 0 - + 0 - + 0 @@ -51428,28 +51428,28 @@ - + 0 - + 0 - + 0 - + 0 @@ -64144,49 +64144,49 @@ - + 5 - + 5 - + 5 - + 5 - + 5 - + 5 - + 5 @@ -66946,21 +66946,21 @@ - + 6 - + 6 - + 6 @@ -67886,7 +67886,7 @@ - + 0 @@ -68737,42 +68737,42 @@ - + 5 - + 5 - + 5 - + 5 - + 5 - + 5 @@ -72254,28 +72254,28 @@ - + 0 - + 0 - + 0 - + 0 @@ -74980,35 +74980,35 @@ - + 0 - + 0 - + 0 - + 0 - + 0 @@ -75565,7 +75565,7 @@ - + 0 @@ -91135,77 +91135,77 @@ - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 @@ -91351,7 +91351,7 @@ - + 3 @@ -91365,84 +91365,84 @@ - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 - + 3 @@ -91487,7 +91487,7 @@ - + 3 @@ -91836,224 +91836,224 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -93854,35 +93854,35 @@ - + 5 - + 5 - + 5 - + 5 - + 5 @@ -93932,14 +93932,14 @@ - + 5 - + 5 @@ -94222,28 +94222,28 @@ - + 1 - + 1 - + 1 - + 1 @@ -97965,21 +97965,21 @@ - + 0 - + 0 - + 0 @@ -98280,14 +98280,14 @@ - + 0 - + 0 @@ -98871,14 +98871,14 @@ - + 1 - + 1 @@ -99498,21 +99498,21 @@ - + 5 - + 5 - + 5 @@ -100921,7 +100921,7 @@ - + 0 @@ -103260,42 +103260,42 @@ - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 @@ -104167,21 +104167,21 @@ - + 2 - + 2 - + 2 @@ -104416,133 +104416,133 @@ - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 @@ -109150,14 +109150,14 @@ - + 3 - + 3 @@ -109490,14 +109490,14 @@ - + 1 - + 1 @@ -109787,98 +109787,98 @@ - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 - + 2 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/forest_battle_4p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/forest_battle_4p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/forest_battle_4p.xml @@ -15327,14 +15327,14 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/gallic_fields_3p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/gallic_fields_3p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/gallic_fields_3p.xml @@ -4496,13 +4496,13 @@ - + 0 - + 0 @@ -21373,112 +21373,112 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/greek_acropolis_2p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/greek_acropolis_2p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/greek_acropolis_2p.xml @@ -17461,43 +17461,43 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -17515,109 +17515,109 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -18128,7 +18128,7 @@ - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/greek_acropolis_4p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/greek_acropolis_4p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/greek_acropolis_4p.xml @@ -17205,19 +17205,19 @@ - + 0 - + 0 - + 0 @@ -17235,67 +17235,67 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/greek_acropolis_night_2p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/greek_acropolis_night_2p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/greek_acropolis_night_2p.xml @@ -17461,43 +17461,43 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -17515,73 +17515,73 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -18092,7 +18092,7 @@ - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/libyan_oases_4p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/libyan_oases_4p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/libyan_oases_4p.xml @@ -5818,13 +5818,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/libyan_oasis_2p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/libyan_oasis_2p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/libyan_oasis_2p.xml @@ -6251,13 +6251,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/lorraine_plain_2p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/lorraine_plain_2p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/lorraine_plain_2p.xml @@ -10251,103 +10251,103 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/mediterranean_cove_2p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/mediterranean_cove_2p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/mediterranean_cove_2p.xml @@ -6465,31 +6465,31 @@ - + 0 - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/nile_river_4p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/nile_river_4p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/nile_river_4p.xml @@ -3776,49 +3776,49 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/saharan_oases_4p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/saharan_oases_4p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/saharan_oases_4p.xml @@ -2894,25 +2894,25 @@ - + 1 - + 2 - + 3 - + 4 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/savanna_river.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/savanna_river.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/savanna_river.xml @@ -25970,14 +25970,14 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/skirmish_demo.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/skirmish_demo.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/skirmish_demo.xml @@ -3441,7 +3441,7 @@ - + 1 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/thessalian_plains_4p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/thessalian_plains_4p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/thessalian_plains_4p.xml @@ -19580,229 +19580,229 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/skirmishes/via_augusta_4p.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/skirmishes/via_augusta_4p.xml +++ ps/trunk/binaries/data/mods/public/maps/skirmishes/via_augusta_4p.xml @@ -57,14 +57,14 @@ ]]> - + 0 - + 0 @@ -8285,49 +8285,49 @@ - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 - + 0 @@ -11731,21 +11731,21 @@ - + 0 - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/maps/tutorials/introductory_tutorial.xml =================================================================== --- ps/trunk/binaries/data/mods/public/maps/tutorials/introductory_tutorial.xml +++ ps/trunk/binaries/data/mods/public/maps/tutorials/introductory_tutorial.xml @@ -2810,13 +2810,13 @@ - + 0 - + 0 Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/bench.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/bench.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/bench.xml @@ -1,37 +0,0 @@ - - - - - 4.0 - - - 75 - - - Bench - Wooden Bench - gaia/special_fence.png - - - - - - - - - - - - 1 - 10 - 1 - - - - - 6.0 - - - props/special/eyecandy/bench_1.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/bridge_hele.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/bridge_hele.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/bridge_hele.xml @@ -1,29 +0,0 @@ - - - - - - 10.0 - - - 200000 - - - Bridge - Bridge - gaia/special_blank.png - - - - - - - - - - - - - props/special/eyecandy/bridge_edge_hele.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/bridge_wooden.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/bridge_wooden.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/bridge_wooden.xml @@ -1,29 +0,0 @@ - - - - - - 10.0 - - - 200000 - - - Wooden Bridge - Wooden Bridge - gaia/special_blank.png - - - - - - - - - - - - - props/special/eyecandy/bridge_edge_wooden.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/celt_hut.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/celt_hut.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/celt_hut.xml @@ -1,33 +0,0 @@ - - - - 2 - - 0 - 50 - 0 - 0 - - - - - 5.0 - - - 500 - decay|rubble/rubble_stone_2x2 - - - Hut - - - - - - - 7.0 - - - structures/celts/hut.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/celt_longhouse.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/celt_longhouse.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/celt_longhouse.xml @@ -1,30 +0,0 @@ - - - - 10 - 300 - - 0 - 100 - 100 - 0 - - - - - 10.0 - - - 1000 - - - Longhouse - - - - - - - structures/celts/longhouse.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/column_doric.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/column_doric.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/column_doric.xml @@ -1,37 +0,0 @@ - - - - - 4.0 - - - 200 - - - Column - Doric Column - gaia/special_fence.png - - - 20 - - - - - - - - - 2 - 5 - 2 - - - - - 8.0 - - - props/special/eyecandy/column_doric.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/column_doric_fallen.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/column_doric_fallen.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/column_doric_fallen.xml @@ -1,37 +0,0 @@ - - - - - 4.0 - - - 200 - - - Column - Fallen Doric Column - gaia/special_fence.png - - - 20 - - - - - - - - - 2 - 5 - 2 - - - - - 6.0 - - - props/special/eyecandy/column_doric_fallen.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/column_doric_fallen_b.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/column_doric_fallen_b.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/column_doric_fallen_b.xml @@ -1,37 +0,0 @@ - - - - - 4.0 - - - 100 - - - Column - Fallen Doric Column - gaia/special_fence.png - - - 10 - - - - - - - - - 2 - 5 - 2 - - - - - 6.0 - - - props/special/eyecandy/column_doric_fallen_b.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/desert_trading_post.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/desert_trading_post.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/desert_trading_post.xml @@ -1,37 +0,0 @@ - - - - 500 - - - - 8.0 - - - rubble/rubble_stone_4x4 - - - Desert Trading Post - Ardatašta - - - - - - - -unlock_shared_los - -unlock_shared_dropsites - -trade_convoys_speed - -trade_convoys_armor - -trade_gain_01 - -trade_gain_02 - -trade_commercial_treaty - - - - - - structures/persians/market.xml - structures/fndn_5x5.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/fence_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/fence_long.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/fence_long.xml @@ -1,46 +0,0 @@ - - - - - - 4.0 - - - 100 - - - Fence - Long Wooden Fence - gaia/special_fence.png - - - 20 - - - - - - - - - - - - 1 - 10 - 1 - - - - - 6.0 - - - - temp/fence_wood_long_a.xml - - - 12 - 0.5 - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/fence_short.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/fence_short.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/fence_short.xml @@ -1,46 +0,0 @@ - - - - - - 4.0 - - - 50 - - - Fence - Short Wooden Fence - gaia/special_fence.png - - - - - - - - - - - - 1 - 10 - 1 - - - - - 6.0 - - - - true - - - temp/fence_wood_short_a.xml - - - 6 - 0.5 - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/fence_stone.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/fence_stone.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/fence_stone.xml @@ -1,39 +0,0 @@ - - - - - - 4.0 - - - 200 - - - Stone Fence - Stone Fence - gaia/special_fence.png - - - 20 - - - - - - - - - 2 - 10 - 2 - - - - - 6.0 - - - - props/special/eyecandy/fence_stone_medit.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/generic_field.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/generic_field.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/generic_field.xml @@ -1,14 +0,0 @@ - - - - - 5.0 - - - Wheat Field - - - structures/plot_field_new.xml - structures/plot_field_new.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/hellenic_epic_temple.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/hellenic_epic_temple.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/hellenic_epic_temple.xml @@ -1,46 +0,0 @@ - - - - 500 - - 0 - 0 - 1000 - 500 - - - - - 12.0 - - - 30 - - - 5000 - - - Epic Temple - Naos Parthenos - Garrison units to heal them at a quick rate. - - - 200 - 500 - - - - - - - 60 - 65535 - - - 80 - - - structures/fndn_6x6.xml - structures/hellenes/temple_epic.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/hellenic_propylaea.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/hellenic_propylaea.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/hellenic_propylaea.xml @@ -1,45 +0,0 @@ - - - - 10 - 200 - - 0 - 0 - 200 - 200 - - - - - 8.0 - - - 2000 - - - Portico - Propylaea - structures/tholos.png - - - 75 - 75 - - - - - - - false - 40 - 65535 - - - 20 - - - structures/hellenes/propylaea.xml - structures/fndn_6x6.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/hellenic_stoa.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/hellenic_stoa.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/hellenic_stoa.xml @@ -1,49 +0,0 @@ - - - - Stoa - - - 10 - 110 - - 0 - 0 - 100 - 100 - - - - - 10.0 - - - 1100 - - - Stoa - Hellenic Stoa - gaia/special_stoa.png - - - 50 - 50 - - - - - - - - false - 36 - 65535 - - - 40 - - - special/greek_stoa.xml - structures/fndn_6x4.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/obelisk.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/obelisk.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/obelisk.xml @@ -1,36 +0,0 @@ - - - - - 10.0 - - - 1000 - - - Obelisk - Egyptian Obelisk - gaia/special_obelisk.png - - - 200 - 200 - - - - - - - - - 2 - 10 - 2 - - - - - - props/special/eyecandy/obelisk.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/sele_colonnade.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/sele_colonnade.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/sele_colonnade.xml @@ -1,37 +0,0 @@ - - - - - 4.0 - - - 200 - - - Colonnade - Corinthian Colonnade - gaia/special_fence.png - - - 20 - - - - - - - - - 2 - 5 - 2 - - - - - 8.0 - - - props/special/eyecandy/sele_colonnade.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_big.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_big.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_big.xml @@ -1,19 +0,0 @@ - - - - - 8.0 - - - 500 - - - Big stall - - - - - - structures/ptolemies/stall_big.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_med.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_med.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_med.xml @@ -1,19 +0,0 @@ - - - - - 8.0 - - - 500 - - - Medium stall - - - - - - structures/ptolemies/stall_med.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_small_a.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_small_a.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_small_a.xml @@ -1,19 +0,0 @@ - - - - - 8.0 - - - 500 - - - Small stall - - - - - - structures/ptolemies/stall_small_a.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_small_b.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_small_b.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/stall_small_b.xml @@ -1,19 +0,0 @@ - - - - - 8.0 - - - 500 - - - Small stall - - - - - - structures/ptolemies/stall_small_b.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/table_rectangle.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/table_rectangle.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/table_rectangle.xml @@ -1,41 +0,0 @@ - - - - - 4.0 - - - 100 - - - Table - Rectangle Table - gaia/special_fence.png - - - 20 - - - - - - - - - - - - 1 - 10 - 1 - - - - - 6.0 - - - - props/special/eyecandy/table_rectangle.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/other/table_square.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/other/table_square.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/other/table_square.xml @@ -1,41 +0,0 @@ - - - - - 4.0 - - - 100 - - - Table - Square Table - gaia/special_fence.png - - - 20 - - - - - - - - - - - - 1 - 10 - 1 - - - - - 6.0 - - - - props/special/eyecandy/table_square.xml - - Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/bench.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/bench.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/bench.xml @@ -0,0 +1,37 @@ + + + + + 4.0 + + + 75 + + + Bench + Wooden Bench + gaia/special_fence.png + + + + + + + + + + + + 1 + 10 + 1 + + + + + 6.0 + + + props/special/eyecandy/bench_1.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/bridge_hele.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/bridge_hele.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/bridge_hele.xml @@ -0,0 +1,29 @@ + + + + + + 10.0 + + + 200000 + + + Bridge + Bridge + gaia/special_blank.png + + + + + + + + + + + + + props/special/eyecandy/bridge_edge_hele.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/bridge_wooden.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/bridge_wooden.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/bridge_wooden.xml @@ -0,0 +1,29 @@ + + + + + + 10.0 + + + 200000 + + + Wooden Bridge + Wooden Bridge + gaia/special_blank.png + + + + + + + + + + + + + props/special/eyecandy/bridge_edge_wooden.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/celt_hut.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/celt_hut.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/celt_hut.xml @@ -0,0 +1,33 @@ + + + + 2 + + 0 + 50 + 0 + 0 + + + + + 5.0 + + + 500 + decay|rubble/rubble_stone_2x2 + + + Hut + + + + + + + 7.0 + + + structures/celts/hut.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/celt_longhouse.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/celt_longhouse.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/celt_longhouse.xml @@ -0,0 +1,30 @@ + + + + 10 + 300 + + 0 + 100 + 100 + 0 + + + + + 10.0 + + + 1000 + + + Longhouse + + + + + + + structures/celts/longhouse.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/column_doric.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/column_doric.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/column_doric.xml @@ -0,0 +1,37 @@ + + + + + 4.0 + + + 200 + + + Column + Doric Column + gaia/special_fence.png + + + 20 + + + + + + + + + 2 + 5 + 2 + + + + + 8.0 + + + props/special/eyecandy/column_doric.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/column_doric_fallen.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/column_doric_fallen.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/column_doric_fallen.xml @@ -0,0 +1,37 @@ + + + + + 4.0 + + + 200 + + + Column + Fallen Doric Column + gaia/special_fence.png + + + 20 + + + + + + + + + 2 + 5 + 2 + + + + + 6.0 + + + props/special/eyecandy/column_doric_fallen.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/column_doric_fallen_b.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/column_doric_fallen_b.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/column_doric_fallen_b.xml @@ -0,0 +1,37 @@ + + + + + 4.0 + + + 100 + + + Column + Fallen Doric Column + gaia/special_fence.png + + + 10 + + + + + + + + + 2 + 5 + 2 + + + + + 6.0 + + + props/special/eyecandy/column_doric_fallen_b.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/desert_trading_post.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/desert_trading_post.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/desert_trading_post.xml @@ -0,0 +1,37 @@ + + + + 500 + + + + 8.0 + + + rubble/rubble_stone_4x4 + + + Desert Trading Post + Ardatašta + + + + + + + -unlock_shared_los + -unlock_shared_dropsites + -trade_convoys_speed + -trade_convoys_armor + -trade_gain_01 + -trade_gain_02 + -trade_commercial_treaty + + + + + + structures/persians/market.xml + structures/fndn_5x5.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/fence_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/fence_long.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/fence_long.xml @@ -0,0 +1,46 @@ + + + + + + 4.0 + + + 100 + + + Fence + Long Wooden Fence + gaia/special_fence.png + + + 20 + + + + + + + + + + + + 1 + 10 + 1 + + + + + 6.0 + + + + temp/fence_wood_long_a.xml + + + 12 + 0.5 + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/fence_short.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/fence_short.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/fence_short.xml @@ -0,0 +1,46 @@ + + + + + + 4.0 + + + 50 + + + Fence + Short Wooden Fence + gaia/special_fence.png + + + + + + + + + + + + 1 + 10 + 1 + + + + + 6.0 + + + + true + + + temp/fence_wood_short_a.xml + + + 6 + 0.5 + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/fence_stone.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/fence_stone.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/fence_stone.xml @@ -0,0 +1,39 @@ + + + + + + 4.0 + + + 200 + + + Stone Fence + Stone Fence + gaia/special_fence.png + + + 20 + + + + + + + + + 2 + 10 + 2 + + + + + 6.0 + + + + props/special/eyecandy/fence_stone_medit.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/generic_field.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/generic_field.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/generic_field.xml @@ -0,0 +1,14 @@ + + + + + 5.0 + + + Wheat Field + + + structures/plot_field_new.xml + structures/plot_field_new.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/hellenic_epic_temple.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/hellenic_epic_temple.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/hellenic_epic_temple.xml @@ -0,0 +1,46 @@ + + + + 500 + + 0 + 0 + 1000 + 500 + + + + + 12.0 + + + 30 + + + 5000 + + + Epic Temple + Naos Parthenos + Garrison units to heal them at a quick rate. + + + 200 + 500 + + + + + + + 60 + 65535 + + + 80 + + + structures/fndn_6x6.xml + structures/hellenes/temple_epic.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/hellenic_propylaea.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/hellenic_propylaea.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/hellenic_propylaea.xml @@ -0,0 +1,45 @@ + + + + 10 + 200 + + 0 + 0 + 200 + 200 + + + + + 8.0 + + + 2000 + + + Portico + Propylaea + structures/tholos.png + + + 75 + 75 + + + + + + + false + 40 + 65535 + + + 20 + + + structures/hellenes/propylaea.xml + structures/fndn_6x6.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/hellenic_stoa.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/hellenic_stoa.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/hellenic_stoa.xml @@ -0,0 +1,49 @@ + + + + Stoa + + + 10 + 110 + + 0 + 0 + 100 + 100 + + + + + 10.0 + + + 1100 + + + Stoa + Hellenic Stoa + gaia/special_stoa.png + + + 50 + 50 + + + + + + + + false + 36 + 65535 + + + 40 + + + special/greek_stoa.xml + structures/fndn_6x4.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/obelisk.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/obelisk.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/obelisk.xml @@ -0,0 +1,36 @@ + + + + + 10.0 + + + 1000 + + + Obelisk + Egyptian Obelisk + gaia/special_obelisk.png + + + 200 + 200 + + + + + + + + + 2 + 10 + 2 + + + + + + props/special/eyecandy/obelisk.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/sele_colonnade.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/sele_colonnade.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/sele_colonnade.xml @@ -0,0 +1,37 @@ + + + + + 4.0 + + + 200 + + + Colonnade + Corinthian Colonnade + gaia/special_fence.png + + + 20 + + + + + + + + + 2 + 5 + 2 + + + + + 8.0 + + + props/special/eyecandy/sele_colonnade.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_big.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_big.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_big.xml @@ -0,0 +1,19 @@ + + + + + 8.0 + + + 500 + + + Big stall + + + + + + structures/ptolemies/stall_big.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_med.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_med.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_med.xml @@ -0,0 +1,19 @@ + + + + + 8.0 + + + 500 + + + Medium stall + + + + + + structures/ptolemies/stall_med.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_small_a.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_small_a.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_small_a.xml @@ -0,0 +1,19 @@ + + + + + 8.0 + + + 500 + + + Small stall + + + + + + structures/ptolemies/stall_small_a.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_small_b.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_small_b.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/stall_small_b.xml @@ -0,0 +1,19 @@ + + + + + 8.0 + + + 500 + + + Small stall + + + + + + structures/ptolemies/stall_small_b.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/table_rectangle.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/table_rectangle.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/table_rectangle.xml @@ -0,0 +1,41 @@ + + + + + 4.0 + + + 100 + + + Table + Rectangle Table + gaia/special_fence.png + + + 20 + + + + + + + + + + + + 1 + 10 + 1 + + + + + 6.0 + + + + props/special/eyecandy/table_rectangle.xml + + Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/table_square.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/table_square.xml +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/table_square.xml @@ -0,0 +1,41 @@ + + + + + 4.0 + + + 100 + + + Table + Square Table + gaia/special_fence.png + + + 20 + + + + + + + + + + + + 1 + 10 + 1 + + + + + 6.0 + + + + props/special/eyecandy/table_square.xml + +