[TDM] Implement Anafenza, Unyielding Lineage

This commit is contained in:
theelk801 2025-03-20 11:01:10 -04:00
parent 0816d5633e
commit d49e900edd
3 changed files with 68 additions and 1 deletions

View file

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