mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Fixed rule text problem of Skirk Commando.
This commit is contained in:
parent
87078057e0
commit
8c7dc7b2da
1 changed files with 5 additions and 1 deletions
|
@ -79,7 +79,6 @@ class SkirkCommandoTriggeredAbility extends DealsCombatDamageToAPlayerTriggeredA
|
||||||
|
|
||||||
public SkirkCommandoTriggeredAbility() {
|
public SkirkCommandoTriggeredAbility() {
|
||||||
super(new DamageTargetEffect(2), true, false);
|
super(new DamageTargetEffect(2), true, false);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public SkirkCommandoTriggeredAbility(SkirkCommandoTriggeredAbility ability) {
|
public SkirkCommandoTriggeredAbility(SkirkCommandoTriggeredAbility ability) {
|
||||||
|
@ -100,4 +99,9 @@ class SkirkCommandoTriggeredAbility extends DealsCombatDamageToAPlayerTriggeredA
|
||||||
public SkirkCommandoTriggeredAbility copy() {
|
public SkirkCommandoTriggeredAbility copy() {
|
||||||
return new SkirkCommandoTriggeredAbility(this);
|
return new SkirkCommandoTriggeredAbility(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getRule() {
|
||||||
|
return "Whenever {this} deals combat damage to a player, you may have it deal 2 damage to target creature that player controls.";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue