[STX] Implemented Torrent Sculptor / Flamethrower Sonata

This commit is contained in:
Evan Kranzler 2021-03-27 11:33:08 -04:00
parent 5918838ccc
commit a55ed17beb
4 changed files with 160 additions and 1 deletions

View file

@ -14,5 +14,7 @@ public interface ModalDoubleFacesCardHalf extends Card {
ModalDoubleFacesCard getParentCard();
void setPT(MageInt power, MageInt toughtness);
void setPT(int power, int toughness);
void setPT(MageInt power, MageInt toughness);
}

View file

@ -97,6 +97,10 @@ public class ModalDoubleFacesCardHalfImpl extends CardImpl implements ModalDoubl
}
@Override
public void setPT(int power, int toughness) {
this.setPT(new MageInt(power), new MageInt(toughness));
}
public void setPT(MageInt power, MageInt toughness) {
this.power = power;
this.toughness = toughness;