use playername instead of 'you'

master
beholder 2011-08-24 17:30:05 +02:00
parent 962ebe3179
commit d13179b7de
40 changed files with 57 additions and 46 deletions

View File

@ -22,7 +22,7 @@ public class Absorb {
MagicTargetChoice.NEG_TARGET_SPELL,
new Object[]{cardOnStack,player},
this,
"Counter target spell$. You gain 3 life.");
"Counter target spell$. " + player + " gains 3 life.");
}
@Override
public void executeEvent(

View File

@ -19,7 +19,7 @@ public class Archon_of_Redemption {
player,
new Object[]{player,permanent},
this,
player + " gain life equal to " + permanent + "'s power.");
player + " gains life equal to " + permanent + "'s power.");
}
@Override
public void executeEvent(
@ -46,7 +46,7 @@ public class Archon_of_Redemption {
player,
new Object[]{player,otherPermanent},
this,
player + " gain life equal to the power of "+otherPermanent+'.'):
player + " gains life equal to the power of "+otherPermanent+'.'):
null;
}
@Override

View File

@ -30,7 +30,7 @@ public class Armadillo_Cloak {
player,
new Object[]{player,amount},
this,
"You gain "+amount+" life.");
player + "gains " + amount + " life.");
}
return null;
}

View File

@ -50,7 +50,7 @@ public class Balefire_Liege {
player,
new Object[]{player},
this,
player + " gain 3 life."):
player + " gains 3 life."):
null;
}
@Override

View File

@ -21,7 +21,7 @@ public class Bitterblossom {
player,
new Object[]{player},
this,
"You lose 1 life and put a 1/1 black Faerie Rogue creature token with flying onto the battlefield.");
player + " loses 1 life and puts a 1/1 black Faerie Rogue creature token with flying onto the battlefield.");
}
return null;
}

View File

@ -21,7 +21,7 @@ public class Bottle_Gnomes {
player,
new Object[]{player},
this,
player + " gain 3 life.");
player + " gains 3 life.");
}
@Override
public void executeEvent(

View File

@ -25,7 +25,8 @@ public class Chastise {
new MagicDestroyTargetPicker(false),
new Object[]{cardOnStack,player},
this,
"Destroy target attacking creature$. You gain life equal to its power.");
"Destroy target attacking creature$. " + player +
" gains life equal to its power.");
}
@Override
public void executeEvent(

View File

@ -29,7 +29,8 @@ public class Death_Grasp {
new MagicDamageTargetPicker(amount),
new Object[]{cardOnStack,player,amount},
this,
card + " deals "+amount+" damage to target creature or player$. You gain "+amount+" life.");
card + " deals " + amount + " damage to target creature or player$. " +
player + " gains "+amount+" life.");
}
@Override
public void executeEvent(

View File

@ -24,7 +24,8 @@ public class Doomgape {
player,
new Object[]{permanent,player},
this,
"Sacrifice a creature. You gain life equal to that creature's toughness."):
"Sacrifice a creature. " + player +
" gains life equal to that creature's toughness."):
null;
}
@Override

View File

@ -28,7 +28,8 @@ public class Douse_in_Gloom {
new MagicDamageTargetPicker(2),
new Object[]{cardOnStack,player},
this,
card + " deals 2 damage to target creature$ and you gain 2 life.");
card + " deals 2 damage to target creature$ and " +
player + " gains 2 life.");
}
@Override
public void executeEvent(

View File

@ -18,7 +18,7 @@ public class Foul_Imp {
player,
new Object[]{player},
this,
player + " lose 2 life.");
player + " loses 2 life.");
}
@Override
public void executeEvent(

View File

@ -50,7 +50,7 @@ public class Ghost_Council_of_Orzhova {
MagicTargetChoice.TARGET_OPPONENT,
new Object[]{player},
this,
"Target opponent$ loses 1 life and you gain 1 life.");
"Target opponent$ loses 1 life and " + player + " gains 1 life.");
}
@Override
public void executeEvent(

View File

@ -20,7 +20,7 @@ public class Hissing_Miasma {
controller,
new Object[]{controller},
this,
controller + " lose 1 life."):
controller + " loses 1 life."):
null;
}

View File

@ -18,7 +18,7 @@ public class Kitchen_Finks {
player,
new Object[]{player},
this,
player + " gain 2 life.");
player + " gains 2 life.");
}
@Override
public void executeEvent(

View File

@ -21,7 +21,7 @@ public class Kor_Firewalker {
player,
new Object[]{player},
this,
"You gain 1 life.");
player + " gains 1 life.");
}
return null;
}

View File

@ -24,7 +24,7 @@ public class Lightkeeper_of_Emeria {
new Object[]{cardOnStack,player},
this,
"$Play " + card + ". When " + card + " enters the battlefield, " +
"you gain 2 life for each time it was kicked$.");
player + " gains 2 life for each time it was kicked$.");
}
@Override
public void executeEvent(
@ -54,7 +54,7 @@ public class Lightkeeper_of_Emeria {
game.doAction(new MagicChangeLifeAction((MagicPlayer)data[0],(Integer)data[1]));
}
},
"You gain "+life+" life."
player + " gains " + life + " life."
);
game.doAction(new MagicPutItemOnStackAction(new MagicTriggerOnStack(permanent,triggerEvent)));
}

View File

@ -28,7 +28,8 @@ public class Lightning_Helix {
new MagicDamageTargetPicker(3),
new Object[]{cardOnStack,player},
this,
card + " deals 3 damage to target creature or player$ and you gain 3 life.");
card + " deals 3 damage to target creature or player$ and " +
player + " gains 3 life.");
}
@Override
public void executeEvent(

View File

@ -18,7 +18,7 @@ public class Lone_Missionary {
player,
new Object[]{player},
this,
"You gain 4 life.");
player + " gains 4 life.");
}
@Override
public void executeEvent(

View File

@ -60,7 +60,7 @@ public class Loxodon_Hierarch {
player,
new Object[]{player},
this,
player + " gain 4 life.");
player + " gains 4 life.");
}
@Override
public void executeEvent(

View File

@ -19,7 +19,7 @@ public class Moroii {
player,
new Object[]{player},
this,
"You lose 1 life.") :
player + " loses 1 life.") :
null;
}

View File

@ -21,7 +21,7 @@ public class Mycoid_Shepherd {
permanent.getController(),
new Object[]{permanent.getController()},
this,
permanent.getController() + " gain 5 life."):
permanent.getController() + " gains 5 life."):
null;
}
@Override
@ -48,7 +48,7 @@ public class Mycoid_Shepherd {
player,
new Object[]{player},
this,
player + " gain 5 life."):
player + " gains 5 life."):
null;
}
@Override

View File

@ -23,7 +23,8 @@ public class Offering_to_Asha {
MagicTargetChoice.NEG_TARGET_SPELL,
new Object[]{cardOnStack,player},
this,
"Counter target spell$ unless its controller pays {4}. You gain 4 life.");
"Counter target spell$ unless its controller pays {4}. " +
player + " gains 4 life.");
}
@Override
public void executeEvent(

View File

@ -23,7 +23,7 @@ public class Oracle_of_Nectars {
player,
new Object[]{player,amount},
this,
"You gain "+amount+" life.");
player + " gains " + amount + " life.");
}
@Override
public void executeEvent(

View File

@ -22,7 +22,7 @@ public class Pelakka_Wurm {
player,
new Object[]{player},
this,
"You gain 7 life.");
player + " gains 7 life.");
}
@Override
public void executeEvent(

View File

@ -22,7 +22,7 @@ public class Perimeter_Captain {
player,
new Object[]{player},
this,
"You gain 2 life.") :
player + " gains 2 life.") :
null;
}

View File

@ -20,7 +20,7 @@ public class Phyrexian_Arena {
player,
new Object[]{player},
this,
player + " draw a card and lose 1 life."):
player + " draws a card and loses 1 life."):
null;
}
@Override

View File

@ -19,7 +19,7 @@ public class Phyrexian_Rager {
player,
new Object[]{player},
this,
player + " draw a card and lose 1 life.");
player + " draws a card and loses 1 life.");
}
@Override
public void executeEvent(

View File

@ -28,7 +28,7 @@ public class Pillory_of_the_Sleepless {
player,
new Object[]{player},
this,
"You lose 1 life.") :
enchanted.getController() + " loses 1 life.") :
null;
}
@Override

View File

@ -26,7 +26,7 @@ public class Ravenous_Baloth {
player,
new Object[]{player},
this,
"You gain 4 life.");
player + " gains 4 life.");
}
@Override
public void executeEvent(

View File

@ -26,7 +26,8 @@ public class Reanimate {
MagicGraveyardTargetPicker.getInstance(),
new Object[]{cardOnStack,player},
this,
"Put target creature card$ from a graveyard onto the battlefield under your control. You lose life equal to its converted mana cost.");
"Put target creature card$ from a graveyard onto the battlefield under your control. " +
player + " loses life equal to its converted mana cost.");
}
@Override

View File

@ -22,7 +22,7 @@ public class Sangromancer {
player,
new Object[]{player},
this,
"You gain 3 life.");
player + " gains 3 life.");
}
return null;
}
@ -47,7 +47,7 @@ public class Sangromancer {
player,
new Object[]{player},
this,
"You gain 3 life.");
player + " gains 3 life.");
}
return null;
}

View File

@ -25,7 +25,8 @@ public class Solemn_Offering {
new MagicDestroyTargetPicker(false),
new Object[]{cardOnStack,player},
this,
"Destroy target artifact or enchantment$. You gain 4 life.");
"Destroy target artifact or enchantment$. " +
player + " gains 4 life.");
}
@Override
public void executeEvent(

View File

@ -21,7 +21,8 @@ public class Soul_Feast {
MagicTargetChoice.NEG_TARGET_PLAYER,
new Object[]{cardOnStack,player},
this,
"Target player$ loses 4 life and you gain 4 life.");
"Target player$ loses 4 life and " +
player + " gains 4 life.");
}
@Override
public void executeEvent(

View File

@ -32,7 +32,7 @@ public class Soul_Link {
player,
new Object[]{player,amount},
this,
"You gain "+amount+" life.") :
player + " gains " + amount + " life.") :
null;
}
@Override
@ -57,7 +57,7 @@ public class Soul_Link {
permanent,
player,
new Object[]{player,amount},this,
"You gain "+amount+" life.") :
player + " gains " + amount + " life.") :
null;
}
@Override

View File

@ -24,7 +24,8 @@ public class Souls_of_the_Faultless {
player,
new Object[]{player,opponent,amount},
this,
"You gain "+amount+" life and attacking player loses "+amount+" life.") :
player + " gains " + amount + " life and attacking player loses " +
amount + " life.") :
null;
}

View File

@ -27,7 +27,8 @@ public class Sword_of_Light_and_Shadow {
MagicGraveyardTargetPicker.getInstance(),
new Object[]{player},
this,
"You gain 3 life and you may$ return target creature card$ from your graveyard to your hand.");
player + " gains 3 life and you may$ return target creature card$ " +
"from your graveyard to your hand.");
}
return null;
}

View File

@ -22,8 +22,8 @@ public class Sword_of_War_and_Peace {
new Object[]{permanent,player,targetPlayer},
this,
permanent + " deals damage to " + targetPlayer +
" equal to the number of cards in his or her hand and "+
"you gain 1 life for each card in your hand.");
" equal to the number of cards in his or her hand and " +
player + " gains 1 life for each card in your hand.");
}
return null;
}

View File

@ -19,7 +19,7 @@ public class Sylvok_Lifestaff {
player,
new Object[]{player},
this,
"You gain 3 life.");
player + " gains 3 life.");
}
return null;
}

View File

@ -30,7 +30,7 @@ public class Treva__the_Renewer {
new Object[]{player},
this,
"You may$ pay {2}{W}$. If you do, choose a color$. " +
"You gain 1 life for each permanent of that color."):
player + " gains 1 life for each permanent of that color."):
null;
}
@Override

View File

@ -23,7 +23,7 @@ public class Wall_of_Reverence {
MagicPowerTargetPicker.getInstance(),
new Object[]{player},
this,
"You gain life equal to the power of target creature$ you control.");
player + " gains life equal to the power of target creature$ he or she controls.");
}
return null;
}