Changes for tooltip text an game log messages.

This commit is contained in:
LevelX2 2014-06-24 11:43:03 +02:00
parent 31e15f2364
commit bcf09b3cd0
2 changed files with 4 additions and 3 deletions

View file

@ -79,7 +79,7 @@ public class WallOfReverence extends CardImpl {
class WallOfReverenceTriggeredEffect extends OneShotEffect {
WallOfReverenceTriggeredEffect() {
super(Outcome.GainLife);
staticText = "you may gain life equal to the power of target creature you control";
staticText = "gain life equal to the power of target creature you control";
}
WallOfReverenceTriggeredEffect(WallOfReverenceTriggeredEffect effect) {

View file

@ -129,8 +129,9 @@ class AthreosGodOfPassageReturnEffect extends OneShotEffect {
Player opponent = game.getPlayer(source.getFirstTarget());
boolean paid = false;
if (opponent != null) {
if (opponent.chooseUse(outcome, new StringBuilder("Pay 3 live to prevent that ").append(creature.getName()).append(" returns to ").append(controller.getName()).append("'s hand?").toString(), game)) {
Cost cost = new PayLifeCost(3);
Cost cost = new PayLifeCost(3);
if (cost.canPay(source.getSourceId(), opponent.getId(), game)
&& opponent.chooseUse(outcome, new StringBuilder("Pay 3 live to prevent that ").append(creature.getLogName()).append(" returns to ").append(controller.getName()).append("'s hand?").toString(), game)) {
if (cost.pay(source, game, source.getSourceId(), opponent.getId(), false)) {
paid = true;
}