Fix to 8C54 "Corsair Freebooter"

Properly allows the Shadow player to remove 2 arbitrary culture tokens
This commit is contained in:
PhallenCassidy
2018-03-10 23:07:56 -05:00
committed by GitHub
parent 2ac54d2c6e
commit 82e7aa09b0

View File

@@ -43,7 +43,9 @@ public class Card8_054 extends AbstractMinion {
&& PlayConditions.canRemoveAnyCultureTokens(game, 2, Filters.any)) {
final OptionalTriggerAction action = new OptionalTriggerAction(self);
action.appendCost(
new ChooseAndRemoveCultureTokensFromCardEffect(self, playerId, null, 2, Filters.any));
new ChooseAndRemoveCultureTokensFromCardEffect(self, playerId, null, 1, Filters.any));
action.appendCost(
new ChooseAndRemoveCultureTokensFromCardEffect(self, playerId, null, 1, Filters.any));
action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose a card to add tokens to", Filters.hasToken(Token.RAIDER)) {
@Override