mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
* DevourEffect - Set reminder text to italic style.
This commit is contained in:
parent
9f6ebac2b4
commit
933ee518c8
1 changed files with 3 additions and 4 deletions
|
@ -30,12 +30,11 @@ package mage.abilities.effects.common;
|
|||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.constants.Outcome;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.Mode;
|
||||
import mage.abilities.effects.ReplacementEffectImpl;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Outcome;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.permanent.AnotherPredicate;
|
||||
|
@ -158,8 +157,8 @@ public class DevourEffect extends ReplacementEffectImpl<DevourEffect> {
|
|||
@Override
|
||||
public String getText(Mode mode) {
|
||||
StringBuilder sb = new StringBuilder(devourFactor.toString());
|
||||
sb.append(" (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with ");
|
||||
sb.append(devourFactor.getRuleText()).append(")");
|
||||
sb.append(" <i>(As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with ");
|
||||
sb.append(devourFactor.getRuleText()).append(")</i>");
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue