From ae9cc40627538b1348dbce2e4cc3d105583f1e18 Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Wed, 30 May 2012 10:02:51 +0000 Subject: [PATCH] Adding War of the Ring starters. --- .../lotro/league/SealedLeagueProduct.java | 34 +++++++++ .../lotro/league/SealedLeagueType.java | 3 +- .../lotro/merchant/MerchantService.java | 9 +++ .../src/main/resources/(S)BL - Starter.pack | 2 + .../src/main/resources/(S)BR - Starter.pack | 2 + .../src/main/resources/(S)SH - Starter.pack | 4 + .../main/resources/BL - Arwen Starter.pack | 76 +++++++++++++++++++ .../main/resources/BL - Boromir Starter.pack | 71 +++++++++++++++++ .../main/resources/BR - Mouth Starter.pack | 76 +++++++++++++++++++ .../main/resources/BR - Saruman Starter.pack | 74 ++++++++++++++++++ .../main/resources/SH - Aragorn Starter.pack | 70 +++++++++++++++++ .../main/resources/SH - Eowyn Starter.pack | 68 +++++++++++++++++ .../main/resources/SH - Gandalf Starter.pack | 72 ++++++++++++++++++ .../main/resources/SH - Legolas Starter.pack | 70 +++++++++++++++++ .../server/provider/PacksStorageProvider.java | 15 ++++ .../src/main/webapp/leagueAdmin.html | 1 + 16 files changed, 646 insertions(+), 1 deletion(-) create mode 100644 gemp-lotr/gemp-lotr-server/src/main/resources/(S)BL - Starter.pack create mode 100644 gemp-lotr/gemp-lotr-server/src/main/resources/(S)BR - Starter.pack create mode 100644 gemp-lotr/gemp-lotr-server/src/main/resources/(S)SH - Starter.pack create mode 100644 gemp-lotr/gemp-lotr-server/src/main/resources/BL - Arwen Starter.pack create mode 100644 gemp-lotr/gemp-lotr-server/src/main/resources/BL - Boromir Starter.pack create mode 100644 gemp-lotr/gemp-lotr-server/src/main/resources/BR - Mouth Starter.pack create mode 100644 gemp-lotr/gemp-lotr-server/src/main/resources/BR - Saruman Starter.pack create mode 100644 gemp-lotr/gemp-lotr-server/src/main/resources/SH - Aragorn Starter.pack create mode 100644 gemp-lotr/gemp-lotr-server/src/main/resources/SH - Eowyn Starter.pack create mode 100644 gemp-lotr/gemp-lotr-server/src/main/resources/SH - Gandalf Starter.pack create mode 100644 gemp-lotr/gemp-lotr-server/src/main/resources/SH - Legolas Starter.pack diff --git a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/league/SealedLeagueProduct.java b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/league/SealedLeagueProduct.java index 0e7e70efe..4ede13aa8 100644 --- a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/league/SealedLeagueProduct.java +++ b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/league/SealedLeagueProduct.java @@ -16,6 +16,7 @@ public class SealedLeagueProduct { createFellowshipBlock(); createTowersBlock(); createMovieBlock(); + createWarOfTheRingBlock(); } private void createFellowshipBlock() { @@ -109,6 +110,39 @@ public class SealedLeagueProduct { _collections.put(SealedLeagueType.MOVIE_BLOCK.getSealedCode(), kingBlock); } + private void createWarOfTheRingBlock() { + List warOfTheRingBlock = new ArrayList(); + + MutableCardCollection firstWeek = new DefaultCardCollection(); + firstWeek.addItem("(S)RotK - Starter", 1); + firstWeek.addItem("RotK - Booster", 6); + firstWeek.addItem("7_212", 1); + firstWeek.addItem("1_231", 1); + firstWeek.addItem("7_355", 1); + firstWeek.addItem("7_358", 1); + warOfTheRingBlock.add(firstWeek); + + MutableCardCollection secondWeek = new DefaultCardCollection(); + secondWeek.addItem("(S)SoG - Starter", 1); + secondWeek.addItem("SoG - Booster", 3); + secondWeek.addItem("8_120", 1); + warOfTheRingBlock.add(secondWeek); + + MutableCardCollection thirdWeek = new DefaultCardCollection(); + thirdWeek.addItem("(S)MD - Starter", 1); + thirdWeek.addItem("MD - Booster", 3); + thirdWeek.addItem("7_326", 2); + warOfTheRingBlock.add(thirdWeek); + + MutableCardCollection fourthWeek = new DefaultCardCollection(); + fourthWeek.addItem("RotK - Booster", 2); + fourthWeek.addItem("SoG - Booster", 2); + fourthWeek.addItem("MD - Booster", 2); + warOfTheRingBlock.add(fourthWeek); + + _collections.put(SealedLeagueType.WAR_BLOCK.getSealedCode(), warOfTheRingBlock); + } + public CardCollection getCollectionForSerie(String leagueCode, int serieIndex) { return _collections.get(leagueCode).get(serieIndex); } diff --git a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/league/SealedLeagueType.java b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/league/SealedLeagueType.java index d61a10e3d..08d4df364 100644 --- a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/league/SealedLeagueType.java +++ b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/league/SealedLeagueType.java @@ -3,7 +3,8 @@ package com.gempukku.lotro.league; public enum SealedLeagueType { FOTR_BLOCK("fotr_block", "limited_fotr"), TTT_BLOCK("ttt_block", "limited_ttt"), - MOVIE_BLOCK("movie", "limited_king"); + MOVIE_BLOCK("movie", "limited_king"), + WAR_BLOCK("war_block", "limited_shadows"); public static SealedLeagueType getLeagueType(String sealedCode) { for (SealedLeagueType sealedLeagueType : SealedLeagueType.values()) { diff --git a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/merchant/MerchantService.java b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/merchant/MerchantService.java index 933098ce7..ee5d01e2a 100644 --- a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/merchant/MerchantService.java +++ b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/merchant/MerchantService.java @@ -93,6 +93,15 @@ public class MerchantService { addFixedItem("SoG - Pippin Starter", 2500); addFixedItem("MD - Frodo Starter", 2500); addFixedItem("MD - Sam Starter", 2500); + + addFixedItem("SH - Aragorn Starter", 2500); + addFixedItem("SH - Eowyn Starter", 2500); + addFixedItem("SH - Gandalf Starter", 2500); + addFixedItem("SH - Legolas Starter", 2500); + addFixedItem("BR - Mouth Starter", 2500); + addFixedItem("BR - Saruman Starter", 2500); + addFixedItem("BL - Arwen Starter", 2500); + addFixedItem("BL - Boromir Starter", 2500); } private void addFixedItem(String blueprintId, int price) { diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/(S)BL - Starter.pack b/gemp-lotr/gemp-lotr-server/src/main/resources/(S)BL - Starter.pack new file mode 100644 index 000000000..c69272fab --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/main/resources/(S)BL - Starter.pack @@ -0,0 +1,2 @@ +1xBL - Arwen Starter +1xBL - Boromir Starter \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/(S)BR - Starter.pack b/gemp-lotr/gemp-lotr-server/src/main/resources/(S)BR - Starter.pack new file mode 100644 index 000000000..21b3261e3 --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/main/resources/(S)BR - Starter.pack @@ -0,0 +1,2 @@ +1xBR - Mouth Starter +1xBR - Saruman Starter \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/(S)SH - Starter.pack b/gemp-lotr/gemp-lotr-server/src/main/resources/(S)SH - Starter.pack new file mode 100644 index 000000000..ae95d938d --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/main/resources/(S)SH - Starter.pack @@ -0,0 +1,4 @@ +1xSH - Aragorn Starter +1xSH - Eowyn Starter +1xSH - Gandalf Starter +1xSH - Legolas Starter \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/BL - Arwen Starter.pack b/gemp-lotr/gemp-lotr-server/src/main/resources/BL - Arwen Starter.pack new file mode 100644 index 000000000..3cf476c59 --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/main/resources/BL - Arwen Starter.pack @@ -0,0 +1,76 @@ +#Bloodlines Arwen Starter Deck +#(1) The One Ring, The Ruling Ring - +1x11_2 +#(1) Frodo, Protected by Many - +1x11_164 +#Sites +#(1) Caves of Aglarond - +1x13_186 +#(1) Crossroads of the Fallen Kings - +1x13_189 +#(1) Shores of Nen hithoel - +1x12_191 +#(1) Caras Galadhon - +1x11_231 +#(1) Old Forest Road - +1x11_251 +#(1) West Gate of Moria - +1x11_263 +#(1) Moria Stairway - +1x11_248 +#(1) East Road - +1x11_236 +#(1) Fangorn Glade - +1x11_239 +#Free Peoples +#(2) Arwen, Reflection of Luthien - +2x13_9 +#(3) Lorien Protector - +3x13_20 +#(2) Shrouded Elf - +2x13_23 +#(3) Final Shot - +3x13_14 +#(1) Rumil, Brother of Haldir - +1x12_22 +#(1) Orophin, Brother of Haldir - +1x12_20 +#(4) Blade of Lindon - +4x11_16 +#(2) Hobbit Sword - +2x11_166 +#(2) Measure of Comfort - +2x12_125 +#(2) Farewell to Lorien - +2x11_19 +#(3) Attunement - +3x12_16 +#(2) Crashing Cavalry - +2x13_13 +#(1) Kindreds Estranged - +1x13_17 +#(2) Elven Bow - +2x4_62 +#Shadow +#(4) Orc Plains Runner - +4x13_114 +#(2) Howling Orc - +2x13_109 +#(2) Picket Denizen - +2x13_118 +#(3) Prowling Orc - +3x11_136 +#(3) Orc Strategist - +3x12_97 +#(3) Orc Spear - +3x12_96 +#(3) Scavenging Goblins - +3x12_102 +#(4) Orc Skulker - +4x12_95 +#(2) Strength in Shadows - +2x11_140 +#(2) Underdeeps Denizen - +2x13_119 +#(2) Always Threatening - +2x13_103 \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/BL - Boromir Starter.pack b/gemp-lotr/gemp-lotr-server/src/main/resources/BL - Boromir Starter.pack new file mode 100644 index 000000000..5d405c214 --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/main/resources/BL - Boromir Starter.pack @@ -0,0 +1,71 @@ +#Bloodlines Boromir Starter Deck +#Ring-bearer and Ring +#(1) The One Ring, The Ruling Ring - +1x11_2 +#(1) Frodo, Protected by Many - +1x11_164 +#Sites +#(1) Fords of Isen - +1x13_191 +#(1) The Great Gates - +1x13_192 +#(1) Anduin Banks - +1x11_227 +#(1) Valley of the Silverlode - +1x11_261 +#(1) Trollshaw Forest - +1x11_260 +#(1) Window on the West - +1x11_265 +#(1) Helm's Gate - +1x11_245 +#(1) North Undeep - +1x11_250 +#(1) Northern Pelennor - +1x12_190 +#Free Peoples +#(2) Boromir, Doomed Heir - +2x13_62 +#(3) Rally the Company - +3x13_74 +#(4) Tradesman From Lebennin - +4x13_77 +#(3) Heirs of Gondor - +3x13_69 +#(1) Merry, Loyal Companion - +1x11_168 +#(3) Hobbit Sword - +3x11_166 +#(2) Tolman Cotton, Farmer of Bywater - +2x12_133 +#(2) Armor of the Citadel - +2x11_55 +#(4) Gondorian Blade - +4x11_59 +#(2) Measure of Comfort - +2x12_125 +#(2) Dagger Strike - +2x7_84 +#(2) Faith in Friendship - +2x13_147 +#Shadow +#(3) Vicious Dunlending - +3x13_100 +#(3) Cruel Dunlending - +3x13_85 +#(2) Worn Battleaxe - +2x13_102 +#(4) Stragglers - +4x13_99 +#(3) Column of Easterlings - +3x11_72 +#(3) Easterling Shield Wall - +3x11_76 +#(4) Rampaging Easterling - +4x11_98 +#(3) Crooked Townsman - +3x12_61 +#(2) Bring Down the Wall - +2x13_82 +#(3) Wrathful Hillman - +3x12_78 \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/BR - Mouth Starter.pack b/gemp-lotr/gemp-lotr-server/src/main/resources/BR - Mouth Starter.pack new file mode 100644 index 000000000..3aa8f4430 --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/main/resources/BR - Mouth Starter.pack @@ -0,0 +1,76 @@ +#The Black Rider Mouth of Sauron Starter Deck Card List +#Three random rare cards not listed here. +#Ring-bearer (2 cards) +# Frodo, Protected by Many +# The One Ring, The Ruling Ring +1x11_164 +1x11_2 +#Adventure Deck (9 cards) +# Fortress of Orthanc +# Emyn Muil +# Pelennor Fields +# Pelennor Flat +# Northern Pelennor +# Helm's Gate +# Flats of Rohan +# Stables +# Harrowdale +1x11_241 +1x11_187 +1x11_253 +1x11_254 +1x11_190 +1x11_245 +1x11_240 +1x11_259 +1x11_243 +#Free Peoples (30 cards) +# Rider's Spear x 4 +# Éomer, Guardian of the Eastmark x 1 +# For the Mark x 2 +# Measure of Comfort x 2 +# War Now Calls Us x 4 +# Éored Warrior x 4 +# Rohirrim Mount x 3 +# Hobbit Sword x 2 +# Merry, Loyal Companion x 1 +# Théoden, King of the Eorlingas x 1 +# Rally Cry x 4 +# Hrothlac, Man of Rohan x 1 +# Leofric, Defender of the Mark x 1 +4x11_153 +1x11_145 +2x12_114 +2x12_125 +4x11_160 +4x12_113 +3x11_156 +2x11_166 +1x11_168 +1x11_159 +4x11_150 +1x11_148 +1x12_117 +#Shadow (30 cards) +# The Mouth of Sauron, MoM x 2 +# Corps of Harad x 3 +# Poleaxe x 4 +# Raging Dunlending x 3 +# Long Battle Bow x 2 +# Crooked Townsman x 2 +# Brutal Easterling x 3 +# Frenzied Dunlending x 3 +# Overrun x 3 +# Wrathful Hillman x 3 +# Crazed Hillman x 2 +2x12_73 +3x11_73 +4x11_95 +3x11_97 +2x11_89 +2x12_61 +3x12_55 +3x12_65 +3x11_92 +3x12_78 +2x12_60 \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/BR - Saruman Starter.pack b/gemp-lotr/gemp-lotr-server/src/main/resources/BR - Saruman Starter.pack new file mode 100644 index 000000000..7b7ab8bca --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/main/resources/BR - Saruman Starter.pack @@ -0,0 +1,74 @@ +#The Black Rider Saruman Starter Deck Card List +#Three random rare cards not listed here. +#Ring-bearer (2 cards) +# Frodo, Protected by Many +# The One Ring, The Ruling Ring +1x11_164 +1x11_2 +#Adventure Deck (9 cards) +# Fortress of Orthanc +# Slag Mounds +# Hill of Sight +# Helm's Gate +# Caras Galadhon +# Hobbiton Market +# Green Dragon Inn +# The Prancing Pony +# Trollshaw Forest +1x11_241 +1x11_258 +1x12_188 +1x11_245 +1x11_231 +1x12_189 +1x11_242 +1x11_256 +1x11_260 +#Free Peoples (30 cards) +# Hope is Kindled x 4 +# No Worse for Wear x 4 +# Hobbit Sword x 4 +# Ranger of Westernesse x 2 +# Tolman Cotton, Farmer of Bywater x 1 +# Sworn Companion x 4 +# Merry, Loyal Companion x 1 +# Sam, Steadfast Friend x 2 +# The More, The Merrier x 2 +# Farmer Maggot, Hobbit of the Marish x 1 +# Crouched Down x 3 +# Incognito x 2 +4x12_123 +4x12_126 +4x11_166 +2x11_65 +1x12_133 +4x11_174 +1x11_168 +2x11_172 +2x11_169 +1x11_163 +3x11_162 +2x11_167 +#Shadow (30 cards) +# Saruman, Agent of the Dark Lord x 2 +# Uruk Desecrator x 3 +# Our Foes Are Weak x 3 +# Weapon of Opportunity x 3 +# Patrol of Uruk-hai x 3 +# Squad of Uruk-hai x 4 +# Intimidating Uruk x 2 +# Uruk Dominator x 3 +# Furor x 2 +# Uruk Pikeman x 3 +# Strange Device x 2 +2x11_144 +3x11_151 +3x11_196 +3x11_159 +3x11_198 +4x11_202 +2x11_189 +3x11_152 +2x11_187 +3x11_153 +2x11_146 \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Aragorn Starter.pack b/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Aragorn Starter.pack new file mode 100644 index 000000000..87f485937 --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Aragorn Starter.pack @@ -0,0 +1,70 @@ +#The Shadows Aragorn Starter Deck Card List +#Three random rare cards not listed here. +#Ring-bearer (2 cards) +# Frodo, Protected by Many +# The One Ring, The Ruling Ring +1x11_164 +1x11_2 +#Adventure Deck (9 cards) +# The Prancing Pony +# North Undeep +# Cavern Entrance +# Window on the West +# West Gate of Moria +# Moria Stairway +# Crags of Emyn Muil +# Expanding Marshland +# Watch-tower of Cirith Ungol +1x11_256 +1x11_250 +1x11_232 +1x11_265 +1x11_263 +1x11_248 +1x11_234 +1x11_238 +1x11_262 +#Free Peoples (30 cards) +# Aragorn, Guide and Protector x 2 +# Madril, Ranger of Ithilien x 2 +# Ranger of Westernesse x 4 +# Sam, Steadfast Friend x 2 +# Gondorian Blade x 4 +# Hobbit Sword x 2 +# Pledge of Loyalty x 3 +# Armor of the Citadel x 2 +# Battle Cry x 4 +# Much-needed Rest x 3 +# Incognito x 2 +2x11_53 +2x11_62 +4x11_65 +2x11_172 +4x11_59 +2x11_166 +3x11_64 +2x11_55 +4x11_56 +3x11_63 +2x11_167 +#Shadow (30 cards) +# Skulking Goblin x 4 +# Denizen of Moria x 4 +# Marauding Orcs x 2 +# Orc Hammer x 2 +# Conquered Halls x 2 +# Denizen of the Black Pit x 3 +# Unyielding Goblin x 4 +# Denizen of Khazad-dûm x 4 +# Frenzied Orc x 3 +# Demoralized x 2 +4x11_138 +4x11_116 +2x11_126 +2x11_130 +2x11_112 +3x11_117 +4x11_142 +4x11_115 +3x11_122 +2x11_114 \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Eowyn Starter.pack b/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Eowyn Starter.pack new file mode 100644 index 000000000..634fd0768 --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Eowyn Starter.pack @@ -0,0 +1,68 @@ +#The Shadows Éowyn Starter Deck Card List +#Three random rare cards not listed here. +#Ring-bearer (2 cards) +# Frodo, Protected by Many +# The One Ring, The Ruling Ring +1x11_164 +1x11_2 +#Adventure Deck (9 cards) +# Flats of Rohan +# Harrowdale +# Pelennor Flat +# Osgiliath Reclaimed +# Stables +# Slag Mounds +# Fortress of Orthanc +# Rohan Uplands +# Trollshaw Forest +1x11_240 +1x11_243 +1x11_254 +1x11_252 +1x11_259 +1x11_258 +1x11_241 +1x11_257 +1x11_260 +#Free Peoples (30 cards) +# Éowyn, Shieldmaiden of Rohan x 2 +# Éomer, Guardian of the Eastmark x 2 +# Riddermark Soldier x 4 +# Hrothlac, Man of Rohan x 1 +# Rider's Spear x 4 +# Rohirrim Mount x 4 +# Hobbit Sword x 2 +# War Now Calls Us x 3 +# Rally Cry x 3 +# Riding Like the Wind x 3 +# Rush of Steeds x 2 +2x11_146 +2x11_145 +4x11_152 +1x11_148 +4x11_153 +4x11_156 +2x11_166 +3x11_160 +3x11_150 +3x11_155 +2x11_157 +#Shadow (30 cards) +# Bloodthirsty Uruk x 4 +# Hounding Uruk x 4 +# Lookout Uruk x 4 +# Feral Uruk x 4 +# Invincible Uruk x 2 +# Furor x 4 +# Brutality x 3 +# Overpowering Uruk x 3 +# Our Foes Are Weak x 2 +4x11_178 +4x11_188 +4x11_193 +4x11_183 +2x11_190 +4x11_187 +3x11_180 +3x11_197 +2x11_196 \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Gandalf Starter.pack b/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Gandalf Starter.pack new file mode 100644 index 000000000..b14c81b95 --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Gandalf Starter.pack @@ -0,0 +1,72 @@ +#The Shadows Gandalf Starter Deck Card List +#Three random rare cards not listed here. +#Ring-bearer (2 cards) +# Frodo, Protected by Many +# The One Ring, The Ruling Ring +1x11_164 +1x11_2 +#Adventure Deck (9 cards) +# Westemnet Village +# Valley of the Silverlode +# Green Dragon Inn +# East Road +# Buckland Homestead +# Woody-end +# Caras Galadhon +# Neekerbreeker's Bog +# Pinnacle of Zirakzigil +1x11_264 +1x11_261 +1x11_242 +1x11_236 +1x11_230 +1x11_266 +1x11_231 +1x11_249 +1x11_255 +#Free Peoples (30 cards) +# Gandalf, Leader of the Company x 2 +# Sam, Steadfast Friend x 2 +# Merry, Loyal Companion x 2 +# Farmer Maggot, Hobbit of the Marish x 2 +# Hobbit Sword x 4 +# G for Grand x 3 +# Unharmed x 3 +# Concerning Hobbits x 3 +# Sworn Companion x 3 +# Inspiration x 2 +# Prolonged Struggle x 1 +# Crouched Down x 3 +2x11_33 +2x11_172 +2x11_168 +2x11_163 +4x11_166 +3x11_32 +3x11_176 +3x11_161 +3x11_174 +2x11_36 +1x11_39 +3x11_162 +#Shadow (30 cards) +# Úlairë Lemenya, 5th of the 9 Riders x 4 +# Úlairë Nelya, 3rd of the 9 Riders x 4 +# Úlairë Cantëa, 4th of the 9 Riders x 4 +# Úlairë Toldëa, 8th of the 9 Riders x 4 +# Úlairë Nertëa, 9th of the 9 Riders x 3 +# Drawn to its Power x 2 +# Moving This Way x 3 +# Riders in Black x 3 +# Hatred Stirred x 1 +# Dark Wings x 2 +4x11_221 +4x11_222 +4x11_220 +4x11_225 +3x11_223 +2x11_209 +3x11_213 +3x11_215 +1x11_210 +2x11_208 \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Legolas Starter.pack b/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Legolas Starter.pack new file mode 100644 index 000000000..ba652177f --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/main/resources/SH - Legolas Starter.pack @@ -0,0 +1,70 @@ +#The Shadows Legolas Starter Deck Card List +#Three random rare cards not listed here. +#Ring-bearer (2 cards) +# Frodo, Protected by Many +# The One Ring, The Ruling Ring +1x11_164 +1x11_2 +#Adventure Deck (9 cards) +# Old Forest Road +# Anduin Confluence +# Fangorn Glade +# Ettenmoors +# Chamber of Mazarbul +# Pelennor Fields +# Moria Guardroom +# Helm's Gate +# Barazinbar +1x11_251 +1x11_228 +1x11_239 +1x11_237 +1x11_233 +1x11_253 +1x11_247 +1x11_245 +1x11_229 +#Free Peoples (30 cards) +# Legolas, Companion of the Ring x 2 +# Farin, Emissary of Erebor x 3 +# Elven Scout x 4 +# Woodland Sentinel x 2 +# Blade of Lindon x 4 +# Axe of Khazad-dûm x 2 +# The Lady's Blessing x 4 +# Hobbit Sword x 2 +# Farewell to Lórien x 2 +# Sworn Companion x 2 +# Dwarven Embassy x 2 +# Fallen Lord x 1 +2x11_21 +3x11_7 +4x11_18 +2x11_27 +4x11_16 +2x11_3 +4x11_20 +2x11_166 +2x11_19 +2x11_174 +2x11_5 +1x11_6 +#Shadow (30 cards) +# Footman of Dunland x 4 +# Elder of Dunland x 4 +# Harad Standard-bearer x 4 +# Man of Bree x 4 +# Raging Dunlending x 2 +# Poleaxe x 4 +# Overrun x 3 +# Column of Easterlings x 3 +# Fearsome Dunlending x 2 +4x11_82 +4x11_77 +4x11_84 +4x11_90 +2x11_97 +4x11_95 +3x11_92 +3x11_72 +2x11_79 \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-web-server/src/main/java/com/gempukku/lotro/server/provider/PacksStorageProvider.java b/gemp-lotr/gemp-lotr-web-server/src/main/java/com/gempukku/lotro/server/provider/PacksStorageProvider.java index 64f404792..d1731755a 100644 --- a/gemp-lotr/gemp-lotr-web-server/src/main/java/com/gempukku/lotro/server/provider/PacksStorageProvider.java +++ b/gemp-lotr/gemp-lotr-web-server/src/main/java/com/gempukku/lotro/server/provider/PacksStorageProvider.java @@ -44,6 +44,10 @@ public class PacksStorageProvider implements Injectable, Injectabl packStorage.addPackBox("(S)BoHD - Starter", new FixedPackBox("(S)BoHD - Starter")); packStorage.addPackBox("(S)EoF - Starter", new FixedPackBox("(S)EoF - Starter")); + packStorage.addPackBox("(S)SH - Starter", new FixedPackBox("(S)SH - Starter")); + packStorage.addPackBox("(S)BR - Starter", new FixedPackBox("(S)BR - Starter")); + packStorage.addPackBox("(S)BL - Starter", new FixedPackBox("(S)BL - Starter")); + packStorage.addPackBox("(S)RotK - Starter", new FixedPackBox("(S)RotK - Starter")); packStorage.addPackBox("(S)SoG - Starter", new FixedPackBox("(S)SoG - Starter")); packStorage.addPackBox("(S)MD - Starter", new FixedPackBox("(S)MD - Starter")); @@ -83,6 +87,17 @@ public class PacksStorageProvider implements Injectable, Injectabl packStorage.addPackBox("MD - Frodo Starter", new FixedPackBox("MD - Frodo Starter")); packStorage.addPackBox("MD - Sam Starter", new FixedPackBox("MD - Sam Starter")); + packStorage.addPackBox("SH - Aragorn Starter", new FixedPackBox("SH - Aragorn Starter")); + packStorage.addPackBox("SH - Eowyn Starter", new FixedPackBox("SH - Eowyn Starter")); + packStorage.addPackBox("SH - Gandalf Starter", new FixedPackBox("SH - Gandalf Starter")); + packStorage.addPackBox("SH - Legolas Starter", new FixedPackBox("SH - Legolas Starter")); + + packStorage.addPackBox("BR - Mouth Starter", new FixedPackBox("BR - Mouth Starter")); + packStorage.addPackBox("BR - Saruman Starter", new FixedPackBox("BR - Saruman Starter")); + + packStorage.addPackBox("BL - Arwen Starter", new FixedPackBox("BL - Arwen Starter")); + packStorage.addPackBox("BL - Boromir Starter", new FixedPackBox("BL - Boromir Starter")); + packStorage.addPackBox("FotR - Booster", new RarityPackBox(1)); packStorage.addPackBox("MoM - Booster", new RarityPackBox(2)); packStorage.addPackBox("RotEL - Booster", new RarityPackBox(3)); diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/leagueAdmin.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/leagueAdmin.html index c02ee33a5..e00a11a41 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/webapp/leagueAdmin.html +++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/leagueAdmin.html @@ -168,6 +168,7 @@ +
Series duration in days:
Maximum matches in series: