1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 01:08:59 -09:00

[CMR] fixed Frenzied Saddlebrute - missing PT;

This commit is contained in:
Oleg Agafonov 2020-11-18 09:48:34 +04:00
parent 656653f38b
commit 8e94f13b2c

View file

@ -1,5 +1,6 @@
package mage.cards.f;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.AsThoughEffectImpl;
@ -18,9 +19,10 @@ public final class FrenziedSaddlebrute extends CardImpl {
public FrenziedSaddlebrute(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{R}");
this.subtype.add(SubType.ORC);
this.subtype.add(SubType.WARRIOR);
this.power = new MageInt(5);
this.toughness = new MageInt(4);
// Haste
this.addAbility(HasteAbility.getInstance());