mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Fixed non utf-8 symbols in GalvanicBlast and MirranMettle.
This commit is contained in:
parent
da7e56aba1
commit
bb85ded209
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class MirranMettle extends CardImpl<MirranMettle> {
|
||||
|
||||
private final String effectText = "Metalcraft — That creature gets +4/+4 until end of turn instead if you control three or more artifacts.";
|
||||
private final String effectText = "Metalcraft - That creature gets +4/+4 until end of turn instead if you control three or more artifacts.";
|
||||
|
||||
public MirranMettle(UUID ownerId) {
|
||||
super(ownerId, 84, "Mirran Mettle", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{G}");
|
||||
|
|
|
@ -42,7 +42,7 @@ import mage.target.common.TargetCreatureOrPlayer;
|
|||
*/
|
||||
public class GalvanicBlast extends CardImpl<GalvanicBlast> {
|
||||
|
||||
private final String effectText = "Metalcraft — Galvanic Blast deals 4 damage to that creature or player instead if you control three or more artifacts.";
|
||||
private final String effectText = "Metalcraft - Galvanic Blast deals 4 damage to that creature or player instead if you control three or more artifacts.";
|
||||
|
||||
public GalvanicBlast(UUID ownerId) {
|
||||
super(ownerId, 91, "Galvanic Blast", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{R}");
|
||||
|
|
Loading…
Reference in a new issue