mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 05:52:06 -08:00
* Serpent Warrior - Fixed that the loose life did no work.
This commit is contained in:
parent
dc881d3330
commit
05efb1773a
1 changed files with 4 additions and 4 deletions
|
|
@ -28,12 +28,12 @@
|
|||
package mage.sets.stronghold;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.common.LoseLifeControllerEffect;
|
||||
import mage.abilities.effects.common.LoseLifeSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -52,7 +52,7 @@ public class SerpentWarrior extends CardImpl<SerpentWarrior> {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// When Serpent Warrior enters the battlefield, you lose 3 life.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new LoseLifeControllerEffect(3)));
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new LoseLifeSourceEffect(3)));
|
||||
}
|
||||
|
||||
public SerpentWarrior(final SerpentWarrior card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue