[MH2] Fixed missing colors on suspend cards

This commit is contained in:
Daniel Bomar 2021-06-04 18:51:26 -05:00
parent 29e85cd4b9
commit 0d84a4a133
No known key found for this signature in database
GPG key ID: C86C8658F4023918
2 changed files with 4 additions and 0 deletions

View file

@ -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));

View file

@ -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));