mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
[TDM] Implement Anafenza, Unyielding Lineage
This commit is contained in:
parent
0816d5633e
commit
d49e900edd
3 changed files with 68 additions and 1 deletions
|
|
@ -18,8 +18,12 @@ public class EndureSourceEffect extends OneShotEffect {
|
|||
private final int amount;
|
||||
|
||||
public EndureSourceEffect(int amount) {
|
||||
this(amount, "it");
|
||||
}
|
||||
|
||||
public EndureSourceEffect(int amount, String selfText) {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "it endures " + amount;
|
||||
staticText = selfText + " endures " + amount;
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue