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:
parent
656653f38b
commit
8e94f13b2c
1 changed files with 3 additions and 1 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Reference in a new issue