From d5a8c9ebb5b2cca7bbba442a96ed15cd67a31b62 Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Wed, 25 Sep 2019 21:53:14 -0700 Subject: [PATCH] Changed English message for time-caused experience loss to hopefully be more idiomatic and expressive. --- src/melee1.c | 2 +- src/spells1.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/melee1.c b/src/melee1.c index 5548bc9a7..59552c0f0 100644 --- a/src/melee1.c +++ b/src/melee1.c @@ -3023,7 +3023,7 @@ bool make_attack_normal(MONSTER_IDX m_idx) case 1: case 2: case 3: case 4: case 5: { if (p_ptr->prace == RACE_ANDROID) break; - msg_print(_("人生が逆戻りした気がする。", "You feel life has clocked back.")); + msg_print(_("人生が逆戻りした気がする。", "You feel like a chunk of the past has been ripped away.")); lose_exp(100 + (p_ptr->exp / 100) * MON_DRAIN_LIFE); break; } diff --git a/src/spells1.c b/src/spells1.c index 2f139057b..765663e62 100644 --- a/src/spells1.c +++ b/src/spells1.c @@ -4434,7 +4434,7 @@ static bool project_p(MONSTER_IDX who, concptr who_name, int r, POSITION y, POSI case 1: case 2: case 3: case 4: case 5: { if (p_ptr->prace == RACE_ANDROID) break; - msg_print(_("人生が逆戻りした気がする。", "You feel life has clocked back.")); + msg_print(_("人生が逆戻りした気がする。", "You feel like a chunk of the past has been ripped away.")); lose_exp(100 + (p_ptr->exp / 100) * MON_DRAIN_LIFE); break; } -- 2.11.0