mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fix Death's Presence
This commit is contained in:
parent
6a0523e38a
commit
c86c90dc76
1 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ import mage.target.common.TargetControlledCreaturePermanent;
|
|||
public class DeathsPresence extends CardImpl<DeathsPresence> {
|
||||
|
||||
public DeathsPresence(UUID ownerId) {
|
||||
super(ownerId, 119, "Death's Presence", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{5}{G}");
|
||||
super(ownerId, 121, "Death's Presence", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{5}{G}");
|
||||
this.expansionSetCode = "RTR";
|
||||
this.color.setGreen(true);
|
||||
|
||||
|
@ -92,7 +92,7 @@ class DeathsPresenceTriggeredAbility extends TriggeredAbilityImpl<DeathsPresence
|
|||
this.getTargets().clear();
|
||||
this.addTarget(new TargetControlledCreaturePermanent());
|
||||
this.getEffects().clear();
|
||||
this.addEffect(new AddCountersTargetEffect(CounterType.P1P1.createInstance(permanent.getToughness().getValue())));
|
||||
this.addEffect(new AddCountersTargetEffect(CounterType.P1P1.createInstance(permanent.getPower().getValue())));
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue