mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[SNC] fixed Brokers Ascendancy mana cost
This commit is contained in:
parent
ae481f09a6
commit
811c3ec87c
2 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ import java.util.UUID;
|
|||
public final class BrokersAscendancy extends CardImpl {
|
||||
|
||||
public BrokersAscendancy(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{G}{U}{W}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{G}{W}{U}");
|
||||
|
||||
// At the beginning of your end step, put a +1/+1 counter on each creature you control and a loyalty counter on each planeswalker you control.
|
||||
Ability ability = new BeginningOfEndStepTriggeredAbility(new AddCountersAllEffect(
|
||||
|
|
|
@ -100,6 +100,7 @@ public class VerifyCardDataTest {
|
|||
|
||||
// cost
|
||||
skipListCreate(SKIP_LIST_COST);
|
||||
skipListAddName(SKIP_LIST_TYPE, "SNC", "Brokers Ascendancy"); // temporary
|
||||
|
||||
// supertype
|
||||
skipListCreate(SKIP_LIST_SUPERTYPE);
|
||||
|
@ -109,7 +110,6 @@ public class VerifyCardDataTest {
|
|||
skipListAddName(SKIP_LIST_TYPE, "UNH", "Old Fogey"); // uses summon word as a joke card
|
||||
skipListAddName(SKIP_LIST_TYPE, "UND", "Old Fogey");
|
||||
skipListAddName(SKIP_LIST_TYPE, "UST", "capital offense"); // uses "instant" instead "Instant" as a joke card
|
||||
skipListAddName(SKIP_LIST_TYPE, "NEO", "Oni-Cult Anvil"); // temporary
|
||||
|
||||
// subtype
|
||||
skipListCreate(SKIP_LIST_SUBTYPE);
|
||||
|
|
Loading…
Reference in a new issue