Added card text to new cards.

This commit is contained in:
marcin.sciesinski
2017-11-13 13:57:47 -08:00
parent 15deaa0bb1
commit 4518507402
4 changed files with 34 additions and 1 deletions

View File

@@ -18,6 +18,14 @@ import com.gempukku.lotro.logic.timing.Effect;
import java.util.LinkedList;
import java.util.List;
/**
* The Eagles Are Coming [Gandalf]
* Event • Skirmish
* Twilight Cost 3
* 'Spell.
* Exert Gandalf to play a [Gandalf] follower from your draw deck or discard pile.
* You may attach a [Gandalf] follower from your support area to a companion (without paying the aid cost).'
*/
public class Card31_014 extends AbstractEvent {
public Card31_014() {
super(Side.FREE_PEOPLE, 3, Culture.GANDALF, "The Eagles Are Coming", Phase.SKIRMISH);

View File

@@ -16,6 +16,13 @@ import com.gempukku.lotro.logic.timing.Effect;
import java.util.LinkedList;
import java.util.List;
/**
* His Wrath Was Redoubled [Gandalf]
* Event • Assignment
* Twilight Cost 3
* 'Spell.
* Discard Beorn (or 2 [Dwarven] followers) to make a Shadow player assign 3 wounds to minions (except Smaug).'
*/
public class Card31_016 extends AbstractEvent {
public Card31_016() {
super(Side.FREE_PEOPLE, 3, Culture.GANDALF, "His Wrath Was Redoubled", Phase.ASSIGNMENT);

View File

@@ -18,6 +18,16 @@ import com.gempukku.lotro.logic.timing.Action;
import java.util.Collections;
import java.util.List;
/**
* •Radagast, The Brown [Gandalf]
* Ally • Home 5 • Wizard
* Twilight Cost 4
* Strength 8
* Vitality 4
* Wise.
* Fellowship: Play Gandalf from your discard pile to make the move limit for this turn +1. Choose an opponent who may
* draw 2 cards.
*/
public class Card31_017 extends AbstractAlly {
public Card31_017() {
super(4, Block.HOBBIT, 5, 8, 4, Race.WIZARD, Culture.GANDALF, "Radagast", "The Brown", true);
@@ -41,7 +51,7 @@ public class Card31_017 extends AbstractAlly {
protected void opponentChosen(String opponentId) {
action.appendEffect(
new OptionalEffect(action, opponentId,
new DrawCardsEffect(action, opponentId, 3)));
new DrawCardsEffect(action, opponentId, 2)));
}
});

View File

@@ -24,6 +24,14 @@ import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* •Ancestral Feuds [Mirkwood] (Gundabad)
* Condition • Support Area
* Twilight Cost 2
* 'Each time the fellowship moves to site 5, discard each weapon borne by a [Dwarven] companion.
* Skirmish: Remove 3 to make a [Dwarven] character strength -X (limit -3), where X is the number of [Elven]
* allies you spot.'
*/
public class Card31_029 extends AbstractPermanent {
public Card31_029() {
super(Side.SHADOW, 2, CardType.CONDITION, Culture.GUNDABAD, Zone.SUPPORT, "Ancestral Feuds", null, true);