mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
- little text fix on AfterlifeAbility
This commit is contained in:
parent
2e8f3d6aad
commit
efe0c222c4
1 changed files with 2 additions and 1 deletions
|
|
@ -6,6 +6,7 @@ import mage.game.permanent.token.WhiteBlackSpiritToken;
|
||||||
import mage.util.CardUtil;
|
import mage.util.CardUtil;
|
||||||
|
|
||||||
public class AfterlifeAbility extends DiesTriggeredAbility {
|
public class AfterlifeAbility extends DiesTriggeredAbility {
|
||||||
|
|
||||||
private final int tokenCount;
|
private final int tokenCount;
|
||||||
|
|
||||||
public AfterlifeAbility(int tokenCount) {
|
public AfterlifeAbility(int tokenCount) {
|
||||||
|
|
@ -22,7 +23,7 @@ public class AfterlifeAbility extends DiesTriggeredAbility {
|
||||||
public String getRule() {
|
public String getRule() {
|
||||||
return "Afterlife " + tokenCount + " <i>(When this creature dies, create "
|
return "Afterlife " + tokenCount + " <i>(When this creature dies, create "
|
||||||
+ CardUtil.numberToText(tokenCount, "a")
|
+ CardUtil.numberToText(tokenCount, "a")
|
||||||
+ " white and black Spirit creature token"
|
+ " 1/1 white and black Spirit creature token"
|
||||||
+ (tokenCount > 1 ? "s" : "")
|
+ (tokenCount > 1 ? "s" : "")
|
||||||
+ " with flying)</i>";
|
+ " with flying)</i>";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue