From c229654304d79e1c9f35781603ce98b603d145e2 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Mon, 13 Jan 2020 14:30:33 +0400 Subject: [PATCH] fixed Heroes of the Revel (wrong PT); --- Mage.Sets/src/mage/cards/h/HeroesOfTheRevel.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Mage.Sets/src/mage/cards/h/HeroesOfTheRevel.java b/Mage.Sets/src/mage/cards/h/HeroesOfTheRevel.java index 52271b35e0..757204a13e 100644 --- a/Mage.Sets/src/mage/cards/h/HeroesOfTheRevel.java +++ b/Mage.Sets/src/mage/cards/h/HeroesOfTheRevel.java @@ -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())));