remove Cat subtype from Rakshasa cards and add temporary verify skip

This commit is contained in:
theelk801 2023-11-09 11:43:11 -05:00
parent 9eeaf9cae1
commit 74988a1c23
6 changed files with 2 additions and 5 deletions

View file

@ -22,7 +22,6 @@ public final class RakshasaDeathdealer extends CardImpl {
public RakshasaDeathdealer(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{B}{G}");
this.subtype.add(SubType.CAT);
this.subtype.add(SubType.DEMON);
this.power = new MageInt(2);

View file

@ -35,7 +35,6 @@ public final class RakshasaDebaser extends CardImpl {
public RakshasaDebaser(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
this.subtype.add(SubType.CAT);
this.subtype.add(SubType.DEMON);
this.power = new MageInt(6);
this.toughness = new MageInt(6);

View file

@ -20,7 +20,6 @@ public final class RakshasaGravecaller extends CardImpl {
public RakshasaGravecaller(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}");
this.subtype.add(SubType.CAT);
this.subtype.add(SubType.DEMON);
this.power = new MageInt(3);
this.toughness = new MageInt(6);

View file

@ -25,7 +25,6 @@ public final class RakshasaVizier extends CardImpl {
public RakshasaVizier(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}{G}{U}");
this.subtype.add(SubType.CAT);
this.subtype.add(SubType.DEMON);
this.power = new MageInt(4);
this.toughness = new MageInt(4);

View file

@ -28,7 +28,7 @@ public final class SoulhunterRakshasa extends CardImpl {
public SoulhunterRakshasa(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{B}");
this.subtype.add(SubType.CAT, SubType.DEMON);
this.subtype.add(SubType.DEMON);
this.power = new MageInt(5);
this.toughness = new MageInt(5);

View file

@ -138,6 +138,7 @@ public class VerifyCardDataTest {
skipListAddName(SKIP_LIST_SUBTYPE, "UGL", "Miss Demeanor"); // uses multiple types as a joke card: Lady, of, Proper, Etiquette
skipListAddName(SKIP_LIST_SUBTYPE, "UGL", "Elvish Impersonators"); // subtype is "Elves" pun
skipListAddName(SKIP_LIST_SUBTYPE, "UND", "Elvish Impersonators");
subtypesToIgnore.add("Cat"); // temporary
// number
// skipListAddName(SKIP_LIST_NUMBER, set, cardName);