[MAT] Implement Nissa, Resurgent Animist

This commit is contained in:
theelk801 2023-05-03 10:12:53 -04:00
parent 4b0b30f471
commit 406d61a55f
3 changed files with 59 additions and 1 deletions

View file

@ -52,7 +52,7 @@ public class IfAbilityHasResolvedXTimesEffect extends OneShotEffect {
if (staticText != null && !staticText.isEmpty()) {
return staticText;
}
return "If this is the " + CardUtil.numberToOrdinalText(resolutionNumber) +
return "if this is the " + CardUtil.numberToOrdinalText(resolutionNumber) +
" time this ability has resolved this turn, " + effect.getText(mode);
}
}