mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[STX] Implemented Torrent Sculptor / Flamethrower Sonata
This commit is contained in:
parent
5918838ccc
commit
a55ed17beb
4 changed files with 160 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue