mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
remove Cat subtype from Rakshasa cards and add temporary verify skip
This commit is contained in:
parent
9eeaf9cae1
commit
74988a1c23
6 changed files with 2 additions and 5 deletions
|
|
@ -22,7 +22,6 @@ public final class RakshasaDeathdealer extends CardImpl {
|
||||||
|
|
||||||
public RakshasaDeathdealer(UUID ownerId, CardSetInfo setInfo) {
|
public RakshasaDeathdealer(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{B}{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{B}{G}");
|
||||||
this.subtype.add(SubType.CAT);
|
|
||||||
this.subtype.add(SubType.DEMON);
|
this.subtype.add(SubType.DEMON);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,6 @@ public final class RakshasaDebaser extends CardImpl {
|
||||||
public RakshasaDebaser(UUID ownerId, CardSetInfo setInfo) {
|
public RakshasaDebaser(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
||||||
|
|
||||||
this.subtype.add(SubType.CAT);
|
|
||||||
this.subtype.add(SubType.DEMON);
|
this.subtype.add(SubType.DEMON);
|
||||||
this.power = new MageInt(6);
|
this.power = new MageInt(6);
|
||||||
this.toughness = new MageInt(6);
|
this.toughness = new MageInt(6);
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,6 @@ public final class RakshasaGravecaller extends CardImpl {
|
||||||
|
|
||||||
public RakshasaGravecaller(UUID ownerId, CardSetInfo setInfo) {
|
public RakshasaGravecaller(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}");
|
||||||
this.subtype.add(SubType.CAT);
|
|
||||||
this.subtype.add(SubType.DEMON);
|
this.subtype.add(SubType.DEMON);
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
this.toughness = new MageInt(6);
|
this.toughness = new MageInt(6);
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,6 @@ public final class RakshasaVizier extends CardImpl {
|
||||||
public RakshasaVizier(UUID ownerId, CardSetInfo setInfo) {
|
public RakshasaVizier(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}{G}{U}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}{G}{U}");
|
||||||
|
|
||||||
this.subtype.add(SubType.CAT);
|
|
||||||
this.subtype.add(SubType.DEMON);
|
this.subtype.add(SubType.DEMON);
|
||||||
this.power = new MageInt(4);
|
this.power = new MageInt(4);
|
||||||
this.toughness = new MageInt(4);
|
this.toughness = new MageInt(4);
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ public final class SoulhunterRakshasa extends CardImpl {
|
||||||
|
|
||||||
public SoulhunterRakshasa(UUID ownerId, CardSetInfo setInfo) {
|
public SoulhunterRakshasa(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{B}");
|
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.power = new MageInt(5);
|
||||||
this.toughness = new MageInt(5);
|
this.toughness = new MageInt(5);
|
||||||
|
|
|
||||||
|
|
@ -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", "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, "UGL", "Elvish Impersonators"); // subtype is "Elves" pun
|
||||||
skipListAddName(SKIP_LIST_SUBTYPE, "UND", "Elvish Impersonators");
|
skipListAddName(SKIP_LIST_SUBTYPE, "UND", "Elvish Impersonators");
|
||||||
|
subtypesToIgnore.add("Cat"); // temporary
|
||||||
|
|
||||||
// number
|
// number
|
||||||
// skipListAddName(SKIP_LIST_NUMBER, set, cardName);
|
// skipListAddName(SKIP_LIST_NUMBER, set, cardName);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue