mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Raging Regisaur - Fixed wrong stats and text (see #4358)
This commit is contained in:
parent
6de177f8ac
commit
cd437ce8b8
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue