mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
fixed Heroes of the Revel (wrong PT);
This commit is contained in:
parent
7a1e62ec34
commit
c229654304
1 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
package mage.cards.h;
|
package mage.cards.h;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||||
import mage.abilities.effects.common.CreateTokenEffect;
|
import mage.abilities.effects.common.CreateTokenEffect;
|
||||||
import mage.abilities.effects.common.continuous.BoostControlledEffect;
|
import mage.abilities.effects.common.continuous.BoostControlledEffect;
|
||||||
|
@ -23,6 +24,8 @@ public final class HeroesOfTheRevel extends CardImpl {
|
||||||
|
|
||||||
this.subtype.add(SubType.SATYR);
|
this.subtype.add(SubType.SATYR);
|
||||||
this.subtype.add(SubType.SOLDIER);
|
this.subtype.add(SubType.SOLDIER);
|
||||||
|
this.power = new MageInt(4);
|
||||||
|
this.toughness = new MageInt(4);
|
||||||
|
|
||||||
// When Heroes of the Revel enters the battlefield, create a 1/1 red Satyr creature token with "This creature can't block."
|
// When Heroes of the Revel enters the battlefield, create a 1/1 red Satyr creature token with "This creature can't block."
|
||||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new SatyrCantBlockToken())));
|
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new SatyrCantBlockToken())));
|
||||||
|
|
Loading…
Reference in a new issue