mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
fix Victim of Night
This commit is contained in:
parent
82dcb53cb9
commit
0a376a37cd
1 changed files with 6 additions and 6 deletions
|
@ -38,18 +38,18 @@ import mage.target.common.TargetCreaturePermanent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author North
|
* @author North, Loki
|
||||||
*/
|
*/
|
||||||
public class VictimOfNight extends CardImpl<VictimOfNight> {
|
public class VictimOfNight extends CardImpl<VictimOfNight> {
|
||||||
|
|
||||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("non-Vampire, non-Werewolf, non-Zombie creature");
|
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("non-Vampire, non-Werewolf, non-Zombie creature");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.getNotCardType().add("Vampire");
|
filter.getSubtype().add("Vampire");
|
||||||
filter.getNotCardType().add("Werewolf");
|
filter.getSubtype().add("Werewolf");
|
||||||
filter.getNotCardType().add("Zombie");
|
filter.getSubtype().add("Zombie");
|
||||||
filter.setNotCardType(true);
|
filter.setNotSubtype(true);
|
||||||
filter.setNotScopeCardType(ComparisonScope.All);
|
filter.setScopeSubtype(ComparisonScope.Any);
|
||||||
}
|
}
|
||||||
|
|
||||||
public VictimOfNight(UUID ownerId) {
|
public VictimOfNight(UUID ownerId) {
|
||||||
|
|
Loading…
Reference in a new issue