OSDN Git Service

e4849b5f41a8b9113b26a64ef58720da41c9f797
[hengbandforosx/hengbandosx.git] / src / monster / monster-damage.cpp
1 /*
2  * @brief モンスターがダメージを受けた時の処理と経験値の加算処理
3  * @date 2021/08/04
4  * @author Hourier
5  */
6
7 #include "monster/monster-damage.h"
8 #include "core/player-redraw-types.h"
9 #include "core/speed-table.h"
10 #include "core/stuff-handler.h"
11 #include "dungeon/dungeon.h"
12 #include "game-option/birth-options.h"
13 #include "game-option/play-record-options.h"
14 #include "io/files-util.h"
15 #include "io/report.h"
16 #include "io/write-diary.h"
17 #include "main/sound-definitions-table.h"
18 #include "main/sound-of-music.h"
19 #include "mind/mind-ninja.h"
20 #include "monster-floor/monster-death.h"
21 #include "monster-floor/monster-remover.h"
22 #include "monster-floor/monster-summon.h"
23 #include "monster-floor/place-monster-types.h"
24 #include "monster-race/monster-race-hook.h"
25 #include "monster-race/monster-race.h"
26 #include "monster-race/race-ability-mask.h"
27 #include "monster-race/race-flags1.h"
28 #include "monster-race/race-flags2.h"
29 #include "monster-race/race-flags3.h"
30 #include "monster-race/race-flags7.h"
31 #include "monster-race/race-flags8.h"
32 #include "monster/monster-describer.h"
33 #include "monster/monster-description-types.h"
34 #include "monster/monster-info.h"
35 #include "monster/monster-status-setter.h"
36 #include "monster/monster-status.h"
37 #include "object-enchant/object-curse.h"
38 #include "player-info/avatar.h"
39 #include "player/player-status.h"
40 #include "player/special-defense-types.h"
41 #include "spell-kind/spells-random.h"
42 #include "status/experience.h"
43 #include "system/floor-type-definition.h"
44 #include "system/monster-race-definition.h"
45 #include "system/monster-type-definition.h"
46 #include "system/player-type-definition.h"
47 #include "util/bit-flags-calculator.h"
48 #include "view/display-messages.h"
49 #include "world/world.h"
50 #include <algorithm>
51
52 /*
53  * @brief コンストラクタ
54  * @param target_ptr プレーヤーへの参照ポインタ
55  * @param m_idx ダメージを与えたモンスターのID
56  * @param dam 与えたダメージ量
57  * @param fear ダメージによってモンスターが恐慌状態に陥ったならばtrue
58  * @param note モンスターが倒された際の特別なメッセージ述語
59  */
60 MonsterDamageProcessor::MonsterDamageProcessor(player_type *target_ptr, MONSTER_IDX m_idx, HIT_POINT dam, bool *fear)
61     : target_ptr(target_ptr)
62     , m_idx(m_idx)
63     , dam(dam)
64     , fear(fear)
65 {
66 }
67
68 /*!
69  * @brief モンスターのHPをダメージに応じて減算する /
70  * @return モンスターが生きていればfalse、死んだらtrue
71  */
72 bool MonsterDamageProcessor::mon_take_hit(concptr note)
73 {
74     auto *m_ptr = &this->target_ptr->current_floor_ptr->m_list[this->m_idx];
75     auto innocent = true;
76     auto thief = false;
77
78     monster_type exp_mon;
79     (void)COPY(&exp_mon, m_ptr, monster_type);
80
81     auto exp_dam = (m_ptr->hp > this->dam) ? this->dam : m_ptr->hp;
82
83     this->get_exp_from_mon(&exp_mon, exp_dam);
84     if (this->genocide_chaos_patron()) {
85         return true;
86     }
87
88     m_ptr->hp -= this->dam;
89     m_ptr->dealt_damage += this->dam;
90     if (m_ptr->dealt_damage > m_ptr->max_maxhp * 100) {
91         m_ptr->dealt_damage = m_ptr->max_maxhp * 100;
92     }
93
94     if (current_world_ptr->wizard) {
95         msg_format(_("合計%d/%dのダメージを与えた。", "You do %d (out of %d) damage."), m_ptr->dealt_damage, m_ptr->maxhp);
96     }
97
98     auto *r_ptr = &r_info[m_ptr->r_idx];
99     if (m_ptr->hp < 0) {
100         this->death_special_flag_monster();
101         if (r_ptr->r_akills < MAX_SHORT) {
102             r_ptr->r_akills++;
103         }
104
105         this->increase_kill_numbers();
106         GAME_TEXT m_name[MAX_NLEN];
107         monster_desc(this->target_ptr, m_name, m_ptr, MD_TRUE_NAME);
108         this->death_amberites(m_name);
109         this->dying_scream(m_name);
110         this->change_virtue_non_beginner();
111         if (r_ptr->flags1 & RF1_UNIQUE) {
112             if (r_ptr->flags3 & (RF3_EVIL | RF3_GOOD))
113                 chg_virtue(this->target_ptr, V_HARMONY, 2);
114
115             if (r_ptr->flags3 & RF3_GOOD) {
116                 chg_virtue(this->target_ptr, V_UNLIFE, 2);
117                 chg_virtue(this->target_ptr, V_VITALITY, -2);
118             }
119
120             if (one_in_(3))
121                 chg_virtue(this->target_ptr, V_INDIVIDUALISM, -1);
122         }
123
124         if (m_ptr->r_idx == MON_BEGGAR || m_ptr->r_idx == MON_LEPER) {
125             chg_virtue(this->target_ptr, V_COMPASSION, -1);
126         }
127
128         auto *floor_ptr = this->target_ptr->current_floor_ptr;
129         if ((r_ptr->flags3 & RF3_GOOD) && ((r_ptr->level) / 10 + (3 * floor_ptr->dun_level) >= randint1(100)))
130             chg_virtue(this->target_ptr, V_UNLIFE, 1);
131
132         if (any_bits(r_ptr->flags3, RF3_ANGEL)) {
133             if (any_bits(r_ptr->flags1, RF1_UNIQUE)) {
134                 chg_virtue(this->target_ptr, V_FAITH, -2);
135             } else if ((r_ptr->level) / 10 + (3 * floor_ptr->dun_level) >= randint1(100)) {
136                 auto change_value = any_bits(r_ptr->flags3, RF3_GOOD) ? -1 : 1;
137                 chg_virtue(this->target_ptr, V_FAITH, change_value);
138             }
139         } else if (any_bits(r_ptr->flags3, RF3_DEMON)) {
140             if (any_bits(r_ptr->flags1, RF1_UNIQUE)) {
141                 chg_virtue(this->target_ptr, V_FAITH, 2);
142             } else if ((r_ptr->level) / 10 + (3 * floor_ptr->dun_level) >= randint1(100)) {
143                 chg_virtue(this->target_ptr, V_FAITH, 1);
144             }
145         }
146
147         if (any_bits(r_ptr->flags3, RF3_UNDEAD) && any_bits(r_ptr->flags1, RF1_UNIQUE)) {
148             chg_virtue(this->target_ptr, V_VITALITY, 2);
149         }
150
151         if (r_ptr->r_deaths > 0) {
152             if (any_bits(r_ptr->flags1, RF1_UNIQUE)) {
153                 chg_virtue(this->target_ptr, V_HONOUR, 10);
154             } else if ((r_ptr->level) / 10 + (2 * this->target_ptr->current_floor_ptr->dun_level) >= randint1(100)) {
155                 chg_virtue(this->target_ptr, V_HONOUR, 1);
156             }
157         }
158
159         if (any_bits(r_ptr->flags2, RF2_MULTIPLY) && (r_ptr->r_akills > 1000) && one_in_(10)) {
160             chg_virtue(this->target_ptr, V_VALOUR, -1);
161         }
162
163         for (auto i = 0; i < MAX_NUM_BLOWS; i++) {
164             if (r_ptr->blow[i].d_dice != 0) {
165                 innocent = false;
166             }
167             
168             if ((r_ptr->blow[i].effect == RBE_EAT_ITEM) || (r_ptr->blow[i].effect == RBE_EAT_GOLD)) {
169                 thief = true;
170             }
171         }
172
173         if (r_ptr->level > 0) {
174             innocent = false;
175         }
176
177         if (thief) {
178             if (any_bits(r_ptr->flags1, RF1_UNIQUE)) {
179                 chg_virtue(this->target_ptr, V_JUSTICE, 3);
180             } else if (1 + ((r_ptr->level) / 10 + (2 * this->target_ptr->current_floor_ptr->dun_level)) >= randint1(100)) {
181                 chg_virtue(this->target_ptr, V_JUSTICE, 1);
182             }
183         } else if (innocent) {
184             chg_virtue(this->target_ptr, V_JUSTICE, -1);
185         }
186
187         auto magic_ability_flags = r_ptr->ability_flags;
188         magic_ability_flags.reset(RF_ABILITY_NOMAGIC_MASK);
189         if (any_bits(r_ptr->flags3, RF3_ANIMAL) && none_bits(r_ptr->flags3, RF3_EVIL) && magic_ability_flags.none()) {
190             if (one_in_(4)) {
191                 chg_virtue(this->target_ptr, V_NATURE, -1);
192             }
193         }
194
195         if (any_bits(r_ptr->flags1, RF1_UNIQUE) && record_destroy_uniq) {
196             char note_buf[160];
197             sprintf(note_buf, "%s%s", r_ptr->name.c_str(), m_ptr->mflag2.has(MFLAG2::CLONED) ? _("(クローン)", "(Clone)") : "");
198             exe_write_diary(this->target_ptr, DIARY_UNIQUE, 0, note_buf);
199         }
200
201         sound(SOUND_KILL);
202         if (note != nullptr) {
203             msg_format("%^s%s", m_name, note);
204         } else if (!m_ptr->ml) {
205 #ifdef JP
206             if (is_echizen(this->target_ptr))
207                 msg_format("せっかくだから%sを殺した。", m_name);
208             else
209                 msg_format("%sを殺した。", m_name);
210 #else
211             msg_format("You have killed %s.", m_name);
212 #endif
213         } else if (!monster_living(m_ptr->r_idx)) {
214             bool explode = false;
215             for (auto i = 0; i < 4; i++) {
216                 if (r_ptr->blow[i].method == RBM_EXPLODE) {
217                     explode = true;
218                 }
219             }
220
221             if (explode) {
222                 msg_format(_("%sは爆発して粉々になった。", "%^s explodes into tiny shreds."), m_name);
223             } else {
224 #ifdef JP
225                 if (is_echizen(this->target_ptr))
226                     msg_format("せっかくだから%sを倒した。", m_name);
227                 else
228                     msg_format("%sを倒した。", m_name);
229 #else
230                 msg_format("You have destroyed %s.", m_name);
231 #endif
232             }
233         } else {
234 #ifdef JP
235             if (is_echizen(this->target_ptr))
236                 msg_format("せっかくだから%sを葬り去った。", m_name);
237             else
238                 msg_format("%sを葬り去った。", m_name);
239 #else
240             msg_format("You have slain %s.", m_name);
241 #endif
242         }
243
244         if (any_bits(r_ptr->flags1, RF1_UNIQUE) && m_ptr->mflag2.has_not(MFLAG2::CLONED) && !vanilla_town) {
245             for (auto i = 0; i < MAX_BOUNTY; i++) {
246                 if ((current_world_ptr->bounty_r_idx[i] == m_ptr->r_idx) && m_ptr->mflag2.has_not(MFLAG2::CHAMELEON)) {
247                     msg_format(_("%sの首には賞金がかかっている。", "There is a price on %s's head."), m_name);
248                     break;
249                 }
250             }
251         }
252
253         monster_death(this->target_ptr, this->m_idx, true);
254         this->summon_special_unique();
255         this->get_exp_from_mon(&exp_mon, exp_mon.max_maxhp * 2);
256         *this->fear = false;
257         return true;
258     }
259
260     if (monster_fear_remaining(m_ptr) && (this->dam > 0)) {
261         auto fear_remining = monster_fear_remaining(m_ptr) - randint1(this->dam);
262         if (set_monster_monfear(this->target_ptr, this->m_idx, fear_remining)) {
263             *this->fear = false;
264         }
265     }
266
267     // 恐怖の更なる加算.
268     if (!monster_fear_remaining(m_ptr) && none_bits(r_ptr->flags3, RF3_NO_FEAR)) {
269         int percentage = (100L * m_ptr->hp) / m_ptr->maxhp;
270         if ((randint1(10) >= percentage) || ((this->dam >= m_ptr->hp) && (randint0(100) < 80))) {
271             *this->fear = true;
272             (void)set_monster_monfear(
273                 this->target_ptr, this->m_idx, (randint1(10) + (((this->dam >= m_ptr->hp) && (percentage > 7)) ? 20 : ((11 - percentage) * 5))));
274         }
275     }
276
277     return false;
278 }
279
280 bool MonsterDamageProcessor::genocide_chaos_patron()
281 {
282     auto *m_ptr = &this->target_ptr->current_floor_ptr->m_list[this->m_idx];
283     if (!monster_is_valid(m_ptr)) {
284         this->m_idx = 0;
285     }
286
287     this->set_redraw();
288     (void)set_monster_csleep(this->target_ptr, this->m_idx, 0);
289     if (this->target_ptr->special_defense & NINJA_S_STEALTH) {
290         set_superstealth(this->target_ptr, false);
291     }
292
293     return this->m_idx == 0;
294 }
295
296 /*
297  * @brief たぬき、カメレオン、ナズグル、ユニークの死亡時処理
298  * @param m_ptr ダメージを与えたモンスターの構造体参照ポインタ
299  */
300 void MonsterDamageProcessor::death_special_flag_monster()
301 {
302     auto *m_ptr = &this->target_ptr->current_floor_ptr->m_list[this->m_idx];
303     auto r_idx = m_ptr->r_idx;
304     auto *r_ptr = &r_info[r_idx];
305     if (any_bits(r_info[r_idx].flags7, RF7_TANUKI)) {
306         r_ptr = &r_info[r_idx];
307         m_ptr->ap_r_idx = r_idx;
308         if (r_ptr->r_sights < MAX_SHORT) {
309             r_ptr->r_sights++;
310         }
311     }
312
313     if (m_ptr->mflag2.has(MFLAG2::CHAMELEON)) {
314         r_ptr = real_r_ptr(m_ptr);
315         if (r_ptr->r_sights < MAX_SHORT) {
316             r_ptr->r_sights++;
317         }
318     }
319
320     if (m_ptr->mflag2.has(MFLAG2::CLONED)) {
321         return;
322     }
323
324     if (any_bits(r_ptr->flags7, RF7_NAZGUL)) {
325         r_ptr->max_num--;
326         return;
327     }
328
329     if (none_bits(r_ptr->flags1, RF1_UNIQUE)) {
330         return;
331     }
332
333     this->death_unique_monster((monster_race_type)r_idx);
334 }
335
336 /*
337  * @brief ユニークの死亡処理
338  * @param r_idx 死亡したユニークの種族番号
339  */
340 void MonsterDamageProcessor::death_unique_monster(monster_race_type r_idx)
341 {
342     r_info[r_idx].max_num = 0;
343     std::vector<monster_race_type> combined_uniques;
344     if (!check_combined_unique(r_idx, &combined_uniques)) {
345         return;
346     }
347
348     std::vector<std::tuple<monster_race_type, monster_race_type, monster_race_type>> uniques;
349     const int one_unit = 3;
350     for (auto i = 0U; i < combined_uniques.size(); i += one_unit) {
351         auto unique = std::make_tuple(combined_uniques[i], combined_uniques[i + 1], combined_uniques[i + 2]);
352         uniques.push_back(unique);
353     }
354
355     this->death_combined_uniques(r_idx, &uniques);
356 }
357
358 /*
359  * @brief 死亡したモンスターが分裂/合体を行う特殊ユニークか否かの判定処理
360  * @param r_idx 死亡したモンスターの種族番号
361  * @param united_uniques 分裂/合体を行う特殊ユニーク
362  * @details 合体後、合体前1、合体前2 の順にpush_backすること
363  */
364 bool MonsterDamageProcessor::check_combined_unique(const monster_race_type r_idx, std::vector<monster_race_type> *combined_uniques)
365 {
366     combined_uniques->push_back(MON_BANORLUPART);
367     combined_uniques->push_back(MON_BANOR);
368     combined_uniques->push_back(MON_LUPART);
369
370     for (const auto &unique : *combined_uniques) {
371         if (r_idx == unique) {
372             return true;
373         }
374     }
375
376     return false;
377 }
378
379 /*
380  * @brief 分裂/合体を行う特殊ユニークの死亡処理
381  * @param m_ptr ダメージを与えたモンスターの構造体参照ポインタ
382  * @uniques 分裂/合体を行う特殊ユニークのリスト
383  */
384 void MonsterDamageProcessor::death_combined_uniques(
385     const monster_race_type r_idx, std::vector<std::tuple<monster_race_type, monster_race_type, monster_race_type>> *combined_uniques)
386 {
387     for (const auto &unique : *combined_uniques) {
388         auto united = (monster_race_type)0;
389         auto split1 = (monster_race_type)0;
390         auto split2 = (monster_race_type)0;
391         std::tie(united, split1, split2) = unique;
392         if ((r_idx == split1) || (r_idx == split2)) {
393             r_info[united].max_num = 0;
394             r_info[united].r_pkills++;
395             r_info[united].r_akills++;
396             if (r_info[united].r_tkills < MAX_SHORT) {
397                 r_info[united].r_tkills++;
398             }
399
400             continue;
401         }
402
403         if (r_idx != united) {
404             continue;
405         }
406
407         r_info[split1].max_num = 0;
408         r_info[split1].r_pkills++;
409         r_info[split1].r_akills++;
410         if (r_info[split1].r_tkills < MAX_SHORT) {
411             r_info[split1].r_tkills++;
412         }
413
414         r_info[split2].max_num = 0;
415         r_info[split2].r_pkills++;
416         r_info[split2].r_akills++;
417         if (r_info[split2].r_tkills < MAX_SHORT) {
418             r_info[split2].r_tkills++;
419         }
420     }
421 }
422
423 void MonsterDamageProcessor::increase_kill_numbers()
424 {
425     auto *m_ptr = &this->target_ptr->current_floor_ptr->m_list[this->m_idx];
426     auto *r_ptr = &r_info[m_ptr->r_idx];
427     if (((m_ptr->ml == 0) || this->target_ptr->image) && none_bits(r_ptr->flags1, RF1_UNIQUE)) {
428         return;
429     }
430
431     if (m_ptr->mflag2.has(MFLAG2::KAGE) && (r_info[MON_KAGE].r_pkills < MAX_SHORT)) {
432         r_info[MON_KAGE].r_pkills++;
433     } else if (r_ptr->r_pkills < MAX_SHORT) {
434         r_ptr->r_pkills++;
435     }
436
437     if (m_ptr->mflag2.has(MFLAG2::KAGE) && (r_info[MON_KAGE].r_tkills < MAX_SHORT)) {
438         r_info[MON_KAGE].r_tkills++;
439     } else if (r_ptr->r_tkills < MAX_SHORT) {
440         r_ptr->r_tkills++;
441     }
442
443     monster_race_track(this->target_ptr, m_ptr->ap_r_idx);
444 }
445
446 void MonsterDamageProcessor::death_amberites(GAME_TEXT *m_name)
447 {
448     auto *m_ptr = &this->target_ptr->current_floor_ptr->m_list[this->m_idx];
449     auto *r_ptr = &r_info[m_ptr->r_idx];
450     if (none_bits(r_ptr->flags3, RF3_AMBERITE) || one_in_(2)) {
451         return;
452     }
453
454     auto curses = 1 + randint1(3);
455     auto stop_ty = false;
456     auto count = 0;
457     msg_format(_("%^sは恐ろしい血の呪いをあなたにかけた!", "%^s puts a terrible blood curse on you!"), m_name);
458     curse_equipment(this->target_ptr, 100, 50);
459     do {
460         stop_ty = activate_ty_curse(this->target_ptr, stop_ty, &count);
461     } while (--curses);
462 }
463
464 void MonsterDamageProcessor::dying_scream(GAME_TEXT *m_name)
465 {
466     auto *m_ptr = &this->target_ptr->current_floor_ptr->m_list[this->m_idx];
467     auto *r_ptr = &r_info[m_ptr->r_idx];
468     if (none_bits(r_ptr->flags2, RF2_CAN_SPEAK)) {
469         return;
470     }
471
472     char line_got[1024];
473     if (!get_rnd_line(_("mondeath_j.txt", "mondeath.txt"), m_ptr->r_idx, line_got)) {
474         msg_format("%^s %s", m_name, line_got);
475     }
476
477 #ifdef WORLD_SCORE
478     if (m_ptr->r_idx == MON_SERPENT) {
479         screen_dump = make_screen_dump(this->target_ptr);
480     }
481 #endif
482 }
483
484 void MonsterDamageProcessor::change_virtue_non_beginner()
485 {
486     auto *floor_ptr = this->target_ptr->current_floor_ptr;
487     auto *m_ptr = &floor_ptr->m_list[this->m_idx];
488     auto *r_ptr = &r_info[m_ptr->r_idx];
489     if (d_info[this->target_ptr->dungeon_idx].flags.has(DF::BEGINNER)) {
490         return;
491     }
492
493     if ((floor_ptr->dun_level == 0) && !this->target_ptr->ambush_flag && !floor_ptr->inside_arena) {
494         chg_virtue(this->target_ptr, V_VALOUR, -1);
495     } else if (r_ptr->level > floor_ptr->dun_level) {
496         if (randint1(10) <= (r_ptr->level - floor_ptr->dun_level)) {
497             chg_virtue(this->target_ptr, V_VALOUR, 1);
498         }
499     }
500
501     if (r_ptr->level > 60) {
502         chg_virtue(this->target_ptr, V_VALOUR, 1);
503     }
504
505     if (r_ptr->level >= 2 * (this->target_ptr->lev + 1)) {
506         chg_virtue(this->target_ptr, V_VALOUR, 2);
507     }
508 }
509
510 /*!
511  * @brief モンスターに与えたダメージを元に経験値を加算する /
512  * Calculate experience point to be get
513  * @param m_ptr ダメージを与えたモンスターの構造体参照ポインタ
514  * @details
515  * <pre>
516  * Even the 64 bit operation is not big enough to avoid overflaw
517  * unless we carefully choose orders of ENERGY_MULTIPLICATION and ENERGY_DIVISION.
518  * Get the coefficient first, and multiply (potentially huge) base
519  * experience point of a monster later.
520  * </pre>
521  */
522 void MonsterDamageProcessor::get_exp_from_mon(monster_type *m_ptr, HIT_POINT exp_dam)
523 {
524     auto *r_ptr = &r_info[m_ptr->r_idx];
525     if (!monster_is_valid(m_ptr) || is_pet(m_ptr) || this->target_ptr->phase_out) {
526         return;
527     }
528
529     /*
530      * - Ratio of monster's level to player's level effects
531      * - Varying speed effects
532      * - Get a fraction in proportion of damage point
533      */
534     auto new_exp = r_ptr->level * SPEED_TO_ENERGY(m_ptr->mspeed) * exp_dam;
535     auto new_exp_frac = 0U;
536     auto div_h = 0;
537     auto div_l = (uint)((this->target_ptr->max_plv + 2) * SPEED_TO_ENERGY(r_ptr->speed));
538
539     /* Use (average maxhp * 2) as a denominator */
540     auto compensation = any_bits(r_ptr->flags1, RF1_FORCE_MAXHP) ? r_ptr->hside * 2 : r_ptr->hside + 1;
541     s64b_mul(&div_h, &div_l, 0, r_ptr->hdice * (ironman_nightmare ? 2 : 1) * compensation);
542
543     /* Special penalty in the wilderness */
544     if (!this->target_ptr->current_floor_ptr->dun_level && (none_bits(r_ptr->flags8, RF8_WILD_ONLY) || none_bits(r_ptr->flags1, RF1_UNIQUE))) {
545         s64b_mul(&div_h, &div_l, 0, 5);
546     }
547
548     /* Do ENERGY_DIVISION first to prevent overflaw */
549     s64b_div(&new_exp, &new_exp_frac, div_h, div_l);
550
551     /* Special penalty for mutiply-monster */
552     if (any_bits(r_ptr->flags2, RF2_MULTIPLY) || (m_ptr->r_idx == MON_DAWN)) {
553         int monnum_penarty = r_ptr->r_akills / 400;
554         if (monnum_penarty > 8) {
555             monnum_penarty = 8;
556         }
557
558         while (monnum_penarty--) {
559             /* Divide by 4 */
560             s64b_rshift(&new_exp, &new_exp_frac, 2);
561         }
562     }
563
564     /* Special penalty for rest_and_shoot exp scum */
565     if ((m_ptr->dealt_damage > m_ptr->max_maxhp) && (m_ptr->hp >= 0)) {
566         int over_damage = m_ptr->dealt_damage / m_ptr->max_maxhp;
567         if (over_damage > 32) {
568             over_damage = 32;
569         }
570
571         while (over_damage--) {
572             /* 9/10 for once */
573             s64b_mul(&new_exp, &new_exp_frac, 0, 9);
574             s64b_div(&new_exp, &new_exp_frac, 0, 10);
575         }
576     }
577
578     s64b_mul(&new_exp, &new_exp_frac, 0, r_ptr->mexp);
579     gain_exp_64(this->target_ptr, new_exp, new_exp_frac);
580 }
581
582 void MonsterDamageProcessor::set_redraw()
583 {
584     if (this->target_ptr->health_who == this->m_idx) {
585         this->target_ptr->redraw |= PR_HEALTH;
586     }
587
588     if (this->target_ptr->riding == this->m_idx) {
589         this->target_ptr->redraw |= PR_UHEALTH;
590     }
591 }
592
593 /*
594  * @brief 特定ユニークを倒した時に更にユニークを特殊召喚する処理
595  * @param m_ptr ダメージを与えた特定ユニークの構造体参照ポインタ
596  */
597 void MonsterDamageProcessor::summon_special_unique()
598 {
599     auto *m_ptr = &this->target_ptr->current_floor_ptr->m_list[this->m_idx];
600     auto *r_ptr = &r_info[m_ptr->r_idx];
601     bool is_special_summon = m_ptr->r_idx == MON_IKETA;
602     is_special_summon |= m_ptr->r_idx == MON_DOPPIO;
603     if (!is_special_summon || this->target_ptr->current_floor_ptr->inside_arena || this->target_ptr->phase_out) {
604         delete_monster_idx(this->target_ptr, this->m_idx);
605         return;
606     }
607
608     auto dummy_y = m_ptr->fy;
609     auto dummy_x = m_ptr->fx;
610     auto mode = (BIT_FLAGS)0;
611     if (is_pet(m_ptr)) {
612         mode |= PM_FORCE_PET;
613     }
614
615     MONRACE_IDX new_unique_idx;
616     concptr mes;
617     switch (m_ptr->r_idx) {
618     case MON_IKETA:
619         new_unique_idx = MON_BIKETAL;
620         mes = _("「ハァッハッハッハ!!私がバイケタルだ!!」", "Uwa-hahaha!  *I* am Biketal!");
621         break;
622     case MON_DOPPIO:
623         new_unique_idx = MON_DIAVOLO;
624         mes = _("「これは『試練』だ 過去に打ち勝てという『試練』とオレは受けとった」", "This is a 'trial'. I took it as a 'trial' to overcome in the past.");
625         break;
626     default: // バグでなければ入らない.
627         new_unique_idx = 0;
628         mes = "";
629         break;
630     }
631
632     delete_monster_idx(this->target_ptr, this->m_idx);
633     if (summon_named_creature(this->target_ptr, 0, dummy_y, dummy_x, new_unique_idx, mode)) {
634         msg_print(mes);
635     }
636 }