OSDN Git Service

Merge remote-tracking branch 'remotes/hengbandosx/english-mspell-pass2' into develop
[hengbandforosx/hengbandosx.git] / src / player / player-damage.c
1 #include "player/player-damage.h"
2 #include "autopick/autopick-pref-processor.h"
3 #include "blue-magic/blue-magic-checker.h"
4 #include "cmd-io/cmd-process-screen.h"
5 #include "core/asking-player.h"
6 #include "core/disturbance.h"
7 #include "core/player-redraw-types.h"
8 #include "core/player-update-types.h"
9 #include "core/stuff-handler.h"
10 #include "core/window-redrawer.h"
11 #include "dungeon/quest.h"
12 #include "flavor/flavor-describer.h"
13 #include "flavor/object-flavor-types.h"
14 #include "floor/wild.h"
15 #include "game-option/birth-options.h"
16 #include "game-option/cheat-options.h"
17 #include "game-option/game-play-options.h"
18 #include "game-option/input-options.h"
19 #include "game-option/play-record-options.h"
20 #include "game-option/special-options.h"
21 #include "inventory/inventory-damage.h"
22 #include "inventory/inventory-slot-types.h"
23 #include "io/files-util.h"
24 #include "io/input-key-acceptor.h"
25 #include "io/report.h"
26 #include "io/write-diary.h"
27 #include "main/music-definitions-table.h"
28 #include "main/sound-definitions-table.h"
29 #include "main/sound-of-music.h"
30 #include "market/arena-info-table.h"
31 #include "mind/mind-mirror-master.h"
32 #include "monster-race/monster-race.h"
33 #include "monster-race/race-flags2.h"
34 #include "monster-race/race-flags3.h"
35 #include "monster/monster-describer.h"
36 #include "monster/monster-description-types.h"
37 #include "monster/monster-info.h"
38 #include "mutation/mutation-flag-types.h"
39 #include "object-enchant/tr-types.h"
40 #include "object-hook/hook-armor.h"
41 #include "object/item-tester-hooker.h"
42 #include "object/object-broken.h"
43 #include "object/object-flags.h"
44 #include "player-info/avatar.h"
45 #include "player/player-class.h"
46 #include "player/player-personalities-types.h"
47 #include "player/player-race-types.h"
48 #include "player/player-status-flags.h"
49 #include "player/player-status-resist.h"
50 #include "player/race-info-table.h"
51 #include "player/special-defense-types.h"
52 #include "racial/racial-android.h"
53 #include "save/save.h"
54 #include "status/base-status.h"
55 #include "status/element-resistance.h"
56 #include "system/building-type-definition.h"
57 #include "system/floor-type-definition.h"
58 #include "term/screen-processor.h"
59 #include "term/term-color-types.h"
60 #include "util/bit-flags-calculator.h"
61 #include "util/string-processor.h"
62 #include "view/display-messages.h"
63 #include "world/world.h"
64
65 /*!
66  * @brief 酸攻撃による装備のAC劣化処理 /
67  * Acid has hit the player, attempt to affect some armor.
68  * @param 酸を浴びたキャラクタへの参照ポインタ
69  * @return 装備による軽減があったならTRUEを返す
70  * @details
71  * 免疫があったらそもそもこの関数は実行されない (確実に錆びない).
72  * Note that the "base armor" of an object never changes.
73  * If any armor is damaged (or resists), the player takes less damage.
74  */
75 static bool acid_minus_ac(player_type *creature_ptr)
76 {
77     object_type *o_ptr = NULL;
78     switch (randint1(7)) {
79     case 1:
80         o_ptr = &creature_ptr->inventory_list[INVEN_MAIN_HAND];
81         break;
82     case 2:
83         o_ptr = &creature_ptr->inventory_list[INVEN_SUB_HAND];
84         break;
85     case 3:
86         o_ptr = &creature_ptr->inventory_list[INVEN_BODY];
87         break;
88     case 4:
89         o_ptr = &creature_ptr->inventory_list[INVEN_OUTER];
90         break;
91     case 5:
92         o_ptr = &creature_ptr->inventory_list[INVEN_ARMS];
93         break;
94     case 6:
95         o_ptr = &creature_ptr->inventory_list[INVEN_HEAD];
96         break;
97     case 7:
98         o_ptr = &creature_ptr->inventory_list[INVEN_FEET];
99         break;
100     }
101
102     if ((o_ptr == NULL) || (o_ptr->k_idx == 0) || !object_is_armour(creature_ptr, o_ptr))
103         return FALSE;
104
105     GAME_TEXT o_name[MAX_NLEN];
106     describe_flavor(creature_ptr, o_name, o_ptr, OD_OMIT_PREFIX | OD_NAME_ONLY);
107     BIT_FLAGS flgs[TR_FLAG_SIZE];
108     object_flags(creature_ptr, o_ptr, flgs);
109     if (o_ptr->ac + o_ptr->to_a <= 0) {
110         msg_format(_("%sは既にボロボロだ!", "Your %s is already fully corroded!"), o_name);
111         return FALSE;
112     }
113
114     if (has_flag(flgs, TR_IGNORE_ACID)) {
115         msg_format(_("しかし%sには効果がなかった!", "Your %s is unaffected!"), o_name);
116         return TRUE;
117     }
118
119     msg_format(_("%sが酸で腐食した!", "Your %s is corroded!"), o_name);
120     o_ptr->to_a--;
121     creature_ptr->update |= PU_BONUS;
122     creature_ptr->window |= PW_EQUIP | PW_PLAYER;
123     calc_android_exp(creature_ptr);
124     return TRUE;
125 }
126
127 /*!
128  * @brief 酸属性によるプレイヤー損害処理 /
129  * Hurt the player with Acid
130  * @param creature_ptr 酸を浴びたキャラクタへの参照ポインタ
131  * @param dam 基本ダメージ量
132  * @param kb_str ダメージ原因記述
133  * @param monspell 原因となったモンスター特殊攻撃ID
134  * @param aura オーラよるダメージが原因ならばTRUE
135  * @return 修正HPダメージ量
136  * @details 酸オーラは存在しないが関数ポインタのために引数だけは用意している
137  */
138 HIT_POINT acid_dam(player_type *creature_ptr, HIT_POINT dam, concptr kb_str, int monspell, bool aura)
139 {
140     int inv = (dam < 30) ? 1 : (dam < 60) ? 2 : 3;
141     bool double_resist = is_oppose_acid(creature_ptr);
142     dam = dam * calc_acid_damage_rate(creature_ptr) / 100;
143     if (dam <= 0) {
144         learn_spell(creature_ptr, monspell);
145         return 0;
146     }
147
148     if (aura || !check_multishadow(creature_ptr)) {
149         if ((!(double_resist || has_resist_acid(creature_ptr))) && one_in_(HURT_CHANCE))
150             (void)do_dec_stat(creature_ptr, A_CHR);
151
152         if (acid_minus_ac(creature_ptr))
153             dam = (dam + 1) / 2;
154     }
155
156     HIT_POINT get_damage = take_hit(creature_ptr, aura ? DAMAGE_NOESCAPE : DAMAGE_ATTACK, dam, kb_str, monspell);
157     if (!aura && !(double_resist && has_resist_acid(creature_ptr)))
158         inventory_damage(creature_ptr, set_acid_destroy, inv);
159
160     return get_damage;
161 }
162
163 /*!
164  * @brief 電撃属性によるプレイヤー損害処理 /
165  * Hurt the player with electricity
166  * @param creature_ptr 電撃を浴びたキャラクタへの参照ポインタ
167  * @param dam 基本ダメージ量
168  * @param kb_str ダメージ原因記述
169  * @param monspell 原因となったモンスター特殊攻撃ID
170  * @param aura オーラよるダメージが原因ならばTRUE
171  * @return 修正HPダメージ量
172  */
173 HIT_POINT elec_dam(player_type *creature_ptr, HIT_POINT dam, concptr kb_str, int monspell, bool aura)
174 {
175     int inv = (dam < 30) ? 1 : (dam < 60) ? 2 : 3;
176     bool double_resist = is_oppose_elec(creature_ptr);
177
178     dam = dam * calc_elec_damage_rate(creature_ptr) / 100;
179
180     if (dam <= 0) {
181         learn_spell(creature_ptr, monspell);
182         return 0;
183     }
184
185     if (aura || !check_multishadow(creature_ptr)) {
186         if ((!(double_resist || has_resist_elec(creature_ptr))) && one_in_(HURT_CHANCE))
187             (void)do_dec_stat(creature_ptr, A_DEX);
188     }
189
190     HIT_POINT get_damage = take_hit(creature_ptr, aura ? DAMAGE_NOESCAPE : DAMAGE_ATTACK, dam, kb_str, monspell);
191     if (!aura && !(double_resist && has_resist_elec(creature_ptr)))
192         inventory_damage(creature_ptr, set_elec_destroy, inv);
193
194     return get_damage;
195 }
196
197 /*!
198  * @brief 火炎属性によるプレイヤー損害処理 /
199  * Hurt the player with Fire
200  * @param creature_ptr 火炎を浴びたキャラクタへの参照ポインタ
201  * @param dam 基本ダメージ量
202  * @param kb_str ダメージ原因記述
203  * @param monspell 原因となったモンスター特殊攻撃ID
204  * @param aura オーラよるダメージが原因ならばTRUE
205  * @return 修正HPダメージ量
206  */
207 HIT_POINT fire_dam(player_type *creature_ptr, HIT_POINT dam, concptr kb_str, int monspell, bool aura)
208 {
209     int inv = (dam < 30) ? 1 : (dam < 60) ? 2 : 3;
210     bool double_resist = is_oppose_fire(creature_ptr);
211
212     /* Totally immune */
213     if (has_immune_fire(creature_ptr) || (dam <= 0)) {
214         learn_spell(creature_ptr, monspell);
215         return 0;
216     }
217
218     dam = dam * calc_fire_damage_rate(creature_ptr) / 100;
219     if (aura || !check_multishadow(creature_ptr)) {
220         if ((!(double_resist || has_resist_fire(creature_ptr))) && one_in_(HURT_CHANCE))
221             (void)do_dec_stat(creature_ptr, A_STR);
222     }
223
224     HIT_POINT get_damage = take_hit(creature_ptr, aura ? DAMAGE_NOESCAPE : DAMAGE_ATTACK, dam, kb_str, monspell);
225     if (!aura && !(double_resist && has_resist_fire(creature_ptr)))
226         inventory_damage(creature_ptr, set_fire_destroy, inv);
227
228     return get_damage;
229 }
230
231 /*!
232  * @brief 冷気属性によるプレイヤー損害処理 /
233  * Hurt the player with Cold
234  * @param creature_ptr 冷気を浴びたキャラクタへの参照ポインタ
235  * @param dam 基本ダメージ量
236  * @param kb_str ダメージ原因記述
237  * @param monspell 原因となったモンスター特殊攻撃ID
238  * @param aura オーラよるダメージが原因ならばTRUE
239  * @return 修正HPダメージ量
240  */
241 HIT_POINT cold_dam(player_type *creature_ptr, HIT_POINT dam, concptr kb_str, int monspell, bool aura)
242 {
243     int inv = (dam < 30) ? 1 : (dam < 60) ? 2 : 3;
244     bool double_resist = is_oppose_cold(creature_ptr);
245     if (has_immune_cold(creature_ptr) || (dam <= 0)) {
246         learn_spell(creature_ptr, monspell);
247         return 0;
248     }
249
250     dam = dam * calc_cold_damage_rate(creature_ptr) / 100;
251     if (aura || !check_multishadow(creature_ptr)) {
252         if ((!(double_resist || has_resist_cold(creature_ptr))) && one_in_(HURT_CHANCE))
253             (void)do_dec_stat(creature_ptr, A_STR);
254     }
255
256     HIT_POINT get_damage = take_hit(creature_ptr, aura ? DAMAGE_NOESCAPE : DAMAGE_ATTACK, dam, kb_str, monspell);
257     if (!aura && !(double_resist && has_resist_cold(creature_ptr)))
258         inventory_damage(creature_ptr, set_cold_destroy, inv);
259
260     return get_damage;
261 }
262
263 /*
264  * Decreases players hit points and sets death flag if necessary
265  *
266  * Invulnerability needs to be changed into a "shield"
267  *
268  * Hack -- this function allows the user to save (or quit)
269  * the game when he dies, since the "You die." message is shown before
270  * setting the player to "dead".
271  */
272 int take_hit(player_type *creature_ptr, int damage_type, HIT_POINT damage, concptr hit_from, int monspell)
273 {
274     int old_chp = creature_ptr->chp;
275
276     char death_message[1024];
277     char tmp[1024];
278
279     int warning = (creature_ptr->mhp * hitpoint_warn / 10);
280     if (creature_ptr->is_dead)
281         return 0;
282
283     if (creature_ptr->sutemi)
284         damage *= 2;
285     if (creature_ptr->special_defense & KATA_IAI)
286         damage += (damage + 4) / 5;
287
288     if (easy_band)
289         damage = (damage + 1) / 2;
290
291     if (damage_type != DAMAGE_USELIFE) {
292         disturb(creature_ptr, TRUE, TRUE);
293         if (auto_more) {
294             creature_ptr->now_damaged = TRUE;
295         }
296     }
297
298     if (monspell >= 0)
299         learn_spell(creature_ptr, monspell);
300
301     if ((damage_type != DAMAGE_USELIFE) && (damage_type != DAMAGE_LOSELIFE)) {
302         if (is_invuln(creature_ptr) && (damage < 9000)) {
303             if (damage_type == DAMAGE_FORCE) {
304                 msg_print(_("バリアが切り裂かれた!", "The attack cuts your shield of invulnerability open!"));
305             } else if (one_in_(PENETRATE_INVULNERABILITY)) {
306                 msg_print(_("無敵のバリアを破って攻撃された!", "The attack penetrates your shield of invulnerability!"));
307             } else {
308                 return 0;
309             }
310         }
311
312         if (check_multishadow(creature_ptr)) {
313             if (damage_type == DAMAGE_FORCE) {
314                 msg_print(_("幻影もろとも体が切り裂かれた!", "The attack hits Shadow together with you!"));
315             } else if (damage_type == DAMAGE_ATTACK) {
316                 msg_print(_("攻撃は幻影に命中し、あなたには届かなかった。", "The attack hits Shadow, but you are unharmed!"));
317                 return 0;
318             }
319         }
320
321         if (creature_ptr->wraith_form) {
322             if (damage_type == DAMAGE_FORCE) {
323                 msg_print(_("半物質の体が切り裂かれた!", "The attack cuts through your ethereal body!"));
324             } else {
325                 damage /= 2;
326                 if ((damage == 0) && one_in_(2))
327                     damage = 1;
328             }
329         }
330
331         if (creature_ptr->special_defense & KATA_MUSOU) {
332             damage /= 2;
333             if ((damage == 0) && one_in_(2))
334                 damage = 1;
335         }
336     }
337
338     creature_ptr->chp -= damage;
339     if (damage_type == DAMAGE_GENO && creature_ptr->chp < 0) {
340         damage += creature_ptr->chp;
341         creature_ptr->chp = 0;
342     }
343
344     creature_ptr->redraw |= PR_HP;
345     creature_ptr->window |= PW_PLAYER;
346
347     if (damage_type != DAMAGE_GENO && creature_ptr->chp == 0) {
348         chg_virtue(creature_ptr, V_SACRIFICE, 1);
349         chg_virtue(creature_ptr, V_CHANCE, 2);
350     }
351
352     if (creature_ptr->chp < 0) {
353         bool android = (creature_ptr->prace == RACE_ANDROID ? TRUE : FALSE);
354
355 #ifdef JP
356         /* 死んだ時に強制終了して死を回避できなくしてみた by Habu */
357         if (!cheat_save && !save_player(creature_ptr, SAVE_TYPE_CLOSE_GAME))
358             msg_print("セーブ失敗!");
359 #endif
360
361         sound(SOUND_DEATH);
362         chg_virtue(creature_ptr, V_SACRIFICE, 10);
363         handle_stuff(creature_ptr);
364         creature_ptr->leaving = TRUE;
365         creature_ptr->is_dead = TRUE;
366         if (creature_ptr->current_floor_ptr->inside_arena) {
367             concptr m_name = r_name + r_info[arena_info[creature_ptr->arena_number].r_idx].name;
368             msg_format(_("あなたは%sの前に敗れ去った。", "You are beaten by %s."), m_name);
369             msg_print(NULL);
370             if (record_arena)
371                 exe_write_diary(creature_ptr, DIARY_ARENA, -1 - creature_ptr->arena_number, m_name);
372         } else {
373             QUEST_IDX q_idx = quest_number(creature_ptr, creature_ptr->current_floor_ptr->dun_level);
374             bool seppuku = streq(hit_from, "Seppuku");
375             bool winning_seppuku = current_world_ptr->total_winner && seppuku;
376
377             play_music(TERM_XTRA_MUSIC_BASIC, MUSIC_BASIC_GAMEOVER);
378
379 #ifdef WORLD_SCORE
380             screen_dump = make_screen_dump(creature_ptr, process_autopick_file_command);
381 #endif
382             if (seppuku) {
383                 strcpy(creature_ptr->died_from, hit_from);
384 #ifdef JP
385                 if (!winning_seppuku)
386                     strcpy(creature_ptr->died_from, "切腹");
387 #endif
388             } else {
389                 char dummy[1024];
390 #ifdef JP
391                 sprintf(dummy, "%s%s%s", !creature_ptr->paralyzed ? "" : creature_ptr->free_act ? "彫像状態で" : "麻痺状態で",
392                     creature_ptr->image ? "幻覚に歪んだ" : "", hit_from);
393 #else
394                 sprintf(dummy, "%s%s", hit_from, !creature_ptr->paralyzed ? "" : " while helpless");
395 #endif
396                 angband_strcpy(creature_ptr->died_from, dummy, sizeof creature_ptr->died_from);
397             }
398
399             current_world_ptr->total_winner = FALSE;
400             if (winning_seppuku) {
401                 exe_write_diary(creature_ptr, DIARY_DESCRIPTION, 0, _("勝利の後切腹した。", "committed seppuku after the winning."));
402             } else {
403                 char buf[20];
404
405                 if (creature_ptr->current_floor_ptr->inside_arena)
406                     strcpy(buf, _("アリーナ", "in the Arena"));
407                 else if (!creature_ptr->current_floor_ptr->dun_level)
408                     strcpy(buf, _("地上", "on the surface"));
409                 else if (q_idx && (is_fixed_quest_idx(q_idx) && !((q_idx == QUEST_OBERON) || (q_idx == QUEST_SERPENT))))
410                     strcpy(buf, _("クエスト", "in a quest"));
411                 else
412                     sprintf(buf, _("%d階", "level %d"), (int)creature_ptr->current_floor_ptr->dun_level);
413
414                 sprintf(tmp, _("%sで%sに殺された。", "killed by %s %s."), buf, creature_ptr->died_from);
415                 exe_write_diary(creature_ptr, DIARY_DESCRIPTION, 0, tmp);
416             }
417
418             exe_write_diary(creature_ptr, DIARY_GAMESTART, 1, _("-------- ゲームオーバー --------", "--------   Game  Over   --------"));
419             exe_write_diary(creature_ptr, DIARY_DESCRIPTION, 1, "\n\n\n\n");
420             flush();
421             if (get_check_strict(creature_ptr, _("画面を保存しますか?", "Dump the screen? "), CHECK_NO_HISTORY))
422                 do_cmd_save_screen(creature_ptr, process_autopick_file_command);
423
424             flush();
425             if (creature_ptr->last_message)
426                 string_free(creature_ptr->last_message);
427
428             creature_ptr->last_message = NULL;
429             if (!last_words) {
430 #ifdef JP
431                 msg_format("あなたは%sました。", android ? "壊れ" : "死に");
432 #else
433                 msg_print(android ? "You are broken." : "You die.");
434 #endif
435
436                 msg_print(NULL);
437             } else {
438                 if (winning_seppuku) {
439                     get_rnd_line(_("seppuku_j.txt", "seppuku.txt"), 0, death_message);
440                 } else {
441                     get_rnd_line(_("death_j.txt", "death.txt"), 0, death_message);
442                 }
443
444                 do {
445 #ifdef JP
446                     while (!get_string(winning_seppuku ? "辞世の句: " : "断末魔の叫び: ", death_message, sizeof(death_message)))
447                         ;
448 #else
449                     while (!get_string("Last words: ", death_message, 1024))
450                         ;
451 #endif
452                 } while (winning_seppuku && !get_check_strict(creature_ptr, _("よろしいですか?", "Are you sure? "), CHECK_NO_HISTORY));
453
454                 if (death_message[0] == '\0') {
455 #ifdef JP
456                     strcpy(death_message, format("あなたは%sました。", android ? "壊れ" : "死に"));
457 #else
458                     strcpy(death_message, android ? "You are broken." : "You die.");
459 #endif
460                 } else
461                     creature_ptr->last_message = string_make(death_message);
462
463 #ifdef JP
464                 if (winning_seppuku) {
465                     int i, len;
466                     int w = Term->wid;
467                     int h = Term->hgt;
468                     int msg_pos_x[9] = { 5, 7, 9, 12, 14, 17, 19, 21, 23 };
469                     int msg_pos_y[9] = { 3, 4, 5, 4, 5, 4, 5, 6, 4 };
470                     concptr str;
471                     char *str2;
472
473                     term_clear();
474
475                     /* 桜散る */
476                     for (i = 0; i < 40; i++)
477                         term_putstr(randint0(w / 2) * 2, randint0(h), 2, TERM_VIOLET, "υ");
478
479                     str = death_message;
480                     if (strncmp(str, "「", 2) == 0)
481                         str += 2;
482
483                     str2 = angband_strstr(str, "」");
484                     if (str2 != NULL)
485                         *str2 = '\0';
486
487                     i = 0;
488                     while (i < 9) {
489                         str2 = angband_strstr(str, " ");
490                         if (str2 == NULL)
491                             len = strlen(str);
492                         else
493                             len = str2 - str;
494
495                         if (len != 0) {
496                             term_putstr_v(w * 3 / 4 - 2 - msg_pos_x[i] * 2, msg_pos_y[i], len, TERM_WHITE, str);
497                             if (str2 == NULL)
498                                 break;
499                             i++;
500                         }
501                         str = str2 + 1;
502                         if (*str == 0)
503                             break;
504                     }
505
506                     term_putstr(w - 1, h - 1, 1, TERM_WHITE, " ");
507                     flush();
508 #ifdef WORLD_SCORE
509                     screen_dump = make_screen_dump(creature_ptr, process_autopick_file_command);
510 #endif
511                     (void)inkey();
512                 } else
513 #endif
514                     msg_print(death_message);
515             }
516         }
517
518         return damage;
519     }
520
521     handle_stuff(creature_ptr);
522     if (creature_ptr->chp < warning) {
523         if (old_chp > warning)
524             bell();
525
526         sound(SOUND_WARN);
527         if (record_danger && (old_chp > warning)) {
528             if (creature_ptr->image && damage_type == DAMAGE_ATTACK)
529                 hit_from = _("何か", "something");
530
531             sprintf(tmp, _("%sによってピンチに陥った。", "was in a critical situation because of %s."), hit_from);
532             exe_write_diary(creature_ptr, DIARY_DESCRIPTION, 0, tmp);
533         }
534
535         if (auto_more)
536             creature_ptr->now_damaged = TRUE;
537
538         msg_print(_("*** 警告:低ヒット・ポイント! ***", "*** LOW HITPOINT WARNING! ***"));
539         msg_print(NULL);
540         flush();
541     }
542
543     if (creature_ptr->wild_mode && !creature_ptr->leaving && (creature_ptr->chp < MAX(warning, creature_ptr->mhp / 5)))
544         change_wild_mode(creature_ptr, FALSE);
545
546     return damage;
547 }
548
549 /*!
550  * @brief 属性に応じた敵オーラによるプレイヤーのダメージ処理
551  * @param m_ptr オーラを持つモンスターの構造体参照ポインタ
552  * @param immune ダメージを回避できる免疫フラグ
553  * @param flags_offset オーラフラグ配列の参照オフセット
554  * @param r_flags_offset モンスターの耐性配列の参照オフセット
555  * @param aura_flag オーラフラグ配列
556  * @param dam_func ダメージ処理を行う関数の参照ポインタ
557  * @param message オーラダメージを受けた際のメッセージ
558  * @return なし
559  */
560 static void process_aura_damage(monster_type *m_ptr, player_type *touched_ptr, bool immune, int flags_offset, int r_flags_offset, u32b aura_flag,
561     HIT_POINT (*dam_func)(player_type *creature_type, HIT_POINT dam, concptr kb_str, int monspell, bool aura), concptr message)
562 {
563     monster_race *r_ptr = &r_info[m_ptr->r_idx];
564     if (!(atoffset(BIT_FLAGS, r_ptr, flags_offset) & aura_flag) || immune)
565         return;
566
567     GAME_TEXT mon_name[MAX_NLEN];
568     int aura_damage = damroll(1 + (r_ptr->level / 26), 1 + (r_ptr->level / 17));
569
570     monster_desc(touched_ptr, mon_name, m_ptr, MD_WRONGDOER_NAME);
571     msg_print(message);
572     dam_func(touched_ptr, aura_damage, mon_name, -1, TRUE);
573
574     if (is_original_ap_and_seen(touched_ptr, m_ptr))
575         atoffset(BIT_FLAGS, r_ptr, r_flags_offset) |= aura_flag;
576
577     handle_stuff(touched_ptr);
578 }
579
580 /*!
581  * @brief 敵オーラによるプレイヤーのダメージ処理
582  * @param m_ptr オーラを持つモンスターの構造体参照ポインタ
583  * @param touched_ptr オーラを持つ相手に振れたクリーチャーの参照ポインタ
584  * @return なし
585  */
586 void touch_zap_player(monster_type *m_ptr, player_type *touched_ptr)
587 {
588     process_aura_damage(m_ptr, touched_ptr, (bool)has_immune_fire(touched_ptr), offsetof(monster_race, flags2), offsetof(monster_race, r_flags2), RF2_AURA_FIRE,
589         fire_dam, _("突然とても熱くなった!", "You are suddenly very hot!"));
590     process_aura_damage(m_ptr, touched_ptr, (bool)has_immune_cold(touched_ptr), offsetof(monster_race, flags3), offsetof(monster_race, r_flags3), RF3_AURA_COLD,
591         cold_dam, _("突然とても寒くなった!", "You are suddenly very cold!"));
592     process_aura_damage(m_ptr, touched_ptr, (bool)has_immune_elec(touched_ptr), offsetof(monster_race, flags2), offsetof(monster_race, r_flags2), RF2_AURA_ELEC,
593         elec_dam, _("電撃をくらった!", "You get zapped!"));
594 }