some oracle updates

This commit is contained in:
Evan Kranzler 2020-01-10 12:33:19 -05:00
parent d7e123bbe6
commit 48822c94b8
8 changed files with 13 additions and 2 deletions

View file

@ -32,6 +32,7 @@ public final class AscendantEvincar extends CardImpl {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}{B}");
addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.VAMPIRE);
this.subtype.add(SubType.NOBLE);
this.power = new MageInt(3);
this.toughness = new MageInt(3);

View file

@ -37,6 +37,7 @@ public final class CrovaxAscendantHero extends CardImpl {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{W}{W}");
addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.HUMAN);
this.subtype.add(SubType.NOBLE);
this.power = new MageInt(4);
this.toughness = new MageInt(4);

View file

@ -31,6 +31,7 @@ public final class CrovaxTheCursed extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}{B}");
addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.VAMPIRE);
this.subtype.add(SubType.NOBLE);
this.power = new MageInt(0);
this.toughness = new MageInt(0);

View file

@ -39,6 +39,7 @@ public final class EarlOfSquirrel extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{G}{G}");
this.subtype.add(SubType.SQUIRREL);
this.subtype.add(SubType.NOBLE);
this.subtype.add(SubType.ADVISOR);
this.power = new MageInt(4);
this.toughness = new MageInt(4);

View file

@ -24,7 +24,7 @@ public final class LadyCaleria extends CardImpl {
public LadyCaleria(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{G}{G}{W}{W}");
addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.HUMAN);
this.subtype.add(SubType.ELF);
this.subtype.add(SubType.ARCHER);
this.power = new MageInt(3);
this.toughness = new MageInt(6);

View file

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

View file

@ -78,7 +78,7 @@ class TeferisProtectionEffect extends OneShotEffect {
*/
public TeferisProtectionEffect() {
super(Outcome.Protect);
staticText = ", and you have protection from everything";
staticText = ", and you gain protection from everything";
}
public TeferisProtectionEffect(final TeferisProtectionEffect effect) {

View file

@ -115,6 +115,12 @@ public class VerifyCardDataTest {
// subtype
skipListCreate(SKIP_LIST_SUBTYPE);
skipListAddName(SKIP_LIST_SUBTYPE, "UGL", "Miss Demeanor");
// the following are temporary
subtypesToIgnore.add("Noble");
skipListAddName(SKIP_LIST_SUBTYPE, "AER", "Ridgescale Tusker");
skipListAddName(SKIP_LIST_SUBTYPE, "ME3", "Lady Caleria");
skipListAddName(SKIP_LIST_SUBTYPE, "LEG", "Lady Caleria");
// number
skipListCreate(SKIP_LIST_NUMBER);