mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
renamed Remorseful Cleric
This commit is contained in:
parent
6a4dfe99ca
commit
0d9bb04fcb
2 changed files with 7 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
package mage.cards.c;
|
||||
package mage.cards.r;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
|
@ -18,9 +18,9 @@ import mage.target.TargetPlayer;
|
|||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ContriteCleric extends CardImpl {
|
||||
public final class RemorsefulCleric extends CardImpl {
|
||||
|
||||
public ContriteCleric(UUID ownerId, CardSetInfo setInfo) {
|
||||
public RemorsefulCleric(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||
|
||||
this.subtype.add(SubType.SPIRIT);
|
||||
|
@ -37,12 +37,12 @@ public final class ContriteCleric extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public ContriteCleric(final ContriteCleric card) {
|
||||
public RemorsefulCleric(final RemorsefulCleric card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ContriteCleric copy() {
|
||||
return new ContriteCleric(this);
|
||||
public RemorsefulCleric copy() {
|
||||
return new RemorsefulCleric(this);
|
||||
}
|
||||
}
|
|
@ -61,7 +61,7 @@ public final class CoreSet2019 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Cleansing Nova", 9, Rarity.RARE, mage.cards.c.CleansingNova.class));
|
||||
cards.add(new SetCardInfo("Colossal Dreadmaw", 172, Rarity.COMMON, mage.cards.c.ColossalDreadmaw.class));
|
||||
cards.add(new SetCardInfo("Colossal Majesty", 173, Rarity.UNCOMMON, mage.cards.c.ColossalMajesty.class));
|
||||
cards.add(new SetCardInfo("Contrite Cleric", 33, Rarity.RARE, mage.cards.c.ContriteCleric.class));
|
||||
cards.add(new SetCardInfo("Remorseful Cleric", 33, Rarity.RARE, mage.cards.r.RemorsefulCleric.class));
|
||||
cards.add(new SetCardInfo("Court Cleric", 283, Rarity.UNCOMMON, mage.cards.c.CourtCleric.class));
|
||||
cards.add(new SetCardInfo("Crucible of Worlds", 229, Rarity.MYTHIC, mage.cards.c.CrucibleOfWorlds.class));
|
||||
cards.add(new SetCardInfo("Dark-Dweller Oracle", 134, Rarity.RARE, mage.cards.d.DarkDwellerOracle.class));
|
||||
|
|
Loading…
Reference in a new issue