mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-15 21:03:55 -07:00
Move maps XML files out of LFS
Fixes #7519. Reviewed-By: Dunedan Reviewed-On: https://gitea.wildfiregames.com/0ad/0ad/pulls/8014
This commit is contained in:
parent
a2830603b4
commit
994645930c
157 changed files with 2976745 additions and 467 deletions
3
.gitattributes
vendored
3
.gitattributes
vendored
|
|
@ -3,10 +3,9 @@
|
|||
*.hmap filter=lfs diff=lfs merge=lfs -text
|
||||
*.icns filter=lfs diff=lfs merge=lfs -text
|
||||
*.ogg filter=lfs diff=lfs merge=lfs -text
|
||||
*.otf filter=lfs diff=lfs merge=lfs -text
|
||||
*.pmd filter=lfs diff=lfs merge=lfs -text
|
||||
*.pmp filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.psa filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
binaries/data/mods/public/maps/**/*.xml filter=lfs diff=lfs-xml merge=lfs -text
|
||||
*.otf filter=lfs diff=lfs merge=lfs -text
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ repos:
|
|||
args:
|
||||
- --maxkb=1024
|
||||
- --enforce-all
|
||||
exclude: (^binaries/data/mods/public/maps/.*\.xml$)
|
||||
- id: check-case-conflict
|
||||
- id: check-executables-have-shebangs
|
||||
- id: check-json
|
||||
|
|
|
|||
|
|
@ -1,3 +1,64 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2dcc52593829ec054f15ef74bb821011117e8fa25ba8b49f554ff87720dc8bdb
|
||||
size 1213
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Terrain patches="16" texture="aegean_grass_dirt_01" priority="0" height="4096"/>
|
||||
<Environment>
|
||||
<SkySet>desert</SkySet>
|
||||
<SunColor r="0.749020" g="0.749020" b="0.749020"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="5.49779"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.3" g="0.35" b="0.7"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4.0</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<Tint r="0.28" g="0.3" b="0.59"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="300" y="300" z="-100"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.523599"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"Name": "Unnamed map",
|
||||
"Description": "Give an interesting description of your map.",
|
||||
"PlayerData":
|
||||
[
|
||||
{
|
||||
"Civ": "han"
|
||||
},
|
||||
{
|
||||
"Civ": "cart"
|
||||
},
|
||||
{
|
||||
"Civ": "gaul"
|
||||
},
|
||||
{
|
||||
"Civ": "iber"
|
||||
},
|
||||
{
|
||||
"Civ": "pers"
|
||||
},
|
||||
{
|
||||
"Civ": "ptol"
|
||||
},
|
||||
{
|
||||
"Civ": "rome"
|
||||
},
|
||||
{
|
||||
"Civ": "spart"
|
||||
}
|
||||
],
|
||||
"CircularMap": true,
|
||||
"VictoryConditions": [
|
||||
"conquest"
|
||||
]
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,96 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ccaaa2140252a6cafb29fedb8c981e06bac184f227462627a93e8af61dfef1b
|
||||
size 2600
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Terrain patches="9" texture="blackness" priority="0" height="16384"/>
|
||||
<Script><![CDATA[//
|
||||
|
||||
var patches = 9;
|
||||
|
||||
function createBlock(template, owner, angle, x0, z0, cols, rows, colspacing, rowspacing)
|
||||
{
|
||||
var rdx = rowspacing * -Math.sin(angle);
|
||||
var rdz = rowspacing * -Math.cos(angle);
|
||||
var cdx = colspacing * Math.cos(angle);
|
||||
var cdz = colspacing * -Math.sin(angle);
|
||||
|
||||
for (var r = 0; r < rows; ++r)
|
||||
{
|
||||
for (var c = 0; c < cols; ++c)
|
||||
{
|
||||
var x = x0 + (c - (cols-1)/2) * cdx + r * rdx;
|
||||
var z = z0 + (c - (cols-1)/2) * cdz + r * rdz;
|
||||
var ent = Engine.AddEntity(template);
|
||||
|
||||
var cmpPosition = Engine.QueryInterface(ent, IID_Position);
|
||||
cmpPosition.MoveTo(x, z);
|
||||
cmpPosition.SetYRotation(angle);
|
||||
|
||||
var cmpOwnership = Engine.QueryInterface(ent, IID_Ownership);
|
||||
if (cmpOwnership)
|
||||
cmpOwnership.SetOwner(owner);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var mx = 192;
|
||||
var mz = 128;
|
||||
var sep = 46;
|
||||
for (var i = 0; i < 8; ++i)
|
||||
{
|
||||
createBlock("units/athen/infantry_spearman_e", 1, Math.PI/2, mx - sep - 6, mz, 16, 4, 2.1, 3.0);
|
||||
createBlock("units/athen/infantry_spearman_e", 2, 3*Math.PI/2, mx + sep + 6, mz, 16, 4, 2.1, 3.0);
|
||||
createBlock("units/athen/infantry_marine_archer_b", 1, Math.PI/2, mx - sep, mz, 8, 1, 5.0, 3.0);
|
||||
createBlock("units/athen/infantry_marine_archer_b", 1, Math.PI/2, mx - sep - 2, mz, 7, 1, 5.0, 3.0);
|
||||
createBlock("units/athen/infantry_marine_archer_b", 2, 3*Math.PI/2, mx + sep, mz, 8, 1, 5.0, 3.0);
|
||||
createBlock("units/athen/infantry_marine_archer_b", 2, 3*Math.PI/2, mx + sep + 2, mz, 7, 1, 5.0, 3.0);
|
||||
|
||||
mz += 42;
|
||||
}
|
||||
|
||||
//]]></Script>
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="1.5" g="1.5" b="1.5"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="5.49779"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>lake</Type>
|
||||
<Color r="0.3" g="0.35" b="0.7"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>3.0</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<Tint r="0.28" g="0.3" b="0.59"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="192" y="80" z="-2.20961"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.3"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"Name": "Combat Demo (Huge)",
|
||||
"Description": "1296 units. Extremely slow (we need more optimization).",
|
||||
"Keywords": ["demo"],
|
||||
"PlayerData":
|
||||
[
|
||||
{
|
||||
"Civ":"athen"
|
||||
},
|
||||
{
|
||||
"Civ":"athen",
|
||||
"AI": ""
|
||||
}
|
||||
],
|
||||
"RevealMap": true,
|
||||
"VictoryCondition": [
|
||||
"conquest"
|
||||
]
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities/>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,224 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:306d0fbffdd12dadb19a6048350909559cbd8a99b19646df85a50064db2aa2a8
|
||||
size 5857
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>cumulus</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785396"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Height>15.6328</Height>
|
||||
<Waviness>4.0</Waviness>
|
||||
<Murkiness>0.548828</Murkiness>
|
||||
<Tint r="0" g="1" b="1"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="666.383" y="137.472" z="57.0001"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "A demonstration of the new trading feature.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Trading Demo",
|
||||
"PlayerData": [
|
||||
{
|
||||
"Civ": "rome",
|
||||
"Color": {
|
||||
"b": 200,
|
||||
"g": 46,
|
||||
"r": 46
|
||||
},
|
||||
"Name": "Player 1",
|
||||
"Team": 0
|
||||
},
|
||||
{
|
||||
"Civ": "pers",
|
||||
"Color": {
|
||||
"b": 20,
|
||||
"g": 20,
|
||||
"r": 150
|
||||
},
|
||||
"Name": "Player 2",
|
||||
"Team": 0
|
||||
},
|
||||
{
|
||||
"Civ": "cart",
|
||||
"Color": {
|
||||
"b": 0,
|
||||
"g": 255,
|
||||
"r": 255
|
||||
},
|
||||
"Name": "Player 3",
|
||||
"Team": 0
|
||||
}
|
||||
],
|
||||
"RevealMap": true,
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="11">
|
||||
<Template>structures/rome/civil_centre</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="298.7692" z="349.78394"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="12">
|
||||
<Template>structures/rome/market</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="332.58622" z="385.14295"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="13">
|
||||
<Template>structures/rome/civil_centre</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="614.87684" z="217.36403"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="14">
|
||||
<Template>structures/rome/market</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="556.0782" z="180.62423"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>structures/pers/civil_centre</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="744.82508" z="537.00538"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>structures/pers/market</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="775.5876" z="506.4651"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="17">
|
||||
<Template>units/cart/support_trader</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="660.29444" z="208.19225"/>
|
||||
<Orientation y="0.8967"/>
|
||||
</Entity>
|
||||
<Entity uid="18">
|
||||
<Template>units/rome/support_trader</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="675.43714" z="220.56246"/>
|
||||
<Orientation y="-1.69542"/>
|
||||
</Entity>
|
||||
<Entity uid="19">
|
||||
<Template>units/athen/support_trader</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="654.88166" z="217.38692"/>
|
||||
<Orientation y="0.91961"/>
|
||||
</Entity>
|
||||
<Entity uid="24">
|
||||
<Template>structures/cart/civil_centre</Template>
|
||||
<Player>3</Player>
|
||||
<Position x="429.94532" z="663.73511"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="25">
|
||||
<Template>structures/cart/market</Template>
|
||||
<Player>3</Player>
|
||||
<Position x="398.97446" z="629.10291"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>units/pers/support_trader</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="339.16761" z="341.50831"/>
|
||||
<Orientation y="1.10511"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>units/pers/support_trader</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="355.53483" z="361.31861"/>
|
||||
<Orientation y="-2.13637"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>units/pers/support_trader</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="669.6482" z="210.24886"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="29">
|
||||
<Template>units/gaul/support_trader</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="649.05884" z="204.26146"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>units/iber/support_trader</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="651.19428" z="206.73446"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>structures/rome/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="674.07496" z="159.3642"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>structures/pers/dock</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="889.62293" z="494.06116"/>
|
||||
<Orientation y="2.09946"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>units/rome/ship_merchant</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="706.63154" z="157.96402"/>
|
||||
<Orientation y="2.97275"/>
|
||||
</Entity>
|
||||
<Entity uid="34">
|
||||
<Template>structures/rome/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="907.58985" z="530.24756"/>
|
||||
<Orientation y="1.6155"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>structures/cart/market</Template>
|
||||
<Player>3</Player>
|
||||
<Position x="661.1775" z="937.72828"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>structures/rome/market</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="712.4444" z="924.86213"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>structures/rome/arch</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="732.74286" z="941.79377"/>
|
||||
<Orientation y="-2.40792"/>
|
||||
</Entity>
|
||||
<Entity uid="38">
|
||||
<Template>structures/rome/arch</Template>
|
||||
<Player>3</Player>
|
||||
<Position x="675.77662" z="967.2721"/>
|
||||
<Orientation y="2.28844"/>
|
||||
</Entity>
|
||||
<Entity uid="39">
|
||||
<Template>units/cart/ship_merchant</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="729.31904" z="164.53486"/>
|
||||
<Orientation y="-2.85058"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,93 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8e7530286b63a01d37fb38407d24cd964759afba70d337a8e879a791f4853153
|
||||
size 2177
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>stormy</SkySet>
|
||||
<SunColor r="1.27799" g="1.08716" b="0.688151"/>
|
||||
<SunElevation angle="0.291456"/>
|
||||
<SunRotation angle="0.478602"/>
|
||||
<AmbientColor r="0.396078" g="0.47451" b="0.654902"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.298039" g="0.34902" b="0.698039"/>
|
||||
<Height>7.44919</Height>
|
||||
<Waviness>2.7</Waviness>
|
||||
<Murkiness>1</Murkiness>
|
||||
<Tint r="0.396078" g="0.47451" b="0.654902"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="1892" y="213.567" z="2481.01"/>
|
||||
<Rotation angle="-0.151509"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "A demo map of the British Isles, created with the assistance of a height map.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Eire and Albion (British Isles)",
|
||||
"PlayerData": [
|
||||
{
|
||||
"Civ": "brit",
|
||||
"Color": {
|
||||
"b": 200,
|
||||
"g": 46,
|
||||
"r": 46
|
||||
},
|
||||
"Name": "Player 1",
|
||||
"Resources": {
|
||||
"food": 100000,
|
||||
"metal": 100000,
|
||||
"stone": 100000,
|
||||
"wood": 100000
|
||||
},
|
||||
"Team": -1
|
||||
},
|
||||
{
|
||||
"Civ": "rome",
|
||||
"Color": {
|
||||
"b": 20,
|
||||
"g": 20,
|
||||
"r": 150
|
||||
},
|
||||
"Name": "Player 2",
|
||||
"Resources": {
|
||||
"food": 100000,
|
||||
"metal": 100000,
|
||||
"stone": 100000,
|
||||
"wood": 100000
|
||||
},
|
||||
"Team": -1
|
||||
}
|
||||
],
|
||||
"RevealMap": true,
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="15">
|
||||
<Template>structures/brit/civil_centre</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="3025.6985" z="1049.75428"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>actor|structures/celts/stone_monument.xml</Template>
|
||||
<Position x="2418.65333" z="644.37269"/>
|
||||
<Orientation y="0.59557"/>
|
||||
</Entity>
|
||||
<Entity uid="50">
|
||||
<Template>structures/rome/civil_centre</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="2972.63526" z="737.94367"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,236 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1dc0f05932d1910731b44645a4bf53e91087a1ae7b3786052cc44b3731415ef7
|
||||
size 6405
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>sunny</SkySet>
|
||||
<SunColor r="0.737255" g="0.721569" b="0.639216"/>
|
||||
<SunElevation angle="0.717903"/>
|
||||
<SunRotation angle="-0.693359"/>
|
||||
<AmbientColor r="0.447059" g="0.509804" b="0.54902"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>lake</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Height>58.4393</Height>
|
||||
<Waviness>4.0</Waviness>
|
||||
<Murkiness>0.491211</Murkiness>
|
||||
<Tint r="0.721569" g="0.768627" b="0.858824"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="216.967" y="90.62" z="116.156"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"Name": "Fishing Demo",
|
||||
"Description": "Test out fishing with a fishing boat. Still in development.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"PlayerData": [
|
||||
{
|
||||
"Civ": "gaul"
|
||||
}
|
||||
],
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="14">
|
||||
<Template>gaia/fish/generic</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="225.00048" z="148.42492"/>
|
||||
<Orientation y="-2.05118"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>gaia/fish/generic</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="262.26505" z="147.87525"/>
|
||||
<Orientation y="-0.4285"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>units/athen/ship_fishing</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="241.45402" z="169.56719"/>
|
||||
<Orientation y="-1.86446"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>units/gaul/ship_fishing</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="224.03321" z="174.33687"/>
|
||||
<Orientation y="-3.05439"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>units/iber/ship_fishing</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="205.81162" z="172.31514"/>
|
||||
<Orientation y="2.65847"/>
|
||||
</Entity>
|
||||
<Entity uid="29">
|
||||
<Template>units/pers/ship_fishing</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="192.14934" z="165.32908"/>
|
||||
<Orientation y="2.11207"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>gaia/fish/generic</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="189.92811" z="190.7655"/>
|
||||
<Orientation y="3.06882"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>gaia/fish/generic</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="199.85386" z="192.66678"/>
|
||||
<Orientation y="-0.30146"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>gaia/fish/generic</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="206.33385" z="153.90766"/>
|
||||
<Orientation y="0.6793"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>gaia/fish/generic</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="180.81722" z="164.8594"/>
|
||||
<Orientation y="2.3881"/>
|
||||
</Entity>
|
||||
<Entity uid="34">
|
||||
<Template>gaia/fish/generic</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="166.451" z="193.05451"/>
|
||||
<Orientation y="0.66594"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>gaia/fish/tilapia</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="218.15723" z="196.66153"/>
|
||||
<Orientation y="-2.07917"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>gaia/fish/tilapia</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="239.43522" z="188.92421"/>
|
||||
<Orientation y="1.1629"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>gaia/fish/tilapia</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="238.94228" z="146.73633"/>
|
||||
<Orientation y="-1.93244"/>
|
||||
</Entity>
|
||||
<Entity uid="38">
|
||||
<Template>gaia/fish/tilapia</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="210.28002" z="137.49518"/>
|
||||
<Orientation y="1.46961"/>
|
||||
</Entity>
|
||||
<Entity uid="39">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="192.14966" z="143.67966"/>
|
||||
<Orientation y="1.05936"/>
|
||||
</Entity>
|
||||
<Entity uid="40">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="240.85225" z="190.39252"/>
|
||||
<Orientation y="2.61901"/>
|
||||
</Entity>
|
||||
<Entity uid="41">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="257.8787" z="180.52582"/>
|
||||
<Orientation y="-1.78248"/>
|
||||
</Entity>
|
||||
<Entity uid="42">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="250.83605" z="159.73172"/>
|
||||
<Orientation y="1.24582"/>
|
||||
</Entity>
|
||||
<Entity uid="43">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="185.3383" z="206.6843"/>
|
||||
<Orientation y="-2.07433"/>
|
||||
</Entity>
|
||||
<Entity uid="44">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="162.6803" z="163.82677"/>
|
||||
<Orientation y="1.02945"/>
|
||||
</Entity>
|
||||
<Entity uid="45">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="181.23015" z="145.66922"/>
|
||||
<Orientation y="-1.96319"/>
|
||||
</Entity>
|
||||
<Entity uid="46">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="206.3748" z="209.41071"/>
|
||||
<Orientation y="1.11243"/>
|
||||
</Entity>
|
||||
<Entity uid="47">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="246.9563" z="212.30082"/>
|
||||
<Orientation y="-1.92952"/>
|
||||
</Entity>
|
||||
<Entity uid="48">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="229.98774" z="129.82511"/>
|
||||
<Orientation y="1.35044"/>
|
||||
</Entity>
|
||||
<Entity uid="49">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="191.67136" z="126.28237"/>
|
||||
<Orientation y="-1.58507"/>
|
||||
</Entity>
|
||||
<Entity uid="50">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="163.26981" z="219.39936"/>
|
||||
<Orientation y="-2.1753"/>
|
||||
</Entity>
|
||||
<Entity uid="51">
|
||||
<Template>gaia/fish/tuna</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="271.383" z="205.63178"/>
|
||||
<Orientation y="2.35369"/>
|
||||
</Entity>
|
||||
<Entity uid="52">
|
||||
<Template>gaia/fish/generic</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="155.4682" z="181.39966"/>
|
||||
<Orientation y="-2.87171"/>
|
||||
</Entity>
|
||||
<Entity uid="53">
|
||||
<Template>gaia/fish/generic</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="177.37697" z="124.57396"/>
|
||||
<Orientation y="-2.23105"/>
|
||||
</Entity>
|
||||
<Entity uid="54">
|
||||
<Template>gaia/fish/generic</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="260.33661" z="129.5618"/>
|
||||
<Orientation y="-1.84864"/>
|
||||
</Entity>
|
||||
<Entity uid="55">
|
||||
<Template>gaia/fish/generic</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="287.14448" z="196.70893"/>
|
||||
<Orientation y="-2.38967"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,716 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a5cd625bca8b2eeed9d74a45e6f9be4a782cc7af4938e5c90809101e6e287758
|
||||
size 20508
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>sunny</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="0.908117"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Fog>
|
||||
<FogFactor>0</FogFactor>
|
||||
<FogThickness>0.5</FogThickness>
|
||||
<FogColor r="0.8" g="0.8" b="0.898039"/>
|
||||
</Fog>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Tint r="0" g="1" b="0.247059"/>
|
||||
<Height>16.3672</Height>
|
||||
<Waviness>3</Waviness>
|
||||
<Murkiness>0.449219</Murkiness>
|
||||
<WindAngle>0</WindAngle>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
<Postproc>
|
||||
<Brightness>0</Brightness>
|
||||
<Contrast>1</Contrast>
|
||||
<Saturation>0.99</Saturation>
|
||||
<Bloom>0.1999</Bloom>
|
||||
<PostEffect>default</PostEffect>
|
||||
</Postproc>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="360.114" y="128.378" z="178.774"/>
|
||||
<Rotation angle="-1.20255"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "Fly some Mustangs.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Flight Demo",
|
||||
"PlayerData": [
|
||||
null,
|
||||
{
|
||||
"AI": "",
|
||||
"Civ": "athen",
|
||||
"Color": {
|
||||
"b": 200,
|
||||
"g": 80,
|
||||
"r": 80
|
||||
},
|
||||
"Name": "Player 1",
|
||||
"StartingCamera": {
|
||||
"Position": {
|
||||
"x": 288.285,
|
||||
"y": 22.3825,
|
||||
"z": 378.388
|
||||
},
|
||||
"Rotation": {
|
||||
"x": 30,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"AI": "",
|
||||
"Civ": "athen",
|
||||
"Color": {
|
||||
"b": 20,
|
||||
"g": 20,
|
||||
"r": 150
|
||||
},
|
||||
"Name": "Player 2",
|
||||
"StartingCamera": {
|
||||
"Position": {
|
||||
"x": 776.249,
|
||||
"y": 22.3825,
|
||||
"z": 542.534
|
||||
},
|
||||
"Rotation": {
|
||||
"x": 30,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"RevealMap": false,
|
||||
"VictoryConditions": [
|
||||
"conquest"
|
||||
]
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="17">
|
||||
<Template>units/plane</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="285.0795" z="405.9586"/>
|
||||
<Orientation y="2.27721"/>
|
||||
</Entity>
|
||||
<Entity uid="18">
|
||||
<Template>units/plane</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="257.72138" z="377.20521"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="19">
|
||||
<Template>units/plane</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="274.19721" z="358.44175"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="20">
|
||||
<Template>units/plane</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="303.61313" z="387.8614"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="21">
|
||||
<Template>actor|units/global/plane_grounded.xml</Template>
|
||||
<Position x="316.9904" z="425.93769"/>
|
||||
<Orientation y="-2.40082"/>
|
||||
</Entity>
|
||||
<Entity uid="22">
|
||||
<Template>actor|units/global/plane_grounded.xml</Template>
|
||||
<Position x="265.9976" z="324.6703"/>
|
||||
<Orientation y="0.82209"/>
|
||||
</Entity>
|
||||
<Entity uid="23">
|
||||
<Template>actor|units/global/plane_grounded.xml</Template>
|
||||
<Position x="244.37597" z="348.32276"/>
|
||||
<Orientation y="0.80875"/>
|
||||
</Entity>
|
||||
<Entity uid="24">
|
||||
<Template>actor|props/special/eyecandy/runway.xml</Template>
|
||||
<Position x="307.4922" z="326.30488"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="25">
|
||||
<Template>actor|props/special/eyecandy/runway.xml</Template>
|
||||
<Position x="335.81482" z="357.1529"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>actor|units/global/plane_grounded.xml</Template>
|
||||
<Position x="338.94434" z="401.40732"/>
|
||||
<Orientation y="-2.45498"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>structures/athen/civil_centre</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="133.9868" z="492.17676"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>actor|props/special/eyecandy/runway.xml</Template>
|
||||
<Position x="716.41376" z="535.53919"/>
|
||||
<Orientation y="-2.22316"/>
|
||||
</Entity>
|
||||
<Entity uid="29">
|
||||
<Template>actor|props/special/eyecandy/runway.xml</Template>
|
||||
<Position x="742.65326" z="481.91892"/>
|
||||
<Orientation y="-2.18526"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>structures/athen/civil_centre</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="933.56324" z="649.14228"/>
|
||||
<Orientation y="-2.19451"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>units/plane</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="769.70466" z="576.37818"/>
|
||||
<Orientation y="-2.27183"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>units/plane</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="755.1313" z="565.34345"/>
|
||||
<Orientation y="-2.22529"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>units/plane</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="798.48298" z="521.06531"/>
|
||||
<Orientation y="-2.15474"/>
|
||||
</Entity>
|
||||
<Entity uid="34">
|
||||
<Template>units/plane</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="783.25672" z="508.41495"/>
|
||||
<Orientation y="-2.08448"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>actor|units/global/plane_grounded.xml</Template>
|
||||
<Position x="746.44697" z="601.63758"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>actor|units/global/plane_grounded.xml</Template>
|
||||
<Position x="726.66999" z="585.04334"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>actor|units/global/plane_grounded.xml</Template>
|
||||
<Position x="809.65204" z="478.39338"/>
|
||||
<Orientation y="-0.54719"/>
|
||||
</Entity>
|
||||
<Entity uid="38">
|
||||
<Template>actor|units/global/plane_grounded.xml</Template>
|
||||
<Position x="790.60462" z="462.65311"/>
|
||||
<Orientation y="-0.48089"/>
|
||||
</Entity>
|
||||
<Entity uid="39">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="653.23981" z="585.22352"/>
|
||||
<Orientation y="-2.49257"/>
|
||||
</Entity>
|
||||
<Entity uid="40">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="642.0951" z="572.56202"/>
|
||||
<Orientation y="-2.2326"/>
|
||||
</Entity>
|
||||
<Entity uid="41">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="629.64509" z="559.49769"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="42">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="627.47651" z="555.54426"/>
|
||||
<Orientation y="-2.76038"/>
|
||||
</Entity>
|
||||
<Entity uid="43">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="620.86402" z="540.95862"/>
|
||||
<Orientation y="-2.87052"/>
|
||||
</Entity>
|
||||
<Entity uid="44">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="626.8407" z="538.32837"/>
|
||||
<Orientation y="0.70615"/>
|
||||
</Entity>
|
||||
<Entity uid="45">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="632.51581" z="550.80628"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="46">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="635.23469" z="562.5099"/>
|
||||
<Orientation y="0.10596"/>
|
||||
</Entity>
|
||||
<Entity uid="47">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="636.16608" z="575.9441"/>
|
||||
<Orientation y="0.34606"/>
|
||||
</Entity>
|
||||
<Entity uid="48">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="643.82947" z="592.865"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="49">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="645.5622" z="592.65314"/>
|
||||
<Orientation y="2.88794"/>
|
||||
</Entity>
|
||||
<Entity uid="50">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="709.54792" z="606.47248"/>
|
||||
<Orientation y="-2.75823"/>
|
||||
</Entity>
|
||||
<Entity uid="51">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="699.18696" z="585.365"/>
|
||||
<Orientation y="-2.77932"/>
|
||||
</Entity>
|
||||
<Entity uid="52">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="694.21094" z="571.20313"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="53">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="693.0431" z="567.65687"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="54">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="681.0558" z="592.92334"/>
|
||||
<Orientation y="0.33405"/>
|
||||
</Entity>
|
||||
<Entity uid="55">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="699.81305" z="572.90333"/>
|
||||
<Orientation y="0.52402"/>
|
||||
</Entity>
|
||||
<Entity uid="56">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="704.21967" z="578.99061"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="57">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="705.09272" z="579.59461"/>
|
||||
<Orientation y="3.05782"/>
|
||||
</Entity>
|
||||
<Entity uid="58">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="687.51221" z="571.43506"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="59">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="703.71662" z="570.83753"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="60">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="762.36121" z="426.4339"/>
|
||||
<Orientation y="-0.92057"/>
|
||||
</Entity>
|
||||
<Entity uid="61">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="750.08411" z="430.42508"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="62">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="740.94105" z="428.06724"/>
|
||||
<Orientation y="-2.222"/>
|
||||
</Entity>
|
||||
<Entity uid="63">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="731.98615" z="423.37116"/>
|
||||
<Orientation y="-2.92447"/>
|
||||
</Entity>
|
||||
<Entity uid="64">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="731.58393" z="409.36979"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="65">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="737.74805" z="411.68012"/>
|
||||
<Orientation y="0.20302"/>
|
||||
</Entity>
|
||||
<Entity uid="66">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="747.19898" z="434.5849"/>
|
||||
<Orientation y="0.9167"/>
|
||||
</Entity>
|
||||
<Entity uid="67">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="757.04365" z="443.70368"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="68">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="759.19465" z="439.12958"/>
|
||||
<Orientation y="-2.85277"/>
|
||||
</Entity>
|
||||
<Entity uid="69">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="752.37378" z="427.40809"/>
|
||||
<Orientation y="-2.53512"/>
|
||||
</Entity>
|
||||
<Entity uid="70">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="742.98707" z="412.14875"/>
|
||||
<Orientation y="-2.94106"/>
|
||||
</Entity>
|
||||
<Entity uid="71">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="743.20905" z="405.37006"/>
|
||||
<Orientation y="1.68064"/>
|
||||
</Entity>
|
||||
<Entity uid="72">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="752.18592" z="417.15363"/>
|
||||
<Orientation y="-0.15625"/>
|
||||
</Entity>
|
||||
<Entity uid="73">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="218.35584" z="349.71128"/>
|
||||
<Orientation y="3.04822"/>
|
||||
</Entity>
|
||||
<Entity uid="74">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="218.15519" z="320.88132"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="75">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="217.70017" z="314.86112"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="76">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="215.76822" z="328.47678"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="77">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="210.67385" z="331.37443"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="78">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="218.625" z="339.04984"/>
|
||||
<Orientation y="0.54564"/>
|
||||
</Entity>
|
||||
<Entity uid="79">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="226.02494" z="332.35929"/>
|
||||
<Orientation y="-2.98534"/>
|
||||
</Entity>
|
||||
<Entity uid="80">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="221.00814" z="304.71464"/>
|
||||
<Orientation y="-1.30877"/>
|
||||
</Entity>
|
||||
<Entity uid="81">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="401.35962" z="348.19932"/>
|
||||
<Orientation y="-1.56501"/>
|
||||
</Entity>
|
||||
<Entity uid="82">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="391.80216" z="351.26005"/>
|
||||
<Orientation y="-0.24122"/>
|
||||
</Entity>
|
||||
<Entity uid="83">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="385.87067" z="377.38791"/>
|
||||
<Orientation y="0.26931"/>
|
||||
</Entity>
|
||||
<Entity uid="84">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="390.99003" z="394.57096"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="85">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="404.90656" z="392.86948"/>
|
||||
<Orientation y="2.9191"/>
|
||||
</Entity>
|
||||
<Entity uid="86">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="407.16355" z="372.10837"/>
|
||||
<Orientation y="1.0439"/>
|
||||
</Entity>
|
||||
<Entity uid="87">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="414.09791" z="362.0236"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="88">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="417.53437" z="363.56608"/>
|
||||
<Orientation y="-2.93012"/>
|
||||
</Entity>
|
||||
<Entity uid="89">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="420.15287" z="342.76676"/>
|
||||
<Orientation y="-0.68184"/>
|
||||
</Entity>
|
||||
<Entity uid="90">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="401.07477" z="362.31247"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="91">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="394.52424" z="367.69278"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="92">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="395.09778" z="378.27781"/>
|
||||
<Orientation y="-1.88176"/>
|
||||
</Entity>
|
||||
<Entity uid="93">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="397.5706" z="391.67405"/>
|
||||
<Orientation y="-0.00821"/>
|
||||
</Entity>
|
||||
<Entity uid="94">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="300.0369" z="244.1414"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="95">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="287.89072" z="268.2227"/>
|
||||
<Orientation y="0.3699"/>
|
||||
</Entity>
|
||||
<Entity uid="96">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="345.05494" z="226.26862"/>
|
||||
<Orientation y="-2.5316"/>
|
||||
</Entity>
|
||||
<Entity uid="97">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="280.77006" z="455.96061"/>
|
||||
<Orientation y="1.17177"/>
|
||||
</Entity>
|
||||
<Entity uid="98">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="298.06934" z="466.45023"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="99">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="305.90323" z="471.11527"/>
|
||||
<Orientation y="0.89852"/>
|
||||
</Entity>
|
||||
<Entity uid="100">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="318.96488" z="482.62626"/>
|
||||
<Orientation y="-3.02923"/>
|
||||
</Entity>
|
||||
<Entity uid="101">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="320.44791" z="464.5134"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="102">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="322.94022" z="455.96607"/>
|
||||
<Orientation y="-1.95878"/>
|
||||
</Entity>
|
||||
<Entity uid="103">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="327.88538" z="459.62174"/>
|
||||
<Orientation y="0.78525"/>
|
||||
</Entity>
|
||||
<Entity uid="104">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="311.1164" z="458.99683"/>
|
||||
<Orientation y="-1.307"/>
|
||||
</Entity>
|
||||
<Entity uid="116">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="251.77584" z="296.0135"/>
|
||||
<Orientation y="-2.45827"/>
|
||||
</Entity>
|
||||
<Entity uid="117">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="244.55428" z="287.92176"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="118">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="245.34044" z="282.73176"/>
|
||||
<Orientation y="2.65558"/>
|
||||
</Entity>
|
||||
<Entity uid="119">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="248.51877" z="282.93589"/>
|
||||
<Orientation y="0.55097"/>
|
||||
</Entity>
|
||||
<Entity uid="120">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="249.50503" z="285.22284"/>
|
||||
<Orientation y="-0.09798"/>
|
||||
</Entity>
|
||||
<Entity uid="121">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="248.1742" z="296.18238"/>
|
||||
<Orientation y="-0.10872"/>
|
||||
</Entity>
|
||||
<Entity uid="122">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="247.95633" z="300.35718"/>
|
||||
<Orientation y="1.65455"/>
|
||||
</Entity>
|
||||
<Entity uid="123">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="257.8342" z="296.50333"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="124">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="257.86634" z="295.26886"/>
|
||||
<Orientation y="-2.9004"/>
|
||||
</Entity>
|
||||
<Entity uid="125">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="253.01995" z="286.14274"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="126">
|
||||
<Template>gaia/tree/senegal_date_palm</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="259.36191" z="287.67615"/>
|
||||
<Orientation y="-0.63311"/>
|
||||
</Entity>
|
||||
<Entity uid="127">
|
||||
<Template>actor|props/special/eyecandy/control_tower.xml</Template>
|
||||
<Position x="355.21055" z="374.68622"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="128">
|
||||
<Template>actor|props/special/eyecandy/control_tower.xml</Template>
|
||||
<Position x="676.7262" z="547.16852"/>
|
||||
<Orientation y="-2.23951"/>
|
||||
</Entity>
|
||||
<Entity uid="134">
|
||||
<Template>actor|props/special/eyecandy/runway.xml</Template>
|
||||
<Position x="205.8754" z="198.50776"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="10544"/>
|
||||
</Entity>
|
||||
<Entity uid="135">
|
||||
<Template>units/plane</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="158.87604" z="246.51545"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="12175"/>
|
||||
</Entity>
|
||||
<Entity uid="136">
|
||||
<Template>units/plane</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="173.3867" z="230.03412"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="45376"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,64 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:53486949b2a1d23b1000788d2f382fb62aedbcd2909e859f738cf7b9923d5a66
|
||||
size 1487
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785396"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>lake</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Height>8.07869</Height>
|
||||
<Waviness>3.0</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="546.182" y="568.13" z="-281.75"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "A riparian gorge meanders its way through the South lands of Gaul.",
|
||||
"Keywords": [
|
||||
"hidden"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Gorge",
|
||||
"PlayerData": [
|
||||
{
|
||||
"Civ": "pers"
|
||||
},
|
||||
{
|
||||
"Civ": "cart"
|
||||
}
|
||||
],
|
||||
"RevealMap": false,
|
||||
"VictoryConditions": [
|
||||
"conquest"
|
||||
]
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="11">
|
||||
<Template>structures/cart/civil_centre</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="808.81403" z="273.3158"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="12">
|
||||
<Template>structures/pers/civil_centre</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="354.87638" z="830.6186"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,720 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:67c52af3fb99d883369bde85439bac62a4d962ba6ea2619f47cf29ad2699c9e7
|
||||
size 20618
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="1" g="1" b="1"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785396"/>
|
||||
<AmbientColor r="0.313726" g="0.376471" b="0.521569"/>
|
||||
<Fog>
|
||||
<FogFactor>0</FogFactor>
|
||||
<FogThickness>0.5</FogThickness>
|
||||
<FogColor r="0.8" g="0.8" b="0.894118"/>
|
||||
</Fog>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>lake</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4.0</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
<Postproc>
|
||||
<Brightness>0</Brightness>
|
||||
<Contrast>1</Contrast>
|
||||
<Saturation>0.99</Saturation>
|
||||
<Bloom>0.1999</Bloom>
|
||||
<PostEffect>default</PostEffect>
|
||||
</Postproc>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="249.053" y="41.7141" z="187.51"/>
|
||||
<Rotation angle="-2.09633"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"DefaultStance": "defensive",
|
||||
"Description": "A map for testing unit movement algorithms.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"Name": "Pathfinding Demo",
|
||||
"PlayerData": [
|
||||
{
|
||||
"AI": "",
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"AI": "",
|
||||
"Civ": "brit"
|
||||
}
|
||||
],
|
||||
"RevealMap": true,
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="6">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="293.891" z="235.914"/>
|
||||
<Orientation y="3.13672"/>
|
||||
</Entity>
|
||||
<Entity uid="7">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="310.113" z="235.945"/>
|
||||
<Orientation y="3.13672"/>
|
||||
</Entity>
|
||||
<Entity uid="8">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="304.234" z="197.848"/>
|
||||
<Orientation y="3.13672"/>
|
||||
</Entity>
|
||||
<Entity uid="9">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="332.805" z="253.457"/>
|
||||
<Orientation y="3.8203"/>
|
||||
</Entity>
|
||||
<Entity uid="10">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="351.934" z="195.062"/>
|
||||
<Orientation y="4.69922"/>
|
||||
</Entity>
|
||||
<Entity uid="11">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="367.801" z="211.574"/>
|
||||
<Orientation y="3.14452"/>
|
||||
</Entity>
|
||||
<Entity uid="12">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="338.383" z="211.004"/>
|
||||
<Orientation y="3.14452"/>
|
||||
</Entity>
|
||||
<Entity uid="13">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="352.984" z="227.121"/>
|
||||
<Orientation y="1.5625"/>
|
||||
</Entity>
|
||||
<Entity uid="14">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="306.805" z="308.824"/>
|
||||
<Orientation y="-0.0273"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="328.879" z="308.824"/>
|
||||
<Orientation y="-0.0273"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="296.16" z="297.316"/>
|
||||
<Orientation y="1.51952"/>
|
||||
</Entity>
|
||||
<Entity uid="17">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="342.578" z="298.086"/>
|
||||
<Orientation y="1.51952"/>
|
||||
</Entity>
|
||||
<Entity uid="18">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="363.242" z="297.316"/>
|
||||
<Orientation y="1.51952"/>
|
||||
</Entity>
|
||||
<Entity uid="19">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="275.598" z="296.172"/>
|
||||
<Orientation y="1.51952"/>
|
||||
</Entity>
|
||||
<Entity uid="20">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="267.59" z="311.305"/>
|
||||
<Orientation y="3.16405"/>
|
||||
</Entity>
|
||||
<Entity uid="21">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="268.316" z="332.051"/>
|
||||
<Orientation y="3.16405"/>
|
||||
</Entity>
|
||||
<Entity uid="22">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="269.438" z="353.195"/>
|
||||
<Orientation y="3.16405"/>
|
||||
</Entity>
|
||||
<Entity uid="23">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="270.547" z="374.977"/>
|
||||
<Orientation y="3.16405"/>
|
||||
</Entity>
|
||||
<Entity uid="24">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="370.652" z="314.473"/>
|
||||
<Orientation y="3.16405"/>
|
||||
</Entity>
|
||||
<Entity uid="25">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="370.984" z="338.418"/>
|
||||
<Orientation y="3.16405"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="371.293" z="361.965"/>
|
||||
<Orientation y="3.16405"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="371.711" z="384.176"/>
|
||||
<Orientation y="3.16405"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="298.059" z="323.594"/>
|
||||
<Orientation y="4.76172"/>
|
||||
</Entity>
|
||||
<Entity uid="29">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="299.797" z="350.086"/>
|
||||
<Orientation y="4.76172"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="321.934" z="350.086"/>
|
||||
<Orientation y="4.76172"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="342.129" z="350.363"/>
|
||||
<Orientation y="4.76172"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="349.965" z="334.523"/>
|
||||
<Orientation y="6.25"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="283.051" z="350.93"/>
|
||||
<Orientation y="7.88672"/>
|
||||
</Entity>
|
||||
<Entity uid="34">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="341.742" z="375.301"/>
|
||||
<Orientation y="7.88672"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="367.738" z="399.191"/>
|
||||
<Orientation y="7.88672"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="344.695" z="399.918"/>
|
||||
<Orientation y="7.88672"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="326.352" z="400.281"/>
|
||||
<Orientation y="7.88672"/>
|
||||
</Entity>
|
||||
<Entity uid="38">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="312.637" z="384.512"/>
|
||||
<Orientation y="9.37108"/>
|
||||
</Entity>
|
||||
<Entity uid="39">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="293.746" z="366.816"/>
|
||||
<Orientation y="9.37108"/>
|
||||
</Entity>
|
||||
<Entity uid="40">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="300.215" z="398.465"/>
|
||||
<Orientation y="10.9805"/>
|
||||
</Entity>
|
||||
<Entity uid="41">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="272.031" z="398.828"/>
|
||||
<Orientation y="12.6562"/>
|
||||
</Entity>
|
||||
<Entity uid="42">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="276.609" z="419.758"/>
|
||||
<Orientation y="13.1914"/>
|
||||
</Entity>
|
||||
<Entity uid="43">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="290.602" z="437.578"/>
|
||||
<Orientation y="0.94137"/>
|
||||
</Entity>
|
||||
<Entity uid="44">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="310.125" z="446.977"/>
|
||||
<Orientation y="-1.8047"/>
|
||||
</Entity>
|
||||
<Entity uid="45">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="334.07" z="446.539"/>
|
||||
<Orientation y="14.2773"/>
|
||||
</Entity>
|
||||
<Entity uid="46">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="354.656" z="446.09"/>
|
||||
<Orientation y="13.9805"/>
|
||||
</Entity>
|
||||
<Entity uid="47">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="375.738" z="446.992"/>
|
||||
<Orientation y="13.9805"/>
|
||||
</Entity>
|
||||
<Entity uid="48">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="315.699" z="436.812"/>
|
||||
<Orientation y="15.668"/>
|
||||
</Entity>
|
||||
<Entity uid="49">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="337.391" z="408.84"/>
|
||||
<Orientation y="15.668"/>
|
||||
</Entity>
|
||||
<Entity uid="50">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="361.289" z="436.812"/>
|
||||
<Orientation y="15.668"/>
|
||||
</Entity>
|
||||
<Entity uid="55">
|
||||
<Template>units/athen/cavalry_swordsman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="310.734" z="269.285"/>
|
||||
<Orientation y="13.3633"/>
|
||||
</Entity>
|
||||
<Entity uid="56">
|
||||
<Template>units/athen/cavalry_swordsman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="300.445" z="267.047"/>
|
||||
<Orientation y="13.3633"/>
|
||||
</Entity>
|
||||
<Entity uid="57">
|
||||
<Template>units/athen/cavalry_swordsman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="290.004" z="267.047"/>
|
||||
<Orientation y="13.3633"/>
|
||||
</Entity>
|
||||
<Entity uid="58">
|
||||
<Template>units/athen/cavalry_swordsman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="281.777" z="268"/>
|
||||
<Orientation y="13.3633"/>
|
||||
</Entity>
|
||||
<Entity uid="59">
|
||||
<Template>units/athen/cavalry_swordsman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="349.156" z="207.789"/>
|
||||
<Orientation y="13.3633"/>
|
||||
</Entity>
|
||||
<Entity uid="60">
|
||||
<Template>units/athen/cavalry_swordsman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="385.699" z="421.672"/>
|
||||
<Orientation y="13.3633"/>
|
||||
</Entity>
|
||||
<Entity uid="61">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="397.5" z="447.691"/>
|
||||
<Orientation y="14.3086"/>
|
||||
</Entity>
|
||||
<Entity uid="62">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="410.008" z="433.277"/>
|
||||
<Orientation y="15.7773"/>
|
||||
</Entity>
|
||||
<Entity uid="63">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="407.613" z="414.148"/>
|
||||
<Orientation y="15.7773"/>
|
||||
</Entity>
|
||||
<Entity uid="64">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="398.441" z="398.055"/>
|
||||
<Orientation y="16.8008"/>
|
||||
</Entity>
|
||||
<Entity uid="65">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="381.301" z="396.773"/>
|
||||
<Orientation y="17.3516"/>
|
||||
</Entity>
|
||||
<Entity uid="70">
|
||||
<Template>units/brit/infantry_javelineer_e</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="356.75" z="215.902"/>
|
||||
<Orientation y="3.73827"/>
|
||||
</Entity>
|
||||
<Entity uid="71">
|
||||
<Template>units/brit/infantry_javelineer_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="323.984" z="232.781"/>
|
||||
<Orientation y="2.23438"/>
|
||||
</Entity>
|
||||
<Entity uid="76">
|
||||
<Template>units/athen/infantry_marine_archer_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="293.941" z="235.59"/>
|
||||
<Orientation y="3.16405"/>
|
||||
</Entity>
|
||||
<Entity uid="77">
|
||||
<Template>units/athen/infantry_marine_archer_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="338.055" z="210.789"/>
|
||||
<Orientation y="3.16405"/>
|
||||
</Entity>
|
||||
<Entity uid="82">
|
||||
<Template>structures/celt_longhouse</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="402.766" z="251.594"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="83">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="390.965" z="252.871"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="84">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="392.242" z="262.113"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="85">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="396.023" z="268.004"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="86">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="399.91" z="271.18"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="87">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="403.887" z="272.137"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="88">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="410.883" z="265.461"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="89">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="413.297" z="260.395"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="90">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="414.941" z="253.188"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="91">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="414.363" z="245.191"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="92">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="411.258" z="240.418"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="93">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="407.438" z="238.125"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="94">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="402.996" z="236.023"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="95">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="398.781" z="236.805"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="96">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="394.957" z="240.418"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="97">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="391.453" z="244.617"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="98">
|
||||
<Template>units/athen/infantry_marine_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="407.746" z="268.559"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="100">
|
||||
<Template>structures/celt_longhouse</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="463.375" z="256.234"/>
|
||||
<Orientation y="2.67188"/>
|
||||
</Entity>
|
||||
<Entity uid="105">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="452.105" z="255.02"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="106">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="452.066" z="263.559"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="107">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="457.859" z="242.508"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="108">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="462.465" z="239.992"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="109">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="467.781" z="240.926"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="110">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="472.812" z="244.129"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="111">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="475.324" z="250.266"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="112">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="476.832" z="259.676"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="113">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="476.641" z="266.324"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="114">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="474.312" z="271.676"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="115">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="470.457" z="276.883"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="116">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="465.211" z="277.863"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="117">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="460.586" z="277.863"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="118">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="455.816" z="274.953"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="119">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="453.121" z="270.531"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="120">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="453.836" z="247.133"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="125">
|
||||
<Template>gaia/ore/aegean_anatolian_small_01</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="427.352" z="301.84"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="126">
|
||||
<Template>gaia/rock/mediterranean_small</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="450.855" z="303.613"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="127">
|
||||
<Template>gaia/tree/oak_large</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="404.113" z="300.098"/>
|
||||
<Orientation y="2.35547"/>
|
||||
</Entity>
|
||||
<Entity uid="129">
|
||||
<Template>gaia/fruit/berry_01</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="471.12751" z="300.61597"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="130">
|
||||
<Template>units/brit/cavalry_swordsman_b</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="487.26542" z="258.37821"/>
|
||||
<Orientation y="-1.71404"/>
|
||||
</Entity>
|
||||
<Entity uid="131">
|
||||
<Template>units/brit/cavalry_swordsman_b</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="495.40305" z="258.75858"/>
|
||||
<Orientation y="-1.65319"/>
|
||||
</Entity>
|
||||
<Entity uid="133">
|
||||
<Template>units/brit/cavalry_swordsman_b</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="503.53602" z="258.96335"/>
|
||||
<Orientation y="-1.61608"/>
|
||||
</Entity>
|
||||
<Entity uid="134">
|
||||
<Template>units/brit/cavalry_swordsman_b</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="512.7602" z="258.94617"/>
|
||||
<Orientation y="-1.78721"/>
|
||||
</Entity>
|
||||
<Entity uid="135">
|
||||
<Template>units/brit/cavalry_swordsman_b</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="520.07496" z="259.06864"/>
|
||||
<Orientation y="-1.65012"/>
|
||||
</Entity>
|
||||
<Entity uid="136">
|
||||
<Template>units/brit/cavalry_swordsman_b</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="527.00422" z="259.19413"/>
|
||||
<Orientation y="-1.51781"/>
|
||||
</Entity>
|
||||
<Entity uid="137">
|
||||
<Template>structures/brit/corral</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="425.16663" z="256.90998"/>
|
||||
<Orientation y="3.1124"/>
|
||||
</Entity>
|
||||
<Entity uid="138">
|
||||
<Template>units/athen/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="402.36667" z="209.59253"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="139">
|
||||
<Template>units/maur/elephant_archer_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="271.06794" z="261.01594"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="31151"/>
|
||||
</Entity>
|
||||
<Entity uid="140">
|
||||
<Template>units/rome/siege_ballista_packed</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="273.1745" z="243.61445"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="1010"/>
|
||||
</Entity>
|
||||
<Entity uid="141">
|
||||
<Template>structures/iber/house</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="227.0604" z="162.98438"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="26048"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,267 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d4414d9e0b1508ce4223a2d65d235da75f147a5c4895d1b1aa2b973d356cf399
|
||||
size 7616
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="1" g="1" b="1"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785398"/>
|
||||
<AmbientColor r="0.313726" g="0.376471" b="0.521569"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>lake</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Height>19.3049</Height>
|
||||
<Waviness>4.0</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="198.163" y="86.4353" z="203.913"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"Name": "Pathfinding Terrain Demo",
|
||||
"Description": "A map for testing movement costs and terrain properties in the A* pathfinder.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"PlayerData": [
|
||||
{
|
||||
"Civ": "athen"
|
||||
}
|
||||
],
|
||||
"RevealMap": true,
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="6">
|
||||
<Template>units/athen/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="198.163" z="302.211"/>
|
||||
<Orientation y="2.3562"/>
|
||||
</Entity>
|
||||
<Entity uid="7">
|
||||
<Template>units/athen/ship_merchant</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="89.6642" z="376.786"/>
|
||||
<Orientation y="3.0033"/>
|
||||
</Entity>
|
||||
<Entity uid="8">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="155.364" z="243.105"/>
|
||||
<Orientation y="2.3562"/>
|
||||
</Entity>
|
||||
<Entity uid="9">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="144.809" z="466.948"/>
|
||||
<Orientation y="2.3562"/>
|
||||
</Entity>
|
||||
<Entity uid="10">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="267.654" z="291.773"/>
|
||||
<Orientation y="2.3562"/>
|
||||
</Entity>
|
||||
<Entity uid="11">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="327.819" z="286.36"/>
|
||||
<Orientation y="2.3562"/>
|
||||
</Entity>
|
||||
<Entity uid="12">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="335.744" z="285.895"/>
|
||||
<Orientation y="2.3562"/>
|
||||
</Entity>
|
||||
<Entity uid="13">
|
||||
<Template>units/athen/siege_lithobolos_packed</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="326.233" z="280.563"/>
|
||||
<Orientation y="2.3562"/>
|
||||
</Entity>
|
||||
<Entity uid="14">
|
||||
<Template>units/athen/cavalry_swordsman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="320.352" z="278.001"/>
|
||||
<Orientation y="2.3562"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>units/athen/cavalry_swordsman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="336.717" z="277.086"/>
|
||||
<Orientation y="2.3562"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>units/athen/cavalry_swordsman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="267.617" z="280.286"/>
|
||||
<Orientation y="2.3562"/>
|
||||
</Entity>
|
||||
<Entity uid="21">
|
||||
<Template>structures/athen/barracks</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="282.786" z="226.382"/>
|
||||
<Orientation y="2.3562"/>
|
||||
</Entity>
|
||||
<Entity uid="22">
|
||||
<Template>structures/athen/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="221.451" z="344.716"/>
|
||||
<Orientation y="-2.7648"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="340.293" z="472.431"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="343.354" z="472.185"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="29">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="346.246" z="472.103"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="349.294" z="472.103"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="352.119" z="471.94"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="354.945" z="471.859"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="357.893" z="471.941"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="34">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="361.224" z="472.104"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="361.122" z="467.291"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="358" z="467.372"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="355.072" z="467.371"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="38">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="351.836" z="467.371"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="39">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="349.166" z="467.452"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="40">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="346.077" z="467.614"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="41">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="343.3" z="467.533"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="42">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="340.316" z="467.533"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="43">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="340.276" z="463.142"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="44">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="343.705" z="463.069"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="45">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="346.247" z="463.069"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="46">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="349.424" z="463.069"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="47">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="351.718" z="462.996"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="48">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="354.801" z="463.069"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="49">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="357.872" z="462.996"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
<Entity uid="50">
|
||||
<Template>units/athen/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="361.058" z="463.069"/>
|
||||
<Orientation y="3.31693"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,173 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ca36a4419d5a6394f63dbba0ce46302d95e2b6ba65a3d2ac8edf8272a27e77ba
|
||||
size 4596
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>sunny</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.809942"/>
|
||||
<SunRotation angle="3.14159"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Fog>
|
||||
<FogFactor>0</FogFactor>
|
||||
<FogThickness>0.5</FogThickness>
|
||||
<FogColor r="0.8" g="0.8" b="0.894118"/>
|
||||
</Fog>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.231373" g="0.337255" b="0.447059"/>
|
||||
<Tint r="0.529412" g="0.937255" b="0.831373"/>
|
||||
<Height>168.772</Height>
|
||||
<Waviness>1.36719</Waviness>
|
||||
<Murkiness>0.836914</Murkiness>
|
||||
<WindAngle>0</WindAngle>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
<Postproc>
|
||||
<Brightness>0</Brightness>
|
||||
<Contrast>1</Contrast>
|
||||
<Saturation>0.99</Saturation>
|
||||
<Bloom>0.1999</Bloom>
|
||||
<PostEffect>default</PostEffect>
|
||||
</Postproc>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="514.814" y="246.916" z="396.274"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"AISeed": 0,
|
||||
"CircularMap": true,
|
||||
"Description": "Test map for picking units up, with sea and two islands. Trigger points are placed.",
|
||||
"Keywords": [
|
||||
"demo",
|
||||
"trigger"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Pickup test map",
|
||||
"PlayerData": [
|
||||
null,
|
||||
{
|
||||
"Civ": "athen"
|
||||
}
|
||||
],
|
||||
"Preview": "",
|
||||
"RevealMap": true,
|
||||
"TriggerScripts": [
|
||||
"scripts/TriggerHelper.js",
|
||||
"scenarios/pickup_test_map_triggers.js"
|
||||
],
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="14">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="514.8141" z="494.57267"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="5583"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="599.91157" z="396.05698"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="21631"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="509.77204" z="301.23362"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="22830"/>
|
||||
</Entity>
|
||||
<Entity uid="17">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="424.25593" z="390.61844"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="60998"/>
|
||||
</Entity>
|
||||
<Entity uid="18">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="279.24427" z="570.91431"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="13022"/>
|
||||
</Entity>
|
||||
<Entity uid="19">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="192.86735" z="650.63013"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="22025"/>
|
||||
</Entity>
|
||||
<Entity uid="20">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="433.8719" z="954.3141"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="55211"/>
|
||||
</Entity>
|
||||
<Entity uid="21">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="742.31745" z="900.06678"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="52524"/>
|
||||
</Entity>
|
||||
<Entity uid="22">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="899.26227" z="685.19471"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="57217"/>
|
||||
</Entity>
|
||||
<Entity uid="23">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="847.81159" z="192.07172"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="60511"/>
|
||||
</Entity>
|
||||
<Entity uid="24">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="745.38624" z="103.3647"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="20551"/>
|
||||
</Entity>
|
||||
<Entity uid="25">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="125.56368" z="257.50168"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="27301"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>trigger/trigger_point_A</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="243.17631" z="148.31513"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="41077"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>trigger/trigger_point_B</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="256.73066" z="401.79657"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="62749"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>trigger/trigger_point_C</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="222.4845" z="467.82148"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="26104"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,400 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:005bdea27e093e44b4711a1b327d2e1d47261581991f6b5b1e835e2a42727328
|
||||
size 12103
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>cloudless</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.847634"/>
|
||||
<SunRotation angle="2.90106"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>lake</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Height>20.459</Height>
|
||||
<Waviness>4.0</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="335.064" y="72.9702" z="293.763"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "A demo showing water planes.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Reservoir",
|
||||
"PlayerData": [
|
||||
{
|
||||
"AI": "",
|
||||
"Civ": "athen",
|
||||
"Color": {
|
||||
"b": 200,
|
||||
"g": 46,
|
||||
"r": 46
|
||||
},
|
||||
"Name": "Player 1",
|
||||
"Team": -1
|
||||
}
|
||||
],
|
||||
"RevealMap": true,
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="11">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="310.00702" z="357.20054"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="12">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="299.92014" z="352.99659"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="13">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="298.5027" z="365.18433"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="14">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="312.8779" z="370.01944"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="321.0926" z="362.23527"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="315.39463" z="347.00016"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="17">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="302.84464" z="342.69767"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="18">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="282.24692" z="353.6772"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="19">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="283.96378" z="373.65336"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="20">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="290.09272" z="345.00287"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="21">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="301.7169" z="384.36884"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="22">
|
||||
<Template>actor|temp/reservoir.xml</Template>
|
||||
<Position x="290.35068" z="361.19556"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="23">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="391.6338" z="395.76957"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="24">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="394.14985" z="398.31098"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="25">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="396.52332" z="400.85099"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="399.038" z="403.40088"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="401.65821" z="405.71094"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="404.06232" z="408.08393"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="29">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="406.64917" z="410.45774"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="409.1117" z="413.06794"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="411.76688" z="415.4311"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="393.90308" z="393.42301"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="396.36619" z="390.92405"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="34">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="398.87095" z="388.45627"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="401.3683" z="385.97358"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="403.85386" z="383.46708"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="406.37107" z="385.97928"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="38">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="408.84894" z="388.48087"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="39">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="411.42362" z="390.88727"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="40">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="413.93647" z="393.39576"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="42">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="416.43302" z="395.88935"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="43">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="419.06147" z="398.19208"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="44">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="421.42371" z="400.66822"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="45">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="424.0221" z="403.13981"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="46">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="421.6786" z="405.67103"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="48">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="419.16178" z="408.17997"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="49">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="416.623" z="410.58536"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="50">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="414.19803" z="412.99277"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="51">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="396.56995" z="395.81104"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="52">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="399.0121" z="393.27103"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="53">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="401.4821" z="390.97767"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="54">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="403.80875" z="388.55872"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="55">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="399.0445" z="398.3859"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="56">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="401.49555" z="400.89731"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="57">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="404.00824" z="403.1555"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="58">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="406.45554" z="405.6673"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="59">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="409.12024" z="407.95588"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="60">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="411.65986" z="410.54435"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="61">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="414.08854" z="408.22724"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="62">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="416.62577" z="405.79764"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="63">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="419.13843" z="403.33222"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="64">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="401.52604" z="395.8107"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="65">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="403.85431" z="393.39182"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="66">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="406.33252" z="390.9773"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="68">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="408.99857" z="393.35639"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="69">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="406.67313" z="395.61353"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="70">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="404.24637" z="398.04056"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="71">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="406.49631" z="400.74924"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="72">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="409.06095" z="403.245"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="73">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="411.72861" z="405.5847"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="74">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="414.2187" z="403.15452"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="75">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="416.62131" z="400.77439"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="76">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="411.50434" z="400.84543"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="77">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="413.95813" z="398.4109"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="78">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="411.40647" z="395.88331"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="79">
|
||||
<Template>actor|temp/reservoir_water.xml</Template>
|
||||
<Position x="408.98533" z="398.34345"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="80">
|
||||
<Template>actor|temp/water_plane.xml</Template>
|
||||
<Position x="249.05802" z="303.48603"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="81">
|
||||
<Template>actor|temp/waterfall.xml</Template>
|
||||
<Position x="420.21323" z="392.30652"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="82">
|
||||
<Template>actor|temp/waterfall.xml</Template>
|
||||
<Position x="255.33231" z="301.27381"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,810 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5e960363c9f33db56b1c47acf02be9c407384e24a8a60daa3ddd86451f427d77
|
||||
size 26425
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="1.08585" g="1.04746" b="0.806158"/>
|
||||
<SunElevation angle="0.469398"/>
|
||||
<SunRotation angle="0.294524"/>
|
||||
<AmbientColor r="0.396078" g="0.47451" b="0.654902"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>lake</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4.0</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="272.725" y="93.8082" z="204.926"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.523599"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "Demo map showcasing Temperate Road decals.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Road Decals Demo",
|
||||
"PlayerData": [
|
||||
{
|
||||
"AI": "",
|
||||
"Civ": "athen"
|
||||
}
|
||||
],
|
||||
"RevealMap": false,
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="11">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_corner.xml</Template>
|
||||
<Position x="289.9697" z="380.50586"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="12">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="305.16938" z="370.99701"/>
|
||||
<Orientation y="-0.78632"/>
|
||||
</Entity>
|
||||
<Entity uid="13">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_intersect_T.xml</Template>
|
||||
<Position x="321.14347" z="380.79706"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="14">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_intersect_x.xml</Template>
|
||||
<Position x="274.3107" z="371.6391"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_long.xml</Template>
|
||||
<Position x="293.64112" z="352.09113"/>
|
||||
<Orientation y="-0.78109"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_short.xml</Template>
|
||||
<Position x="328.55497" z="373.32477"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="18">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="340.95933" z="362.17173"/>
|
||||
<Orientation y="-2.45528"/>
|
||||
</Entity>
|
||||
<Entity uid="20">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_short.xml</Template>
|
||||
<Position x="329.19034" z="349.45658"/>
|
||||
<Orientation y="-2.37319"/>
|
||||
</Entity>
|
||||
<Entity uid="22">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_corner.xml</Template>
|
||||
<Position x="314.10798" z="403.9108"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="23">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="300.34568" z="396.75391"/>
|
||||
<Orientation y="-0.73763"/>
|
||||
</Entity>
|
||||
<Entity uid="24">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_long.xml</Template>
|
||||
<Position x="282.66617" z="416.10358"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="25">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_intersect_T.xml</Template>
|
||||
<Position x="265.25141" z="380.93705"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="274.68503" z="395.83002"/>
|
||||
<Orientation y="-2.32981"/>
|
||||
</Entity>
|
||||
<Entity uid="29">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_short.xml</Template>
|
||||
<Position x="274.6645" z="346.94626"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_intersect_x.xml</Template>
|
||||
<Position x="249.40908" z="371.70481"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_corner.xml</Template>
|
||||
<Position x="277.69077" z="336.88477"/>
|
||||
<Orientation y="-2.35512"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_intersect_x.xml</Template>
|
||||
<Position x="329.25782" z="396.03922"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="340.11323" z="408.16907"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="34">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="341.61948" z="383.04615"/>
|
||||
<Orientation y="-0.85026"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="352.939" z="394.90967"/>
|
||||
<Orientation y="-2.3415"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_short.xml</Template>
|
||||
<Position x="261.32163" z="408.80231"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_long.xml</Template>
|
||||
<Position x="230.27828" z="391.26233"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="40">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_intersect_T.xml</Template>
|
||||
<Position x="269.9574" z="322.5857"/>
|
||||
<Orientation y="0.81775"/>
|
||||
</Entity>
|
||||
<Entity uid="41">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_corner.xml</Template>
|
||||
<Position x="253.06698" z="325.7548"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="42">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_corner.xml</Template>
|
||||
<Position x="273.23957" z="304.21686"/>
|
||||
<Orientation y="-2.34873"/>
|
||||
</Entity>
|
||||
<Entity uid="43">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_corner.xml</Template>
|
||||
<Position x="241.25646" z="313.56809"/>
|
||||
<Orientation y="0.78837"/>
|
||||
</Entity>
|
||||
<Entity uid="44">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_corner.xml</Template>
|
||||
<Position x="261.07096" z="292.40851"/>
|
||||
<Orientation y="-0.77863"/>
|
||||
</Entity>
|
||||
<Entity uid="46">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_intersect_T.xml</Template>
|
||||
<Position x="243.76645" z="296.3985"/>
|
||||
<Orientation y="-2.3501"/>
|
||||
</Entity>
|
||||
<Entity uid="47">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_corner.xml</Template>
|
||||
<Position x="233.9438" z="362.56122"/>
|
||||
<Orientation y="-0.82328"/>
|
||||
</Entity>
|
||||
<Entity uid="48">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_long.xml</Template>
|
||||
<Position x="212.04679" z="376.98322"/>
|
||||
<Orientation y="-0.79036"/>
|
||||
</Entity>
|
||||
<Entity uid="49">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_intersect_T.xml</Template>
|
||||
<Position x="265.2317" z="363.10755"/>
|
||||
<Orientation y="0.79479"/>
|
||||
</Entity>
|
||||
<Entity uid="50">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_end.xml</Template>
|
||||
<Position x="236.71831" z="289.43042"/>
|
||||
<Orientation y="0.81162"/>
|
||||
</Entity>
|
||||
<Entity uid="51">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_corner.xml</Template>
|
||||
<Position x="207.94445" z="406.41868"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="52">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_corner.xml</Template>
|
||||
<Position x="198.5556" z="397.36683"/>
|
||||
<Orientation y="0.76615"/>
|
||||
</Entity>
|
||||
<Entity uid="53">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="249.63004" z="421.29242"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="54">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="262.68232" z="435.62638"/>
|
||||
<Orientation y="0.80141"/>
|
||||
</Entity>
|
||||
<Entity uid="55">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="275.97962" z="447.17072"/>
|
||||
<Orientation y="-2.38546"/>
|
||||
</Entity>
|
||||
<Entity uid="56">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="237.8261" z="408.06031"/>
|
||||
<Orientation y="-0.74032"/>
|
||||
</Entity>
|
||||
<Entity uid="57">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="264.13312" z="458.9673"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="58">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="225.95852" z="420.81147"/>
|
||||
<Orientation y="0.80942"/>
|
||||
</Entity>
|
||||
<Entity uid="59">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_long.xml</Template>
|
||||
<Position x="245.54552" z="439.46479"/>
|
||||
<Orientation y="-2.37081"/>
|
||||
</Entity>
|
||||
<Entity uid="60">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="240.89281" z="353.58063"/>
|
||||
<Orientation y="0.72864"/>
|
||||
</Entity>
|
||||
<Entity uid="61">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="245.2692" z="352.97815"/>
|
||||
<Orientation y="1.22181"/>
|
||||
</Entity>
|
||||
<Entity uid="62">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="291.62183" z="342.12519"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="63">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="247.05381" z="359.08747"/>
|
||||
<Orientation y="2.36852"/>
|
||||
</Entity>
|
||||
<Entity uid="64">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="253.38227" z="356.88773"/>
|
||||
<Orientation y="0.36016"/>
|
||||
</Entity>
|
||||
<Entity uid="65">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="258.21354" z="350.38498"/>
|
||||
<Orientation y="2.11149"/>
|
||||
</Entity>
|
||||
<Entity uid="66">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="255.20801" z="354.20527"/>
|
||||
<Orientation y="1.50147"/>
|
||||
</Entity>
|
||||
<Entity uid="67">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="274.92331" z="358.16498"/>
|
||||
<Orientation y="1.05336"/>
|
||||
</Entity>
|
||||
<Entity uid="68">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="240.69838" z="348.05488"/>
|
||||
<Orientation y="2.82721"/>
|
||||
</Entity>
|
||||
<Entity uid="69">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="293.31562" z="337.92957"/>
|
||||
<Orientation y="-2.82096"/>
|
||||
</Entity>
|
||||
<Entity uid="70">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="290.6644" z="328.96155"/>
|
||||
<Orientation y="-2.67138"/>
|
||||
</Entity>
|
||||
<Entity uid="71">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="288.85743" z="325.77375"/>
|
||||
<Orientation y="-2.34217"/>
|
||||
</Entity>
|
||||
<Entity uid="72">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="284.97361" z="322.06962"/>
|
||||
<Orientation y="-2.07941"/>
|
||||
</Entity>
|
||||
<Entity uid="73">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="281.98545" z="320.29184"/>
|
||||
<Orientation y="-2.39747"/>
|
||||
</Entity>
|
||||
<Entity uid="74">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="277.61237" z="317.9557"/>
|
||||
<Orientation y="1.69916"/>
|
||||
</Entity>
|
||||
<Entity uid="75">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="282.95759" z="314.90027"/>
|
||||
<Orientation y="0.69414"/>
|
||||
</Entity>
|
||||
<Entity uid="76">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="288.91282" z="301.95698"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="77">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="290.54355" z="303.02009"/>
|
||||
<Orientation y="-2.2981"/>
|
||||
</Entity>
|
||||
<Entity uid="78">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="285.72196" z="297.37494"/>
|
||||
<Orientation y="-2.45606"/>
|
||||
</Entity>
|
||||
<Entity uid="79">
|
||||
<Template>actor|props/flora/grass_soft_large_tall.xml</Template>
|
||||
<Position x="281.44632" z="293.10547"/>
|
||||
<Orientation y="2.65564"/>
|
||||
</Entity>
|
||||
<Entity uid="80">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="240.12511" z="278.63392"/>
|
||||
<Orientation y="0.31814"/>
|
||||
</Entity>
|
||||
<Entity uid="81">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="241.46373" z="282.00574"/>
|
||||
<Orientation y="1.26394"/>
|
||||
</Entity>
|
||||
<Entity uid="82">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="244.66457" z="284.49119"/>
|
||||
<Orientation y="0.75451"/>
|
||||
</Entity>
|
||||
<Entity uid="83">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="247.17293" z="286.8209"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="84">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="248.74383" z="288.01185"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="85">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="250.64144" z="283.80542"/>
|
||||
<Orientation y="2.64443"/>
|
||||
</Entity>
|
||||
<Entity uid="86">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="253.22272" z="279.92157"/>
|
||||
<Orientation y="1.98363"/>
|
||||
</Entity>
|
||||
<Entity uid="87">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="257.2638" z="278.84702"/>
|
||||
<Orientation y="2.37317"/>
|
||||
</Entity>
|
||||
<Entity uid="88">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="259.4788" z="277.26325"/>
|
||||
<Orientation y="2.03379"/>
|
||||
</Entity>
|
||||
<Entity uid="89">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="264.98572" z="277.26328"/>
|
||||
<Orientation y="1.09264"/>
|
||||
</Entity>
|
||||
<Entity uid="90">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="267.65476" z="280.68287"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="91">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="273.21128" z="284.49115"/>
|
||||
<Orientation y="1.18435"/>
|
||||
</Entity>
|
||||
<Entity uid="92">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="277.4286" z="287.05768"/>
|
||||
<Orientation y="1.8435"/>
|
||||
</Entity>
|
||||
<Entity uid="93">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="280.5705" z="287.29514"/>
|
||||
<Orientation y="-2.9764"/>
|
||||
</Entity>
|
||||
<Entity uid="94">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="272.51841" z="284.37644"/>
|
||||
<Orientation y="-1.54159"/>
|
||||
</Entity>
|
||||
<Entity uid="95">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="267.97806" z="277.36783"/>
|
||||
<Orientation y="-2.4155"/>
|
||||
</Entity>
|
||||
<Entity uid="96">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="263.2334" z="271.43845"/>
|
||||
<Orientation y="2.83715"/>
|
||||
</Entity>
|
||||
<Entity uid="97">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="265.03873" z="266.3177"/>
|
||||
<Orientation y="-2.26178"/>
|
||||
</Entity>
|
||||
<Entity uid="98">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="255.87974" z="266.94916"/>
|
||||
<Orientation y="-1.00618"/>
|
||||
</Entity>
|
||||
<Entity uid="99">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="252.40027" z="270.57486"/>
|
||||
<Orientation y="-0.77758"/>
|
||||
</Entity>
|
||||
<Entity uid="100">
|
||||
<Template>actor|props/flora/grass_soft_small_tall.xml</Template>
|
||||
<Position x="248.26304" z="273.99268"/>
|
||||
<Orientation y="0.51355"/>
|
||||
</Entity>
|
||||
<Entity uid="116">
|
||||
<Template>units/pers/champion_cavalry</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="339.81162" z="395.43107"/>
|
||||
<Orientation y="-2.06785"/>
|
||||
</Entity>
|
||||
<Entity uid="117">
|
||||
<Template>units/samnite_swordsman</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="265.6095" z="454.75062"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="118">
|
||||
<Template>units/samnite_swordsman</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="229.18389" z="419.7982"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="119">
|
||||
<Template>units/samnite_spearman</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="261.85038" z="357.72773"/>
|
||||
<Orientation y="3.00101"/>
|
||||
</Entity>
|
||||
<Entity uid="120">
|
||||
<Template>units/samnite_skirmisher</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="290.06244" z="388.20191"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="121">
|
||||
<Template>units/samnite_skirmisher</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="265.01532" z="318.52472"/>
|
||||
<Orientation y="0.95902"/>
|
||||
</Entity>
|
||||
<Entity uid="122">
|
||||
<Template>units/samnite_swordsman</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="233.70633" z="354.96851"/>
|
||||
<Orientation y="0.92191"/>
|
||||
</Entity>
|
||||
<Entity uid="124">
|
||||
<Template>units/theb_sacred_band</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="313.64203" z="410.87317"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="125">
|
||||
<Template>units/thesp_melanochitones</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="338.04148" z="358.0724"/>
|
||||
<Orientation y="-2.9967"/>
|
||||
</Entity>
|
||||
<Entity uid="126">
|
||||
<Template>units/merc_black_cloak</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="208.62958" z="413.60084"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="127">
|
||||
<Template>units/gaul/champion_fanatic</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="282.82361" z="337.56321"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="130">
|
||||
<Template>units/pers/champion_elephant</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="235.01026" z="313.00052"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="131">
|
||||
<Template>units/pers/champion_infantry</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="261.49714" z="287.48682"/>
|
||||
<Orientation y="0.67197"/>
|
||||
</Entity>
|
||||
<Entity uid="132">
|
||||
<Template>units/rome/champion_infantry_swordsman_02</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="279.4455" z="303.71247"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="133">
|
||||
<Template>units/rome/champion_cavalry</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="253.3309" z="333.6291"/>
|
||||
<Orientation y="-2.39867"/>
|
||||
</Entity>
|
||||
<Entity uid="134">
|
||||
<Template>units/rome/champion_infantry_swordsman_04</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="273.86548" z="372.10001"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="135">
|
||||
<Template>units/rome/champion_infantry_swordsman_03</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="191.44065" z="396.62958"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="136">
|
||||
<Template>units/rome/champion_infantry_swordsman</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="305.20514" z="373.64271"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="137">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_intersect_T.xml</Template>
|
||||
<Position x="317.00562" z="336.47504"/>
|
||||
<Orientation y="0.74463"/>
|
||||
</Entity>
|
||||
<Entity uid="138">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_long.xml</Template>
|
||||
<Position x="332.65754" z="313.79621"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="139">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_long.xml</Template>
|
||||
<Position x="360.91556" z="290.16196"/>
|
||||
<Orientation y="2.18102"/>
|
||||
</Entity>
|
||||
<Entity uid="140">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_short.xml</Template>
|
||||
<Position x="381.6363" z="273.77118"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="141">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_short.xml</Template>
|
||||
<Position x="392.25318" z="261.00202"/>
|
||||
<Orientation y="2.52723"/>
|
||||
</Entity>
|
||||
<Entity uid="142">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_curve_small.xml</Template>
|
||||
<Position x="402.41202" z="248.12237"/>
|
||||
<Orientation y="-2.22666"/>
|
||||
</Entity>
|
||||
<Entity uid="143">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_long.xml</Template>
|
||||
<Position x="390.29261" z="229.45868"/>
|
||||
<Orientation y="-2.75512"/>
|
||||
</Entity>
|
||||
<Entity uid="144">
|
||||
<Template>actor|props/special/eyecandy/road_temperate_short.xml</Template>
|
||||
<Position x="381.68052" z="204.30529"/>
|
||||
<Orientation y="-2.92334"/>
|
||||
</Entity>
|
||||
<Entity uid="145">
|
||||
<Template>gaia/tree/cretan_date_palm_patch</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="314.72355" z="357.07303"/>
|
||||
<Orientation y="0.39925"/>
|
||||
</Entity>
|
||||
<Entity uid="146">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="322.05408" z="299.86808"/>
|
||||
<Orientation y="1.57081"/>
|
||||
</Entity>
|
||||
<Entity uid="147">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="333.28718" z="290.31702"/>
|
||||
<Orientation y="2.27244"/>
|
||||
</Entity>
|
||||
<Entity uid="148">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="343.71418" z="275.71409"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="149">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="356.61381" z="268.6118"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="150">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="364.07032" z="264.2031"/>
|
||||
<Orientation y="2.43094"/>
|
||||
</Entity>
|
||||
<Entity uid="151">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="371.70017" z="255.38059"/>
|
||||
<Orientation y="2.17896"/>
|
||||
</Entity>
|
||||
<Entity uid="152">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="384.3075" z="249.15629"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="153">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="345.34177" z="326.27106"/>
|
||||
<Orientation y="2.36916"/>
|
||||
</Entity>
|
||||
<Entity uid="154">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="365.73429" z="296.79813"/>
|
||||
<Orientation y="2.1734"/>
|
||||
</Entity>
|
||||
<Entity uid="155">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="377.15683" z="294.37824"/>
|
||||
<Orientation y="2.34113"/>
|
||||
</Entity>
|
||||
<Entity uid="156">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="386.84144" z="288.44098"/>
|
||||
<Orientation y="2.30184"/>
|
||||
</Entity>
|
||||
<Entity uid="157">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="398.34406" z="278.0127"/>
|
||||
<Orientation y="2.67353"/>
|
||||
</Entity>
|
||||
<Entity uid="158">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="405.2975" z="261.54352"/>
|
||||
<Orientation y="2.93471"/>
|
||||
</Entity>
|
||||
<Entity uid="159">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="409.32734" z="239.9452"/>
|
||||
<Orientation y="-3.13326"/>
|
||||
</Entity>
|
||||
<Entity uid="160">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="408.47593" z="230.46857"/>
|
||||
<Orientation y="-2.46746"/>
|
||||
</Entity>
|
||||
<Entity uid="161">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="402.82084" z="219.9484"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="162">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="397.49177" z="210.38003"/>
|
||||
<Orientation y="-2.88073"/>
|
||||
</Entity>
|
||||
<Entity uid="163">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="393.21949" z="195.67476"/>
|
||||
<Orientation y="2.96995"/>
|
||||
</Entity>
|
||||
<Entity uid="164">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="395.41364" z="186.25062"/>
|
||||
<Orientation y="3.04822"/>
|
||||
</Entity>
|
||||
<Entity uid="165">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="366.66752" z="193.25255"/>
|
||||
<Orientation y="0.16047"/>
|
||||
</Entity>
|
||||
<Entity uid="166">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="368.76337" z="208.59922"/>
|
||||
<Orientation y="0.21903"/>
|
||||
</Entity>
|
||||
<Entity uid="167">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="371.49634" z="216.94681"/>
|
||||
<Orientation y="0.5733"/>
|
||||
</Entity>
|
||||
<Entity uid="168">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="376.54499" z="225.33558"/>
|
||||
<Orientation y="0.582"/>
|
||||
</Entity>
|
||||
<Entity uid="169">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="314.75019" z="300.77112"/>
|
||||
<Orientation y="-0.7905"/>
|
||||
</Entity>
|
||||
<Entity uid="170">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="304.94156" z="311.75293"/>
|
||||
<Orientation y="-0.90629"/>
|
||||
</Entity>
|
||||
<Entity uid="171">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="293.75391" z="321.19391"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="172">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="335.79871" z="327.95325"/>
|
||||
<Orientation y="0.78274"/>
|
||||
</Entity>
|
||||
<Entity uid="173">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="179.92487" z="397.02961"/>
|
||||
<Orientation y="0.55022"/>
|
||||
</Entity>
|
||||
<Entity uid="174">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="184.50957" z="404.73487"/>
|
||||
<Orientation y="0.79139"/>
|
||||
</Entity>
|
||||
<Entity uid="175">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="190.47205" z="410.80408"/>
|
||||
<Orientation y="0.60184"/>
|
||||
</Entity>
|
||||
<Entity uid="176">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="196.42736" z="418.25098"/>
|
||||
<Orientation y="0.92507"/>
|
||||
</Entity>
|
||||
<Entity uid="177">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="200.63566" z="423.66117"/>
|
||||
<Orientation y="0.88242"/>
|
||||
</Entity>
|
||||
<Entity uid="178">
|
||||
<Template>gaia/tree/euro_beech</Template>
|
||||
<Player>0</Player>
|
||||
<Position x="205.92988" z="429.08436"/>
|
||||
<Orientation y="0.53133"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,891 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a459995cf2fa3defc3381a989c94b9fcf9097e9e87332c9a9f140d9a48941faa
|
||||
size 24729
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>cirrus</SkySet>
|
||||
<SunColor r="0.894118" g="0.894118" b="0.894118"/>
|
||||
<SunElevation angle="0.690056"/>
|
||||
<SunRotation angle="-1.00407"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Fog>
|
||||
<FogFactor>0.000742187</FogFactor>
|
||||
<FogThickness>0</FogThickness>
|
||||
<FogColor r="1" g="1" b="1"/>
|
||||
</Fog>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.109804" g="0.47451" b="0.537255"/>
|
||||
<Tint r="0" g="0.501961" b="1"/>
|
||||
<Height>60.1044</Height>
|
||||
<Waviness>4</Waviness>
|
||||
<Murkiness>1</Murkiness>
|
||||
<WindAngle>1.24559</WindAngle>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
<Postproc>
|
||||
<Brightness>0</Brightness>
|
||||
<Contrast>1</Contrast>
|
||||
<Saturation>0.99</Saturation>
|
||||
<Bloom>0.1999</Bloom>
|
||||
<PostEffect>hdr</PostEffect>
|
||||
</Postproc>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="855.97" y="202.645" z="851.017"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"AISeed": 0,
|
||||
"AllyView": false,
|
||||
"CircularMap": true,
|
||||
"Description": "Ship Combat Demo.",
|
||||
"Keywords": [],
|
||||
"LockTeams": false,
|
||||
"Name": "Ship Combat Demo",
|
||||
"PlayerData": [
|
||||
null,
|
||||
{
|
||||
"Civ": "brit",
|
||||
"Color": {
|
||||
"b": 255,
|
||||
"g": 128,
|
||||
"r": 0
|
||||
},
|
||||
"PopulationLimit": 500
|
||||
},
|
||||
{
|
||||
"Civ": "pers",
|
||||
"Color": {
|
||||
"b": 0,
|
||||
"g": 0,
|
||||
"r": 206
|
||||
},
|
||||
"PopulationLimit": 500
|
||||
}
|
||||
],
|
||||
"Preview": "",
|
||||
"RevealMap": false,
|
||||
"VictoryConditions": [
|
||||
"conquest_units"
|
||||
]
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="23">
|
||||
<Template>units/athen/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="232.43696" z="316.9206"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="7944"/>
|
||||
</Entity>
|
||||
<Entity uid="24">
|
||||
<Template>units/athen/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="250.83088" z="333.07874"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="27492"/>
|
||||
</Entity>
|
||||
<Entity uid="25">
|
||||
<Template>units/athen/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="263.72407" z="350.74842"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="2534"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>units/athen/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="277.51948" z="368.19495"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="2534"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>units/athen/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="293.48957" z="384.4581"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="40249"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>units/athen/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="314.1496" z="406.77112"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="40249"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="340.26764" z="230.24787"/>
|
||||
<Orientation y="-0.76932"/>
|
||||
<Actor seed="17214"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="397.6215" z="276.76282"/>
|
||||
<Orientation y="-0.81254"/>
|
||||
<Actor seed="17214"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="365.02887" z="249.67411"/>
|
||||
<Orientation y="-0.86615"/>
|
||||
<Actor seed="28008"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="320.37757" z="217.74009"/>
|
||||
<Orientation y="-0.62998"/>
|
||||
<Actor seed="38527"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="529.72162" z="541.05646"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="8112"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="549.13465" z="559.01868"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="62196"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="567.17634" z="584.24183"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="62196"/>
|
||||
</Entity>
|
||||
<Entity uid="38">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="586.8606" z="606.27228"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="31573"/>
|
||||
</Entity>
|
||||
<Entity uid="39">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="615.39661" z="630.64124"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="31573"/>
|
||||
</Entity>
|
||||
<Entity uid="40">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="644.93921" z="652.69587"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="54158"/>
|
||||
</Entity>
|
||||
<Entity uid="41">
|
||||
<Template>units/sele/ship_siege</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="714.0196" z="433.6868"/>
|
||||
<Orientation y="-0.60502"/>
|
||||
<Actor seed="17578"/>
|
||||
</Entity>
|
||||
<Entity uid="42">
|
||||
<Template>units/sele/ship_siege</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="738.9626" z="454.58552"/>
|
||||
<Orientation y="-0.63018"/>
|
||||
<Actor seed="58283"/>
|
||||
</Entity>
|
||||
<Entity uid="43">
|
||||
<Template>units/sele/ship_siege</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="668.68537" z="417.01624"/>
|
||||
<Orientation y="-0.60274"/>
|
||||
<Actor seed="58283"/>
|
||||
</Entity>
|
||||
<Entity uid="44">
|
||||
<Template>units/sele/ship_siege</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="693.4748" z="429.40021"/>
|
||||
<Orientation y="-0.67508"/>
|
||||
<Actor seed="45658"/>
|
||||
</Entity>
|
||||
<Entity uid="45">
|
||||
<Template>units/iber/ship_fire</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1143.56092" z="1160.21998"/>
|
||||
<Orientation y="2.30997"/>
|
||||
<Actor seed="49484"/>
|
||||
</Entity>
|
||||
<Entity uid="46">
|
||||
<Template>units/iber/ship_fire</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1151.91431" z="1167.6244"/>
|
||||
<Orientation y="2.2732"/>
|
||||
<Actor seed="14679"/>
|
||||
</Entity>
|
||||
<Entity uid="47">
|
||||
<Template>units/iber/ship_fire</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1163.76294" z="1173.26038"/>
|
||||
<Orientation y="2.02744"/>
|
||||
<Actor seed="33656"/>
|
||||
</Entity>
|
||||
<Entity uid="48">
|
||||
<Template>units/iber/ship_fire</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1177.23963" z="1179.69837"/>
|
||||
<Orientation y="2.20127"/>
|
||||
<Actor seed="36487"/>
|
||||
</Entity>
|
||||
<Entity uid="49">
|
||||
<Template>units/iber/ship_fire</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1197.73865" z="1188.20386"/>
|
||||
<Orientation y="2.1113"/>
|
||||
<Actor seed="36487"/>
|
||||
</Entity>
|
||||
<Entity uid="50">
|
||||
<Template>units/ptol/ship_siege</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="980.2494" z="663.30304"/>
|
||||
<Orientation y="-0.69945"/>
|
||||
<Actor seed="18728"/>
|
||||
</Entity>
|
||||
<Entity uid="51">
|
||||
<Template>units/ptol/ship_siege</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1008.4629" z="681.4474"/>
|
||||
<Orientation y="-0.71236"/>
|
||||
<Actor seed="8021"/>
|
||||
</Entity>
|
||||
<Entity uid="52">
|
||||
<Template>units/ptol/ship_siege</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1038.21558" z="700.58552"/>
|
||||
<Orientation y="-0.69425"/>
|
||||
<Actor seed="14249"/>
|
||||
</Entity>
|
||||
<Entity uid="53">
|
||||
<Template>units/ptol/ship_siege</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1065.44141" z="728.26496"/>
|
||||
<Orientation y="-0.62018"/>
|
||||
<Actor seed="14249"/>
|
||||
</Entity>
|
||||
<Entity uid="54">
|
||||
<Template>units/iber/ship_fire</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1083.02308" z="1069.64332"/>
|
||||
<Orientation y="1.62708"/>
|
||||
<Actor seed="49484"/>
|
||||
</Entity>
|
||||
<Entity uid="55">
|
||||
<Template>units/iber/ship_fire</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1084.8307" z="1080.65845"/>
|
||||
<Orientation y="1.59032"/>
|
||||
<Actor seed="14679"/>
|
||||
</Entity>
|
||||
<Entity uid="56">
|
||||
<Template>units/iber/ship_fire</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1090.46583" z="1092.50757"/>
|
||||
<Orientation y="1.34455"/>
|
||||
<Actor seed="33656"/>
|
||||
</Entity>
|
||||
<Entity uid="57">
|
||||
<Template>units/iber/ship_fire</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1096.8578" z="1106.00599"/>
|
||||
<Orientation y="1.5184"/>
|
||||
<Actor seed="36487"/>
|
||||
</Entity>
|
||||
<Entity uid="58">
|
||||
<Template>units/iber/ship_fire</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1107.39283" z="1125.5398"/>
|
||||
<Orientation y="1.42841"/>
|
||||
<Actor seed="36487"/>
|
||||
</Entity>
|
||||
<Entity uid="59">
|
||||
<Template>units/maur/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1268.03516" z="945.53309"/>
|
||||
<Orientation y="-0.76937"/>
|
||||
<Actor seed="49435"/>
|
||||
</Entity>
|
||||
<Entity uid="60">
|
||||
<Template>units/maur/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1295.95972" z="961.96991"/>
|
||||
<Orientation y="-0.8532"/>
|
||||
<Actor seed="37205"/>
|
||||
</Entity>
|
||||
<Entity uid="61">
|
||||
<Template>units/maur/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1305.0459" z="988.70771"/>
|
||||
<Orientation y="-0.7306"/>
|
||||
<Actor seed="57337"/>
|
||||
</Entity>
|
||||
<Entity uid="62">
|
||||
<Template>units/maur/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1321.24659" z="1009.27381"/>
|
||||
<Orientation y="-0.86902"/>
|
||||
<Actor seed="57337"/>
|
||||
</Entity>
|
||||
<Entity uid="63">
|
||||
<Template>units/maur/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1342.4336" z="1033.266"/>
|
||||
<Orientation y="-0.69033"/>
|
||||
<Actor seed="30718"/>
|
||||
</Entity>
|
||||
<Entity uid="64">
|
||||
<Template>units/sele/ship_siege</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1087.12024" z="175.40992"/>
|
||||
<Orientation y="-5.62151"/>
|
||||
<Actor seed="17578"/>
|
||||
</Entity>
|
||||
<Entity uid="65">
|
||||
<Template>units/sele/ship_siege</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1123.83582" z="145.30024"/>
|
||||
<Orientation y="-5.64666"/>
|
||||
<Actor seed="58283"/>
|
||||
</Entity>
|
||||
<Entity uid="66">
|
||||
<Template>units/sele/ship_siege</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1008.37281" z="239.43808"/>
|
||||
<Orientation y="-5.61922"/>
|
||||
<Actor seed="58283"/>
|
||||
</Entity>
|
||||
<Entity uid="67">
|
||||
<Template>units/sele/ship_siege</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="1043.44971" z="206.8162"/>
|
||||
<Orientation y="-5.69156"/>
|
||||
<Actor seed="45658"/>
|
||||
</Entity>
|
||||
<Entity uid="68">
|
||||
<Template>units/pirates/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1218.64271" z="294.97214"/>
|
||||
<Orientation y="-2.76717"/>
|
||||
<Actor seed="51410"/>
|
||||
</Entity>
|
||||
<Entity uid="69">
|
||||
<Template>units/pirates/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1128.70179" z="350.1467"/>
|
||||
<Orientation y="-2.70095"/>
|
||||
<Actor seed="14965"/>
|
||||
</Entity>
|
||||
<Entity uid="70">
|
||||
<Template>units/pirates/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1184.79432" z="320.857"/>
|
||||
<Orientation y="-2.47838"/>
|
||||
<Actor seed="14965"/>
|
||||
</Entity>
|
||||
<Entity uid="71">
|
||||
<Template>units/pirates/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1152.92798" z="335.77878"/>
|
||||
<Orientation y="-2.3253"/>
|
||||
<Actor seed="62443"/>
|
||||
</Entity>
|
||||
<Entity uid="72">
|
||||
<Template>units/pirates/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1254.18458" z="273.26594"/>
|
||||
<Orientation y="-2.48613"/>
|
||||
<Actor seed="37384"/>
|
||||
</Entity>
|
||||
<Entity uid="73">
|
||||
<Template>units/pirates/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1103.10169" z="371.19153"/>
|
||||
<Orientation y="-2.35178"/>
|
||||
<Actor seed="37384"/>
|
||||
</Entity>
|
||||
<Entity uid="74">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="524.10224" z="1178.51807"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="59739"/>
|
||||
</Entity>
|
||||
<Entity uid="75">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="536.87818" z="1185.83716"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="23171"/>
|
||||
</Entity>
|
||||
<Entity uid="76">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="545.70374" z="1195.24292"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="2364"/>
|
||||
</Entity>
|
||||
<Entity uid="77">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="559.35596" z="1211.72852"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="2364"/>
|
||||
</Entity>
|
||||
<Entity uid="78">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="573.98243" z="1227.6316"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="2364"/>
|
||||
</Entity>
|
||||
<Entity uid="79">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="591.44275" z="1248.54981"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="48938"/>
|
||||
</Entity>
|
||||
<Entity uid="80">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="613.41047" z="1268.00928"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="48938"/>
|
||||
</Entity>
|
||||
<Entity uid="81">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="633.07428" z="1280.58301"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="48938"/>
|
||||
</Entity>
|
||||
<Entity uid="82">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="564.88349" z="1142.25892"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="62166"/>
|
||||
</Entity>
|
||||
<Entity uid="83">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="576.79712" z="1152.25782"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="41596"/>
|
||||
</Entity>
|
||||
<Entity uid="84">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="592.56653" z="1164.1637"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="41596"/>
|
||||
</Entity>
|
||||
<Entity uid="85">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="607.63904" z="1182.42432"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="34717"/>
|
||||
</Entity>
|
||||
<Entity uid="86">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="621.62275" z="1200.46045"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="34717"/>
|
||||
</Entity>
|
||||
<Entity uid="87">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="633.61481" z="1214.28956"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="34717"/>
|
||||
</Entity>
|
||||
<Entity uid="88">
|
||||
<Template>units/mace/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="652.97419" z="1235.9563"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="3588"/>
|
||||
</Entity>
|
||||
<Entity uid="89">
|
||||
<Template>units/athen/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="477.22596" z="498.64396"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="39545"/>
|
||||
</Entity>
|
||||
<Entity uid="90">
|
||||
<Template>units/athen/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="487.27744" z="508.0489"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="49490"/>
|
||||
</Entity>
|
||||
<Entity uid="91">
|
||||
<Template>units/athen/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="497.03583" z="520.85053"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="4087"/>
|
||||
</Entity>
|
||||
<Entity uid="92">
|
||||
<Template>structures/athen/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="97.13825" z="1009.43464"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="33076"/>
|
||||
</Entity>
|
||||
<Entity uid="93">
|
||||
<Template>structures/brit/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="122.93577" z="1031.77063"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="51610"/>
|
||||
</Entity>
|
||||
<Entity uid="94">
|
||||
<Template>structures/cart/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="149.66593" z="1051.29664"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="50947"/>
|
||||
</Entity>
|
||||
<Entity uid="95">
|
||||
<Template>structures/cart/super_dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="182.64258" z="1091.25062"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="4693"/>
|
||||
</Entity>
|
||||
<Entity uid="96">
|
||||
<Template>structures/gaul/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="219.42484" z="1127.54468"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="51849"/>
|
||||
</Entity>
|
||||
<Entity uid="97">
|
||||
<Template>structures/han/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="242.49531" z="1146.75831"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="48944"/>
|
||||
</Entity>
|
||||
<Entity uid="98">
|
||||
<Template>structures/iber/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="265.66892" z="1176.04957"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="45108"/>
|
||||
</Entity>
|
||||
<Entity uid="99">
|
||||
<Template>structures/kush/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="282.92106" z="1207.06348"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="36228"/>
|
||||
</Entity>
|
||||
<Entity uid="100">
|
||||
<Template>structures/mace/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="304.83048" z="1232.10914"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="20636"/>
|
||||
</Entity>
|
||||
<Entity uid="101">
|
||||
<Template>structures/maur/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="324.35373" z="1257.68213"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="61785"/>
|
||||
</Entity>
|
||||
<Entity uid="102">
|
||||
<Template>structures/pers/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="347.8896" z="1281.41553"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="30912"/>
|
||||
</Entity>
|
||||
<Entity uid="103">
|
||||
<Template>structures/ptol/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="379.66575" z="1310.78174"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="64036"/>
|
||||
</Entity>
|
||||
<Entity uid="104">
|
||||
<Template>structures/rome/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="412.32645" z="1336.66114"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="48007"/>
|
||||
</Entity>
|
||||
<Entity uid="105">
|
||||
<Template>structures/sele/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="434.35282" z="1368.27564"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="61568"/>
|
||||
</Entity>
|
||||
<Entity uid="106">
|
||||
<Template>structures/spart/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="461.55597" z="1400.14625"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="40495"/>
|
||||
</Entity>
|
||||
<Entity uid="107">
|
||||
<Template>units/athen/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="132.35169" z="703.7591"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="13433"/>
|
||||
</Entity>
|
||||
<Entity uid="108">
|
||||
<Template>units/brit/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="149.7392" z="711.17334"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="25710"/>
|
||||
</Entity>
|
||||
<Entity uid="109">
|
||||
<Template>units/cart/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="164.81922" z="725.29206"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="11553"/>
|
||||
</Entity>
|
||||
<Entity uid="110">
|
||||
<Template>units/gaul/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="184.28782" z="741.56153"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="45742"/>
|
||||
</Entity>
|
||||
<Entity uid="111">
|
||||
<Template>units/han/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="202.16718" z="753.49756"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="56258"/>
|
||||
</Entity>
|
||||
<Entity uid="112">
|
||||
<Template>units/iber/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="214.21183" z="767.88117"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="14859"/>
|
||||
</Entity>
|
||||
<Entity uid="113">
|
||||
<Template>units/kush/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="233.67365" z="794.45008"/>
|
||||
<Orientation y="2.27372"/>
|
||||
<Actor seed="31864"/>
|
||||
</Entity>
|
||||
<Entity uid="114">
|
||||
<Template>units/mace/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="260.05204" z="826.9787"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="54470"/>
|
||||
</Entity>
|
||||
<Entity uid="117">
|
||||
<Template>units/maur/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="286.23115" z="837.6349"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="54530"/>
|
||||
</Entity>
|
||||
<Entity uid="118">
|
||||
<Template>units/pers/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="304.8335" z="857.66761"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="44339"/>
|
||||
</Entity>
|
||||
<Entity uid="119">
|
||||
<Template>units/ptol/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="334.02549" z="872.9336"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="49973"/>
|
||||
</Entity>
|
||||
<Entity uid="120">
|
||||
<Template>units/rome/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="351.94391" z="891.1374"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="639"/>
|
||||
</Entity>
|
||||
<Entity uid="121">
|
||||
<Template>units/sele/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="376.07886" z="909.65125"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="37325"/>
|
||||
</Entity>
|
||||
<Entity uid="122">
|
||||
<Template>units/spart/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="399.10358" z="925.51764"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="51290"/>
|
||||
</Entity>
|
||||
<Entity uid="123">
|
||||
<Template>units/cart/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="676.61805" z="675.08307"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="25047"/>
|
||||
</Entity>
|
||||
<Entity uid="124">
|
||||
<Template>units/cart/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="690.44764" z="691.13422"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="14104"/>
|
||||
</Entity>
|
||||
<Entity uid="126">
|
||||
<Template>units/cart/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="711.46082" z="708.8476"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="61491"/>
|
||||
</Entity>
|
||||
<Entity uid="127">
|
||||
<Template>units/rome/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="853.12928" z="799.45655"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="10715"/>
|
||||
</Entity>
|
||||
<Entity uid="128">
|
||||
<Template>units/rome/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="870.8813" z="821.8119"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="57324"/>
|
||||
</Entity>
|
||||
<Entity uid="129">
|
||||
<Template>units/rome/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="891.58295" z="839.9347"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="61308"/>
|
||||
</Entity>
|
||||
<Entity uid="130">
|
||||
<Template>units/rome/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="909.42432" z="856.35279"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="61308"/>
|
||||
</Entity>
|
||||
<Entity uid="131">
|
||||
<Template>units/rome/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="932.17768" z="885.34791"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="54072"/>
|
||||
</Entity>
|
||||
<Entity uid="132">
|
||||
<Template>units/athen/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="895.10492" z="1371.08167"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="44668"/>
|
||||
</Entity>
|
||||
<Entity uid="133">
|
||||
<Template>units/athen/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="883.13471" z="1356.56324"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="27227"/>
|
||||
</Entity>
|
||||
<Entity uid="134">
|
||||
<Template>units/athen/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="906.73578" z="1394.72889"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="55456"/>
|
||||
</Entity>
|
||||
<Entity uid="135">
|
||||
<Template>units/athen/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="923.64856" z="1419.37916"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="55456"/>
|
||||
</Entity>
|
||||
<Entity uid="136">
|
||||
<Template>units/athen/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="936.17402" z="1445.27417"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="42757"/>
|
||||
</Entity>
|
||||
<Entity uid="137">
|
||||
<Template>units/athen/ship_ram</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="871.01789" z="1334.15625"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="42757"/>
|
||||
</Entity>
|
||||
<Entity uid="138">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="964.53217" z="1260.25416"/>
|
||||
<Orientation y="-0.61043"/>
|
||||
<Actor seed="42862"/>
|
||||
</Entity>
|
||||
<Entity uid="139">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="983.85486" z="1276.20911"/>
|
||||
<Orientation y="-0.6593"/>
|
||||
<Actor seed="38946"/>
|
||||
</Entity>
|
||||
<Entity uid="140">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="993.56928" z="1298.72144"/>
|
||||
<Orientation y="-0.45241"/>
|
||||
<Actor seed="38946"/>
|
||||
</Entity>
|
||||
<Entity uid="141">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1016.39802" z="1312.72669"/>
|
||||
<Orientation y="-0.42396"/>
|
||||
<Actor seed="18856"/>
|
||||
</Entity>
|
||||
<Entity uid="142">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1035.89271" z="1335.97388"/>
|
||||
<Orientation y="-0.38086"/>
|
||||
<Actor seed="18856"/>
|
||||
</Entity>
|
||||
<Entity uid="143">
|
||||
<Template>units/spart/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="1057.09827" z="1372.04444"/>
|
||||
<Orientation y="-0.46407"/>
|
||||
<Actor seed="51668"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
@ -1,3 +1,313 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8faf619a051e216e98661e1eb1f56bb76df7da137ff3848e9b0365da16b65229
|
||||
size 8482
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>sunny</SkySet>
|
||||
<SunColor r="1" g="0.847059" b="0.529412"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785396"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Height>47.7377</Height>
|
||||
<Waviness>7.0</Waviness>
|
||||
<Murkiness>1</Murkiness>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="331.121" y="91.2117" z="268.396"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "Ship formations mockup.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Ship Formations",
|
||||
"PlayerData": [
|
||||
{
|
||||
"AI": "",
|
||||
"Civ": "athen",
|
||||
"Color": {
|
||||
"b": 200,
|
||||
"g": 46,
|
||||
"r": 46
|
||||
},
|
||||
"Name": "Ships",
|
||||
"StartingCamera": {
|
||||
"Position": {
|
||||
"x": 331.121,
|
||||
"y": 22.3825,
|
||||
"z": 366.694
|
||||
},
|
||||
"Rotation": {
|
||||
"x": 30,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
}
|
||||
},
|
||||
"Team": -1
|
||||
}
|
||||
],
|
||||
"RevealMap": true,
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="11">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="271.95566" z="327.79468"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="12">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="293.00943" z="349.03132"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="13">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="314.04102" z="369.33704"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="14">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="335.98432" z="393.24796"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="362.52085" z="420.14081"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="313.49494" z="304.3263"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="17">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="333.98462" z="326.7324"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="18">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="353.82715" z="349.65336"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="19">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="379.97281" z="373.04343"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="20">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="291.22855" z="283.54139"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="21">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="513.01471" z="442.01395"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="22">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="530.55652" z="459.99189"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="23">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="547.27021" z="407.9527"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="24">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="563.86396" z="427.6259"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="25">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="596.71515" z="395.37772"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="581.03992" z="375.95911"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="479.24286" z="476.5854"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="497.57087" z="492.66825"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="29">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="446.52063" z="508.76032"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="462.48005" z="528.25434"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="720.97034" z="502.49555"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="740.04017" z="521.47053"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="759.8028" z="541.4452"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="34">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="779.16718" z="559.8069"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="687.7115" z="535.09101"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="655.26948" z="570.69367"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="675.51417" z="589.75568"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="38">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="694.04957" z="608.98224"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="39">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="712.82575" z="625.17707"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="40">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="745.81006" z="591.20356"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="41">
|
||||
<Template>units/athen/ship_merchant</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="715.23475" z="564.53345"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="42">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="332.76691" z="557.53803"/>
|
||||
<Orientation y="1.89394"/>
|
||||
</Entity>
|
||||
<Entity uid="43">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="260.8646" z="606.3523"/>
|
||||
<Orientation y="-0.61513"/>
|
||||
</Entity>
|
||||
<Entity uid="44">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="245.16663" z="553.99286"/>
|
||||
<Orientation y="-1.90088"/>
|
||||
</Entity>
|
||||
<Entity uid="45">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="263.67154" z="531.79548"/>
|
||||
<Orientation y="-2.5633"/>
|
||||
</Entity>
|
||||
<Entity uid="46">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="314.07786" z="607.52338"/>
|
||||
<Orientation y="0.57816"/>
|
||||
</Entity>
|
||||
<Entity uid="47">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="287.35224" z="615.78418"/>
|
||||
<Orientation y="-0.05382"/>
|
||||
</Entity>
|
||||
<Entity uid="48">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="290.3892" z="523.38465"/>
|
||||
<Orientation y="3.10311"/>
|
||||
</Entity>
|
||||
<Entity uid="49">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="330.02259" z="585.71711"/>
|
||||
<Orientation y="1.2334"/>
|
||||
</Entity>
|
||||
<Entity uid="50">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="246.06211" z="584.46082"/>
|
||||
<Orientation y="-1.2563"/>
|
||||
</Entity>
|
||||
<Entity uid="51">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="317.11942" z="533.28266"/>
|
||||
<Orientation y="2.49235"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,239 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6d4b093633143f3cf64c82dc3a2913c47706487b88ce88367696f38ad0e6f543
|
||||
size 6525
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>sunny</SkySet>
|
||||
<SunColor r="0.737255" g="0.721569" b="0.639216"/>
|
||||
<SunElevation angle="0.717903"/>
|
||||
<SunRotation angle="-0.693359"/>
|
||||
<AmbientColor r="0.447059" g="0.509804" b="0.54902"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.537255" g="0.631373" b="0.74902"/>
|
||||
<Height>36.4066</Height>
|
||||
<Waviness>8.0</Waviness>
|
||||
<Murkiness>0.541992</Murkiness>
|
||||
<Tint r="0.584314" g="0.8" b="0.917647"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="558.99" y="96.7301" z="127.804"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "Move ships around. Attack other ships.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Ships Demo",
|
||||
"PlayerData": [
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"AI": "",
|
||||
"Civ": "athen"
|
||||
}
|
||||
],
|
||||
"RevealMap": false,
|
||||
"VictoryConditions": [
|
||||
"conquest"
|
||||
]
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="11">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="654.27369" z="217.47564"/>
|
||||
<Orientation y="0.01796"/>
|
||||
</Entity>
|
||||
<Entity uid="12">
|
||||
<Template>units/rome/ship_siege</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="689.82941" z="211.8737"/>
|
||||
<Orientation y="0.01847"/>
|
||||
</Entity>
|
||||
<Entity uid="13">
|
||||
<Template>units/rome/ship_siege</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="250.69501" z="214.3635"/>
|
||||
<Orientation y="0.06308"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>units/athen/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="476.02503" z="219.328"/>
|
||||
<Orientation y="-0.04754"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>units/athen/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="504.155" z="215.21683"/>
|
||||
<Orientation y="-0.05802"/>
|
||||
</Entity>
|
||||
<Entity uid="18">
|
||||
<Template>units/athen/ship_merchant</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="449.73887" z="224.0693"/>
|
||||
<Orientation y="-0.14995"/>
|
||||
</Entity>
|
||||
<Entity uid="19">
|
||||
<Template>units/athen/ship_fishing</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="431.68952" z="229.94391"/>
|
||||
<Orientation y="-0.07242"/>
|
||||
</Entity>
|
||||
<Entity uid="23">
|
||||
<Template>units/athen/ship_fishing</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="851.08533" z="565.38135"/>
|
||||
<Orientation y="-2.9915"/>
|
||||
</Entity>
|
||||
<Entity uid="24">
|
||||
<Template>units/athen/ship_fishing</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="215.3224" z="579.32837"/>
|
||||
<Orientation y="2.84787"/>
|
||||
</Entity>
|
||||
<Entity uid="25">
|
||||
<Template>units/athen/ship_merchant</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="564.40119" z="570.3401"/>
|
||||
<Orientation y="-3.11121"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>units/athen/ship_merchant</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="783.40027" z="570.21924"/>
|
||||
<Orientation y="-3.08236"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>units/athen/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="436.29468" z="578.99036"/>
|
||||
<Orientation y="3.11654"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>units/athen/ship_scout</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="621.5608" z="580.42377"/>
|
||||
<Orientation y="-3.06238"/>
|
||||
</Entity>
|
||||
<Entity uid="29">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="358.91327" z="587.59266"/>
|
||||
<Orientation y="3.10068"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>units/pers/ship_arrow</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="496.75922" z="576.06684"/>
|
||||
<Orientation y="3.084"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>units/rome/ship_siege</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="711.42603" z="580.62928"/>
|
||||
<Orientation y="-3.12911"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>units/rome/ship_siege</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="284.72608" z="590.41932"/>
|
||||
<Orientation y="3.06443"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>units/gaul/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="575.07416" z="220.04925"/>
|
||||
<Orientation y="-0.04952"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>units/pers/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="623.9704" z="218.14034"/>
|
||||
<Orientation y="-0.0106"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>units/gaul/ship_merchant</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="550.01886" z="226.13765"/>
|
||||
<Orientation y="-0.06652"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>units/gaul/ship_fishing</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="525.74158" z="229.36063"/>
|
||||
<Orientation y="-0.09922"/>
|
||||
</Entity>
|
||||
<Entity uid="38">
|
||||
<Template>units/pers/ship_fishing</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="600.52717" z="228.30991"/>
|
||||
<Orientation y="0.01967"/>
|
||||
</Entity>
|
||||
<Entity uid="39">
|
||||
<Template>units/cart/ship_scout</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="343.57251" z="221.16764"/>
|
||||
<Orientation y="0.0036"/>
|
||||
</Entity>
|
||||
<Entity uid="40">
|
||||
<Template>units/cart/ship_fishing</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="282.4441" z="229.51305"/>
|
||||
<Orientation y="0.10297"/>
|
||||
</Entity>
|
||||
<Entity uid="41">
|
||||
<Template>units/cart/ship_merchant</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="308.15732" z="222.30799"/>
|
||||
<Orientation y="-0.04737"/>
|
||||
</Entity>
|
||||
<Entity uid="42">
|
||||
<Template>units/cart/ship_siege</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="410.70402" z="211.45434"/>
|
||||
<Orientation y="-0.0905"/>
|
||||
</Entity>
|
||||
<Entity uid="43">
|
||||
<Template>units/cart/ship_arrow</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="375.85166" z="215.51796"/>
|
||||
<Orientation y="-0.02283"/>
|
||||
</Entity>
|
||||
<Entity uid="44">
|
||||
<Template>units/iber/ship_fishing</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="722.95148" z="230.5536"/>
|
||||
<Orientation y="-0.0343"/>
|
||||
</Entity>
|
||||
<Entity uid="45">
|
||||
<Template>units/iber/ship_merchant</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="749.92951" z="226.06406"/>
|
||||
<Orientation y="-0.06434"/>
|
||||
</Entity>
|
||||
<Entity uid="46">
|
||||
<Template>units/noldor_warship</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="808.33423" z="223.92971"/>
|
||||
<Orientation y="0.04715"/>
|
||||
</Entity>
|
||||
<Entity uid="47">
|
||||
<Template>units/iber/ship_fire</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="776.38764" z="226.10413"/>
|
||||
<Orientation y="-0.01418"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,51 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:594b150f8c7f609be9cbfb231aee4f06e86993a703c680b1a5e52710b80d01bd
|
||||
size 1078
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="5.49779"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>lake</Type>
|
||||
<Color r="0.3" g="0.35" b="0.7"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4.0</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<Tint r="0.28" g="0.3" b="0.59"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="486.832" y="173.833" z="21.2639"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "Give an interesting description of your map.",
|
||||
"Keywords": [
|
||||
"hidden"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Base Temperate Map",
|
||||
"PlayerData": [
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"Civ": "athen"
|
||||
}
|
||||
],
|
||||
"RevealMap": false,
|
||||
"VictoryConditions": [
|
||||
"conquest"
|
||||
]
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities/>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,452 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f2ecbd24c919b596a2da286ec0f75ad639a6b6fece4593a0480c3598eb9eda83
|
||||
size 12823
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="0.709804" g="0.709804" b="0.709804"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785396"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>lake</Type>
|
||||
<Color r="0.298039" g="0.34902" b="0.698039"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4.0</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<Tint r="0.278431" g="0.298039" b="0.588235"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="526.643" y="110.662" z="175.348"/>
|
||||
<Rotation angle="-0.0757025"/>
|
||||
<Declination angle="0.523599"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "A demo map showing the territory effects of each type of structure.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Territory Demo",
|
||||
"PlayerData": [
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"Civ": "athen"
|
||||
}
|
||||
],
|
||||
"RevealMap": false,
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="11">
|
||||
<Template>structures/cart/civil_centre</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="510.98829" z="344.72135"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="12">
|
||||
<Template>structures/cart/house</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="335.30402" z="410.34861"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="13">
|
||||
<Template>structures/cart/house</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="370.78125" z="469.68815"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="14">
|
||||
<Template>structures/cart/house</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="310.14542" z="458.54871"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>structures/cart/market</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="348.51017" z="561.84498"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>structures/cart/defense_tower</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="266.04773" z="536.93366"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="17">
|
||||
<Template>structures/cart/defense_tower</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="323.78394" z="332.0944"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="18">
|
||||
<Template>structures/cart/temple</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="410.35932" z="646.53315"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="19">
|
||||
<Template>structures/cart/fortress</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="530.40943" z="139.3762"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="20">
|
||||
<Template>structures/cart/storehouse</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="292.14991" z="393.15833"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="21">
|
||||
<Template>structures/cart/storehouse</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="683.7978" z="304.56202"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="22">
|
||||
<Template>structures/cart/temple</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="476.64216" z="314.48264"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="23">
|
||||
<Template>structures/cart/wall_medium</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="382.18241" z="216.2515"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="24">
|
||||
<Template>structures/cart/wall_tower</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="332.2118" z="247.38797"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="25">
|
||||
<Template>structures/cart/wall_tower</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="375.3076" z="254.1619"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>structures/cart/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="683.16657" z="528.21607"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>structures/cart/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="649.89191" z="407.24024"/>
|
||||
<Orientation y="-2.38144"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>structures/cart/farmstead</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="644.62" z="473.94178"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="29">
|
||||
<Template>structures/cart/field</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="700.34388" z="495.75495"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>structures/cart/field</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="624.90607" z="456.98383"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>structures/cart/barracks</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="513.94758" z="536.11091"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>structures/cart/barracks</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="724.0287" z="171.00428"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>structures/cart/barracks</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="166.81821" z="322.85016"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="34">
|
||||
<Template>structures/cart/barracks</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="190.47696" z="247.75532"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>structures/cart/wall_medium</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="338.04816" z="122.21552"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>structures/cart/wall_tower</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="227.07238" z="781.29041"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>structures/cart/dock</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="105.77279" z="682.20936"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="38">
|
||||
<Template>structures/cart/defense_tower</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="872.70282" z="348.1222"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="39">
|
||||
<Template>structures/cart/civil_centre</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="670.36042" z="761.49451"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="40">
|
||||
<Template>units/cart/cavalry_javelineer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="504.55073" z="303.30909"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="41">
|
||||
<Template>units/cart/cavalry_javelineer_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="507.24308" z="305.87934"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="42">
|
||||
<Template>units/cart/cavalry_javelineer_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="509.40467" z="308.09662"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="43">
|
||||
<Template>units/cart/cavalry_spearman_ital_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="530.1905" z="322.03342"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="44">
|
||||
<Template>units/cart/cavalry_spearman_ital_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="532.46857" z="325.45252"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="45">
|
||||
<Template>units/cart/cavalry_spearman_ital_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="534.87879" z="327.96216"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="46">
|
||||
<Template>units/cart/cavalry_swordsman_iber_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="521.18281" z="304.68262"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="47">
|
||||
<Template>units/cart/cavalry_swordsman_iber_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="523.68311" z="306.98786"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="48">
|
||||
<Template>units/cart/cavalry_swordsman_iber_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="525.68177" z="310.36756"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="49">
|
||||
<Template>units/cart/champion_cavalry</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="547.78626" z="339.26069"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="50">
|
||||
<Template>units/cart/champion_infantry</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="553.37232" z="350.95719"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="51">
|
||||
<Template>units/cart/hero_hannibal</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="499.03461" z="262.65912"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="52">
|
||||
<Template>units/cart/hero_maharbal</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="503.96732" z="267.22168"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="53">
|
||||
<Template>units/cart/hero_hamilcar</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="508.04432" z="272.15455"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="54">
|
||||
<Template>units/cart/infantry_archer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="461.25129" z="387.83313"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="55">
|
||||
<Template>units/cart/infantry_archer_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="464.04853" z="390.72132"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="56">
|
||||
<Template>units/cart/infantry_archer_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="465.86698" z="393.33353"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="57">
|
||||
<Template>units/cart/infantry_javelineer_iber_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="467.58353" z="381.7992"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="58">
|
||||
<Template>units/cart/infantry_javelineer_iber_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="469.93592" z="383.55814"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="59">
|
||||
<Template>units/cart/infantry_javelineer_iber_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="471.82792" z="386.33426"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="60">
|
||||
<Template>units/cart/infantry_slinger_iber_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="474.01981" z="375.63819"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="61">
|
||||
<Template>units/cart/infantry_slinger_iber_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="475.61667" z="378.67359"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="62">
|
||||
<Template>units/cart/infantry_slinger_iber_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="477.65928" z="380.3813"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="63">
|
||||
<Template>units/cart/infantry_spearman_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="447.70658" z="370.9596"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="64">
|
||||
<Template>units/cart/infantry_spearman_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="449.48978" z="373.27222"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="65">
|
||||
<Template>units/cart/infantry_spearman_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="451.63801" z="375.19043"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="66">
|
||||
<Template>units/cart/infantry_swordsman_gaul_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="453.78544" z="366.0782"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="67">
|
||||
<Template>units/cart/infantry_swordsman_gaul_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="455.25596" z="367.8636"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="68">
|
||||
<Template>units/cart/infantry_swordsman_gaul_e</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="456.9549" z="369.96415"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="69">
|
||||
<Template>units/cart/support_female_citizen</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="469.22165" z="363.5293"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="70">
|
||||
<Template>units/cart/support_healer_b</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="466.09253" z="360.52533"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="71">
|
||||
<Template>units/cart/support_trader</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="462.33643" z="357.8917"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="72">
|
||||
<Template>units/samnite_skirmisher</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="431.0323" z="282.10877"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="73">
|
||||
<Template>units/samnite_spearman</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="433.38141" z="284.89881"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="74">
|
||||
<Template>units/samnite_swordsman</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="429.96073" z="280.10486"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,530 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1232772535db95ca79a4a9376b98783d3a9a4e2f0f94226fd029bac8acfcf6dd
|
||||
size 15388
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785396"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Fog>
|
||||
<FogFactor>0</FogFactor>
|
||||
<FogThickness>0.5</FogThickness>
|
||||
<FogColor r="0.8" g="0.8" b="0.894118"/>
|
||||
</Fog>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<WindAngle>0</WindAngle>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
<Postproc>
|
||||
<Brightness>0</Brightness>
|
||||
<Contrast>1</Contrast>
|
||||
<Saturation>0.99</Saturation>
|
||||
<Bloom>0.1999</Bloom>
|
||||
<PostEffect>default</PostEffect>
|
||||
</Postproc>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="404.373" y="287.58" z="158.929"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"AISeed": 0,
|
||||
"CircularMap": true,
|
||||
"Description": "This map is designed to help artists and modders find the adequate foundation for a specific building. This map is not meant to be playable.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "Foundation Testing Map",
|
||||
"PlayerData": [
|
||||
"",
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"Civ": "cart"
|
||||
},
|
||||
{
|
||||
"Civ": "gaul"
|
||||
},
|
||||
{
|
||||
"Civ": "iber"
|
||||
},
|
||||
{
|
||||
"Civ": "mace"
|
||||
},
|
||||
{
|
||||
"Civ": "pers"
|
||||
},
|
||||
{
|
||||
"Civ": "rome"
|
||||
},
|
||||
{
|
||||
"Civ": "spart"
|
||||
}
|
||||
],
|
||||
"Preview": "",
|
||||
"RevealMap": true,
|
||||
"VictoryConditions": [
|
||||
"conquest"
|
||||
]
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="11">
|
||||
<Template>actor|structures/fndn_1x1.xml</Template>
|
||||
<Position x="361.92734" z="263.32108"/>
|
||||
<Orientation y="2.37467"/>
|
||||
<Actor seed="3232"/>
|
||||
</Entity>
|
||||
<Entity uid="12">
|
||||
<Template>actor|structures/fndn_1x1pal.xml</Template>
|
||||
<Position x="367.40055" z="257.40677"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="61324"/>
|
||||
</Entity>
|
||||
<Entity uid="13">
|
||||
<Template>actor|structures/fndn_1x2.xml</Template>
|
||||
<Position x="374.69126" z="250.58143"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="18148"/>
|
||||
</Entity>
|
||||
<Entity uid="14">
|
||||
<Template>actor|structures/fndn_1x3.xml</Template>
|
||||
<Position x="384.43406" z="240.29374"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="21830"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>actor|structures/fndn_2x1.xml</Template>
|
||||
<Position x="374.69712" z="264.60196"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="29154"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>actor|structures/fndn_2x2.xml</Template>
|
||||
<Position x="381.89002" z="257.56757"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="36110"/>
|
||||
</Entity>
|
||||
<Entity uid="17">
|
||||
<Template>actor|structures/fndn_2x3.xml</Template>
|
||||
<Position x="391.72464" z="247.59186"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="13684"/>
|
||||
</Entity>
|
||||
<Entity uid="18">
|
||||
<Template>actor|structures/fndn_2x4.xml</Template>
|
||||
<Position x="404.5604" z="234.71363"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="43342"/>
|
||||
</Entity>
|
||||
<Entity uid="19">
|
||||
<Template>actor|structures/fndn_2x5.xml</Template>
|
||||
<Position x="420.0911" z="219.03086"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="25264"/>
|
||||
</Entity>
|
||||
<Entity uid="20">
|
||||
<Template>actor|structures/fndn_2x6.xml</Template>
|
||||
<Position x="438.51606" z="200.81131"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="35080"/>
|
||||
</Entity>
|
||||
<Entity uid="21">
|
||||
<Template>actor|structures/fndn_3x1.xml</Template>
|
||||
<Position x="384.61" z="274.56675"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="32722"/>
|
||||
</Entity>
|
||||
<Entity uid="22">
|
||||
<Template>actor|structures/fndn_3x2.xml</Template>
|
||||
<Position x="391.69425" z="267.42792"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="3476"/>
|
||||
</Entity>
|
||||
<Entity uid="23">
|
||||
<Template>actor|structures/fndn_3x3.xml</Template>
|
||||
<Position x="402.35538" z="257.47501"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="60482"/>
|
||||
</Entity>
|
||||
<Entity uid="24">
|
||||
<Template>actor|structures/fndn_3x4.xml</Template>
|
||||
<Position x="414.39805" z="244.66498"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="40688"/>
|
||||
</Entity>
|
||||
<Entity uid="25">
|
||||
<Template>actor|structures/fndn_3x5.xml</Template>
|
||||
<Position x="429.96891" z="229.0749"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="50980"/>
|
||||
</Entity>
|
||||
<Entity uid="26">
|
||||
<Template>actor|structures/fndn_3x6.xml</Template>
|
||||
<Position x="448.53019" z="210.77189"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="34436"/>
|
||||
</Entity>
|
||||
<Entity uid="27">
|
||||
<Template>actor|structures/fndn_4x2.xml</Template>
|
||||
<Position x="404.4206" z="280.159"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="24660"/>
|
||||
</Entity>
|
||||
<Entity uid="28">
|
||||
<Template>actor|structures/fndn_4x3.xml</Template>
|
||||
<Position x="414.36554" z="269.77341"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="10344"/>
|
||||
</Entity>
|
||||
<Entity uid="29">
|
||||
<Template>actor|structures/fndn_4x4.xml</Template>
|
||||
<Position x="427.12336" z="257.34913"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="31738"/>
|
||||
</Entity>
|
||||
<Entity uid="30">
|
||||
<Template>actor|structures/fndn_4x5.xml</Template>
|
||||
<Position x="442.74589" z="241.69639"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="48432"/>
|
||||
</Entity>
|
||||
<Entity uid="31">
|
||||
<Template>actor|structures/fndn_4x6.xml</Template>
|
||||
<Position x="461.15671" z="223.2483"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="60866"/>
|
||||
</Entity>
|
||||
<Entity uid="32">
|
||||
<Template>actor|structures/fndn_5x2.xml</Template>
|
||||
<Position x="420.10575" z="295.63044"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="51960"/>
|
||||
</Entity>
|
||||
<Entity uid="33">
|
||||
<Template>actor|structures/fndn_5x3.xml</Template>
|
||||
<Position x="430.07483" z="285.60904"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="5036"/>
|
||||
</Entity>
|
||||
<Entity uid="34">
|
||||
<Template>actor|structures/fndn_5x4.xml</Template>
|
||||
<Position x="442.78913" z="273.0446"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="4998"/>
|
||||
</Entity>
|
||||
<Entity uid="35">
|
||||
<Template>actor|structures/fndn_5x5.xml</Template>
|
||||
<Position x="457.97022" z="257.81553"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="63592"/>
|
||||
</Entity>
|
||||
<Entity uid="36">
|
||||
<Template>actor|structures/fndn_5x6.xml</Template>
|
||||
<Position x="477.1764" z="239.06138"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="19936"/>
|
||||
</Entity>
|
||||
<Entity uid="37">
|
||||
<Template>actor|structures/fndn_6x2.xml</Template>
|
||||
<Position x="438.48234" z="313.93885"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="40294"/>
|
||||
</Entity>
|
||||
<Entity uid="38">
|
||||
<Template>actor|structures/fndn_6x3.xml</Template>
|
||||
<Position x="448.4982" z="303.95057"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="43836"/>
|
||||
</Entity>
|
||||
<Entity uid="39">
|
||||
<Template>actor|structures/fndn_6x4.xml</Template>
|
||||
<Position x="461.59058" z="291.69193"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="970"/>
|
||||
</Entity>
|
||||
<Entity uid="40">
|
||||
<Template>actor|structures/fndn_6x5.xml</Template>
|
||||
<Position x="477.14032" z="276.21186"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="64726"/>
|
||||
</Entity>
|
||||
<Entity uid="41">
|
||||
<Template>actor|structures/fndn_6x6.xml</Template>
|
||||
<Position x="496.11261" z="257.6283"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="48692"/>
|
||||
</Entity>
|
||||
<Entity uid="42">
|
||||
<Template>actor|structures/fndn_7x4.xml</Template>
|
||||
<Position x="482.72883" z="312.81995"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="39632"/>
|
||||
</Entity>
|
||||
<Entity uid="43">
|
||||
<Template>actor|structures/fndn_7x5.xml</Template>
|
||||
<Position x="498.40302" z="297.39222"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="24598"/>
|
||||
</Entity>
|
||||
<Entity uid="46">
|
||||
<Template>actor|structures/fndn_7x7.xml</Template>
|
||||
<Position x="537.72657" z="258.25718"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="57022"/>
|
||||
</Entity>
|
||||
<Entity uid="47">
|
||||
<Template>actor|structures/fndn_7x6.xml</Template>
|
||||
<Position x="517.2032" z="279.01246"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="5558"/>
|
||||
</Entity>
|
||||
<Entity uid="50">
|
||||
<Template>actor|structures/fndn_6x7.xml</Template>
|
||||
<Position x="516.0293" z="236.34415"/>
|
||||
<Orientation y="-0.80091"/>
|
||||
<Actor seed="1276"/>
|
||||
</Entity>
|
||||
<Entity uid="52">
|
||||
<Template>actor|structures/fndn_5x7.xml</Template>
|
||||
<Position x="497.89649" z="217.95167"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="48240"/>
|
||||
</Entity>
|
||||
<Entity uid="53">
|
||||
<Template>actor|structures/fndn_2x7.xml</Template>
|
||||
<Position x="459.43723" z="179.82148"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="60944"/>
|
||||
</Entity>
|
||||
<Entity uid="54">
|
||||
<Template>actor|structures/fndn_3x7.xml</Template>
|
||||
<Position x="469.63715" z="189.62967"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="49958"/>
|
||||
</Entity>
|
||||
<Entity uid="55">
|
||||
<Template>actor|structures/fndn_4x7.xml</Template>
|
||||
<Position x="482.40244" z="202.2511"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="54330"/>
|
||||
</Entity>
|
||||
<Entity uid="56">
|
||||
<Template>actor|structures/fndn_7x2.xml</Template>
|
||||
<Position x="459.64734" z="335.20392"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="44248"/>
|
||||
</Entity>
|
||||
<Entity uid="57">
|
||||
<Template>actor|structures/fndn_7x3.xml</Template>
|
||||
<Position x="469.6302" z="325.3397"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="6540"/>
|
||||
</Entity>
|
||||
<Entity uid="58">
|
||||
<Template>actor|structures/fndn_7x8.xml</Template>
|
||||
<Position x="561.67414" z="233.2801"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="19530"/>
|
||||
</Entity>
|
||||
<Entity uid="59">
|
||||
<Template>actor|structures/fndn_8x7.xml</Template>
|
||||
<Position x="561.9253" z="282.18973"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="58186"/>
|
||||
</Entity>
|
||||
<Entity uid="60">
|
||||
<Template>actor|structures/fndn_8x8.xml</Template>
|
||||
<Position x="585.6764" z="257.4326"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="41936"/>
|
||||
</Entity>
|
||||
<Entity uid="61">
|
||||
<Template>actor|structures/fndn_9x8.xml</Template>
|
||||
<Position x="612.50721" z="284.14557"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="11810"/>
|
||||
</Entity>
|
||||
<Entity uid="62">
|
||||
<Template>actor|structures/fndn_9x9.xml</Template>
|
||||
<Position x="639.55475" z="257.23505"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="60896"/>
|
||||
</Entity>
|
||||
<Entity uid="63">
|
||||
<Template>actor|structures/fndn_8x9.xml</Template>
|
||||
<Position x="612.60248" z="230.35688"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="42110"/>
|
||||
</Entity>
|
||||
<Entity uid="64">
|
||||
<Template>actor|structures/fndn_9x7.xml</Template>
|
||||
<Position x="588.86695" z="309.31351"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="38376"/>
|
||||
</Entity>
|
||||
<Entity uid="65">
|
||||
<Template>actor|structures/fndn_9x6.xml</Template>
|
||||
<Position x="568.47883" z="330.06528"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="14480"/>
|
||||
</Entity>
|
||||
<Entity uid="66">
|
||||
<Template>actor|structures/fndn_7x9.xml</Template>
|
||||
<Position x="588.40351" z="206.6876"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="26332"/>
|
||||
</Entity>
|
||||
<Entity uid="67">
|
||||
<Template>actor|structures/fndn_6x9.xml</Template>
|
||||
<Position x="567.45075" z="185.68662"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="24270"/>
|
||||
</Entity>
|
||||
<Entity uid="68">
|
||||
<Template>actor|structures/fndn_9x5.xml</Template>
|
||||
<Position x="549.43293" z="348.09076"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="26592"/>
|
||||
</Entity>
|
||||
<Entity uid="69">
|
||||
<Template>actor|structures/fndn_9x4.xml</Template>
|
||||
<Position x="533.83271" z="363.80549"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="32920"/>
|
||||
</Entity>
|
||||
<Entity uid="70">
|
||||
<Template>actor|structures/fndn_9x3.xml</Template>
|
||||
<Position x="520.48652" z="376.04432"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="46794"/>
|
||||
</Entity>
|
||||
<Entity uid="71">
|
||||
<Template>actor|structures/fndn_9x2.xml</Template>
|
||||
<Position x="510.49683" z="386.00712"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="41246"/>
|
||||
</Entity>
|
||||
<Entity uid="74">
|
||||
<Template>actor|structures/fndn_5x9.xml</Template>
|
||||
<Position x="548.41852" z="166.93448"/>
|
||||
<Orientation y="-7.06788"/>
|
||||
<Actor seed="38164"/>
|
||||
</Entity>
|
||||
<Entity uid="75">
|
||||
<Template>actor|structures/fndn_4x9.xml</Template>
|
||||
<Position x="533.36536" z="151.12214"/>
|
||||
<Orientation y="-7.06788"/>
|
||||
<Actor seed="2232"/>
|
||||
</Entity>
|
||||
<Entity uid="76">
|
||||
<Template>actor|structures/fndn_3x9.xml</Template>
|
||||
<Position x="520.23627" z="138.79352"/>
|
||||
<Orientation y="-7.06788"/>
|
||||
<Actor seed="6422"/>
|
||||
</Entity>
|
||||
<Entity uid="77">
|
||||
<Template>actor|structures/fndn_2x9.xml</Template>
|
||||
<Position x="510.5709" z="128.6431"/>
|
||||
<Orientation y="-7.06788"/>
|
||||
<Actor seed="25108"/>
|
||||
</Entity>
|
||||
<Entity uid="79">
|
||||
<Template>actor|structures/fndn_8x3.xml</Template>
|
||||
<Position x="493.60901" z="349.3332"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="31786"/>
|
||||
</Entity>
|
||||
<Entity uid="80">
|
||||
<Template>actor|structures/fndn_8x2.xml</Template>
|
||||
<Position x="483.79206" z="359.34034"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="63672"/>
|
||||
</Entity>
|
||||
<Entity uid="81">
|
||||
<Template>actor|structures/fndn_8x4.xml</Template>
|
||||
<Position x="506.6768" z="336.71518"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="24634"/>
|
||||
</Entity>
|
||||
<Entity uid="82">
|
||||
<Template>actor|structures/fndn_8x5.xml</Template>
|
||||
<Position x="522.37433" z="321.05851"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="16280"/>
|
||||
</Entity>
|
||||
<Entity uid="83">
|
||||
<Template>actor|structures/fndn_2x8.xml</Template>
|
||||
<Position x="483.84427" z="155.78324"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="15646"/>
|
||||
</Entity>
|
||||
<Entity uid="84">
|
||||
<Template>actor|structures/fndn_3x8.xml</Template>
|
||||
<Position x="493.50068" z="165.28693"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="61176"/>
|
||||
</Entity>
|
||||
<Entity uid="85">
|
||||
<Template>actor|structures/fndn_4x8.xml</Template>
|
||||
<Position x="506.44797" z="178.18451"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="12036"/>
|
||||
</Entity>
|
||||
<Entity uid="86">
|
||||
<Template>actor|structures/fndn_5x8.xml</Template>
|
||||
<Position x="521.83973" z="193.62494"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="57122"/>
|
||||
</Entity>
|
||||
<Entity uid="88">
|
||||
<Template>actor|structures/fndn_6x8.xml</Template>
|
||||
<Position x="540.31116" z="212.00586"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="31652"/>
|
||||
</Entity>
|
||||
<Entity uid="89">
|
||||
<Template>actor|structures/fndn_8x6.xml</Template>
|
||||
<Position x="541.19916" z="303.06952"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="45448"/>
|
||||
</Entity>
|
||||
<Entity uid="98">
|
||||
<Template>actor|structures/fndn_dock_iber.xml</Template>
|
||||
<Position x="364.87531" z="234.86518"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="28530"/>
|
||||
</Entity>
|
||||
<Entity uid="102">
|
||||
<Template>actor|structures/fndn_3x3_wall.xml</Template>
|
||||
<Position x="367.52894" z="297.11353"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="27418"/>
|
||||
</Entity>
|
||||
<Entity uid="103">
|
||||
<Template>actor|structures/fndn_6x3_wall.xml</Template>
|
||||
<Position x="383.41889" z="312.58503"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="15378"/>
|
||||
</Entity>
|
||||
<Entity uid="104">
|
||||
<Template>actor|structures/fndn_9x3_wall.xml</Template>
|
||||
<Position x="407.29996" z="336.61591"/>
|
||||
<Orientation y="2.35621"/>
|
||||
<Actor seed="7962"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,71 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7381bbad325ebf99b99be70f2fd56f13a00d8c2e5c1f782f231b89ec88b36b7c
|
||||
size 1688
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Terrain patches="12" texture="grass1_spring" priority="0" height="16384"/>
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785396"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Fog>
|
||||
<FogFactor>0</FogFactor>
|
||||
<FogThickness>0.5</FogThickness>
|
||||
<FogColor r="0.8" g="0.8" b="0.894118"/>
|
||||
</Fog>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<WindAngle>0</WindAngle>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
<Postproc>
|
||||
<Brightness>0</Brightness>
|
||||
<Contrast>1</Contrast>
|
||||
<Saturation>0.99</Saturation>
|
||||
<Bloom>0.1999</Bloom>
|
||||
<PostEffect>default</PostEffect>
|
||||
</Postproc>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="330.378" y="418.536" z="253.809"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": false,
|
||||
"Description": "This map is designed to test a few different cases of units chasing each other.",
|
||||
"Keywords": [
|
||||
"trigger",
|
||||
"demo"
|
||||
],
|
||||
"Name": "Unit Chasing test",
|
||||
"PlayerData": [
|
||||
null,
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"AI": null,
|
||||
"Civ": "athen"
|
||||
}
|
||||
],
|
||||
"RevealMap": false,
|
||||
"ExploredMap": true,
|
||||
"TriggerScripts": [
|
||||
"scripts/TriggerHelper.js",
|
||||
"scenarios/unit_chasing_test_triggers.js"
|
||||
],
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,71 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3f1e23363b8d36816fbed77ef937c08daa20c5f6f2ce8eca5bbfee3d6853a9d9
|
||||
size 1671
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Terrain patches="8" texture="grass1_spring" priority="0" height="16384"/>
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785396"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Fog>
|
||||
<FogFactor>0</FogFactor>
|
||||
<FogThickness>0.5</FogThickness>
|
||||
<FogColor r="0.8" g="0.8" b="0.894118"/>
|
||||
</Fog>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<WindAngle>0</WindAngle>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
<Postproc>
|
||||
<Brightness>0</Brightness>
|
||||
<Contrast>1</Contrast>
|
||||
<Saturation>0.99</Saturation>
|
||||
<Bloom>0.1999</Bloom>
|
||||
<PostEffect>default</PostEffect>
|
||||
</Postproc>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="330.378" y="418.536" z="253.809"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "This map is designed to test a few different cases of 'Dancing'.",
|
||||
"Keywords": [
|
||||
"trigger",
|
||||
"demo"
|
||||
],
|
||||
"Name": "Unit Dancing test",
|
||||
"PlayerData": [
|
||||
null,
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"AI": null,
|
||||
"Civ": "athen"
|
||||
}
|
||||
],
|
||||
"RevealMap": false,
|
||||
"ExploredMap": true,
|
||||
"TriggerScripts": [
|
||||
"scripts/TriggerHelper.js",
|
||||
"scenarios/unit_dancing_test_triggers.js"
|
||||
],
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,77 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f14b360ab7f1f62ed7ea4cb9c8bf0869fc6a32b885b320391e26dbf4cd595df7
|
||||
size 1937
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785396"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Fog>
|
||||
<FogFactor>0</FogFactor>
|
||||
<FogThickness>0.5</FogThickness>
|
||||
<FogColor r="0.8" g="0.8" b="0.894118"/>
|
||||
</Fog>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<WindAngle>0</WindAngle>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
<Postproc>
|
||||
<Brightness>0</Brightness>
|
||||
<Contrast>1</Contrast>
|
||||
<Saturation>0.99</Saturation>
|
||||
<Bloom>0.1999</Bloom>
|
||||
<PostEffect>default</PostEffect>
|
||||
</Postproc>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="330.378" y="418.536" z="253.809"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "This map is designed to test some basic unit movement cases. It will involve unitAI, unitMotion and the relevant pathfinders and thus acts as an integrated test map. Look for things such as stuck units, wrong animations, and weird pathing.",
|
||||
"Keywords": [
|
||||
"trigger",
|
||||
"demo"
|
||||
],
|
||||
"Name": "Unit Motion Integration Test",
|
||||
"PlayerData": [
|
||||
null,
|
||||
{
|
||||
"Civ": "athen"
|
||||
},
|
||||
{
|
||||
"AI": "",
|
||||
"Civ": "athen"
|
||||
}
|
||||
],
|
||||
"RevealMap": true,
|
||||
"TriggerScripts": [
|
||||
"scripts/TriggerHelper.js",
|
||||
"scenarios/unit_motion_integration_test.js"
|
||||
],
|
||||
"VictoryConditions": [
|
||||
"conquest"
|
||||
]
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="5">
|
||||
<Template>structures/athen/civil_centre</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="500" z="500"/>
|
||||
<Orientation y="0"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,66 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:577f535924ed0db34f3dbb28a3b78bfa5fcc4a3ed91338c206b0084323e9a38b
|
||||
size 1626
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Terrain patches="20" texture="grass1_spring" priority="0" height="16384"/>
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785396"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Fog>
|
||||
<FogFactor>0</FogFactor>
|
||||
<FogThickness>0.5</FogThickness>
|
||||
<FogColor r="0.8" g="0.8" b="0.894118"/>
|
||||
</Fog>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>ocean</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<WindAngle>0</WindAngle>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
<Postproc>
|
||||
<Brightness>0</Brightness>
|
||||
<Contrast>1</Contrast>
|
||||
<Saturation>0.99</Saturation>
|
||||
<Bloom>0.1999</Bloom>
|
||||
<PostEffect>default</PostEffect>
|
||||
</Postproc>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="330.378" y="418.536" z="253.809"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": false,
|
||||
"Description": "This map is designed to test the performance & functionality of unit pushing.",
|
||||
"Keywords": [
|
||||
"trigger",
|
||||
"demo"
|
||||
],
|
||||
"Name": "Unit Pushing test",
|
||||
"PlayerData": [
|
||||
null,
|
||||
{ "AI": "" },
|
||||
{ "AI": "" }
|
||||
],
|
||||
"RevealMap": true,
|
||||
"ExploredMap": true,
|
||||
"TriggerScripts": [
|
||||
"scripts/TriggerHelper.js",
|
||||
"scenarios/unit_pushing_test.js"
|
||||
],
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,50 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:22f1aabe8acf06f78550643baef580595b0b8c308e3082484747d7ef4f04510e
|
||||
size 1089
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Terrain patches="30" texture="blackness" priority="0" height="4096"/>
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="0.811765" g="0.792157" b="0.701961"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="5.49779"/>
|
||||
<AmbientColor r="0.313726" g="0.376471" b="0.521569"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>lake</Type>
|
||||
<Color r="0.3" g="0.35" b="0.7"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4.0</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<Tint r="0.28" g="0.3" b="0.59"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="141.287" y="78.0967" z="32.4902"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.523599"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"Name":"Units Demo",
|
||||
"Description":"Every unit in the game.",
|
||||
"Keywords": [
|
||||
"demo"
|
||||
],
|
||||
"PlayerData":
|
||||
[
|
||||
{
|
||||
"Civ":"athen"
|
||||
}
|
||||
],
|
||||
"RevealMap":true,
|
||||
"TriggerScripts": [
|
||||
"scenarios/units_demo.js"
|
||||
],
|
||||
"VictoryConditions": []
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities/>
|
||||
<Paths/>
|
||||
<Triggers/>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,194 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:505e0225f3e82436e95de220c824fe342ee99794d88ffa7a5637075517b5931d
|
||||
size 4926
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Scenario version="7">
|
||||
<Environment>
|
||||
<SkySet>default</SkySet>
|
||||
<SunColor r="0.74902" g="0.74902" b="0.74902"/>
|
||||
<SunElevation angle="0.785398"/>
|
||||
<SunRotation angle="-0.785396"/>
|
||||
<AmbientColor r="0.501961" g="0.501961" b="0.501961"/>
|
||||
<Water>
|
||||
<WaterBody>
|
||||
<Type>lake</Type>
|
||||
<Color r="0.294118" g="0.34902" b="0.694118"/>
|
||||
<Height>5</Height>
|
||||
<Waviness>4.0</Waviness>
|
||||
<Murkiness>0.45</Murkiness>
|
||||
<Tint r="0.27451" g="0.294118" b="0.584314"/>
|
||||
</WaterBody>
|
||||
</Water>
|
||||
</Environment>
|
||||
<Camera>
|
||||
<Position x="260.942" y="91.2117" z="190.359"/>
|
||||
<Rotation angle="0"/>
|
||||
<Declination angle="0.610865"/>
|
||||
</Camera>
|
||||
<ScriptSettings><![CDATA[
|
||||
{
|
||||
"CircularMap": true,
|
||||
"Description": "Give an interesting description of your map.",
|
||||
"Keywords": [
|
||||
"hidden"
|
||||
],
|
||||
"LockTeams": false,
|
||||
"Name": "WallTest",
|
||||
"PlayerData": [
|
||||
{
|
||||
"Civ": "athen",
|
||||
"Color": {
|
||||
"b": 200,
|
||||
"g": 46,
|
||||
"r": 46
|
||||
},
|
||||
"Name": "Player 1",
|
||||
"PopulationLimit": 100000,
|
||||
"Resources": {
|
||||
"food": 100000,
|
||||
"metal": 100000,
|
||||
"stone": 100000,
|
||||
"wood": 100000
|
||||
},
|
||||
"StartingCamera": {
|
||||
"Position": {
|
||||
"x": 292.862,
|
||||
"y": 22.3825,
|
||||
"z": 252.692
|
||||
},
|
||||
"Rotation": {
|
||||
"x": 35,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
}
|
||||
},
|
||||
"Team": -1
|
||||
},
|
||||
{
|
||||
"Civ": "athen",
|
||||
"Color": {
|
||||
"b": 20,
|
||||
"g": 20,
|
||||
"r": 150
|
||||
},
|
||||
"Name": "Player 2",
|
||||
"PopulationLimit": 2,
|
||||
"Resources": {
|
||||
"food": 5000,
|
||||
"metal": 5000,
|
||||
"stone": 5000,
|
||||
"wood": 5000
|
||||
},
|
||||
"Team": -1
|
||||
}
|
||||
],
|
||||
"RevealMap": false,
|
||||
"VictoryConditions": [
|
||||
"conquest"
|
||||
]
|
||||
}
|
||||
]]></ScriptSettings>
|
||||
<Entities>
|
||||
<Entity uid="11">
|
||||
<Template>structures/gaul/civil_centre</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="286.75593" z="268.53187"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="12">
|
||||
<Template>structures/pers/civil_centre</Template>
|
||||
<Player>2</Player>
|
||||
<Position x="751.73603" z="789.12446"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="13">
|
||||
<Template>structures/palisades_tower</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="280.52155" z="152.9048"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="14">
|
||||
<Template>structures/palisades_tower</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="405.53681" z="237.12357"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="15">
|
||||
<Template>structures/palisades_tower</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="273.05485" z="368.58619"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="16">
|
||||
<Template>structures/palisades_tower</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="162.9825" z="248.80494"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="64">
|
||||
<Template>units/cart/infantry_swordsman_gaul_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="297.3943" z="245.43734"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="65">
|
||||
<Template>units/gaul/infantry_spearman_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="300.65796" z="247.85009"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="66">
|
||||
<Template>units/athen/infantry_spearman_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="304.05463" z="250.32634"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="67">
|
||||
<Template>units/iber/infantry_swordsman_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="307.60114" z="254.54291"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="68">
|
||||
<Template>units/pers/infantry_spearman_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="311.45011" z="258.70716"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="69">
|
||||
<Template>units/rome/infantry_swordsman_a</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="315.29044" z="262.83661"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="70">
|
||||
<Template>structures/cart/house</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="252.36847" z="276.04014"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="71">
|
||||
<Template>structures/cart/farmstead</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="266.76517" z="291.61655"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="72">
|
||||
<Template>structures/cart/storehouse</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="285.44394" z="308.2942"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="75">
|
||||
<Template>structures/cart/outpost</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="266.43375" z="255.69352"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
<Entity uid="76">
|
||||
<Template>structures/cart/corral</Template>
|
||||
<Player>1</Player>
|
||||
<Position x="306.5282" z="292.08948"/>
|
||||
<Orientation y="2.35621"/>
|
||||
</Entity>
|
||||
</Entities>
|
||||
<Paths/>
|
||||
</Scenario>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue