mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
Merge branch 'master' of https://github.com/magefree/mage
This commit is contained in:
commit
ec675bfb53
1 changed files with 3 additions and 3 deletions
|
@ -47,11 +47,11 @@ public class RagingRegisaur extends CardImpl {
|
||||||
public RagingRegisaur(UUID ownerId, CardSetInfo setInfo) {
|
public RagingRegisaur(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}{G}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}{G}");
|
||||||
this.subtype.add(SubType.DINOSAUR);
|
this.subtype.add(SubType.DINOSAUR);
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(4);
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(4);
|
||||||
|
|
||||||
// Whenever Raging Regisaur attacks, it deals 1 damage to target creature or player.
|
// 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());
|
ability.addTarget(new TargetCreatureOrPlayer());
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue