mirror of
https://github.com/correl/mage.git
synced 2025-04-10 17:00:08 -09:00
- Fixed #6067
This commit is contained in:
parent
2e59a45895
commit
95d749648e
1 changed files with 3 additions and 3 deletions
|
@ -48,7 +48,7 @@ public final class VolrathTheShapestealer extends CardImpl {
|
||||||
|
|
||||||
// At the beginning of combat on your turn, put a -1/-1 counter on up to one target creature.
|
// At the beginning of combat on your turn, put a -1/-1 counter on up to one target creature.
|
||||||
Ability ability = new BeginningOfCombatTriggeredAbility(
|
Ability ability = new BeginningOfCombatTriggeredAbility(
|
||||||
new AddCountersTargetEffect(CounterType.M1M1.createInstance()), TargetController.YOU, false
|
new AddCountersTargetEffect(CounterType.M1M1.createInstance(), Outcome.Detriment), TargetController.YOU, false
|
||||||
);
|
);
|
||||||
ability.addTarget(new TargetCreaturePermanent(0, 1));
|
ability.addTarget(new TargetCreaturePermanent(0, 1));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
@ -73,8 +73,8 @@ class VolrathTheShapestealerEffect extends OneShotEffect {
|
||||||
|
|
||||||
VolrathTheShapestealerEffect() {
|
VolrathTheShapestealerEffect() {
|
||||||
super(Outcome.Copy);
|
super(Outcome.Copy);
|
||||||
staticText = "Until your next turn, {this} becomes a copy of target creature with a counter on it, " +
|
staticText = "Until your next turn, {this} becomes a copy of target creature with a counter on it, "
|
||||||
"except it's 7/5 and it has this ability.";
|
+ "except it's 7/5 and it has this ability.";
|
||||||
}
|
}
|
||||||
|
|
||||||
private VolrathTheShapestealerEffect(final VolrathTheShapestealerEffect effect) {
|
private VolrathTheShapestealerEffect(final VolrathTheShapestealerEffect effect) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue