- "Ancient Chieftain, Elder Goblin" costs 4 twilight, rather than 3 (per card text).

This commit is contained in:
marcins78
2013-03-13 16:38:14 +00:00
parent b3dae41426
commit 3b1ba226da
2 changed files with 3 additions and 2 deletions

View File

@@ -19,6 +19,7 @@
- "Retribution" now only the owner of the Dwarf gets the option to use the "Retribution" effect, when that Dwarf wins
the skirmish.
- "Uruk Brute" has now 9 strength (per card text).
- "Ancient Chieftain, Elder Goblin" costs 4 twilight, rather than 3 (per card text).
<b>12 Mar. 2013</b>
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.

View File

@@ -12,7 +12,7 @@ import com.gempukku.lotro.logic.modifiers.Modifier;
import com.gempukku.lotro.logic.modifiers.StrengthModifier;
/**
* 3
* 4
* •Ancient Chieftan, Elder Goblin
* Moria Minion • Goblin
* 9 3 4
@@ -20,7 +20,7 @@ import com.gempukku.lotro.logic.modifiers.StrengthModifier;
*/
public class Card20_250 extends AbstractMinion {
public Card20_250() {
super(3, 9, 3, 4, Race.GOBLIN, Culture.MORIA, "Ancient Chieftain", "Elder Goblin", true);
super(4, 9, 3, 4, Race.GOBLIN, Culture.MORIA, "Ancient Chieftain", "Elder Goblin", true);
}
@Override