mirror of
https://github.com/correl/mage.git
synced 2024-11-24 19:19:56 +00:00
update toxic ability reminder text
This commit is contained in:
parent
a146f552ea
commit
5e7514ae4f
1 changed files with 3 additions and 1 deletions
|
@ -4,6 +4,7 @@ import mage.abilities.MageSingleton;
|
|||
import mage.abilities.StaticAbility;
|
||||
import mage.abilities.icon.abilities.InfectAbilityIcon;
|
||||
import mage.constants.Zone;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
import java.io.ObjectStreamException;
|
||||
|
||||
|
@ -26,7 +27,8 @@ public class ToxicAbility extends StaticAbility {
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "toxic " + amount + " <i>(Players dealt combat damage by this creature also get a poison counter.)</i>";
|
||||
return "toxic " + amount + " <i>(Players dealt combat damage by this creature also get " +
|
||||
CardUtil.numberToText(amount, "a") + " poison counter" + (amount > 1 ? "s" : "") + ".)</i>";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue