mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
[MH2] Fixed missing colors on suspend cards
This commit is contained in:
parent
29e85cd4b9
commit
0d84a4a133
2 changed files with 4 additions and 0 deletions
|
@ -26,6 +26,8 @@ public final class InevitableBetrayal extends CardImpl {
|
|||
public InevitableBetrayal(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "");
|
||||
|
||||
this.color.setBlue(true);
|
||||
|
||||
// Suspend 3—{1}{U}{U}
|
||||
this.addAbility(new SuspendAbility(3, new ManaCostsImpl<>("{1}{U}{U}"), this));
|
||||
|
||||
|
|
|
@ -24,6 +24,8 @@ public final class ResurgentBelief extends CardImpl {
|
|||
public ResurgentBelief(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "");
|
||||
|
||||
this.color.setWhite(true);
|
||||
|
||||
// Suspend 2—{1}{W}
|
||||
this.addAbility(new SuspendAbility(2, new ManaCostsImpl<>("{1}{W}"), this));
|
||||
|
||||
|
|
Loading…
Reference in a new issue