mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
- Fixed static text on Clan Defiance.
This commit is contained in:
parent
c48841b055
commit
8d210edaac
1 changed files with 9 additions and 0 deletions
|
@ -27,6 +27,8 @@
|
|||
*/
|
||||
package mage.sets.gatecrash;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
|
@ -110,4 +112,11 @@ public class ClanDefiance extends CardImpl<ClanDefiance> {
|
|||
public ClanDefiance copy() {
|
||||
return new ClanDefiance(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<String> getRules() {
|
||||
List<String> rules = new ArrayList<String>();
|
||||
rules.add("Choose one or more - Clan Defiance deals X damage to target creature with flying; Clan Defiance deals X damage to target creature without flying; and/or Clan Defiance deals X damage to target player.");
|
||||
return rules;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue