OSDN Git Service

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