This commit is contained in:
marcins78
2013-03-15 17:56:39 +00:00
parent 9952ef8784
commit e83b9f3691
2 changed files with 5 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ var set20 = {
'20_17': 'http://lotrtcg.org/coreset/dunland/hillmanprimitive(r1).png',
'20_18': 'http://lotrtcg.org/coreset/dunland/hillmanpillager(r1).png',
'20_19': 'http://lotrtcg.org/coreset/dunland/hillmanwarrior(r1).png',
'20_20': 'http://lotrtcg.org/coreset/dunland/frecaos.png',
'20_20': 'http://lotrtcg.org/coreset/dunland/frecaos(r1).png',
'20_21': 'http://lotrtcg.org/coreset/dunland/wulfwod.png',
'20_22': 'http://lotrtcg.org/coreset/dunland/sarumanti.png',
'20_23': 'http://lotrtcg.org/coreset/dunland/ransacked.png',

View File

@@ -21,11 +21,12 @@ import java.util.List;
/**
* 4
* • Freca, Oathsworn Savage
* Dunland Minion • Man
* Minion • Man
* 9 1 3
* While you can spot Saruman, Freca's twilight cost is -2.
* Maneuver or Regroup: Stack Freca on a site you control.
* Shadow: If stacked on a site you control, spot Saruman or a [Dunland] Man to play Freca; his twilight cost is -2.
* Regroup: Stack Freca on a site you control.
* http://lotrtcg.org/coreset/dunland/frecaos(r1).png
*/
public class Card20_020 extends AbstractMinion {
public Card20_020() {
@@ -41,8 +42,7 @@ public class Card20_020 extends AbstractMinion {
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, final PhysicalCard self) {
if ((PlayConditions.canUseShadowCardDuringPhase(game, Phase.REGROUP, self, 0)
|| PlayConditions.canUseShadowCardDuringPhase(game, Phase.MANEUVER, self, 0))) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.REGROUP, self, 0)) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose site you control", Filters.siteControlled(playerId)) {