- Fixed static text on Clan Defiance.

This commit is contained in:
jeffwadsworth 2013-02-04 14:58:17 -06:00
parent c48841b055
commit 8d210edaac

View file

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