- "Natural Advantages" adds 2 to site number, not 3 (per card text).

This commit is contained in:
marcins78
2013-03-25 11:51:51 +00:00
parent 181563bbb5
commit 1deff453c0
2 changed files with 2 additions and 1 deletions

View File

@@ -11,6 +11,7 @@
- "Black Beast of Angmar, Death in Flight" now correctly applies its strength and vitality modifier.
- "Gandalf, Wisest of the Istari" now has 8 resistance, not 7 (per card text).
- "Flaming Brand" costs 0 twilight (per card text).
- "Natural Advantages" adds 2 to site number, not 3 (per card text).
<b>20 Mar. 2013</b>
- "Uruk Mender" has now 8 strength (per card text).

View File

@@ -35,7 +35,7 @@ public class Card20_201 extends AbstractPermanent {
@Override
public Modifier getAlwaysOnModifier(LotroGame game, PhysicalCard self) {
return new MinionSiteNumberModifier(self, CardType.MINION, null, 3);
return new MinionSiteNumberModifier(self, CardType.MINION, null, 2);
}
@Override