mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
- Fixed #5956
This commit is contained in:
parent
5a1fb5f90e
commit
dbf56a5160
1 changed files with 5 additions and 4 deletions
|
@ -18,9 +18,10 @@ import mage.counters.CounterType;
|
|||
import mage.filter.StaticFilters;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
import mage.target.common.TargetCreatureOrPlaneswalker;
|
||||
import mage.target.common.TargetCreaturePermanentAmount;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
|
@ -42,13 +43,13 @@ public final class VivienArkbowRanger extends CardImpl {
|
|||
TrampleAbility.getInstance(), Duration.EndOfTurn,
|
||||
"They gain trample until end of turn"
|
||||
));
|
||||
ability.addTarget(new TargetCreaturePermanentAmount(2));
|
||||
ability.addTarget(new TargetCreaturePermanent(0, 2, new FilterCreaturePermanent(), false));
|
||||
this.addAbility(ability);
|
||||
|
||||
// −3: Target creature you control deals damage equal to its power to target creature or planeswalker.
|
||||
ability = new LoyaltyAbility(
|
||||
new DamageWithPowerTargetEffect().setText("Target creature you control deals damage " +
|
||||
"equal to its power to target creature or planeswalker."), -3
|
||||
new DamageWithPowerTargetEffect().setText("Target creature you control deals damage "
|
||||
+ "equal to its power to target creature or planeswalker."), -3
|
||||
);
|
||||
ability.addTarget(new TargetControlledCreaturePermanent());
|
||||
ability.addTarget(new TargetCreatureOrPlaneswalker());
|
||||
|
|
Loading…
Reference in a new issue