fixed Heroes of the Revel (wrong PT);

This commit is contained in:
Oleg Agafonov 2020-01-13 14:30:33 +04:00
parent 7a1e62ec34
commit c229654304

View file

@ -1,5 +1,6 @@
package mage.cards.h;
import mage.MageInt;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.common.CreateTokenEffect;
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.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."
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new SatyrCantBlockToken())));