Removed new shadow culture
This commit is contained in:
@@ -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)) {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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(
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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");
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user