mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Changes for tooltip text an game log messages.
This commit is contained in:
parent
31e15f2364
commit
bcf09b3cd0
2 changed files with 4 additions and 3 deletions
|
@ -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) {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue