mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
Revert "- Little fix to Phyrexian Tyranny. Changed damage to loss of life."
This reverts commit 457eec8531f827f90502774cfff2a775feefe25c.
This commit is contained in:
parent
b874fc1672
commit
f109ff7f1e
1 changed files with 8 additions and 7 deletions
|
|
@ -54,6 +54,7 @@ public class PhyrexianTyranny extends CardImpl {
|
|||
public PhyrexianTyranny(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{U}{B}{R}");
|
||||
|
||||
|
||||
// Whenever a player draws a card, that player loses 2 life unless he or she pays {2}.
|
||||
this.addAbility(new PhyrexianTyrannyTriggeredAbility());
|
||||
}
|
||||
|
|
@ -126,7 +127,7 @@ class PhyrexianTyrannyEffect extends OneShotEffect {
|
|||
if (player != null) {
|
||||
Cost cost = new GenericManaCost(2);
|
||||
if (!cost.pay(source, game, player.getId(), player.getId(), false, null)) {
|
||||
player.loseLife(2, game, false);
|
||||
player.damage(2, source.getSourceId(), game, false, true);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue