From: Erik V. <ev...@us...> - 2011-09-18 15:13:59
|
data/18TN/CompanyManager.xml | 8 ++------ data/18TN/Game.xml | 4 ++-- 2 files changed, 4 insertions(+), 8 deletions(-) New commits: commit 25203f7d21bd3d23d9633dce14e6cbb3c65945f0 Author: Erik Vos <eri...@xs...> Date: Sun Sep 18 17:12:06 2011 +0200 Fixed 18TN configuration errors: - Purchase max. one train until phase 4 - No hex blocking by privates - Two yellow tiles allowed from the start diff --git a/data/18TN/CompanyManager.xml b/data/18TN/CompanyManager.xml index 282fe15..b08c3fb 100644 --- a/data/18TN/CompanyManager.xml +++ b/data/18TN/CompanyManager.xml @@ -20,14 +20,13 @@ <Certificate shares="1" number="8"/> <Trains limit="4,3,2"/> <CanUseSpecialProperties/> - <TileLays> - <Number colour="yellow" phase="3,3½,4,5,6,6½,8" number="2"/> + <TileLays> + <Number colour="yellow" phase="2,3,3½,4,5,6,6½,8" number="2"/> </TileLays> </CompanyType> <Company name="TCC" type="Private" basePrice="20" revenue="5" longname="Tennessee Copper Company"> - <Blocking hex="H17"/> <SpecialProperties> <SpecialProperty condition="ifOwnedByCompany" when="tileLayingStep" class="rails.game.special.SpecialTileLay"> <SpecialTileLay location="H17" extra="yes" free="yes"/> @@ -36,7 +35,6 @@ </Company> <Company name="ET&WNC" type="Private" basePrice="40" revenue="10" longname="East Tennessee and Western North Carolina"> - <Blocking hex="F19"/> <SpecialProperties> <SpecialProperty condition="ifOwnedByCompany" when="tileLayingStep" class="rails.game.special.SpecialTileLay"> <SpecialTileLay location="F19" extra="yes" free="yes"/> @@ -45,7 +43,6 @@ </Company> <Company name="M&C" type="Private" basePrice="70" revenue="15" longname="Memphis and Charleston Railroad"> - <Blocking hex="H3"/> <SpecialProperties> <SpecialProperty condition="ifOwnedByCompany" when="tileLayingStep" class="rails.game.special.SpecialTileLay"> <SpecialTileLay location="H5" extra="yes" free="yes"/> @@ -54,7 +51,6 @@ </Company> <Company name="O&W" type="Private" basePrice="100" revenue="20" longname="Oneida and Western Railroad"> - <Blocking hex="E16"/> <SpecialProperties> <SpecialProperty condition="ifOwnedByCompany" when="tileLayingStep" class="rails.game.special.SpecialTileLay"> <SpecialTileLay location="E16" extra="yes" free="yes"/> diff --git a/data/18TN/Game.xml b/data/18TN/Game.xml index 837b8e9..0a19ccc 100644 --- a/data/18TN/Game.xml +++ b/data/18TN/Game.xml @@ -93,7 +93,7 @@ <Tiles colour="yellow"/> <Privates sellingAllowed="no"/> <OperatingRounds number="1"/> - <Trains tradingAllowed="yes"/> + <Trains onePerTurn="yes" tradingAllowed="yes"/> </Phase> <Phase name="3"> <Tiles colour="yellow,green"/> @@ -104,7 +104,7 @@ <Action name="CivilWar"/><!-- No value needed --> </Phase> <Phase name="4"> - <Trains rusted="2" limitStep="2"/> + <Trains rusted="2" limitStep="2" onePerTurn="no"/> </Phase> <Phase name="5"> <Tiles colour="yellow,green,brown"/> |
From: Erik V. <ev...@us...> - 2011-10-30 17:20:38
|
data/18TN/Game.xml | 1 + data/18TN/TileSet.xml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) New commits: commit c631bc3e4f4873e8245bec880a4e3166da45ba39 Author: Martin Brumm <Dr....@t-...> Date: Sun Oct 30 18:18:40 2011 +0100 Fixed 18TN grey tile being not available due to error in phase definition. Also fixed wrong availability of Tile 170. diff --git a/data/18TN/Game.xml b/data/18TN/Game.xml index ff8073b..191ee87 100644 --- a/data/18TN/Game.xml +++ b/data/18TN/Game.xml @@ -122,6 +122,7 @@ <Trains rusted="4"/> </Phase> <Phase name="8"> + <Tiles colour="yellow,green,brown,grey"/> </Phase> </Component> <Component name="RevenueManager" class="rails.algorithms.RevenueManager"> diff --git a/data/18TN/TileSet.xml b/data/18TN/TileSet.xml index 1ef912f..2e0fba2 100644 --- a/data/18TN/TileSet.xml +++ b/data/18TN/TileSet.xml @@ -140,7 +140,7 @@ <Tile id="146" quantity="2" /> <Tile id="147" quantity="2" /> - <Tile id="170" quantity="170" > + <Tile id="170" quantity="2" > <Upgrade id="600" /> </Tile> |
From: Stefan F. <ste...@us...> - 2012-01-29 15:58:26
|
data/18TN/Game.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 18c9e92b41cbbf6d2c386682c4354b0a485bd7c8 Author: Stefan Frey <ste...@we...> Date: Sun Jan 29 16:57:51 2012 +0100 Fixed wrong price of 6 train (630 => 600) Reported by Bob Probst diff --git a/data/18TN/Game.xml b/data/18TN/Game.xml index 191ee87..62f3209 100644 --- a/data/18TN/Game.xml +++ b/data/18TN/Game.xml @@ -79,7 +79,7 @@ <TrainType name="5" majorStops="5" cost="450" quantity="2"> <NewPhase phaseName="5"/> </TrainType> - <TrainType name="6" majorStops="6" cost="630" quantity="2"> + <TrainType name="6" majorStops="6" cost="600" quantity="2"> <NewPhase phaseName="6"/> <NewPhase phaseName="6½" trainIndex="2"/> </TrainType> |