This commit is contained in:
igoudt 2018-01-07 22:56:19 +01:00
commit ec675bfb53

View file

@ -47,11 +47,11 @@ public class RagingRegisaur extends CardImpl {
public RagingRegisaur(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}{G}");
this.subtype.add(SubType.DINOSAUR);
this.power = new MageInt(2);
this.toughness = new MageInt(2);
this.power = new MageInt(4);
this.toughness = new MageInt(4);
// Whenever Raging Regisaur attacks, it deals 1 damage to target creature or player.
Ability ability = new AttacksTriggeredAbility(new DamageTargetEffect(1), false, "it deals 1 damage to target creature or player");
Ability ability = new AttacksTriggeredAbility(new DamageTargetEffect(1, "it"), false);
ability.addTarget(new TargetCreatureOrPlayer());
this.addAbility(ability);
}