• R/O
  • HTTP
  • SSH
  • HTTPS

hengband: Commit

変愚蛮怒のメインリポジトリです


Commit MetaInfo

Revision67d00a2c8c236ebd9627c2fd91cf7d5badc5548a (tree)
Time2003-06-13 23:53:10
Authornothere <nothere@0568...>
Commiternothere

Log Message

カオス魔法 "虚無召来" を地上の障害物に隣接して使ってもダメージを受け
ないように変更. この変更は地上に限る.

Change Summary

Incremental Difference

--- a/src/spells3.c
+++ b/src/spells3.c
@@ -1465,6 +1465,17 @@ void call_the_(void)
14651465 if (i - 5) fire_ball(GF_NUKE, i, 175, 4);
14661466 }
14671467 }
1468+
1469+ /* Prevent destruction of quest levels and town */
1470+ else if ((p_ptr->inside_quest && is_fixed_quest_idx(p_ptr->inside_quest)) || !dun_level)
1471+ {
1472+#ifdef JP
1473+ msg_print("地面が揺れた。");
1474+#else
1475+ msg_print("The ground trembles.");
1476+#endif
1477+ }
1478+
14681479 else
14691480 {
14701481 #ifdef JP
@@ -1499,7 +1510,6 @@ void call_the_(void)
14991510 #else
15001511 take_hit(DAMAGE_NOESCAPE, 100 + randint1(150), "a suicidal Call the Void", -1);
15011512 #endif
1502-
15031513 }
15041514 }
15051515
Show on old repository browser