mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08: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 {
|
class WallOfReverenceTriggeredEffect extends OneShotEffect {
|
||||||
WallOfReverenceTriggeredEffect() {
|
WallOfReverenceTriggeredEffect() {
|
||||||
super(Outcome.GainLife);
|
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) {
|
WallOfReverenceTriggeredEffect(WallOfReverenceTriggeredEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -129,8 +129,9 @@ class AthreosGodOfPassageReturnEffect extends OneShotEffect {
|
||||||
Player opponent = game.getPlayer(source.getFirstTarget());
|
Player opponent = game.getPlayer(source.getFirstTarget());
|
||||||
boolean paid = false;
|
boolean paid = false;
|
||||||
if (opponent != null) {
|
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)) {
|
if (cost.pay(source, game, source.getSourceId(), opponent.getId(), false)) {
|
||||||
paid = true;
|
paid = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue