[WHO] update capitalization for class name of Wibbly-wobbly, Timey-wimey

This commit is contained in:
theelk801 2023-10-15 20:29:04 -04:00
parent de48ffdc9c
commit 3f4e9476ee
2 changed files with 6 additions and 6 deletions

View file

@ -11,9 +11,9 @@ import java.util.UUID;
/**
* @author PurpleCrowbar
*/
public final class WibblywobblyTimeywimey extends CardImpl {
public final class WibblyWobblyTimeyWimey extends CardImpl {
public WibblywobblyTimeywimey(UUID ownerId, CardSetInfo setInfo) {
public WibblyWobblyTimeyWimey(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{U}");
// Time travel. (For each suspended card you own and each permanent you control with a time counter on it, you may add or remove a time counter.)
@ -23,12 +23,12 @@ public final class WibblywobblyTimeywimey extends CardImpl {
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1).concatBy("<br>"));
}
private WibblywobblyTimeywimey(final WibblywobblyTimeywimey card) {
private WibblyWobblyTimeyWimey(final WibblyWobblyTimeyWimey card) {
super(card);
}
@Override
public WibblywobblyTimeywimey copy() {
return new WibblywobblyTimeywimey(this);
public WibblyWobblyTimeyWimey copy() {
return new WibblyWobblyTimeyWimey(this);
}
}

View file

@ -226,7 +226,7 @@ public final class DoctorWho extends ExpansionSet {
cards.add(new SetCardInfo("Waterlogged Grove", 331, Rarity.RARE, mage.cards.w.WaterloggedGrove.class));
cards.add(new SetCardInfo("Wayfarer's Bauble", 256, Rarity.COMMON, mage.cards.w.WayfarersBauble.class));
cards.add(new SetCardInfo("Wedding Ring", 213, Rarity.MYTHIC, mage.cards.w.WeddingRing.class));
cards.add(new SetCardInfo("Wibbly-wobbly, Timey-wimey", 62, Rarity.COMMON, mage.cards.w.WibblywobblyTimeywimey.class));
cards.add(new SetCardInfo("Wibbly-wobbly, Timey-wimey", 62, Rarity.COMMON, mage.cards.w.WibblyWobblyTimeyWimey.class));
cards.add(new SetCardInfo("Wound Reflection", 223, Rarity.RARE, mage.cards.w.WoundReflection.class));
cards.add(new SetCardInfo("Yasmin Khan", 7, Rarity.RARE, mage.cards.y.YasminKhan.class));
}