mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Some minor fixes.
This commit is contained in:
parent
47a442ba28
commit
c560626883
7 changed files with 7 additions and 7 deletions
|
@ -57,7 +57,7 @@ public class CurseOfDeathsHold extends CardImpl<CurseOfDeathsHold> {
|
|||
this.color.setBlack(true);
|
||||
|
||||
// Enchant player
|
||||
TargetPlayer auraTarget = new TargetPlayer();
|
||||
TargetPlayer auraTarget = new TargetPlayer(true);
|
||||
this.getSpellAbility().addTarget(auraTarget);
|
||||
this.getSpellAbility().addEffect(new AttachEffect(Outcome.UnboostCreature));
|
||||
this.addAbility(new EnchantAbility(auraTarget.getTargetName()));
|
||||
|
|
|
@ -63,7 +63,7 @@ public class CurseOfOblivion extends CardImpl<CurseOfOblivion> {
|
|||
this.color.setBlack(true);
|
||||
|
||||
// Enchant player
|
||||
TargetPlayer target = new TargetPlayer();
|
||||
TargetPlayer target = new TargetPlayer(true);
|
||||
this.getSpellAbility().addTarget(target);
|
||||
this.getSpellAbility().addEffect(new AttachEffect(Outcome.AddAbility));
|
||||
Ability ability = new EnchantAbility(target.getTargetName());
|
||||
|
|
|
@ -64,7 +64,7 @@ public class CurseOfStalkedPrey extends CardImpl<CurseOfStalkedPrey> {
|
|||
this.color.setRed(true);
|
||||
|
||||
// Enchant player
|
||||
TargetPlayer target = new TargetPlayer();
|
||||
TargetPlayer target = new TargetPlayer(true);
|
||||
this.getSpellAbility().addTarget(target);
|
||||
this.getSpellAbility().addEffect(new AttachEffect(Outcome.AddAbility));
|
||||
Ability ability = new EnchantAbility(target.getTargetName());
|
||||
|
|
|
@ -61,7 +61,7 @@ public class CurseOfTheBloodyTome extends CardImpl<CurseOfTheBloodyTome> {
|
|||
this.color.setBlue(true);
|
||||
|
||||
// Enchant player
|
||||
TargetPlayer target = new TargetPlayer();
|
||||
TargetPlayer target = new TargetPlayer(true);
|
||||
this.getSpellAbility().addTarget(target);
|
||||
this.getSpellAbility().addEffect(new AttachEffect(Outcome.AddAbility));
|
||||
Ability ability = new EnchantAbility(target.getTargetName());
|
||||
|
|
|
@ -58,7 +58,7 @@ public class CurseOfTheNightlyHunt extends CardImpl<CurseOfTheNightlyHunt> {
|
|||
this.color.setRed(true);
|
||||
|
||||
// Enchant player
|
||||
TargetPlayer auraTarget = new TargetPlayer();
|
||||
TargetPlayer auraTarget = new TargetPlayer(true);
|
||||
this.getSpellAbility().addTarget(auraTarget);
|
||||
this.getSpellAbility().addEffect(new AttachEffect(Outcome.Detriment));
|
||||
this.addAbility(new EnchantAbility(auraTarget.getTargetName()));
|
||||
|
|
|
@ -62,7 +62,7 @@ public class CurseOfThePiercedHeart extends CardImpl<CurseOfThePiercedHeart> {
|
|||
this.color.setRed(true);
|
||||
|
||||
// Enchant player
|
||||
TargetPlayer target = new TargetPlayer();
|
||||
TargetPlayer target = new TargetPlayer(true);
|
||||
this.getSpellAbility().addTarget(target);
|
||||
this.getSpellAbility().addEffect(new AttachEffect(Outcome.AddAbility));
|
||||
Ability ability = new EnchantAbility(target.getTargetName());
|
||||
|
|
|
@ -50,7 +50,7 @@ public class DreamTwist extends CardImpl<DreamTwist> {
|
|||
this.color.setBlue(true);
|
||||
|
||||
// Target player puts the top three cards of his or her library into his or her graveyard.
|
||||
this.getSpellAbility().addTarget(new TargetPlayer());
|
||||
this.getSpellAbility().addTarget(new TargetPlayer(true));
|
||||
this.getSpellAbility().addEffect(new PutLibraryIntoGraveTargetEffect(3));
|
||||
|
||||
// Flashback {1}{U}
|
||||
|
|
Loading…
Reference in a new issue