Removed new shadow culture

This commit is contained in:
PhallenCassidy
2017-06-14 22:19:20 -04:00
committed by GitHub
parent 30bb3e3453
commit 6e76b067da
7 changed files with 12 additions and 12 deletions

View File

@@ -36,12 +36,12 @@ import java.util.List;
*/
public class Card31_057 extends AbstractMinion {
public Card31_057() {
super(3, 9, 3, 5, Race.SPIDER, Culture.SPIDER, "Crazy Cob", null, true);
super(3, 9, 3, 5, Race.SPIDER, Culture.SMAUG, "Crazy Cob", null, true);
addKeyword(Keyword.FIERCE);
}
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, final PhysicalCard self) {
if (TriggerConditions.forEachDiscardedFromPlay(game, effectResult, CardType.MINION, Culture.MEN)
&& !PlayConditions.isPhase(game, Phase.REGROUP)
&& PlayConditions.canPlayFromHand(playerId, game, -2, Race.SPIDER)) {

View File

@@ -33,7 +33,7 @@ import java.util.List;
*/
public class Card31_058 extends AbstractPermanent {
public Card31_058() {
super(Side.SHADOW, 2, CardType.CONDITION, Culture.SPIDER, Zone.SUPPORT, "Enchanted River", null, true);
super(Side.SHADOW, 2, CardType.CONDITION, Culture.SMAUG, Zone.SUPPORT, "Enchanted River", null, true);
}
@Override

View File

@@ -32,7 +32,7 @@ import java.util.List;
*/
public class Card31_059 extends AbstractMinion {
public Card31_059() {
super(3, 8, 2, 5, Race.SPIDER, Culture.SPIDER, "Fat Spider");
super(3, 8, 2, 5, Race.SPIDER, Culture.SMAUG, "Fat Spider");
addKeyword(Keyword.FIERCE);
}

View File

@@ -34,7 +34,7 @@ import java.util.List;
*/
public class Card31_060 extends AbstractMinion {
public Card31_060() {
super(4, 9, 2, 5, Race.SPIDER, Culture.SPIDER, "Lazy Lob", null, true);
super(4, 9, 2, 5, Race.SPIDER, Culture.SMAUG, "Lazy Lob", null, true);
addKeyword(Keyword.FIERCE);
}
@@ -44,10 +44,10 @@ public class Card31_060 extends AbstractMinion {
}
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SKIRMISH, self, 0)
&& PlayConditions.canDiscardFromPlay(self, game, Race.ORC)) {
ActivateCardAction action = new ActivateCardAction(self);
final ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndDiscardCardsFromPlayEffect(action, playerId, 1, 1, Race.ORC));
action.appendEffect(

View File

@@ -29,7 +29,7 @@ import java.util.List;
*/
public class Card31_061 extends AbstractMinion {
public Card31_061() {
super(4, 8, 3, 5, Race.SPIDER, Culture.SPIDER, "Old Tomnoddy");
super(4, 8, 3, 5, Race.SPIDER, Culture.SMAUG, "Old Tomnoddy");
addKeyword(Keyword.FIERCE);
}

View File

@@ -34,7 +34,7 @@ import java.util.List;
*/
public class Card31_062 extends AbstractPermanent {
public Card31_062() {
super(Side.SHADOW, 2, CardType.CONDITION, Culture.SPIDER, Zone.SUPPORT, "Spider Nest");
super(Side.SHADOW, 2, CardType.CONDITION, Culture.SMAUG, Zone.SUPPORT, "Spider Nest");
}

View File

@@ -30,15 +30,15 @@ import java.util.List;
*/
public class Card31_063 extends AbstractMinion {
public Card31_063() {
super(2, 7, 2, 5, Race.SPIDER, Culture.SPIDER, "Wicked Spider");
super(2, 7, 2, 5, Race.SPIDER, Culture.SMAUG, "Wicked Spider");
addKeyword(Keyword.FIERCE);
}
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SKIRMISH, self, 0)
&& PlayConditions.canDiscardFromPlay(self, game, Race.ORC)) {
ActivateCardAction action = new ActivateCardAction(self);
final ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndDiscardCardsFromPlayEffect(action, playerId, 1, 1, Race.ORC));
action.appendEffect(