mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
* Daretti, Ingenious Iconoclast - Fixed wrong third text (fixes #4405).
This commit is contained in:
parent
7ade17595d
commit
83528369ee
2 changed files with 18 additions and 9 deletions
|
|
@ -27,6 +27,9 @@
|
|||
*/
|
||||
package mage.abilities.effects.common;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import mage.MageObject;
|
||||
import mage.ObjectColor;
|
||||
import mage.abilities.Ability;
|
||||
|
|
@ -48,10 +51,6 @@ import mage.util.CardUtil;
|
|||
import mage.util.functions.ApplyToPermanent;
|
||||
import mage.util.functions.EmptyApplyToPermanent;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
|
|
@ -277,15 +276,24 @@ public class CreateTokenCopyTargetEffect extends OneShotEffect {
|
|||
if (tapped && !attacking) {
|
||||
sb.append("tapped ");
|
||||
}
|
||||
sb.append("token that's a copy of target creature");
|
||||
sb.append("token that's a copy of target ");
|
||||
} else {
|
||||
sb.append(number);
|
||||
sb.append(" ");
|
||||
if (tapped && !attacking) {
|
||||
sb.append("tapped ");
|
||||
}
|
||||
sb.append("tokens that are copies of target creature");
|
||||
sb.append("tokens that are copies of target ");
|
||||
creature
|
||||
|
||||
");
|
||||
}
|
||||
if (!mode.getTargets().isEmpty()) {
|
||||
sb.append(mode.getTargets().get(0).getMessage());
|
||||
} else {
|
||||
throw new UnsupportedOperationException("Using default rule generation of target effect without having a target object");
|
||||
}
|
||||
|
||||
if (attacking) {
|
||||
sb.append(" that are");
|
||||
if (tapped) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue