mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Outer Rim Slaver - Fixed rule text. Improved target description text (#5416).
This commit is contained in:
parent
57d5c391fa
commit
dbbe92ff0a
1 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
package mage.cards.o;
|
package mage.cards.o;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
@ -30,12 +29,13 @@ public final class OuterRimSlaver extends CardImpl {
|
||||||
this.toughness = new MageInt(3);
|
this.toughness = new MageInt(3);
|
||||||
|
|
||||||
// When Outer Rim Slaver enters the battlefield, you may put a bounty counter on target creature. If you do, another target creature fights that creature
|
// When Outer Rim Slaver enters the battlefield, you may put a bounty counter on target creature. If you do, another target creature fights that creature
|
||||||
Ability ability = new EntersBattlefieldTriggeredAbility(new AddCountersTargetEffect(CounterType.BOUNTY.createInstance()), true);
|
Ability ability = new EntersBattlefieldTriggeredAbility(new AddCountersTargetEffect(CounterType.BOUNTY.createInstance())
|
||||||
ability.addEffect(new FightTargetsEffect("another target creature fights that creature"));
|
.setText("you may put a bounty counter on target creature"), true);
|
||||||
TargetCreaturePermanent target = new TargetCreaturePermanent();
|
ability.addEffect(new FightTargetsEffect("If you do, another target creature fights that creature"));
|
||||||
|
TargetCreaturePermanent target = new TargetCreaturePermanent(new FilterCreaturePermanent("creature to put a bounty counter on it"));
|
||||||
target.setTargetTag(1);
|
target.setTargetTag(1);
|
||||||
ability.addTarget(target);
|
ability.addTarget(target);
|
||||||
FilterCreaturePermanent filter = new FilterCreaturePermanent();
|
FilterCreaturePermanent filter = new FilterCreaturePermanent("another creature to fight that creature that gets the bounty counter");
|
||||||
filter.add(new AnotherTargetPredicate(2));
|
filter.add(new AnotherTargetPredicate(2));
|
||||||
TargetCreaturePermanent target2 = new TargetCreaturePermanent(filter);
|
TargetCreaturePermanent target2 = new TargetCreaturePermanent(filter);
|
||||||
target2.setTargetTag(2);
|
target2.setTargetTag(2);
|
||||||
|
|
Loading…
Reference in a new issue