* Raging Regisaur - Fixed wrong stats and text (see #4358)

This commit is contained in:
Oleg Agafonov 2018-01-08 01:51:49 +04:00
parent 6de177f8ac
commit cd437ce8b8

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);
}