OSDN Git Service

[Fix] #37359 アーティファクト生成時、殺戮修正以外は極端にベースより性能が落ちないように修正。 / Fix extreme deterioration...
[hengband/hengband.git] / src / spells3.c
1 /*!
2  * @file spells3.c
3  * @brief 魔法効果の実装/ Spell code (part 3)
4  * @date 2014/07/26
5  * @author
6  * <pre>
7  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
8  * This software may be copied and distributed for educational, research,
9  * and not for profit purposes provided that this copyright and statement
10  * are included in all such copies.  Other copyrights may also apply.
11  * </pre>
12  */
13
14 #include "angband.h"
15 #include "object-hook.h"
16 #include "melee.h"
17 #include "player-status.h"
18
19 /*! テレポート先探索の試行数 / Maximum number of tries for teleporting */
20 #define MAX_TRIES 100
21
22
23 /*!
24  * @brief モンスターのテレポートアウェイ処理 /
25  * Teleport a monster, normally up to "dis" grids away.
26  * @param m_idx モンスターID
27  * @param dis テレポート距離
28  * @param mode オプション
29  * @return テレポートが実際に行われたらtrue
30  * @details
31  * Attempt to move the monster at least "dis/2" grids away.
32  * But allow variation to prevent infinite loops.
33  */
34 bool teleport_away(MONSTER_IDX m_idx, POSITION dis, BIT_FLAGS mode)
35 {
36         POSITION oy, ox, d, i, min;
37         int tries = 0;
38         POSITION ny = 0, nx = 0;
39
40         bool look = TRUE;
41
42         monster_type *m_ptr = &m_list[m_idx];
43
44         /* Paranoia */
45         if (!m_ptr->r_idx) return (FALSE);
46
47         /* Save the old location */
48         oy = m_ptr->fy;
49         ox = m_ptr->fx;
50
51         /* Minimum distance */
52         min = dis / 2;
53
54         if ((mode & TELEPORT_DEC_VALOUR) &&
55             (((p_ptr->chp * 10) / p_ptr->mhp) > 5) &&
56                 (4+randint1(5) < ((p_ptr->chp * 10) / p_ptr->mhp)))
57         {
58                 chg_virtue(V_VALOUR, -1);
59         }
60
61         /* Look until done */
62         while (look)
63         {
64                 tries++;
65
66                 /* Verify max distance */
67                 if (dis > 200) dis = 200;
68
69                 /* Try several locations */
70                 for (i = 0; i < 500; i++)
71                 {
72                         /* Pick a (possibly illegal) location */
73                         while (1)
74                         {
75                                 ny = rand_spread(oy, dis);
76                                 nx = rand_spread(ox, dis);
77                                 d = distance(oy, ox, ny, nx);
78                                 if ((d >= min) && (d <= dis)) break;
79                         }
80
81                         /* Ignore illegal locations */
82                         if (!in_bounds(ny, nx)) continue;
83
84                         if (!cave_monster_teleportable_bold(m_idx, ny, nx, mode)) continue;
85
86                         /* No teleporting into vaults and such */
87                         if (!(p_ptr->inside_quest || p_ptr->inside_arena))
88                                 if (cave[ny][nx].info & CAVE_ICKY) continue;
89
90                         /* This grid looks good */
91                         look = FALSE;
92
93                         /* Stop looking */
94                         break;
95                 }
96
97                 /* Increase the maximum distance */
98                 dis = dis * 2;
99
100                 /* Decrease the minimum distance */
101                 min = min / 2;
102
103                 /* Stop after MAX_TRIES tries */
104                 if (tries > MAX_TRIES) return (FALSE);
105         }
106
107         sound(SOUND_TPOTHER);
108
109         /* Update the old location */
110         cave[oy][ox].m_idx = 0;
111
112         /* Update the new location */
113         cave[ny][nx].m_idx = m_idx;
114
115         /* Move the monster */
116         m_ptr->fy = ny;
117         m_ptr->fx = nx;
118
119         /* Forget the counter target */
120         reset_target(m_ptr);
121
122         update_monster(m_idx, TRUE);
123         lite_spot(oy, ox);
124         lite_spot(ny, nx);
125
126         if (r_info[m_ptr->r_idx].flags7 & (RF7_LITE_MASK | RF7_DARK_MASK))
127                 p_ptr->update |= (PU_MON_LITE);
128
129         return (TRUE);
130 }
131
132
133 /*!
134  * @brief モンスターを指定された座標付近にテレポートする /
135  * Teleport monster next to a grid near the given location
136  * @param m_idx モンスターID
137  * @param ty 目安Y座標
138  * @param tx 目安X座標
139  * @param power テレポート成功確率
140  * @param mode オプション
141  * @return なし
142  */
143 void teleport_monster_to(MONSTER_IDX m_idx, POSITION ty, POSITION tx, int power, BIT_FLAGS mode)
144 {
145         POSITION ny, nx, oy, ox;
146         int d, i, min;
147         int attempts = 500;
148         POSITION dis = 2;
149         bool look = TRUE;
150         monster_type *m_ptr = &m_list[m_idx];
151
152         /* Paranoia */
153         if(!m_ptr->r_idx) return;
154
155         /* "Skill" test */
156         if(randint1(100) > power) return;
157
158         ny = m_ptr->fy;
159         nx = m_ptr->fx;
160
161         /* Save the old location */
162         oy = m_ptr->fy;
163         ox = m_ptr->fx;
164
165         /* Minimum distance */
166         min = dis / 2;
167
168         /* Look until done */
169         while (look && --attempts)
170         {
171                 /* Verify max distance */
172                 if (dis > 200) dis = 200;
173
174                 /* Try several locations */
175                 for (i = 0; i < 500; i++)
176                 {
177                         /* Pick a (possibly illegal) location */
178                         while (1)
179                         {
180                                 ny = rand_spread(ty, dis);
181                                 nx = rand_spread(tx, dis);
182                                 d = distance(ty, tx, ny, nx);
183                                 if ((d >= min) && (d <= dis)) break;
184                         }
185
186                         /* Ignore illegal locations */
187                         if (!in_bounds(ny, nx)) continue;
188
189                         if (!cave_monster_teleportable_bold(m_idx, ny, nx, mode)) continue;
190
191                         /* No teleporting into vaults and such */
192                         /* if (cave[ny][nx].info & (CAVE_ICKY)) continue; */
193
194                         /* This grid looks good */
195                         look = FALSE;
196
197                         /* Stop looking */
198                         break;
199                 }
200
201                 /* Increase the maximum distance */
202                 dis = dis * 2;
203
204                 /* Decrease the minimum distance */
205                 min = min / 2;
206         }
207
208         if (attempts < 1) return;
209
210         sound(SOUND_TPOTHER);
211
212         /* Update the old location */
213         cave[oy][ox].m_idx = 0;
214
215         /* Update the new location */
216         cave[ny][nx].m_idx = m_idx;
217
218         /* Move the monster */
219         m_ptr->fy = ny;
220         m_ptr->fx = nx;
221
222         update_monster(m_idx, TRUE);
223         lite_spot(oy, ox);
224         lite_spot(ny, nx);
225
226         if (r_info[m_ptr->r_idx].flags7 & (RF7_LITE_MASK | RF7_DARK_MASK))
227                 p_ptr->update |= (PU_MON_LITE);
228 }
229
230 /*!
231  * @brief プレイヤーのテレポート先選定と移動処理 /
232  * Teleport the player to a location up to "dis" grids away.
233  * @param dis 基本移動距離
234  * @param mode オプション
235  * @return 実際にテレポート処理が行われたらtrue
236  * @details
237  * <pre>
238  * If no such spaces are readily available, the distance may increase.
239  * Try very hard to move the player at least a quarter that distance.
240  *
241  * There was a nasty tendency for a long time; which was causing the
242  * player to "bounce" between two or three different spots because
243  * these are the only spots that are "far enough" way to satisfy the
244  * algorithm.
245  *
246  * But this tendency is now removed; in the new algorithm, a list of
247  * candidates is selected first, which includes at least 50% of all
248  * floor grids within the distance, and any single grid in this list
249  * of candidates has equal possibility to be choosen as a destination.
250  * </pre>
251  */
252
253 bool teleport_player_aux(POSITION dis, BIT_FLAGS mode)
254 {
255         int candidates_at[MAX_TELEPORT_DISTANCE + 1];
256         int total_candidates, cur_candidates;
257         POSITION y = 0, x = 0;
258         int min, pick, i;
259
260         int left = MAX(1, p_ptr->x - dis);
261         int right = MIN(cur_wid - 2, p_ptr->x + dis);
262         int top = MAX(1, p_ptr->y - dis);
263         int bottom = MIN(cur_hgt - 2, p_ptr->y + dis);
264
265         if (p_ptr->wild_mode) return FALSE;
266
267         if (p_ptr->anti_tele && !(mode & TELEPORT_NONMAGICAL))
268         {
269                 msg_print(_("不思議な力がテレポートを防いだ!", "A mysterious force prevents you from teleporting!"));
270                 return FALSE;
271         }
272
273         /* Initialize counters */
274         total_candidates = 0;
275         for (i = 0; i <= MAX_TELEPORT_DISTANCE; i++)
276                 candidates_at[i] = 0;
277
278         /* Limit the distance */
279         if (dis > MAX_TELEPORT_DISTANCE) dis = MAX_TELEPORT_DISTANCE;
280
281         /* Search valid locations */
282         for (y = top; y <= bottom; y++)
283         {
284                 for (x = left; x <= right; x++)
285                 {
286                         int d;
287
288                         /* Skip illegal locations */
289                         if (!cave_player_teleportable_bold(y, x, mode)) continue;
290
291                         /* Calculate distance */
292                         d = distance(p_ptr->y, p_ptr->x, y, x);
293
294                         /* Skip too far locations */
295                         if (d > dis) continue;
296
297                         /* Count the total number of candidates */
298                         total_candidates++;
299
300                         /* Count the number of candidates in this circumference */
301                         candidates_at[d]++;
302                 }
303         }
304
305         /* No valid location! */
306         if (0 == total_candidates) return FALSE;
307
308         /* Fix the minimum distance */
309         for (cur_candidates = 0, min = dis; min >= 0; min--)
310         {
311                 cur_candidates += candidates_at[min];
312
313                 /* 50% of all candidates will have an equal chance to be choosen. */
314                 if (cur_candidates && (cur_candidates >= total_candidates / 2)) break;
315         }
316
317         /* Pick up a single location randomly */
318         pick = randint1(cur_candidates);
319
320         /* Search again the choosen location */
321         for (y = top; y <= bottom; y++)
322         {
323                 for (x = left; x <= right; x++)
324                 {
325                         int d;
326
327                         /* Skip illegal locations */
328                         if (!cave_player_teleportable_bold(y, x, mode)) continue;
329
330                         /* Calculate distance */
331                         d = distance(p_ptr->y, p_ptr->x, y, x);
332
333                         /* Skip too far locations */
334                         if (d > dis) continue;
335
336                         /* Skip too close locations */
337                         if (d < min) continue;
338
339                         /* This grid was picked up? */
340                         pick--;
341                         if (!pick) break;
342                 }
343
344                 /* Exit the loop */
345                 if (!pick) break;
346         }
347
348         if (player_bold(y, x)) return FALSE;
349
350         sound(SOUND_TELEPORT);
351
352 #ifdef JP
353         if ((p_ptr->pseikaku == SEIKAKU_COMBAT) || (inventory[INVEN_BOW].name1 == ART_CRIMSON))
354                 msg_format("『こっちだぁ、%s』", p_ptr->name);
355 #endif
356
357         /* Move the player */
358         (void)move_player_effect(y, x, MPE_FORGET_FLOW | MPE_HANDLE_STUFF | MPE_DONT_PICKUP);
359
360         return TRUE;
361 }
362
363 /*!
364  * @brief プレイヤーのテレポート処理メインルーチン
365  * @param dis 基本移動距離
366  * @param mode オプション
367  * @return なし
368  */
369 void teleport_player(POSITION dis, BIT_FLAGS mode)
370 {
371         POSITION yy, xx;
372
373         /* Save the old location */
374         POSITION oy = p_ptr->y;
375         POSITION ox = p_ptr->x;
376
377         if (!teleport_player_aux(dis, mode)) return;
378
379         /* Monsters with teleport ability may follow the player */
380         for (xx = -1; xx < 2; xx++)
381         {
382                 for (yy = -1; yy < 2; yy++)
383                 {
384                         MONSTER_IDX tmp_m_idx = cave[oy+yy][ox+xx].m_idx;
385
386                         /* A monster except your mount may follow */
387                         if (tmp_m_idx && (p_ptr->riding != tmp_m_idx))
388                         {
389                                 monster_type *m_ptr = &m_list[tmp_m_idx];
390                                 monster_race *r_ptr = &r_info[m_ptr->r_idx];
391
392                                 /*
393                                  * The latter limitation is to avoid
394                                  * totally unkillable suckers...
395                                  */
396                                 if ((r_ptr->a_ability_flags2 & RF6_TPORT) &&
397                                     !(r_ptr->flagsr & RFR_RES_TELE))
398                                 {
399                                         if (!MON_CSLEEP(m_ptr)) teleport_monster_to(tmp_m_idx, p_ptr->y, p_ptr->x, r_ptr->level, 0L);
400                                 }
401                         }
402                 }
403         }
404 }
405
406
407 /*!
408  * @brief プレイヤーのテレポートアウェイ処理 /
409  * @param m_idx アウェイを試みたプレイヤーID
410  * @param dis テレポート距離
411  * @return なし
412  */
413 void teleport_player_away(MONSTER_IDX m_idx, POSITION dis)
414 {
415         POSITION yy, xx;
416
417         /* Save the old location */
418         POSITION oy = p_ptr->y;
419         POSITION ox = p_ptr->x;
420
421         if (!teleport_player_aux(dis, TELEPORT_PASSIVE)) return;
422
423         /* Monsters with teleport ability may follow the player */
424         for (xx = -1; xx < 2; xx++)
425         {
426                 for (yy = -1; yy < 2; yy++)
427                 {
428                         IDX tmp_m_idx = cave[oy+yy][ox+xx].m_idx;
429
430                         /* A monster except your mount or caster may follow */
431                         if (tmp_m_idx && (p_ptr->riding != tmp_m_idx) && (m_idx != tmp_m_idx))
432                         {
433                                 monster_type *m_ptr = &m_list[tmp_m_idx];
434                                 monster_race *r_ptr = &r_info[m_ptr->r_idx];
435
436                                 /*
437                                  * The latter limitation is to avoid
438                                  * totally unkillable suckers...
439                                  */
440                                 if ((r_ptr->a_ability_flags2 & RF6_TPORT) &&
441                                     !(r_ptr->flagsr & RFR_RES_TELE))
442                                 {
443                                         if (!MON_CSLEEP(m_ptr)) teleport_monster_to(tmp_m_idx, p_ptr->y, p_ptr->x, r_ptr->level, 0L);
444                                 }
445                         }
446                 }
447         }
448 }
449
450
451 /*!
452  * @brief プレイヤーを指定位置近辺にテレポートさせる
453  * Teleport player to a grid near the given location
454  * @param ny 目標Y座標
455  * @param nx 目標X座標
456  * @param mode オプションフラグ
457  * @return なし
458  * @details
459  * <pre>
460  * This function is slightly obsessive about correctness.
461  * This function allows teleporting into vaults (!)
462  * </pre>
463  */
464 void teleport_player_to(POSITION ny, POSITION nx, BIT_FLAGS mode)
465 {
466         POSITION y, x;
467         POSITION dis = 0, ctr = 0;
468
469         if (p_ptr->anti_tele && !(mode & TELEPORT_NONMAGICAL))
470         {
471                 msg_print(_("不思議な力がテレポートを防いだ!", "A mysterious force prevents you from teleporting!"));
472                 return;
473         }
474
475         /* Find a usable location */
476         while (1)
477         {
478                 /* Pick a nearby legal location */
479                 while (1)
480                 {
481                         y = (POSITION)rand_spread(ny, dis);
482                         x = (POSITION)rand_spread(nx, dis);
483                         if (in_bounds(y, x)) break;
484                 }
485
486                 /* Accept any grid when wizard mode */
487                 if (p_ptr->wizard && !(mode & TELEPORT_PASSIVE) && (!cave[y][x].m_idx || (cave[y][x].m_idx == p_ptr->riding))) break;
488
489                 /* Accept teleportable floor grids */
490                 if (cave_player_teleportable_bold(y, x, mode)) break;
491
492                 /* Occasionally advance the distance */
493                 if (++ctr > (4 * dis * dis + 4 * dis + 1))
494                 {
495                         ctr = 0;
496                         dis++;
497                 }
498         }
499
500         sound(SOUND_TELEPORT);
501
502         /* Move the player */
503         (void)move_player_effect(y, x, MPE_FORGET_FLOW | MPE_HANDLE_STUFF | MPE_DONT_PICKUP);
504 }
505
506
507 void teleport_away_followable(MONSTER_IDX m_idx)
508 {
509         monster_type *m_ptr = &m_list[m_idx];
510         POSITION oldfy = m_ptr->fy;
511         POSITION oldfx = m_ptr->fx;
512         bool old_ml = m_ptr->ml;
513         POSITION old_cdis = m_ptr->cdis;
514
515         teleport_away(m_idx, MAX_SIGHT * 2 + 5, 0L);
516
517         if (old_ml && (old_cdis <= MAX_SIGHT) && !world_monster && !p_ptr->inside_battle && los(p_ptr->y, p_ptr->x, oldfy, oldfx))
518         {
519                 bool follow = FALSE;
520
521                 if ((p_ptr->muta1 & MUT1_VTELEPORT) || (p_ptr->pclass == CLASS_IMITATOR)) follow = TRUE;
522                 else
523                 {
524                         BIT_FLAGS flgs[TR_FLAG_SIZE];
525                         object_type *o_ptr;
526                         INVENTORY_IDX i;
527
528                         for (i = INVEN_RARM; i < INVEN_TOTAL; i++)
529                         {
530                                 o_ptr = &inventory[i];
531                                 if (o_ptr->k_idx && !object_is_cursed(o_ptr))
532                                 {
533                                         object_flags(o_ptr, flgs);
534                                         if (have_flag(flgs, TR_TELEPORT))
535                                         {
536                                                 follow = TRUE;
537                                                 break;
538                                         }
539                                 }
540                         }
541                 }
542
543                 if (follow)
544                 {
545                         if (get_check_strict(_("ついていきますか?", "Do you follow it? "), CHECK_OKAY_CANCEL))
546                         {
547                                 if (one_in_(3))
548                                 {
549                                         teleport_player(200, TELEPORT_PASSIVE);
550                                         msg_print(_("失敗!", "Failed!"));
551                                 }
552                                 else teleport_player_to(m_ptr->fy, m_ptr->fx, 0L);
553                                 p_ptr->energy_need += ENERGY_NEED();
554                         }
555                 }
556         }
557 }
558
559
560 /*!
561  * @brief プレイヤー及びモンスターをレベルテレポートさせる /
562  * Teleport the player one level up or down (random when legal)
563  * @param m_idx テレポートの対象となるモンスターID(0ならばプレイヤー) / If m_idx <= 0, target is player.
564  * @return なし
565  */
566 void teleport_level(MONSTER_IDX m_idx)
567 {
568         bool         go_up;
569         GAME_TEXT m_name[160];
570         bool         see_m = TRUE;
571
572         if (m_idx <= 0) /* To player */
573         {
574                 strcpy(m_name, _("あなた", "you"));
575         }
576         else /* To monster */
577         {
578                 monster_type *m_ptr = &m_list[m_idx];
579
580                 /* Get the monster name (or "it") */
581                 monster_desc(m_name, m_ptr, 0);
582
583                 see_m = is_seen(m_ptr);
584         }
585
586         /* No effect in some case */
587         if (TELE_LEVEL_IS_INEFF(m_idx))
588         {
589                 if (see_m) msg_print(_("効果がなかった。", "There is no effect."));
590                 return;
591         }
592
593         if ((m_idx <= 0) && p_ptr->anti_tele) /* To player */
594         {
595                 msg_print(_("不思議な力がテレポートを防いだ!", "A mysterious force prevents you from teleporting!"));
596                 return;
597         }
598
599         /* Choose up or down */
600         if (randint0(100) < 50) go_up = TRUE;
601         else go_up = FALSE;
602
603         if ((m_idx <= 0) && p_ptr->wizard)
604         {
605                 if (get_check("Force to go up? ")) go_up = TRUE;
606                 else if (get_check("Force to go down? ")) go_up = FALSE;
607         }
608
609         /* Down only */ 
610         if ((ironman_downward && (m_idx <= 0)) || (dun_level <= d_info[dungeon_type].mindepth))
611         {
612 #ifdef JP
613                 if (see_m) msg_format("%^sは床を突き破って沈んでいく。", m_name);
614 #else
615                 if (see_m) msg_format("%^s sink%s through the floor.", m_name, (m_idx <= 0) ? "" : "s");
616 #endif
617                 if (m_idx <= 0) /* To player */
618                 {
619                         if (!dun_level)
620                         {
621                                 dungeon_type = ironman_downward ? DUNGEON_ANGBAND : p_ptr->recall_dungeon;
622                                 p_ptr->oldpy = p_ptr->y;
623                                 p_ptr->oldpx = p_ptr->x;
624                         }
625
626                         if (record_stair) do_cmd_write_nikki(NIKKI_TELE_LEV, 1, NULL);
627
628                         if (autosave_l) do_cmd_save_game(TRUE);
629
630                         if (!dun_level)
631                         {
632                                 dun_level = d_info[dungeon_type].mindepth;
633                                 prepare_change_floor_mode(CFM_RAND_PLACE);
634                         }
635                         else
636                         {
637                                 prepare_change_floor_mode(CFM_SAVE_FLOORS | CFM_DOWN | CFM_RAND_PLACE | CFM_RAND_CONNECT);
638                         }
639
640                         /* Leaving */
641                         p_ptr->leaving = TRUE;
642                 }
643         }
644
645         /* Up only */
646         else if (quest_number(dun_level) || (dun_level >= d_info[dungeon_type].maxdepth))
647         {
648 #ifdef JP
649                 if (see_m) msg_format("%^sは天井を突き破って宙へ浮いていく。", m_name);
650 #else
651                 if (see_m) msg_format("%^s rise%s up through the ceiling.", m_name, (m_idx <= 0) ? "" : "s");
652 #endif
653
654
655                 if (m_idx <= 0) /* To player */
656                 {
657                         if (record_stair) do_cmd_write_nikki(NIKKI_TELE_LEV, -1, NULL);
658
659                         if (autosave_l) do_cmd_save_game(TRUE);
660
661                         prepare_change_floor_mode(CFM_SAVE_FLOORS | CFM_UP | CFM_RAND_PLACE | CFM_RAND_CONNECT);
662
663                         leave_quest_check();
664
665                         /* Leaving */
666                         p_ptr->inside_quest = 0;
667                         p_ptr->leaving = TRUE;
668                 }
669         }
670         else if (go_up)
671         {
672 #ifdef JP
673                 if (see_m) msg_format("%^sは天井を突き破って宙へ浮いていく。", m_name);
674 #else
675                 if (see_m) msg_format("%^s rise%s up through the ceiling.", m_name, (m_idx <= 0) ? "" : "s");
676 #endif
677
678
679                 if (m_idx <= 0) /* To player */
680                 {
681                         if (record_stair) do_cmd_write_nikki(NIKKI_TELE_LEV, -1, NULL);
682
683                         if (autosave_l) do_cmd_save_game(TRUE);
684
685                         prepare_change_floor_mode(CFM_SAVE_FLOORS | CFM_UP | CFM_RAND_PLACE | CFM_RAND_CONNECT);
686
687                         /* Leaving */
688                         p_ptr->leaving = TRUE;
689                 }
690         }
691         else
692         {
693 #ifdef JP
694                 if (see_m) msg_format("%^sは床を突き破って沈んでいく。", m_name);
695 #else
696                 if (see_m) msg_format("%^s sink%s through the floor.", m_name, (m_idx <= 0) ? "" : "s");
697 #endif
698
699                 if (m_idx <= 0) /* To player */
700                 {
701                         /* Never reach this code on the surface */
702                         /* if (!dun_level) dungeon_type = p_ptr->recall_dungeon; */
703
704                         if (record_stair) do_cmd_write_nikki(NIKKI_TELE_LEV, 1, NULL);
705
706                         if (autosave_l) do_cmd_save_game(TRUE);
707
708                         prepare_change_floor_mode(CFM_SAVE_FLOORS | CFM_DOWN | CFM_RAND_PLACE | CFM_RAND_CONNECT);
709
710                         /* Leaving */
711                         p_ptr->leaving = TRUE;
712                 }
713         }
714
715         /* Monster level teleportation is simple deleting now */
716         if (m_idx > 0)
717         {
718                 monster_type *m_ptr = &m_list[m_idx];
719
720                 /* Check for quest completion */
721                 check_quest_completion(m_ptr);
722
723                 if (record_named_pet && is_pet(m_ptr) && m_ptr->nickname)
724                 {
725                         char m2_name[MAX_NLEN];
726
727                         monster_desc(m2_name, m_ptr, MD_INDEF_VISIBLE);
728                         do_cmd_write_nikki(NIKKI_NAMED_PET, RECORD_NAMED_PET_TELE_LEVEL, m2_name);
729                 }
730
731                 delete_monster_idx(m_idx);
732         }
733
734         sound(SOUND_TPLEVEL);
735 }
736
737
738 /*!
739  * @brief これまでに入ったダンジョンの一覧を表示し、選択させる。
740  * @param note ダンジョンに施す処理記述
741  * @param y コンソールY座標
742  * @param x コンソールX座標
743  * @return 選択されたダンジョンID
744  */
745 DUNGEON_IDX choose_dungeon(cptr note, POSITION y, POSITION x)
746 {
747         DUNGEON_IDX select_dungeon;
748         DUNGEON_IDX i;
749         int num = 0;
750         DUNGEON_IDX *dun;
751
752         /* Hack -- No need to choose dungeon in some case */
753         if (lite_town || vanilla_town || ironman_downward)
754         {
755                 if (max_dlv[DUNGEON_ANGBAND]) return DUNGEON_ANGBAND;
756                 else
757                 {
758                         msg_format(_("まだ%sに入ったことはない。", "You haven't entered %s yet."), d_name + d_info[DUNGEON_ANGBAND].name);
759                         msg_print(NULL);
760                         return 0;
761                 }
762         }
763
764         /* Allocate the "dun" array */
765         C_MAKE(dun, max_d_idx, s16b);
766
767         screen_save();
768         for(i = 1; i < max_d_idx; i++)
769         {
770                 char buf[80];
771                 bool seiha = FALSE;
772
773                 if (!d_info[i].maxdepth) continue;
774                 if (!max_dlv[i]) continue;
775                 if (d_info[i].final_guardian)
776                 {
777                         if (!r_info[d_info[i].final_guardian].max_num) seiha = TRUE;
778                 }
779                 else if (max_dlv[i] == d_info[i].maxdepth) seiha = TRUE;
780
781                 sprintf(buf,_("      %c) %c%-12s : 最大 %d 階", "      %c) %c%-16s : Max level %d"), 
782                                         'a'+num, seiha ? '!' : ' ', d_name + d_info[i].name, (int)max_dlv[i]);
783                 prt(buf, y + num, x);
784                 dun[num++] = i;
785         }
786
787         if (!num)
788         {
789                 prt(_("      選べるダンジョンがない。", "      No dungeon is available."), y, x);
790         }
791
792         prt(format(_("どのダンジョン%sしますか:", "Which dungeon do you %s?: "), note), 0, 0);
793         while(1)
794         {
795                 i = inkey();
796                 if ((i == ESCAPE) || !num)
797                 {
798                         /* Free the "dun" array */
799                         C_KILL(dun, max_d_idx, s16b);
800
801                         screen_load();
802                         return 0;
803                 }
804                 if (i >= 'a' && i <('a'+num))
805                 {
806                         select_dungeon = dun[i-'a'];
807                         break;
808                 }
809                 else bell();
810         }
811         screen_load();
812
813         /* Free the "dun" array */
814         C_KILL(dun, max_d_idx, s16b);
815
816         return select_dungeon;
817 }
818
819
820 /*!
821  * @brief プレイヤーの帰還発動及び中止処理 /
822  * Recall the player to town or dungeon
823  * @param turns 発動までのターン数
824  * @return 常にTRUEを返す
825  */
826 bool recall_player(TIME_EFFECT turns)
827 {
828         /*
829          * TODO: Recall the player to the last
830          * visited town when in the wilderness
831          */
832
833         /* Ironman option */
834         if (p_ptr->inside_arena || ironman_downward)
835         {
836                 msg_print(_("何も起こらなかった。", "Nothing happens."));
837                 return TRUE;
838         }
839
840         if (dun_level && (max_dlv[dungeon_type] > dun_level) && !p_ptr->inside_quest && !p_ptr->word_recall)
841         {
842                 if (get_check(_("ここは最深到達階より浅い階です。この階に戻って来ますか? ", "Reset recall depth? ")))
843                 {
844                         max_dlv[dungeon_type] = dun_level;
845                         if (record_maxdepth)
846                                 do_cmd_write_nikki(NIKKI_TRUMP, dungeon_type, _("帰還のときに", "when recall from dungeon"));
847                 }
848
849         }
850         if (!p_ptr->word_recall)
851         {
852                 if (!dun_level)
853                 {
854                         DUNGEON_IDX select_dungeon;
855                         select_dungeon = choose_dungeon(_("に帰還", "recall"), 2, 14);
856                         if (!select_dungeon) return FALSE;
857                         p_ptr->recall_dungeon = select_dungeon;
858                 }
859                 p_ptr->word_recall = turns;
860                 msg_print(_("回りの大気が張りつめてきた...", "The air about you becomes charged..."));
861                 p_ptr->redraw |= (PR_STATUS);
862         }
863         else
864         {
865                 p_ptr->word_recall = 0;
866                 msg_print(_("張りつめた大気が流れ去った...", "A tension leaves the air around you..."));
867                 p_ptr->redraw |= (PR_STATUS);
868         }
869         return TRUE;
870 }
871
872 /*!
873  * @brief 帰還用メインルーチン
874  * @return 常にTRUEを返す
875  */
876 bool word_of_recall(void)
877 {
878         return(recall_player(randint0(21) + 15));
879 }
880
881 /*!
882  * @brief フロア・リセット処理
883  * @return リセット処理が実際に行われたらTRUEを返す
884  */
885 bool reset_recall(void)
886 {
887         int select_dungeon, dummy = 0;
888         char ppp[80];
889         char tmp_val[160];
890
891         select_dungeon = choose_dungeon(_("をセット", "reset"), 2, 14);
892
893         /* Ironman option */
894         if (ironman_downward)
895         {
896                 msg_print(_("何も起こらなかった。", "Nothing happens."));
897                 return TRUE;
898         }
899
900         if (!select_dungeon) return FALSE;
901         /* Prompt */
902         sprintf(ppp, _("何階にセットしますか (%d-%d):", "Reset to which level (%d-%d): "),
903                 (int)d_info[select_dungeon].mindepth, (int)max_dlv[select_dungeon]);
904
905         /* Default */
906         sprintf(tmp_val, "%d", (int)MAX(dun_level, 1));
907
908         /* Ask for a level */
909         if (get_string(ppp, tmp_val, 10))
910         {
911                 /* Extract request */
912                 dummy = atoi(tmp_val);
913
914                 /* Paranoia */
915                 if (dummy < 1) dummy = 1;
916
917                 /* Paranoia */
918                 if (dummy > max_dlv[select_dungeon]) dummy = max_dlv[select_dungeon];
919                 if (dummy < d_info[select_dungeon].mindepth) dummy = d_info[select_dungeon].mindepth;
920
921                 max_dlv[select_dungeon] = dummy;
922
923                 if (record_maxdepth)
924                         do_cmd_write_nikki(NIKKI_TRUMP, select_dungeon, _("フロア・リセットで", "using a scroll of reset recall"));
925                                         /* Accept request */
926 #ifdef JP
927 msg_format("%sの帰還レベルを %d 階にセット。", d_name+d_info[select_dungeon].name, dummy, dummy * 50);
928 #else
929                 msg_format("Recall depth set to level %d (%d').", dummy, dummy * 50);
930 #endif
931
932         }
933         else
934         {
935                 return FALSE;
936         }
937         return TRUE;
938 }
939
940
941 /*!
942  * @brief プレイヤーの装備劣化処理 /
943  * Apply disenchantment to the player's stuff
944  * @param mode 最下位ビットが1ならば劣化処理が若干低減される
945  * @return 劣化処理に関するメッセージが発せられた場合はTRUEを返す /
946  * Return "TRUE" if the player notices anything
947  */
948 bool apply_disenchant(BIT_FLAGS mode)
949 {
950         int             t = 0;
951         object_type     *o_ptr;
952         GAME_TEXT o_name[MAX_NLEN];
953         int to_h, to_d, to_a, pval;
954
955         /* Pick a random slot */
956         switch (randint1(8))
957         {
958                 case 1: t = INVEN_RARM; break;
959                 case 2: t = INVEN_LARM; break;
960                 case 3: t = INVEN_BOW; break;
961                 case 4: t = INVEN_BODY; break;
962                 case 5: t = INVEN_OUTER; break;
963                 case 6: t = INVEN_HEAD; break;
964                 case 7: t = INVEN_HANDS; break;
965                 case 8: t = INVEN_FEET; break;
966         }
967
968         o_ptr = &inventory[t];
969
970         /* No item, nothing happens */
971         if (!o_ptr->k_idx) return (FALSE);
972
973         /* Disenchant equipments only -- No disenchant on monster ball */
974         if (!object_is_weapon_armour_ammo(o_ptr))
975                 return FALSE;
976
977         /* Nothing to disenchant */
978         if ((o_ptr->to_h <= 0) && (o_ptr->to_d <= 0) && (o_ptr->to_a <= 0) && (o_ptr->pval <= 1))
979         {
980                 /* Nothing to notice */
981                 return (FALSE);
982         }
983
984
985         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
986
987
988         /* Artifacts have 71% chance to resist */
989         if (object_is_artifact(o_ptr) && (randint0(100) < 71))
990         {
991 #ifdef JP
992 msg_format("%s(%c)は劣化を跳ね返した!",o_name, index_to_label(t) );
993 #else
994                 msg_format("Your %s (%c) resist%s disenchantment!",
995                            o_name, index_to_label(t),
996                            ((o_ptr->number != 1) ? "" : "s"));
997 #endif
998
999
1000                 return (TRUE);
1001         }
1002
1003
1004         /* Memorize old value */
1005         to_h = o_ptr->to_h;
1006         to_d = o_ptr->to_d;
1007         to_a = o_ptr->to_a;
1008         pval = o_ptr->pval;
1009
1010         /* Disenchant tohit */
1011         if (o_ptr->to_h > 0) o_ptr->to_h--;
1012         if ((o_ptr->to_h > 5) && (randint0(100) < 20)) o_ptr->to_h--;
1013
1014         /* Disenchant todam */
1015         if (o_ptr->to_d > 0) o_ptr->to_d--;
1016         if ((o_ptr->to_d > 5) && (randint0(100) < 20)) o_ptr->to_d--;
1017
1018         /* Disenchant toac */
1019         if (o_ptr->to_a > 0) o_ptr->to_a--;
1020         if ((o_ptr->to_a > 5) && (randint0(100) < 20)) o_ptr->to_a--;
1021
1022         /* Disenchant pval (occasionally) */
1023         /* Unless called from wild_magic() */
1024         if ((o_ptr->pval > 1) && one_in_(13) && !(mode & 0x01)) o_ptr->pval--;
1025
1026         if ((to_h != o_ptr->to_h) || (to_d != o_ptr->to_d) ||
1027             (to_a != o_ptr->to_a) || (pval != o_ptr->pval))
1028         {
1029 #ifdef JP
1030                 msg_format("%s(%c)は劣化してしまった!",
1031                            o_name, index_to_label(t) );
1032 #else
1033                 msg_format("Your %s (%c) %s disenchanted!",
1034                            o_name, index_to_label(t),
1035                            ((o_ptr->number != 1) ? "were" : "was"));
1036 #endif
1037
1038                 chg_virtue(V_HARMONY, 1);
1039                 chg_virtue(V_ENCHANT, -2);
1040
1041                 /* Recalculate bonuses */
1042                 p_ptr->update |= (PU_BONUS);
1043
1044                 p_ptr->window |= (PW_EQUIP | PW_PLAYER);
1045
1046                 calc_android_exp();
1047         }
1048
1049         return (TRUE);
1050 }
1051
1052 /*!
1053  * @brief プレイヤーの突然変異処理
1054  * @return なし
1055  */
1056 void mutate_player(void)
1057 {
1058         BASE_STATUS max1, cur1, max2, cur2;
1059         int ii, jj, i;
1060
1061         /* Pick a pair of stats */
1062         ii = randint0(6);
1063         for (jj = ii; jj == ii; jj = randint0(6)) /* loop */;
1064
1065         max1 = p_ptr->stat_max[ii];
1066         cur1 = p_ptr->stat_cur[ii];
1067         max2 = p_ptr->stat_max[jj];
1068         cur2 = p_ptr->stat_cur[jj];
1069
1070         p_ptr->stat_max[ii] = max2;
1071         p_ptr->stat_cur[ii] = cur2;
1072         p_ptr->stat_max[jj] = max1;
1073         p_ptr->stat_cur[jj] = cur1;
1074
1075         for (i=0;i<6;i++)
1076         {
1077                 if(p_ptr->stat_max[i] > p_ptr->stat_max_max[i]) p_ptr->stat_max[i] = p_ptr->stat_max_max[i];
1078                 if(p_ptr->stat_cur[i] > p_ptr->stat_max_max[i]) p_ptr->stat_cur[i] = p_ptr->stat_max_max[i];
1079         }
1080
1081         p_ptr->update |= (PU_BONUS);
1082 }
1083
1084
1085 /*!
1086  * @brief プレイヤーの因果混乱処理 / Apply Nexus
1087  * @param m_ptr 因果混乱をプレイヤーに与えたモンスターの情報参照ポインタ
1088  * @return なし
1089  */
1090 void apply_nexus(monster_type *m_ptr)
1091 {
1092         switch (randint1(7))
1093         {
1094                 case 1: case 2: case 3:
1095                 {
1096                         teleport_player(200, TELEPORT_PASSIVE);
1097                         break;
1098                 }
1099
1100                 case 4: case 5:
1101                 {
1102                         teleport_player_to(m_ptr->fy, m_ptr->fx, TELEPORT_PASSIVE);
1103                         break;
1104                 }
1105
1106                 case 6:
1107                 {
1108                         if (randint0(100) < p_ptr->skill_sav)
1109                         {
1110                                 msg_print(_("しかし効力を跳ね返した!", "You resist the effects!"));
1111                                 break;
1112                         }
1113
1114                         /* Teleport Level */
1115                         teleport_level(0);
1116                         break;
1117                 }
1118
1119                 case 7:
1120                 {
1121                         if (randint0(100) < p_ptr->skill_sav)
1122                         {
1123                                 msg_print(_("しかし効力を跳ね返した!", "You resist the effects!"));
1124                                 break;
1125                         }
1126
1127                         msg_print(_("体がねじれ始めた...", "Your body starts to scramble..."));
1128                         mutate_player();
1129                         break;
1130                 }
1131         }
1132 }
1133
1134
1135 /*!
1136  * @brief 寿命つき光源の燃素追加処理 /
1137  * Charge a lite (torch or latern)
1138  * @return なし
1139  */
1140 void phlogiston(void)
1141 {
1142         GAME_TURN max_flog = 0;
1143         object_type * o_ptr = &inventory[INVEN_LITE];
1144
1145         /* It's a lamp */
1146         if ((o_ptr->tval == TV_LITE) && (o_ptr->sval == SV_LITE_LANTERN))
1147         {
1148                 max_flog = FUEL_LAMP;
1149         }
1150
1151         /* It's a torch */
1152         else if ((o_ptr->tval == TV_LITE) && (o_ptr->sval == SV_LITE_TORCH))
1153         {
1154                 max_flog = FUEL_TORCH;
1155         }
1156
1157         /* No torch to refill */
1158         else
1159         {
1160                 msg_print(_("燃素を消費するアイテムを装備していません。", "You are not wielding anything which uses phlogiston."));
1161                 return;
1162         }
1163
1164         if (o_ptr->xtra4 >= max_flog)
1165         {
1166                 msg_print(_("このアイテムにはこれ以上燃素を補充できません。", "No more phlogiston can be put in this item."));
1167                 return;
1168         }
1169
1170         /* Refuel */
1171         o_ptr->xtra4 += (XTRA16)(max_flog / 2);
1172
1173         msg_print(_("照明用アイテムに燃素を補充した。", "You add phlogiston to your light item."));
1174
1175         if (o_ptr->xtra4 >= max_flog)
1176         {
1177                 o_ptr->xtra4 = (XTRA16)max_flog;
1178                 msg_print(_("照明用アイテムは満タンになった。", "Your light item is full."));
1179         }
1180
1181         /* Recalculate torch */
1182         p_ptr->update |= (PU_TORCH);
1183 }
1184
1185
1186 /*!
1187  * @brief 武器へのエゴ付加処理 /
1188  * Brand the current weapon
1189  * @param brand_type エゴ化ID(e_info.txtとは連動していない)
1190  * @return なし
1191  */
1192 void brand_weapon(int brand_type)
1193 {
1194         OBJECT_IDX item;
1195         object_type *o_ptr;
1196         cptr        q, s;
1197
1198
1199         /* Assume enchant weapon */
1200         item_tester_hook = object_allow_enchant_melee_weapon;
1201
1202         q = _("どの武器を強化しますか? ", "Enchant which weapon? ");
1203         s = _("強化できる武器がない。", "You have nothing to enchant.");
1204
1205         if (!get_item(&item, q, s, (USE_EQUIP | IGNORE_BOTHHAND_SLOT))) return;
1206
1207         /* Get the item (in the pack) */
1208         if (item >= 0)
1209         {
1210                 o_ptr = &inventory[item];
1211         }
1212
1213         /* Get the item (on the floor) */
1214         else
1215         {
1216                 o_ptr = &o_list[0 - item];
1217         }
1218
1219
1220         /* you can never modify artifacts / ego-items */
1221         /* you can never modify cursed items */
1222         /* TY: You _can_ modify broken items (if you're silly enough) */
1223         if (o_ptr->k_idx && !object_is_artifact(o_ptr) && !object_is_ego(o_ptr) &&
1224             !object_is_cursed(o_ptr) &&
1225             !((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI)) &&
1226             !((o_ptr->tval == TV_POLEARM) && (o_ptr->sval == SV_DEATH_SCYTHE)) &&
1227             !((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DIAMOND_EDGE)))
1228         {
1229                 cptr act = NULL;
1230
1231                 /* Let's get the name before it is changed... */
1232                 GAME_TEXT o_name[MAX_NLEN];
1233                 object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
1234
1235                 switch (brand_type)
1236                 {
1237                 case 17:
1238                         if (o_ptr->tval == TV_SWORD)
1239                         {
1240                                 act = _("は鋭さを増した!", "becomes very sharp!");
1241
1242                                 o_ptr->name2 = EGO_SHARPNESS;
1243                                 o_ptr->pval = (PARAMETER_VALUE)m_bonus(5, dun_level) + 1;
1244
1245                                 if ((o_ptr->sval == SV_HAYABUSA) && (o_ptr->pval > 2))
1246                                         o_ptr->pval = 2;
1247                         }
1248                         else
1249                         {
1250                                 act = _("は破壊力を増した!", "seems very powerful.");
1251                                 o_ptr->name2 = EGO_EARTHQUAKES;
1252                                 o_ptr->pval = (PARAMETER_VALUE)m_bonus(3, dun_level);
1253                         }
1254                         break;
1255                 case 16:
1256                         act = _("は人間の血を求めている!", "seems to be looking for humans!");
1257                         o_ptr->name2 = EGO_KILL_HUMAN;
1258                         break;
1259                 case 15:
1260                         act = _("は電撃に覆われた!", "covered with lightning!");
1261                         o_ptr->name2 = EGO_BRAND_ELEC;
1262                         break;
1263                 case 14:
1264                         act = _("は酸に覆われた!", "coated with acid!");
1265                         o_ptr->name2 = EGO_BRAND_ACID;
1266                         break;
1267                 case 13:
1268                         act = _("は邪悪なる怪物を求めている!", "seems to be looking for evil monsters!");
1269                         o_ptr->name2 = EGO_KILL_EVIL;
1270                         break;
1271                 case 12:
1272                         act = _("は異世界の住人の肉体を求めている!", "seems to be looking for demons!");
1273                         o_ptr->name2 = EGO_KILL_DEMON;
1274                         break;
1275                 case 11:
1276                         act = _("は屍を求めている!", "seems to be looking for undead!");
1277                         o_ptr->name2 = EGO_KILL_UNDEAD;
1278                         break;
1279                 case 10:
1280                         act = _("は動物の血を求めている!", "seems to be looking for animals!");
1281                         o_ptr->name2 = EGO_KILL_ANIMAL;
1282                         break;
1283                 case 9:
1284                         act = _("はドラゴンの血を求めている!", "seems to be looking for dragons!");
1285                         o_ptr->name2 = EGO_KILL_DRAGON;
1286                         break;
1287                 case 8:
1288                         act = _("はトロルの血を求めている!", "seems to be looking for troll!s");
1289                         o_ptr->name2 = EGO_KILL_TROLL;
1290                         break;
1291                 case 7:
1292                         act = _("はオークの血を求めている!", "seems to be looking for orcs!");
1293                         o_ptr->name2 = EGO_KILL_ORC;
1294                         break;
1295                 case 6:
1296                         act = _("は巨人の血を求めている!", "seems to be looking for giants!");
1297                         o_ptr->name2 = EGO_KILL_GIANT;
1298                         break;
1299                 case 5:
1300                         act = _("は非常に不安定になったようだ。", "seems very unstable now.");
1301                         o_ptr->name2 = EGO_TRUMP;
1302                         o_ptr->pval = randint1(2);
1303                         break;
1304                 case 4:
1305                         act = _("は血を求めている!", "thirsts for blood!");
1306                         o_ptr->name2 = EGO_VAMPIRIC;
1307                         break;
1308                 case 3:
1309                         act = _("は毒に覆われた。", "is coated with poison.");
1310                         o_ptr->name2 = EGO_BRAND_POIS;
1311                         break;
1312                 case 2:
1313                         act = _("は純ログルスに飲み込まれた。", "is engulfed in raw Logrus!");
1314                         o_ptr->name2 = EGO_CHAOTIC;
1315                         break;
1316                 case 1:
1317                         act = _("は炎のシールドに覆われた!", "is covered in a fiery shield!");
1318                         o_ptr->name2 = EGO_BRAND_FIRE;
1319                         break;
1320                 default:
1321                         act = _("は深く冷たいブルーに輝いた!", "glows deep, icy blue!");
1322                         o_ptr->name2 = EGO_BRAND_COLD;
1323                         break;
1324                 }
1325
1326                 msg_format(_("あなたの%s%s", "Your %s %s"), o_name, act);
1327                 enchant(o_ptr, randint0(3) + 4, ENCH_TOHIT | ENCH_TODAM);
1328
1329                 o_ptr->discount = 99;
1330                 chg_virtue(V_ENCHANT, 2);
1331         }
1332         else
1333         {
1334                 if (flush_failure) flush();
1335
1336                 msg_print(_("属性付加に失敗した。", "The Branding failed."));
1337                 chg_virtue(V_ENCHANT, -2);
1338         }
1339         calc_android_exp();
1340 }
1341
1342
1343 /*!
1344  * @brief 虚無招来によるフロア中の全壁除去処理 /
1345  * Vanish all walls in this floor
1346  * @return 実際に処理が反映された場合TRUE
1347  */
1348 static bool vanish_dungeon(void)
1349 {
1350         POSITION y, x;
1351         cave_type *c_ptr;
1352         feature_type *f_ptr;
1353         monster_type *m_ptr;
1354         GAME_TEXT m_name[MAX_NLEN];
1355
1356         /* Prevent vasishing of quest levels and town */
1357         if ((p_ptr->inside_quest && is_fixed_quest_idx(p_ptr->inside_quest)) || !dun_level)
1358         {
1359                 return FALSE;
1360         }
1361
1362         /* Scan all normal grids */
1363         for (y = 1; y < cur_hgt - 1; y++)
1364         {
1365                 for (x = 1; x < cur_wid - 1; x++)
1366                 {
1367                         c_ptr = &cave[y][x];
1368
1369                         /* Seeing true feature code (ignore mimic) */
1370                         f_ptr = &f_info[c_ptr->feat];
1371
1372                         /* Lose room and vault */
1373                         c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY);
1374
1375                         m_ptr = &m_list[c_ptr->m_idx];
1376
1377                         /* Awake monster */
1378                         if (c_ptr->m_idx && MON_CSLEEP(m_ptr))
1379                         {
1380                                 /* Reset sleep counter */
1381                                 (void)set_monster_csleep(c_ptr->m_idx, 0);
1382
1383                                 /* Notice the "waking up" */
1384                                 if (m_ptr->ml)
1385                                 {
1386                                         monster_desc(m_name, m_ptr, 0);
1387                                         msg_format(_("%^sが目を覚ました。", "%^s wakes up."), m_name);
1388                                 }
1389                         }
1390
1391                         /* Process all walls, doors and patterns */
1392                         if (have_flag(f_ptr->flags, FF_HURT_DISI)) cave_alter_feat(y, x, FF_HURT_DISI);
1393                 }
1394         }
1395
1396         /* Special boundary walls -- Top and bottom */
1397         for (x = 0; x < cur_wid; x++)
1398         {
1399                 c_ptr = &cave[0][x];
1400                 f_ptr = &f_info[c_ptr->mimic];
1401
1402                 /* Lose room and vault */
1403                 c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY);
1404
1405                 /* Set boundary mimic if needed */
1406                 if (c_ptr->mimic && have_flag(f_ptr->flags, FF_HURT_DISI))
1407                 {
1408                         c_ptr->mimic = feat_state(c_ptr->mimic, FF_HURT_DISI);
1409
1410                         /* Check for change to boring grid */
1411                         if (!have_flag(f_info[c_ptr->mimic].flags, FF_REMEMBER)) c_ptr->info &= ~(CAVE_MARK);
1412                 }
1413
1414                 c_ptr = &cave[cur_hgt - 1][x];
1415                 f_ptr = &f_info[c_ptr->mimic];
1416
1417                 /* Lose room and vault */
1418                 c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY);
1419
1420                 /* Set boundary mimic if needed */
1421                 if (c_ptr->mimic && have_flag(f_ptr->flags, FF_HURT_DISI))
1422                 {
1423                         c_ptr->mimic = feat_state(c_ptr->mimic, FF_HURT_DISI);
1424
1425                         /* Check for change to boring grid */
1426                         if (!have_flag(f_info[c_ptr->mimic].flags, FF_REMEMBER)) c_ptr->info &= ~(CAVE_MARK);
1427                 }
1428         }
1429
1430         /* Special boundary walls -- Left and right */
1431         for (y = 1; y < (cur_hgt - 1); y++)
1432         {
1433                 c_ptr = &cave[y][0];
1434                 f_ptr = &f_info[c_ptr->mimic];
1435
1436                 /* Lose room and vault */
1437                 c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY);
1438
1439                 /* Set boundary mimic if needed */
1440                 if (c_ptr->mimic && have_flag(f_ptr->flags, FF_HURT_DISI))
1441                 {
1442                         c_ptr->mimic = feat_state(c_ptr->mimic, FF_HURT_DISI);
1443
1444                         /* Check for change to boring grid */
1445                         if (!have_flag(f_info[c_ptr->mimic].flags, FF_REMEMBER)) c_ptr->info &= ~(CAVE_MARK);
1446                 }
1447
1448                 c_ptr = &cave[y][cur_wid - 1];
1449                 f_ptr = &f_info[c_ptr->mimic];
1450
1451                 /* Lose room and vault */
1452                 c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY);
1453
1454                 /* Set boundary mimic if needed */
1455                 if (c_ptr->mimic && have_flag(f_ptr->flags, FF_HURT_DISI))
1456                 {
1457                         c_ptr->mimic = feat_state(c_ptr->mimic, FF_HURT_DISI);
1458
1459                         /* Check for change to boring grid */
1460                         if (!have_flag(f_info[c_ptr->mimic].flags, FF_REMEMBER)) c_ptr->info &= ~(CAVE_MARK);
1461                 }
1462         }
1463
1464         /* Mega-Hack -- Forget the view and lite */
1465         p_ptr->update |= (PU_UN_VIEW | PU_UN_LITE | PU_VIEW | PU_LITE | PU_FLOW | PU_MON_LITE | PU_MONSTERS);
1466         p_ptr->redraw |= (PR_MAP);
1467         p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON);
1468
1469         return TRUE;
1470 }
1471
1472 /*!
1473  * @brief 虚無招来処理 /
1474  * @return なし
1475  */
1476 void call_the_(void)
1477 {
1478         int i;
1479         cave_type *c_ptr;
1480         bool do_call = TRUE;
1481
1482         for (i = 0; i < 9; i++)
1483         {
1484                 c_ptr = &cave[p_ptr->y + ddy_ddd[i]][p_ptr->x + ddx_ddd[i]];
1485
1486                 if (!cave_have_flag_grid(c_ptr, FF_PROJECT))
1487                 {
1488                         if (!c_ptr->mimic || !have_flag(f_info[c_ptr->mimic].flags, FF_PROJECT) ||
1489                             !permanent_wall(&f_info[c_ptr->feat]))
1490                         {
1491                                 do_call = FALSE;
1492                                 break;
1493                         }
1494                 }
1495         }
1496
1497         if (do_call)
1498         {
1499                 for (i = 1; i < 10; i++)
1500                 {
1501                         if (i - 5) fire_ball(GF_ROCKET, i, 175, 2);
1502                 }
1503
1504                 for (i = 1; i < 10; i++)
1505                 {
1506                         if (i - 5) fire_ball(GF_MANA, i, 175, 3);
1507                 }
1508
1509                 for (i = 1; i < 10; i++)
1510                 {
1511                         if (i - 5) fire_ball(GF_NUKE, i, 175, 4);
1512                 }
1513         }
1514
1515         /* Prevent destruction of quest levels and town */
1516         else if ((p_ptr->inside_quest && is_fixed_quest_idx(p_ptr->inside_quest)) || !dun_level)
1517         {
1518                 msg_print(_("地面が揺れた。", "The ground trembles."));
1519         }
1520
1521         else
1522         {
1523 #ifdef JP
1524                 msg_format("あなたは%sを壁に近すぎる場所で唱えてしまった!",
1525                         ((mp_ptr->spell_book == TV_LIFE_BOOK) ? "祈り" : "呪文"));
1526 #else
1527                 msg_format("You %s the %s too close to a wall!",
1528                         ((mp_ptr->spell_book == TV_LIFE_BOOK) ? "recite" : "cast"),
1529                         ((mp_ptr->spell_book == TV_LIFE_BOOK) ? "prayer" : "spell"));
1530 #endif
1531                 msg_print(_("大きな爆発音があった!", "There is a loud explosion!"));
1532
1533                 if (one_in_(666))
1534                 {
1535                         if (!vanish_dungeon()) msg_print(_("ダンジョンは一瞬静まり返った。", "The dungeon silences a moment."));
1536                 }
1537                 else
1538                 {
1539                         if (destroy_area(p_ptr->y, p_ptr->x, 15 + p_ptr->lev + randint0(11), FALSE))
1540                                 msg_print(_("ダンジョンが崩壊した...", "The dungeon collapses..."));
1541                         else
1542                                 msg_print(_("ダンジョンは大きく揺れた。", "The dungeon trembles."));
1543                 }
1544
1545                 take_hit(DAMAGE_NOESCAPE, 100 + randint1(150), _("自殺的な虚無招来", "a suicidal Call the Void"), -1);
1546         }
1547 }
1548
1549
1550 /*!
1551  * @brief アイテム引き寄せ処理 /
1552  * Fetch an item (teleport it right underneath the caster)
1553  * @param dir 魔法の発動方向
1554  * @param wgt 許容重量
1555  * @param require_los 射線の通りを要求するならばTRUE
1556  * @return なし
1557  */
1558 void fetch(DIRECTION dir, WEIGHT wgt, bool require_los)
1559 {
1560         POSITION ty, tx;
1561         OBJECT_IDX i;
1562         cave_type *c_ptr;
1563         object_type *o_ptr;
1564         GAME_TEXT o_name[MAX_NLEN];
1565
1566         /* Check to see if an object is already there */
1567         if (cave[p_ptr->y][p_ptr->x].o_idx)
1568         {
1569                 msg_print(_("自分の足の下にある物は取れません。", "You can't fetch when you're already standing on something."));
1570                 return;
1571         }
1572
1573         /* Use a target */
1574         if (dir == 5 && target_okay())
1575         {
1576                 tx = target_col;
1577                 ty = target_row;
1578
1579                 if (distance(p_ptr->y, p_ptr->x, ty, tx) > MAX_RANGE)
1580                 {
1581                         msg_print(_("そんなに遠くにある物は取れません!", "You can't fetch something that far away!"));
1582                         return;
1583                 }
1584
1585                 c_ptr = &cave[ty][tx];
1586
1587                 /* We need an item to fetch */
1588                 if (!c_ptr->o_idx)
1589                 {
1590                         msg_print(_("そこには何もありません。", "There is no object at this place."));
1591                         return;
1592                 }
1593
1594                 /* No fetching from vault */
1595                 if (c_ptr->info & CAVE_ICKY)
1596                 {
1597                         msg_print(_("アイテムがコントロールを外れて落ちた。", "The item slips from your control."));
1598                         return;
1599                 }
1600
1601                 /* We need to see the item */
1602                 if (require_los)
1603                 {
1604                         if (!player_has_los_bold(ty, tx))
1605                         {
1606                                 msg_print(_("そこはあなたの視界に入っていません。", "You have no direct line of sight to that location."));
1607                                 return;
1608                         }
1609                         else if (!projectable(p_ptr->y, p_ptr->x, ty, tx))
1610                         {
1611                                 msg_print(_("そこは壁の向こうです。", "You have no direct line of sight to that location."));
1612                                 return;
1613                         }
1614                 }
1615         }
1616         else
1617         {
1618                 ty = p_ptr->y; 
1619                 tx = p_ptr->x;
1620                 do
1621                 {
1622                         ty += ddy[dir];
1623                         tx += ddx[dir];
1624                         c_ptr = &cave[ty][tx];
1625
1626                         if ((distance(p_ptr->y, p_ptr->x, ty, tx) > MAX_RANGE) ||
1627                                 !cave_have_flag_bold(ty, tx, FF_PROJECT)) return;
1628                 }
1629                 while (!c_ptr->o_idx);
1630         }
1631
1632         o_ptr = &o_list[c_ptr->o_idx];
1633
1634         if (o_ptr->weight > wgt)
1635         {
1636                 /* Too heavy to 'fetch' */
1637                 msg_print(_("そのアイテムは重過ぎます。", "The object is too heavy."));
1638                 return;
1639         }
1640
1641         i = c_ptr->o_idx;
1642         c_ptr->o_idx = o_ptr->next_o_idx;
1643         cave[p_ptr->y][p_ptr->x].o_idx = i; /* 'move' it */
1644
1645         o_ptr->next_o_idx = 0;
1646         o_ptr->iy = (byte)p_ptr->y;
1647         o_ptr->ix = (byte)p_ptr->x;
1648
1649         object_desc(o_name, o_ptr, OD_NAME_ONLY);
1650         msg_format(_("%^sがあなたの足元に飛んできた。", "%^s flies through the air to your feet."), o_name);
1651
1652         note_spot(p_ptr->y, p_ptr->x);
1653         p_ptr->redraw |= PR_MAP;
1654 }
1655
1656 /*!
1657  * @brief 現実変容処理
1658  * @return なし
1659  */
1660 void alter_reality(void)
1661 {
1662         /* Ironman option */
1663         if (p_ptr->inside_arena || ironman_downward)
1664         {
1665                 msg_print(_("何も起こらなかった。", "Nothing happens."));
1666                 return;
1667         }
1668
1669         if (!p_ptr->alter_reality)
1670         {
1671                 TIME_EFFECT turns = randint0(21) + 15;
1672
1673                 p_ptr->alter_reality = turns;
1674                 msg_print(_("回りの景色が変わり始めた...", "The view around you begins to change..."));
1675
1676                 p_ptr->redraw |= (PR_STATUS);
1677         }
1678         else
1679         {
1680                 p_ptr->alter_reality = 0;
1681                 msg_print(_("景色が元に戻った...", "The view around you got back..."));
1682                 p_ptr->redraw |= (PR_STATUS);
1683         }
1684         return;
1685 }
1686
1687
1688 /*!
1689  * @brief 守りのルーン設置処理 /
1690  * Leave a "glyph of warding" which prevents monster movement
1691  * @return 実際に設置が行われた場合TRUEを返す
1692  */
1693 bool warding_glyph(void)
1694 {
1695         if (!cave_clean_bold(p_ptr->y, p_ptr->x))
1696         {
1697                 msg_print(_("床上のアイテムが呪文を跳ね返した。", "The object resists the spell."));
1698                 return FALSE;
1699         }
1700
1701         /* Create a glyph */
1702         cave[p_ptr->y][p_ptr->x].info |= CAVE_OBJECT;
1703         cave[p_ptr->y][p_ptr->x].mimic = feat_glyph;
1704
1705         note_spot(p_ptr->y, p_ptr->x);
1706         lite_spot(p_ptr->y, p_ptr->x);
1707
1708         return TRUE;
1709 }
1710
1711 /*!
1712  * @brief 鏡設置処理
1713  * @return 実際に設置が行われた場合TRUEを返す
1714  */
1715 bool place_mirror(void)
1716 {
1717         if (!cave_clean_bold(p_ptr->y, p_ptr->x))
1718         {
1719                 msg_print(_("床上のアイテムが呪文を跳ね返した。", "The object resists the spell."));
1720                 return FALSE;
1721         }
1722
1723         /* Create a mirror */
1724         cave[p_ptr->y][p_ptr->x].info |= CAVE_OBJECT;
1725         cave[p_ptr->y][p_ptr->x].mimic = feat_mirror;
1726
1727         /* Turn on the light */
1728         cave[p_ptr->y][p_ptr->x].info |= CAVE_GLOW;
1729
1730         note_spot(p_ptr->y, p_ptr->x);
1731         lite_spot(p_ptr->y, p_ptr->x);
1732         update_local_illumination(p_ptr->y, p_ptr->x);
1733
1734         return TRUE;
1735 }
1736
1737
1738 /*!
1739  * @brief 爆発のルーン設置処理 /
1740  * Leave an "explosive rune" which prevents monster movement
1741  * @return 実際に設置が行われた場合TRUEを返す
1742  */
1743 bool explosive_rune(void)
1744 {
1745         if (!cave_clean_bold(p_ptr->y, p_ptr->x))
1746         {
1747                 msg_print(_("床上のアイテムが呪文を跳ね返した。", "The object resists the spell."));
1748                 return FALSE;
1749         }
1750
1751         /* Create a glyph */
1752         cave[p_ptr->y][p_ptr->x].info |= CAVE_OBJECT;
1753         cave[p_ptr->y][p_ptr->x].mimic = feat_explosive_rune;
1754
1755         note_spot(p_ptr->y, p_ptr->x);  
1756         lite_spot(p_ptr->y, p_ptr->x);
1757
1758         return TRUE;
1759 }
1760
1761
1762 /*!
1763  * @brief 全所持アイテム鑑定処理 /
1764  * Identify everything being carried.
1765  * Done by a potion of "self knowledge".
1766  * @return なし
1767  */
1768 void identify_pack(void)
1769 {
1770         INVENTORY_IDX i;
1771
1772         /* Simply identify and know every item */
1773         for (i = 0; i < INVEN_TOTAL; i++)
1774         {
1775                 object_type *o_ptr = &inventory[i];
1776
1777                 /* Skip non-objects */
1778                 if (!o_ptr->k_idx) continue;
1779
1780                 identify_item(o_ptr);
1781
1782                 /* Auto-inscription */
1783                 autopick_alter_item(i, FALSE);
1784         }
1785 }
1786
1787
1788 /*!
1789  * @brief 装備強化処理の失敗率定数(千分率) /
1790  * Used by the "enchant" function (chance of failure)
1791  * (modified for Zangband, we need better stuff there...) -- TY
1792  * @return なし
1793  */
1794 static int enchant_table[16] =
1795 {
1796         0, 10,  50, 100, 200,
1797         300, 400, 500, 650, 800,
1798         950, 987, 993, 995, 998,
1799         1000
1800 };
1801
1802
1803 /*!
1804  * @brief 装備の解呪処理 /
1805  * Removes curses from items in inventory
1806  * @param all 軽い呪いまでの解除ならば0
1807  * @return 解呪されたアイテムの数
1808  * @details
1809  * <pre>
1810  * Note that Items which are "Perma-Cursed" (The One Ring,
1811  * The Crown of Morgoth) can NEVER be uncursed.
1812  *
1813  * Note that if "all" is FALSE, then Items which are
1814  * "Heavy-Cursed" (Mormegil, Calris, and Weapons of Morgul)
1815  * will not be uncursed.
1816  * </pre>
1817  */
1818 static int remove_curse_aux(int all)
1819 {
1820         int i, cnt = 0;
1821
1822         /* Attempt to uncurse items being worn */
1823         for (i = INVEN_RARM; i < INVEN_TOTAL; i++)
1824         {
1825                 object_type *o_ptr = &inventory[i];
1826
1827                 /* Skip non-objects */
1828                 if (!o_ptr->k_idx) continue;
1829
1830                 /* Uncursed already */
1831                 if (!object_is_cursed(o_ptr)) continue;
1832
1833                 /* Heavily Cursed Items need a special spell */
1834                 if (!all && (o_ptr->curse_flags & TRC_HEAVY_CURSE)) continue;
1835
1836                 /* Perma-Cursed Items can NEVER be uncursed */
1837                 if (o_ptr->curse_flags & TRC_PERMA_CURSE)
1838                 {
1839                         /* Uncurse it */
1840                         o_ptr->curse_flags &= (TRC_CURSED | TRC_HEAVY_CURSE | TRC_PERMA_CURSE);
1841                         continue;
1842                 }
1843
1844                 /* Uncurse it */
1845                 o_ptr->curse_flags = 0L;
1846
1847                 /* Hack -- Assume felt */
1848                 o_ptr->ident |= (IDENT_SENSE);
1849
1850                 o_ptr->feeling = FEEL_NONE;
1851
1852                 p_ptr->update |= (PU_BONUS);
1853                 p_ptr->window |= (PW_EQUIP);
1854
1855                 /* Count the uncursings */
1856                 cnt++;
1857         }
1858
1859         if (cnt)
1860         {
1861                 msg_print(_("誰かに見守られているような気がする。", "You feel as if someone is watching over you."));
1862         }
1863         /* Return "something uncursed" */
1864         return (cnt);
1865 }
1866
1867
1868 /*!
1869  * @brief 装備の軽い呪い解呪処理 /
1870  * Remove most curses
1871  * @return 解呪に成功した装備数
1872  */
1873 int remove_curse(void)
1874 {
1875         return (remove_curse_aux(FALSE));
1876 }
1877
1878 /*!
1879  * @brief 装備の重い呪い解呪処理 /
1880  * Remove all curses
1881  * @return 解呪に成功した装備数
1882  */
1883 int remove_all_curse(void)
1884 {
1885         return (remove_curse_aux(TRUE));
1886 }
1887
1888
1889 /*!
1890  * @brief アイテムの価値に応じた錬金術処理 /
1891  * Turns an object into gold, gain some of its value in a shop
1892  * @return 処理が実際に行われたらTRUEを返す
1893  */
1894 bool alchemy(void)
1895 {
1896         OBJECT_IDX item;
1897         int amt = 1;
1898         ITEM_NUMBER old_number;
1899         PRICE price;
1900         bool force = FALSE;
1901         object_type *o_ptr;
1902         GAME_TEXT o_name[MAX_NLEN];
1903         char out_val[MAX_NLEN+40];
1904
1905         cptr q, s;
1906
1907         /* Hack -- force destruction */
1908         if (command_arg > 0) force = TRUE;
1909
1910         q = _("どのアイテムを金に変えますか?", "Turn which item to gold? ");
1911         s = _("金に変えられる物がありません。", "You have nothing to turn to gold.");
1912
1913         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return (FALSE);
1914
1915         /* Get the item (in the pack) */
1916         if (item >= 0)
1917         {
1918                 o_ptr = &inventory[item];
1919         }
1920
1921         /* Get the item (on the floor) */
1922         else
1923         {
1924                 o_ptr = &o_list[0 - item];
1925         }
1926
1927
1928         /* See how many items */
1929         if (o_ptr->number > 1)
1930         {
1931                 /* Get a quantity */
1932                 amt = get_quantity(NULL, o_ptr->number);
1933
1934                 /* Allow user abort */
1935                 if (amt <= 0) return FALSE;
1936         }
1937
1938
1939         old_number = o_ptr->number;
1940         o_ptr->number = amt;
1941         object_desc(o_name, o_ptr, 0);
1942         o_ptr->number = old_number;
1943
1944         /* Verify unless quantity given */
1945         if (!force)
1946         {
1947                 if (confirm_destroy || (object_value(o_ptr) > 0))
1948                 {
1949                         /* Make a verification */
1950                         sprintf(out_val, _("本当に%sを金に変えますか?", "Really turn %s to gold? "), o_name);
1951                         if (!get_check(out_val)) return FALSE;
1952                 }
1953         }
1954
1955         /* Artifacts cannot be destroyed */
1956         if (!can_player_destroy_object(o_ptr))
1957         {
1958                 msg_format(_("%sを金に変えることに失敗した。", "You fail to turn %s to gold!"), o_name);
1959
1960                 return FALSE;
1961         }
1962
1963         price = object_value_real(o_ptr);
1964
1965         if (price <= 0)
1966         {
1967                 msg_format(_("%sをニセの金に変えた。", "You turn %s to fool's gold."), o_name);
1968         }
1969         else
1970         {
1971                 price /= 3;
1972
1973                 if (amt > 1) price *= amt;
1974
1975                 if (price > 30000) price = 30000;
1976                 msg_format(_("%sを$%d の金に変えた。", "You turn %s to %ld coins worth of gold."), o_name, price);
1977
1978                 p_ptr->au += price;
1979
1980                 /* Redraw gold */
1981                 p_ptr->redraw |= (PR_GOLD);
1982
1983                 p_ptr->window |= (PW_PLAYER);
1984
1985         }
1986
1987         /* Eliminate the item (from the pack) */
1988         if (item >= 0)
1989         {
1990                 inven_item_increase(item, -amt);
1991                 inven_item_describe(item);
1992                 inven_item_optimize(item);
1993         }
1994
1995         /* Eliminate the item (from the floor) */
1996         else
1997         {
1998                 floor_item_increase(0 - item, -amt);
1999                 floor_item_describe(0 - item);
2000                 floor_item_optimize(0 - item);
2001         }
2002
2003         return TRUE;
2004 }
2005
2006
2007 /*!
2008  * @brief 呪いの打ち破り処理 /
2009  * Break the curse of an item
2010  * @param o_ptr 呪い装備情報の参照ポインタ
2011  * @return なし
2012  */
2013 static void break_curse(object_type *o_ptr)
2014 {
2015         if (object_is_cursed(o_ptr) && !(o_ptr->curse_flags & TRC_PERMA_CURSE) && !(o_ptr->curse_flags & TRC_HEAVY_CURSE) && (randint0(100) < 25))
2016         {
2017                 msg_print(_("かけられていた呪いが打ち破られた!", "The curse is broken!"));
2018
2019                 o_ptr->curse_flags = 0L;
2020                 o_ptr->ident |= (IDENT_SENSE);
2021                 o_ptr->feeling = FEEL_NONE;
2022         }
2023 }
2024
2025
2026 /*!
2027  * @brief 装備修正強化処理 /
2028  * Enchants a plus onto an item. -RAK-
2029  * @param o_ptr 強化するアイテムの参照ポインタ
2030  * @param n 強化基本量
2031  * @param eflag 強化オプション(命中/ダメージ/AC)
2032  * @return 強化に成功した場合TRUEを返す
2033  * @details
2034  * <pre>
2035  * Revamped!  Now takes item pointer, number of times to try enchanting,
2036  * and a flag of what to try enchanting.  Artifacts resist enchantment
2037  * some of the time, and successful enchantment to at least +0 might
2038  * break a curse on the item. -CFT-
2039  *
2040  * Note that an item can technically be enchanted all the way to +15 if
2041  * you wait a very, very, long time.  Going from +9 to +10 only works
2042  * about 5% of the time, and from +10 to +11 only about 1% of the time.
2043  *
2044  * Note that this function can now be used on "piles" of items, and
2045  * the larger the pile, the lower the chance of success.
2046  * </pre>
2047  */
2048 bool enchant(object_type *o_ptr, int n, int eflag)
2049 {
2050         int     i, chance, prob;
2051         bool    res = FALSE;
2052         bool    a = object_is_artifact(o_ptr);
2053         bool    force = (eflag & ENCH_FORCE);
2054
2055
2056         /* Large piles resist enchantment */
2057         prob = o_ptr->number * 100;
2058
2059         /* Missiles are easy to enchant */
2060         if ((o_ptr->tval == TV_BOLT) ||
2061             (o_ptr->tval == TV_ARROW) ||
2062             (o_ptr->tval == TV_SHOT))
2063         {
2064                 prob = prob / 20;
2065         }
2066
2067         /* Try "n" times */
2068         for (i = 0; i < n; i++)
2069         {
2070                 /* Hack -- Roll for pile resistance */
2071                 if (!force && randint0(prob) >= 100) continue;
2072
2073                 /* Enchant to hit */
2074                 if (eflag & ENCH_TOHIT)
2075                 {
2076                         if (o_ptr->to_h < 0) chance = 0;
2077                         else if (o_ptr->to_h > 15) chance = 1000;
2078                         else chance = enchant_table[o_ptr->to_h];
2079
2080                         if (force || ((randint1(1000) > chance) && (!a || (randint0(100) < 50))))
2081                         {
2082                                 o_ptr->to_h++;
2083                                 res = TRUE;
2084
2085                                 /* only when you get it above -1 -CFT */
2086                                 if (o_ptr->to_h >= 0)
2087                                         break_curse(o_ptr);
2088                         }
2089                 }
2090
2091                 /* Enchant to damage */
2092                 if (eflag & ENCH_TODAM)
2093                 {
2094                         if (o_ptr->to_d < 0) chance = 0;
2095                         else if (o_ptr->to_d > 15) chance = 1000;
2096                         else chance = enchant_table[o_ptr->to_d];
2097
2098                         if (force || ((randint1(1000) > chance) && (!a || (randint0(100) < 50))))
2099                         {
2100                                 o_ptr->to_d++;
2101                                 res = TRUE;
2102
2103                                 /* only when you get it above -1 -CFT */
2104                                 if (o_ptr->to_d >= 0)
2105                                         break_curse(o_ptr);
2106                         }
2107                 }
2108
2109                 /* Enchant to armor class */
2110                 if (eflag & ENCH_TOAC)
2111                 {
2112                         if (o_ptr->to_a < 0) chance = 0;
2113                         else if (o_ptr->to_a > 15) chance = 1000;
2114                         else chance = enchant_table[o_ptr->to_a];
2115
2116                         if (force || ((randint1(1000) > chance) && (!a || (randint0(100) < 50))))
2117                         {
2118                                 o_ptr->to_a++;
2119                                 res = TRUE;
2120
2121                                 /* only when you get it above -1 -CFT */
2122                                 if (o_ptr->to_a >= 0)
2123                                         break_curse(o_ptr);
2124                         }
2125                 }
2126         }
2127
2128         /* Failure */
2129         if (!res) return (FALSE);
2130
2131         /* Recalculate bonuses */
2132         p_ptr->update |= (PU_BONUS);
2133
2134         /* Combine / Reorder the pack (later) */
2135         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
2136
2137         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
2138
2139         calc_android_exp();
2140
2141         /* Success */
2142         return (TRUE);
2143 }
2144
2145
2146 /*!
2147  * @brief 装備修正強化処理のメインルーチン /
2148  * Enchant an item (in the inventory or on the floor)
2149  * @param num_hit 命中修正量
2150  * @param num_dam ダメージ修正量
2151  * @param num_ac AC修正量
2152  * @return 強化に成功した場合TRUEを返す
2153  * @details
2154  * Note that "num_ac" requires armour, else weapon
2155  * Returns TRUE if attempted, FALSE if cancelled
2156  */
2157 bool enchant_spell(HIT_PROB num_hit, HIT_POINT num_dam, ARMOUR_CLASS num_ac)
2158 {
2159         OBJECT_IDX item;
2160         bool        okay = FALSE;
2161         object_type *o_ptr;
2162         GAME_TEXT o_name[MAX_NLEN];
2163         cptr        q, s;
2164
2165         /* Assume enchant weapon */
2166         item_tester_hook = object_allow_enchant_weapon;
2167
2168         /* Enchant armor if requested */
2169         if (num_ac) item_tester_hook = object_is_armour;
2170
2171         q = _("どのアイテムを強化しますか? ", "Enchant which item? ");
2172         s = _("強化できるアイテムがない。", "You have nothing to enchant.");
2173
2174         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR | IGNORE_BOTHHAND_SLOT))) return (FALSE);
2175
2176         /* Get the item (in the pack) */
2177         if (item >= 0)
2178         {
2179                 o_ptr = &inventory[item];
2180         }
2181
2182         /* Get the item (on the floor) */
2183         else
2184         {
2185                 o_ptr = &o_list[0 - item];
2186         }
2187
2188         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
2189 #ifdef JP
2190         msg_format("%s は明るく輝いた!", o_name);
2191 #else
2192         msg_format("%s %s glow%s brightly!", ((item >= 0) ? "Your" : "The"), o_name, ((o_ptr->number > 1) ? "" : "s"));
2193 #endif
2194
2195         /* Enchant */
2196         if (enchant(o_ptr, num_hit, ENCH_TOHIT)) okay = TRUE;
2197         if (enchant(o_ptr, num_dam, ENCH_TODAM)) okay = TRUE;
2198         if (enchant(o_ptr, num_ac, ENCH_TOAC)) okay = TRUE;
2199
2200         /* Failure */
2201         if (!okay)
2202         {
2203                 if (flush_failure) flush();
2204                 msg_print(_("強化に失敗した。", "The enchantment failed."));
2205                 if (one_in_(3)) chg_virtue(V_ENCHANT, -1);
2206         }
2207         else
2208                 chg_virtue(V_ENCHANT, 1);
2209
2210         calc_android_exp();
2211
2212         /* Something happened */
2213         return (TRUE);
2214 }
2215
2216
2217 /*!
2218  * @brief アーティファクト生成の巻物処理 /
2219  * @return 生成が実際に試みられたらTRUEを返す
2220  */
2221 bool artifact_scroll(void)
2222 {
2223         OBJECT_IDX item;
2224         bool okay = FALSE;
2225         object_type *o_ptr;
2226         GAME_TEXT o_name[MAX_NLEN];
2227         cptr q, s;
2228
2229         /* Enchant weapon/armour */
2230         item_tester_hook = item_tester_hook_nameless_weapon_armour;
2231
2232         q = _("どのアイテムを強化しますか? ", "Enchant which item? ");
2233         s = _("強化できるアイテムがない。", "You have nothing to enchant.");
2234
2235         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR | IGNORE_BOTHHAND_SLOT))) return (FALSE);
2236
2237         /* Get the item (in the pack) */
2238         if (item >= 0)
2239         {
2240                 o_ptr = &inventory[item];
2241         }
2242         /* Get the item (on the floor) */
2243         else
2244         {
2245                 o_ptr = &o_list[0 - item];
2246         }
2247
2248         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
2249 #ifdef JP
2250         msg_format("%s は眩い光を発した!",o_name);
2251 #else
2252         msg_format("%s %s radiate%s a blinding light!", ((item >= 0) ? "Your" : "The"), o_name, ((o_ptr->number > 1) ? "" : "s"));
2253 #endif
2254
2255         if (object_is_artifact(o_ptr))
2256         {
2257 #ifdef JP
2258                 msg_format("%sは既に伝説のアイテムです!", o_name  );
2259 #else
2260                 msg_format("The %s %s already %s!", o_name, ((o_ptr->number > 1) ? "are" : "is"), ((o_ptr->number > 1) ? "artifacts" : "an artifact"));
2261 #endif
2262
2263                 okay = FALSE;
2264         }
2265
2266         else if (object_is_ego(o_ptr))
2267         {
2268 #ifdef JP
2269                 msg_format("%sは既に名のあるアイテムです!", o_name );
2270 #else
2271                 msg_format("The %s %s already %s!",
2272                     o_name, ((o_ptr->number > 1) ? "are" : "is"),
2273                     ((o_ptr->number > 1) ? "ego items" : "an ego item"));
2274 #endif
2275
2276                 okay = FALSE;
2277         }
2278
2279         else if (o_ptr->xtra3)
2280         {
2281 #ifdef JP
2282                 msg_format("%sは既に強化されています!", o_name );
2283 #else
2284                 msg_format("The %s %s already %s!",
2285                     o_name, ((o_ptr->number > 1) ? "are" : "is"),
2286                     ((o_ptr->number > 1) ? "customized items" : "a customized item"));
2287 #endif
2288         }
2289
2290         else
2291         {
2292                 if (o_ptr->number > 1)
2293                 {
2294                         msg_print(_("複数のアイテムに魔法をかけるだけのエネルギーはありません!", "Not enough enough energy to enchant more than one object!"));
2295 #ifdef JP
2296                         msg_format("%d 個の%sが壊れた!",(o_ptr->number)-1, o_name);
2297 #else
2298                         msg_format("%d of your %s %s destroyed!",(o_ptr->number)-1, o_name, (o_ptr->number>2?"were":"was"));
2299 #endif
2300
2301                         if (item >= 0)
2302                         {
2303                                 inven_item_increase(item, 1 - (o_ptr->number));
2304                         }
2305                         else
2306                         {
2307                                 floor_item_increase(0 - item, 1 - (o_ptr->number));
2308                         }
2309                 }
2310                 okay = create_artifact(o_ptr, TRUE);
2311         }
2312
2313         /* Failure */
2314         if (!okay)
2315         {
2316                 if (flush_failure) flush();
2317                 msg_print(_("強化に失敗した。", "The enchantment failed."));
2318                 if (one_in_(3)) chg_virtue(V_ENCHANT, -1);
2319         }
2320         else
2321         {
2322                 if (record_rand_art)
2323                 {
2324                         object_desc(o_name, o_ptr, OD_NAME_ONLY);
2325                         do_cmd_write_nikki(NIKKI_ART_SCROLL, 0, o_name);
2326                 }
2327                 chg_virtue(V_ENCHANT, 1);
2328         }
2329
2330         calc_android_exp();
2331
2332         /* Something happened */
2333         return (TRUE);
2334 }
2335
2336
2337 /*!
2338  * @brief アイテム鑑定処理 /
2339  * Identify an object
2340  * @param o_ptr 鑑定されるアイテムの情報参照ポインタ
2341  * @return 実際に鑑定できたらTRUEを返す
2342  */
2343 bool identify_item(object_type *o_ptr)
2344 {
2345         bool old_known = FALSE;
2346         GAME_TEXT o_name[MAX_NLEN];
2347
2348         object_desc(o_name, o_ptr, 0);
2349
2350         if (o_ptr->ident & IDENT_KNOWN)
2351                 old_known = TRUE;
2352
2353         if (!(o_ptr->ident & (IDENT_MENTAL)))
2354         {
2355                 if (object_is_artifact(o_ptr) || one_in_(5))
2356                         chg_virtue(V_KNOWLEDGE, 1);
2357         }
2358
2359         /* Identify it fully */
2360         object_aware(o_ptr);
2361         object_known(o_ptr);
2362
2363         /* Player touches it */
2364         o_ptr->marked |= OM_TOUCHED;
2365
2366         /* Recalculate bonuses */
2367         p_ptr->update |= (PU_BONUS);
2368
2369         /* Combine / Reorder the pack (later) */
2370         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
2371
2372         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
2373
2374         strcpy(record_o_name, o_name);
2375         record_turn = turn;
2376
2377         object_desc(o_name, o_ptr, OD_NAME_ONLY);
2378
2379         if(record_fix_art && !old_known && object_is_fixed_artifact(o_ptr))
2380                 do_cmd_write_nikki(NIKKI_ART, 0, o_name);
2381         if(record_rand_art && !old_known && o_ptr->art_name)
2382                 do_cmd_write_nikki(NIKKI_ART, 0, o_name);
2383
2384         return old_known;
2385 }
2386
2387 /*!
2388  * @brief アイテム鑑定のメインルーチン処理 /
2389  * Identify an object in the inventory (or on the floor)
2390  * @param only_equip 装備品のみを対象とするならばTRUEを返す
2391  * @return 実際に鑑定を行ったならばTRUEを返す
2392  * @details
2393  * This routine does *not* automatically combine objects.
2394  * Returns TRUE if something was identified, else FALSE.
2395  */
2396 bool ident_spell(bool only_equip)
2397 {
2398         OBJECT_IDX item;
2399         object_type     *o_ptr;
2400         GAME_TEXT o_name[MAX_NLEN];
2401         cptr            q, s;
2402         bool old_known;
2403
2404         if (only_equip)
2405                 item_tester_hook = item_tester_hook_identify_weapon_armour;
2406         else
2407                 item_tester_hook = item_tester_hook_identify;
2408
2409         if (can_get_item())
2410         {
2411                 q = _("どのアイテムを鑑定しますか? ", "Identify which item? ");
2412         }
2413         else
2414         {
2415                 if (only_equip)
2416                         item_tester_hook = object_is_weapon_armour_ammo;
2417                 else
2418                         item_tester_hook = NULL;
2419
2420                 q = _("すべて鑑定済みです。 ", "All items are identified. ");
2421         }
2422
2423         s = _("鑑定するべきアイテムがない。", "You have nothing to identify.");
2424
2425         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR | IGNORE_BOTHHAND_SLOT))) return (FALSE);
2426
2427         /* Get the item (in the pack) */
2428         if (item >= 0)
2429         {
2430                 o_ptr = &inventory[item];
2431         }
2432
2433         /* Get the item (on the floor) */
2434         else
2435         {
2436                 o_ptr = &o_list[0 - item];
2437         }
2438
2439         old_known = identify_item(o_ptr);
2440
2441         object_desc(o_name, o_ptr, 0);
2442         if (item >= INVEN_RARM)
2443         {
2444                 msg_format(_("%^s: %s(%c)。", "%^s: %s (%c)."), describe_use(item), o_name, index_to_label(item));
2445         }
2446         else if (item >= 0)
2447         {
2448                 msg_format(_("ザック中: %s(%c)。", "In your pack: %s (%c)."), o_name, index_to_label(item));
2449         }
2450         else
2451         {
2452                 msg_format(_("床上: %s。", "On the ground: %s."), o_name);
2453         }
2454
2455         /* Auto-inscription/destroy */
2456         autopick_alter_item(item, (bool)(destroy_identify && !old_known));
2457
2458         /* Something happened */
2459         return (TRUE);
2460 }
2461
2462
2463 /*!
2464  * @brief アイテム凡庸化のメインルーチン処理 /
2465  * Identify an object in the inventory (or on the floor)
2466  * @param only_equip 装備品のみを対象とするならばTRUEを返す
2467  * @return 実際に凡庸化をを行ったならばTRUEを返す
2468  * @details
2469  * <pre>
2470  * Mundanify an object in the inventory (or on the floor)
2471  * This routine does *not* automatically combine objects.
2472  * Returns TRUE if something was mundanified, else FALSE.
2473  * </pre>
2474  */
2475 bool mundane_spell(bool only_equip)
2476 {
2477         OBJECT_IDX item;
2478         object_type     *o_ptr;
2479         cptr            q, s;
2480
2481         if (only_equip) item_tester_hook = object_is_weapon_armour_ammo;
2482
2483         q = _("どれを使いますか?", "Use which item? ");
2484         s = _("使えるものがありません。", "You have nothing you can use.");
2485
2486         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR | IGNORE_BOTHHAND_SLOT))) return (FALSE);
2487
2488         /* Get the item (in the pack) */
2489         if (item >= 0)
2490         {
2491                 o_ptr = &inventory[item];
2492         }
2493
2494         /* Get the item (on the floor) */
2495         else
2496         {
2497                 o_ptr = &o_list[0 - item];
2498         }
2499
2500         msg_print(_("まばゆい閃光が走った!", "There is a bright flash of light!"));
2501         {
2502                 POSITION iy = o_ptr->iy;                 /* Y-position on map, or zero */
2503                 POSITION ix = o_ptr->ix;                 /* X-position on map, or zero */
2504                 s16b next_o_idx = o_ptr->next_o_idx; /* Next object in stack (if any) */
2505                 byte marked = o_ptr->marked;         /* Object is marked */
2506                 s16b weight = o_ptr->number * o_ptr->weight;
2507                 u16b inscription = o_ptr->inscription;
2508
2509                 /* Wipe it clean */
2510                 object_prep(o_ptr, o_ptr->k_idx);
2511
2512                 o_ptr->iy = iy;
2513                 o_ptr->ix = ix;
2514                 o_ptr->next_o_idx = next_o_idx;
2515                 o_ptr->marked = marked;
2516                 o_ptr->inscription = inscription;
2517                 if (item >= 0) p_ptr->total_weight += (o_ptr->weight - weight);
2518         }
2519         calc_android_exp();
2520
2521         /* Something happened */
2522         return TRUE;
2523 }
2524
2525 /*!
2526  * @brief アイテム*鑑定*のメインルーチン処理 /
2527  * Identify an object in the inventory (or on the floor)
2528  * @param only_equip 装備品のみを対象とするならばTRUEを返す
2529  * @return 実際に鑑定を行ったならばTRUEを返す
2530  * @details
2531  * Fully "identify" an object in the inventory  -BEN-
2532  * This routine returns TRUE if an item was identified.
2533  */
2534 bool identify_fully(bool only_equip)
2535 {
2536         OBJECT_IDX item;
2537         object_type *o_ptr;
2538         GAME_TEXT o_name[MAX_NLEN];
2539         cptr q, s;
2540         bool old_known;
2541
2542         if (only_equip)
2543                 item_tester_hook = item_tester_hook_identify_fully_weapon_armour;
2544         else
2545                 item_tester_hook = item_tester_hook_identify_fully;
2546
2547         if (can_get_item())
2548         {
2549                 q = _("どのアイテムを*鑑定*しますか? ", "*Identify* which item? ");
2550         }
2551         else
2552         {
2553                 if (only_equip)
2554                         item_tester_hook = object_is_weapon_armour_ammo;
2555                 else
2556                         item_tester_hook = NULL;
2557
2558                 q = _("すべて*鑑定*済みです。 ", "All items are *identified*. ");
2559         }
2560
2561         s = _("*鑑定*するべきアイテムがない。", "You have nothing to *identify*.");
2562
2563         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR | IGNORE_BOTHHAND_SLOT))) return (FALSE);
2564
2565         /* Get the item (in the pack) */
2566         if (item >= 0)
2567         {
2568                 o_ptr = &inventory[item];
2569         }
2570
2571         /* Get the item (on the floor) */
2572         else
2573         {
2574                 o_ptr = &o_list[0 - item];
2575         }
2576
2577         old_known = identify_item(o_ptr);
2578
2579         /* Mark the item as fully known */
2580         o_ptr->ident |= (IDENT_MENTAL);
2581         handle_stuff();
2582
2583         object_desc(o_name, o_ptr, 0);
2584         if (item >= INVEN_RARM)
2585         {
2586                 msg_format(_("%^s: %s(%c)。", "%^s: %s (%c)."), describe_use(item), o_name, index_to_label(item));
2587         }
2588         else if (item >= 0)
2589         {
2590                 msg_format(_("ザック中: %s(%c)。", "In your pack: %s (%c)."), o_name, index_to_label(item));
2591         }
2592         else
2593         {
2594                 msg_format(_("床上: %s。", "On the ground: %s."), o_name);
2595         }
2596
2597         /* Describe it fully */
2598         (void)screen_object(o_ptr, 0L);
2599
2600         /* Auto-inscription/destroy */
2601         autopick_alter_item(item, (bool)(destroy_identify && !old_known));
2602
2603         /* Success */
2604         return (TRUE);
2605 }
2606
2607
2608
2609 /*!
2610  * @brief 魔力充填処理 /
2611  * Recharge a wand/staff/rod from the pack or on the floor.
2612  * This function has been rewritten in Oangband and ZAngband.
2613  * @param power 充填パワー
2614  * @return ターン消費を要する処理まで進んだらTRUEを返す
2615  *
2616  * Sorcery/Arcane -- Recharge  --> recharge(plev * 4)
2617  * Chaos -- Arcane Binding     --> recharge(90)
2618  *
2619  * Scroll of recharging        --> recharge(130)
2620  * Artifact activation/Thingol --> recharge(130)
2621  *
2622  * It is harder to recharge high level, and highly charged wands,
2623  * staffs, and rods.  The more wands in a stack, the more easily and
2624  * strongly they recharge.  Staffs, however, each get fewer charges if
2625  * stacked.
2626  *
2627  * Beware of "sliding index errors".
2628  */
2629 bool recharge(int power)
2630 {
2631         OBJECT_IDX item;
2632         DEPTH lev;
2633         int recharge_strength;
2634         TIME_EFFECT recharge_amount;
2635
2636         object_type *o_ptr;
2637         object_kind *k_ptr;
2638
2639         bool fail = FALSE;
2640         byte fail_type = 1;
2641
2642         cptr q, s;
2643         GAME_TEXT o_name[MAX_NLEN];
2644
2645         /* Only accept legal items */
2646         item_tester_hook = item_tester_hook_recharge;
2647
2648         q = _("どのアイテムに魔力を充填しますか? ", "Recharge which item? ");
2649         s = _("魔力を充填すべきアイテムがない。", "You have nothing to recharge.");
2650
2651         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return (FALSE);
2652
2653         /* Get the item (in the pack) */
2654         if (item >= 0)
2655         {
2656                 o_ptr = &inventory[item];
2657         }
2658
2659         /* Get the item (on the floor) */
2660         else
2661         {
2662                 o_ptr = &o_list[0 - item];
2663         }
2664
2665         /* Get the object kind. */
2666         k_ptr = &k_info[o_ptr->k_idx];
2667
2668         /* Extract the object "level" */
2669         lev = k_info[o_ptr->k_idx].level;
2670
2671
2672         /* Recharge a rod */
2673         if (o_ptr->tval == TV_ROD)
2674         {
2675                 /* Extract a recharge strength by comparing object level to power. */
2676                 recharge_strength = ((power > lev / 2) ? (power - lev / 2) : 0) / 5;
2677
2678
2679                 /* Back-fire */
2680                 if (one_in_(recharge_strength))
2681                 {
2682                         /* Activate the failure code. */
2683                         fail = TRUE;
2684                 }
2685
2686                 /* Recharge */
2687                 else
2688                 {
2689                         /* Recharge amount */
2690                         recharge_amount = (power * damroll(3, 2));
2691
2692                         /* Recharge by that amount */
2693                         if (o_ptr->timeout > recharge_amount)
2694                                 o_ptr->timeout -= recharge_amount;
2695                         else
2696                                 o_ptr->timeout = 0;
2697                 }
2698         }
2699
2700
2701         /* Recharge wand/staff */
2702         else
2703         {
2704                 /* Extract a recharge strength by comparing object level to power.
2705                  * Divide up a stack of wands' charges to calculate charge penalty.
2706                  */
2707                 if ((o_ptr->tval == TV_WAND) && (o_ptr->number > 1))
2708                         recharge_strength = (100 + power - lev - (8 * o_ptr->pval / o_ptr->number)) / 15;
2709
2710                 /* All staffs, unstacked wands. */
2711                 else recharge_strength = (100 + power - lev - (8 * o_ptr->pval)) / 15;
2712
2713                 /* Paranoia */
2714                 if (recharge_strength < 0) recharge_strength = 0;
2715
2716                 /* Back-fire */
2717                 if (one_in_(recharge_strength))
2718                 {
2719                         /* Activate the failure code. */
2720                         fail = TRUE;
2721                 }
2722
2723                 /* If the spell didn't backfire, recharge the wand or staff. */
2724                 else
2725                 {
2726                         /* Recharge based on the standard number of charges. */
2727                         recharge_amount = randint1(1 + k_ptr->pval / 2);
2728
2729                         /* Multiple wands in a stack increase recharging somewhat. */
2730                         if ((o_ptr->tval == TV_WAND) && (o_ptr->number > 1))
2731                         {
2732                                 recharge_amount +=
2733                                         (randint1(recharge_amount * (o_ptr->number - 1))) / 2;
2734                                 if (recharge_amount < 1) recharge_amount = 1;
2735                                 if (recharge_amount > 12) recharge_amount = 12;
2736                         }
2737
2738                         /* But each staff in a stack gets fewer additional charges,
2739                          * although always at least one.
2740                          */
2741                         if ((o_ptr->tval == TV_STAFF) && (o_ptr->number > 1))
2742                         {
2743                                 recharge_amount /= (TIME_EFFECT)o_ptr->number;
2744                                 if (recharge_amount < 1) recharge_amount = 1;
2745                         }
2746
2747                         /* Recharge the wand or staff. */
2748                         o_ptr->pval += recharge_amount;
2749
2750
2751                         /* Hack -- we no longer "know" the item */
2752                         o_ptr->ident &= ~(IDENT_KNOWN);
2753
2754                         /* Hack -- we no longer think the item is empty */
2755                         o_ptr->ident &= ~(IDENT_EMPTY);
2756                 }
2757         }
2758
2759
2760         /* Inflict the penalties for failing a recharge. */
2761         if (fail)
2762         {
2763                 /* Artifacts are never destroyed. */
2764                 if (object_is_fixed_artifact(o_ptr))
2765                 {
2766                         object_desc(o_name, o_ptr, OD_NAME_ONLY);
2767                         msg_format(_("魔力が逆流した!%sは完全に魔力を失った。", "The recharging backfires - %s is completely drained!"), o_name);
2768
2769                         /* Artifact rods. */
2770                         if ((o_ptr->tval == TV_ROD) && (o_ptr->timeout < 10000))
2771                                 o_ptr->timeout = (o_ptr->timeout + 100) * 2;
2772
2773                         /* Artifact wands and staffs. */
2774                         else if ((o_ptr->tval == TV_WAND) || (o_ptr->tval == TV_STAFF))
2775                                 o_ptr->pval = 0;
2776                 }
2777                 else
2778                 {
2779                         /* Get the object description */
2780                         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
2781
2782                         /*** Determine Seriousness of Failure ***/
2783
2784                         /* Mages recharge objects more safely. */
2785                         if (IS_WIZARD_CLASS() || p_ptr->pclass == CLASS_MAGIC_EATER || p_ptr->pclass == CLASS_BLUE_MAGE)
2786                         {
2787                                 /* 10% chance to blow up one rod, otherwise draining. */
2788                                 if (o_ptr->tval == TV_ROD)
2789                                 {
2790                                         if (one_in_(10)) fail_type = 2;
2791                                         else fail_type = 1;
2792                                 }
2793                                 /* 75% chance to blow up one wand, otherwise draining. */
2794                                 else if (o_ptr->tval == TV_WAND)
2795                                 {
2796                                         if (!one_in_(3)) fail_type = 2;
2797                                         else fail_type = 1;
2798                                 }
2799                                 /* 50% chance to blow up one staff, otherwise no effect. */
2800                                 else if (o_ptr->tval == TV_STAFF)
2801                                 {
2802                                         if (one_in_(2)) fail_type = 2;
2803                                         else fail_type = 0;
2804                                 }
2805                         }
2806
2807                         /* All other classes get no special favors. */
2808                         else
2809                         {
2810                                 /* 33% chance to blow up one rod, otherwise draining. */
2811                                 if (o_ptr->tval == TV_ROD)
2812                                 {
2813                                         if (one_in_(3)) fail_type = 2;
2814                                         else fail_type = 1;
2815                                 }
2816                                 /* 20% chance of the entire stack, else destroy one wand. */
2817                                 else if (o_ptr->tval == TV_WAND)
2818                                 {
2819                                         if (one_in_(5)) fail_type = 3;
2820                                         else fail_type = 2;
2821                                 }
2822                                 /* Blow up one staff. */
2823                                 else if (o_ptr->tval == TV_STAFF)
2824                                 {
2825                                         fail_type = 2;
2826                                 }
2827                         }
2828
2829                         /*** Apply draining and destruction. ***/
2830
2831                         /* Drain object or stack of objects. */
2832                         if (fail_type == 1)
2833                         {
2834                                 if (o_ptr->tval == TV_ROD)
2835                                 {
2836                                         msg_print(_("魔力が逆噴射して、ロッドからさらに魔力を吸い取ってしまった!", "The recharge backfires, draining the rod further!"));
2837
2838                                         if (o_ptr->timeout < 10000)
2839                                                 o_ptr->timeout = (o_ptr->timeout + 100) * 2;
2840                                 }
2841                                 else if (o_ptr->tval == TV_WAND)
2842                                 {
2843                                         msg_format(_("%sは破損を免れたが、魔力が全て失われた。", "You save your %s from destruction, but all charges are lost."), o_name);
2844                                         o_ptr->pval = 0;
2845                                 }
2846                                 /* Staffs aren't drained. */
2847                         }
2848
2849                         /* Destroy an object or one in a stack of objects. */
2850                         if (fail_type == 2)
2851                         {
2852                                 if (o_ptr->number > 1)
2853                                         msg_format(_("乱暴な魔法のために%sが一本壊れた!", "Wild magic consumes one of your %s!"), o_name);
2854                                 else
2855                                         msg_format(_("乱暴な魔法のために%sが壊れた!", "Wild magic consumes your %s!"), o_name);
2856
2857                                 /* Reduce rod stack maximum timeout, drain wands. */
2858                                 if (o_ptr->tval == TV_ROD) o_ptr->timeout = (o_ptr->number - 1) * k_ptr->pval;
2859                                 if (o_ptr->tval == TV_WAND) o_ptr->pval = 0;
2860
2861                                 /* Reduce and describe inventory */
2862                                 if (item >= 0)
2863                                 {
2864                                         inven_item_increase(item, -1);
2865                                         inven_item_describe(item);
2866                                         inven_item_optimize(item);
2867                                 }
2868
2869                                 /* Reduce and describe floor item */
2870                                 else
2871                                 {
2872                                         floor_item_increase(0 - item, -1);
2873                                         floor_item_describe(0 - item);
2874                                         floor_item_optimize(0 - item);
2875                                 }
2876                         }
2877
2878                         /* Destroy all members of a stack of objects. */
2879                         if (fail_type == 3)
2880                         {
2881                                 if (o_ptr->number > 1)
2882                                         msg_format(_("乱暴な魔法のために%sが全て壊れた!", "Wild magic consumes all your %s!"), o_name);
2883                                 else
2884                                         msg_format(_("乱暴な魔法のために%sが壊れた!", "Wild magic consumes your %s!"), o_name);
2885
2886                                 /* Reduce and describe inventory */
2887                                 if (item >= 0)
2888                                 {
2889                                         inven_item_increase(item, -999);
2890                                         inven_item_describe(item);
2891                                         inven_item_optimize(item);
2892                                 }
2893
2894                                 /* Reduce and describe floor item */
2895                                 else
2896                                 {
2897                                         floor_item_increase(0 - item, -999);
2898                                         floor_item_describe(0 - item);
2899                                         floor_item_optimize(0 - item);
2900                                 }
2901                         }
2902                 }
2903         }
2904
2905         /* Combine / Reorder the pack (later) */
2906         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
2907
2908         p_ptr->window |= (PW_INVEN);
2909
2910         /* Something was done */
2911         return (TRUE);
2912 }
2913
2914
2915 /*!
2916  * @brief 武器の祝福処理 /
2917  * Bless a weapon
2918  * @return ターン消費を要する処理を行ったならばTRUEを返す
2919  */
2920 bool bless_weapon(void)
2921 {
2922         OBJECT_IDX item;
2923         object_type *o_ptr;
2924         BIT_FLAGS flgs[TR_FLAG_SIZE];
2925         GAME_TEXT o_name[MAX_NLEN];
2926         cptr q, s;
2927
2928         /* Bless only weapons */
2929         item_tester_hook = object_is_weapon;
2930
2931         q = _("どのアイテムを祝福しますか?", "Bless which weapon? ");
2932         s = _("祝福できる武器がありません。", "You have weapon to bless.");
2933
2934         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR | IGNORE_BOTHHAND_SLOT)))
2935                 return FALSE;
2936
2937         /* Get the item (in the pack) */
2938         if (item >= 0)
2939         {
2940                 o_ptr = &inventory[item];
2941         }
2942
2943         /* Get the item (on the floor) */
2944         else
2945         {
2946                 o_ptr = &o_list[0 - item];
2947         }
2948
2949         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
2950
2951         /* Extract the flags */
2952         object_flags(o_ptr, flgs);
2953
2954         if (object_is_cursed(o_ptr))
2955         {
2956                 if (((o_ptr->curse_flags & TRC_HEAVY_CURSE) && (randint1(100) < 33)) ||
2957                         have_flag(flgs, TR_ADD_L_CURSE) ||
2958                         have_flag(flgs, TR_ADD_H_CURSE) ||
2959                     (o_ptr->curse_flags & TRC_PERMA_CURSE))
2960                 {
2961 #ifdef JP
2962                         msg_format("%sを覆う黒いオーラは祝福を跳ね返した!", o_name);
2963 #else
2964                         msg_format("The black aura on %s %s disrupts the blessing!", ((item >= 0) ? "your" : "the"), o_name);
2965 #endif
2966
2967                         return TRUE;
2968                 }
2969
2970 #ifdef JP
2971                 msg_format("%s から邪悪なオーラが消えた。", o_name);
2972 #else
2973                 msg_format("A malignant aura leaves %s %s.", ((item >= 0) ? "your" : "the"), o_name);
2974 #endif
2975
2976
2977                 /* Uncurse it */
2978                 o_ptr->curse_flags = 0L;
2979
2980                 /* Hack -- Assume felt */
2981                 o_ptr->ident |= (IDENT_SENSE);
2982
2983                 o_ptr->feeling = FEEL_NONE;
2984
2985                 /* Recalculate the bonuses */
2986                 p_ptr->update |= (PU_BONUS);
2987                 p_ptr->window |= (PW_EQUIP);
2988         }
2989
2990         /*
2991          * Next, we try to bless it. Artifacts have a 1/3 chance of
2992          * being blessed, otherwise, the operation simply disenchants
2993          * them, godly power negating the magic. Ok, the explanation
2994          * is silly, but otherwise priests would always bless every
2995          * artifact weapon they find. Ego weapons and normal weapons
2996          * can be blessed automatically.
2997          */
2998         if (have_flag(flgs, TR_BLESSED))
2999         {
3000 #ifdef JP
3001 msg_format("%s は既に祝福されている。",
3002     o_name    );
3003 #else
3004                 msg_format("%s %s %s blessed already.",
3005                     ((item >= 0) ? "Your" : "The"), o_name,
3006                     ((o_ptr->number > 1) ? "were" : "was"));
3007 #endif
3008
3009                 return TRUE;
3010         }
3011
3012         if (!(object_is_artifact(o_ptr) || object_is_ego(o_ptr)) || one_in_(3))
3013         {
3014 #ifdef JP
3015                 msg_format("%sは輝いた!", o_name);
3016 #else
3017                 msg_format("%s %s shine%s!",
3018                     ((item >= 0) ? "Your" : "The"), o_name,
3019                     ((o_ptr->number > 1) ? "" : "s"));
3020 #endif
3021
3022                 add_flag(o_ptr->art_flags, TR_BLESSED);
3023                 o_ptr->discount = 99;
3024         }
3025         else
3026         {
3027                 bool dis_happened = FALSE;
3028                 msg_print(_("その武器は祝福を嫌っている!", "The weapon resists your blessing!"));
3029
3030                 /* Disenchant tohit */
3031                 if (o_ptr->to_h > 0)
3032                 {
3033                         o_ptr->to_h--;
3034                         dis_happened = TRUE;
3035                 }
3036
3037                 if ((o_ptr->to_h > 5) && (randint0(100) < 33)) o_ptr->to_h--;
3038
3039                 /* Disenchant todam */
3040                 if (o_ptr->to_d > 0)
3041                 {
3042                         o_ptr->to_d--;
3043                         dis_happened = TRUE;
3044                 }
3045
3046                 if ((o_ptr->to_d > 5) && (randint0(100) < 33)) o_ptr->to_d--;
3047
3048                 /* Disenchant toac */
3049                 if (o_ptr->to_a > 0)
3050                 {
3051                         o_ptr->to_a--;
3052                         dis_happened = TRUE;
3053                 }
3054
3055                 if ((o_ptr->to_a > 5) && (randint0(100) < 33)) o_ptr->to_a--;
3056
3057                 if (dis_happened)
3058                 {
3059                         msg_print(_("周囲が凡庸な雰囲気で満ちた...", "There is a static feeling in the air..."));
3060
3061 #ifdef JP
3062 msg_format("%s は劣化した!",
3063      o_name    );
3064 #else
3065                         msg_format("%s %s %s disenchanted!",
3066                             ((item >= 0) ? "Your" : "The"), o_name,
3067                             ((o_ptr->number > 1) ? "were" : "was"));
3068 #endif
3069
3070                 }
3071         }
3072
3073         /* Recalculate bonuses */
3074         p_ptr->update |= (PU_BONUS);
3075
3076         p_ptr->window |= (PW_EQUIP | PW_PLAYER);
3077
3078         calc_android_exp();
3079
3080         return TRUE;
3081 }
3082
3083
3084 /*!
3085  * @brief 盾磨き処理 /
3086  * pulish shield
3087  * @return ターン消費を要する処理を行ったならばTRUEを返す
3088  */
3089 bool pulish_shield(void)
3090 {
3091         OBJECT_IDX item;
3092         object_type     *o_ptr;
3093         BIT_FLAGS flgs[TR_FLAG_SIZE];
3094         GAME_TEXT o_name[MAX_NLEN];
3095         cptr            q, s;
3096
3097         /* Assume enchant weapon */
3098         item_tester_tval = TV_SHIELD;
3099
3100         q = _("どの盾を磨きますか?", "Pulish which weapon? ");
3101         s = _("磨く盾がありません。", "You have weapon to pulish.");
3102
3103         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR | IGNORE_BOTHHAND_SLOT)))
3104                 return FALSE;
3105
3106         /* Get the item (in the pack) */
3107         if (item >= 0)
3108         {
3109                 o_ptr = &inventory[item];
3110         }
3111
3112         /* Get the item (on the floor) */
3113         else
3114         {
3115                 o_ptr = &o_list[0 - item];
3116         }
3117
3118         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
3119
3120         /* Extract the flags */
3121         object_flags(o_ptr, flgs);
3122
3123         if (o_ptr->k_idx && !object_is_artifact(o_ptr) && !object_is_ego(o_ptr) &&
3124             !object_is_cursed(o_ptr) && (o_ptr->sval != SV_MIRROR_SHIELD))
3125         {
3126 #ifdef JP
3127                 msg_format("%sは輝いた!", o_name);
3128 #else
3129                 msg_format("%s %s shine%s!", ((item >= 0) ? "Your" : "The"), o_name, ((o_ptr->number > 1) ? "" : "s"));
3130 #endif
3131                 o_ptr->name2 = EGO_REFLECTION;
3132                 enchant(o_ptr, randint0(3) + 4, ENCH_TOAC);
3133
3134                 o_ptr->discount = 99;
3135                 chg_virtue(V_ENCHANT, 2);
3136
3137                 return TRUE;
3138         }
3139         else
3140         {
3141                 if (flush_failure) flush();
3142
3143                 msg_print(_("失敗した。", "Failed."));
3144                 chg_virtue(V_ENCHANT, -2);
3145         }
3146         calc_android_exp();
3147
3148         return FALSE;
3149 }
3150
3151
3152 /*!
3153  * @brief 薬の破損効果処理 /
3154  * Potions "smash open" and cause an area effect when
3155  * @param who 薬破損の主体ID(プレイヤー所持アイテムが壊れた場合0、床上のアイテムの場合モンスターID)
3156  * @param y 破壊時のY座標
3157  * @param x 破壊時のX座標
3158  * @param k_idx 破損した薬のアイテムID
3159  * @return 薬を浴びたモンスターが起こるならばTRUEを返す
3160  * @details
3161  * <pre>
3162  * (1) they are shattered while in the player's inventory,
3163  * due to cold (etc) attacks;
3164  * (2) they are thrown at a monster, or obstacle;
3165  * (3) they are shattered by a "cold ball" or other such spell
3166  * while lying on the floor.
3167  *
3168  * Arguments:
3169  *    who   ---  who caused the potion to shatter (0=player)
3170  *          potions that smash on the floor are assumed to
3171  *          be caused by no-one (who = 1), as are those that
3172  *          shatter inside the player inventory.
3173  *          (Not anymore -- I changed this; TY)
3174  *    y, x  --- coordinates of the potion (or player if
3175  *          the potion was in her inventory);
3176  *    o_ptr --- pointer to the potion object.
3177  * </pre>
3178  */
3179 bool potion_smash_effect(MONSTER_IDX who, POSITION y, POSITION x, KIND_OBJECT_IDX k_idx)
3180 {
3181         int     radius = 2;
3182         int     dt = 0;
3183         int     dam = 0;
3184         bool    angry = FALSE;
3185
3186         object_kind *k_ptr = &k_info[k_idx];
3187
3188         switch (k_ptr->sval)
3189         {
3190                 case SV_POTION_SALT_WATER:
3191                 case SV_POTION_SLIME_MOLD:
3192                 case SV_POTION_LOSE_MEMORIES:
3193                 case SV_POTION_DEC_STR:
3194                 case SV_POTION_DEC_INT:
3195                 case SV_POTION_DEC_WIS:
3196                 case SV_POTION_DEC_DEX:
3197                 case SV_POTION_DEC_CON:
3198                 case SV_POTION_DEC_CHR:
3199                 case SV_POTION_WATER:   /* perhaps a 'water' attack? */
3200                 case SV_POTION_APPLE_JUICE:
3201                         return TRUE;
3202
3203                 case SV_POTION_INFRAVISION:
3204                 case SV_POTION_DETECT_INVIS:
3205                 case SV_POTION_SLOW_POISON:
3206                 case SV_POTION_CURE_POISON:
3207                 case SV_POTION_BOLDNESS:
3208                 case SV_POTION_RESIST_HEAT:
3209                 case SV_POTION_RESIST_COLD:
3210                 case SV_POTION_HEROISM:
3211                 case SV_POTION_BESERK_STRENGTH:
3212                 case SV_POTION_RES_STR:
3213                 case SV_POTION_RES_INT:
3214                 case SV_POTION_RES_WIS:
3215                 case SV_POTION_RES_DEX:
3216                 case SV_POTION_RES_CON:
3217                 case SV_POTION_RES_CHR:
3218                 case SV_POTION_INC_STR:
3219                 case SV_POTION_INC_INT:
3220                 case SV_POTION_INC_WIS:
3221                 case SV_POTION_INC_DEX:
3222                 case SV_POTION_INC_CON:
3223                 case SV_POTION_INC_CHR:
3224                 case SV_POTION_AUGMENTATION:
3225                 case SV_POTION_ENLIGHTENMENT:
3226                 case SV_POTION_STAR_ENLIGHTENMENT:
3227                 case SV_POTION_SELF_KNOWLEDGE:
3228                 case SV_POTION_EXPERIENCE:
3229                 case SV_POTION_RESISTANCE:
3230                 case SV_POTION_INVULNERABILITY:
3231                 case SV_POTION_NEW_LIFE:
3232                         /* All of the above potions have no effect when shattered */
3233                         return FALSE;
3234                 case SV_POTION_SLOWNESS:
3235                         dt = GF_OLD_SLOW;
3236                         dam = 5;
3237                         angry = TRUE;
3238                         break;
3239                 case SV_POTION_POISON:
3240                         dt = GF_POIS;
3241                         dam = 3;
3242                         angry = TRUE;
3243                         break;
3244                 case SV_POTION_BLINDNESS:
3245                         dt = GF_DARK;
3246                         angry = TRUE;
3247                         break;
3248                 case SV_POTION_CONFUSION: /* Booze */
3249                         dt = GF_OLD_CONF;
3250                         angry = TRUE;
3251                         break;
3252                 case SV_POTION_SLEEP:
3253                         dt = GF_OLD_SLEEP;
3254                         angry = TRUE;
3255                         break;
3256                 case SV_POTION_RUINATION:
3257                 case SV_POTION_DETONATIONS:
3258                         dt = GF_SHARDS;
3259                         dam = damroll(25, 25);
3260                         angry = TRUE;
3261                         break;
3262                 case SV_POTION_DEATH:
3263                         dt = GF_DEATH_RAY;    /* !! */
3264                         dam = k_ptr->level * 10;
3265                         angry = TRUE;
3266                         radius = 1;
3267                         break;
3268                 case SV_POTION_SPEED:
3269                         dt = GF_OLD_SPEED;
3270                         break;
3271                 case SV_POTION_CURE_LIGHT:
3272                         dt = GF_OLD_HEAL;
3273                         dam = damroll(2, 3);
3274                         break;
3275                 case SV_POTION_CURE_SERIOUS:
3276                         dt = GF_OLD_HEAL;
3277                         dam = damroll(4, 3);
3278                         break;
3279                 case SV_POTION_CURE_CRITICAL:
3280                 case SV_POTION_CURING:
3281                         dt = GF_OLD_HEAL;
3282                         dam = damroll(6, 3);
3283                         break;
3284                 case SV_POTION_HEALING:
3285                         dt = GF_OLD_HEAL;
3286                         dam = damroll(10, 10);
3287                         break;
3288                 case SV_POTION_RESTORE_EXP:
3289                         dt = GF_STAR_HEAL;
3290                         dam = 0;
3291                         radius = 1;
3292                         break;
3293                 case SV_POTION_LIFE:
3294                         dt = GF_STAR_HEAL;
3295                         dam = damroll(50, 50);
3296                         radius = 1;
3297                         break;
3298                 case SV_POTION_STAR_HEALING:
3299                         dt = GF_OLD_HEAL;
3300                         dam = damroll(50, 50);
3301                         radius = 1;
3302                         break;
3303                 case SV_POTION_RESTORE_MANA:   /* MANA */
3304                         dt = GF_MANA;
3305                         dam = damroll(10, 10);
3306                         radius = 1;
3307                         break;
3308                 default:
3309                         /* Do nothing */  ;
3310         }
3311
3312         (void)project(who, radius, y, x, dam, dt,
3313             (PROJECT_JUMP | PROJECT_ITEM | PROJECT_KILL), -1);
3314
3315         /* XXX  those potions that explode need to become "known" */
3316         return angry;
3317 }
3318
3319
3320 /*!
3321  * @brief プレイヤーの全既知呪文を表示する /
3322  * Hack -- Display all known spells in a window
3323  * return なし
3324  * @details
3325  * Need to analyze size of the window.
3326  * Need more color coding.
3327  */
3328 void display_spell_list(void)
3329 {
3330         int i, j;
3331         TERM_LEN y, x;
3332         int m[9];
3333         const magic_type *s_ptr;
3334         GAME_TEXT name[MAX_NLEN];
3335         char out_val[160];
3336
3337
3338         /* Erase window */
3339         clear_from(0);
3340
3341         /* They have too many spells to list */
3342         if (p_ptr->pclass == CLASS_SORCERER) return;
3343         if (p_ptr->pclass == CLASS_RED_MAGE) return;
3344
3345         if (p_ptr->pclass == CLASS_SNIPER)
3346         {
3347                 display_snipe_list();
3348                 return;
3349         }
3350
3351         /* mind.c type classes */
3352         if ((p_ptr->pclass == CLASS_MINDCRAFTER) ||
3353             (p_ptr->pclass == CLASS_BERSERKER) ||
3354             (p_ptr->pclass == CLASS_NINJA) ||
3355             (p_ptr->pclass == CLASS_MIRROR_MASTER) ||
3356             (p_ptr->pclass == CLASS_FORCETRAINER))
3357         {
3358                 int             minfail = 0;
3359                 PLAYER_LEVEL plev = p_ptr->lev;
3360                 int             chance = 0;
3361                 mind_type       spell;
3362                 char            comment[80];
3363                 char            psi_desc[80];
3364                 int             use_mind;
3365                 bool use_hp = FALSE;
3366
3367                 y = 1;
3368                 x = 1;
3369
3370                 /* Display a list of spells */
3371                 prt("", y, x);
3372                 put_str(_("名前", "Name"), y, x + 5);
3373                 put_str(_("Lv   MP 失率 効果", "Lv Mana Fail Info"), y, x + 35);
3374
3375                 switch(p_ptr->pclass)
3376                 {
3377                 case CLASS_MINDCRAFTER: use_mind = MIND_MINDCRAFTER;break;
3378                 case CLASS_FORCETRAINER:          use_mind = MIND_KI;break;
3379                 case CLASS_BERSERKER: use_mind = MIND_BERSERKER; use_hp = TRUE; break;
3380                 case CLASS_MIRROR_MASTER: use_mind = MIND_MIRROR_MASTER; break;
3381                 case CLASS_NINJA: use_mind = MIND_NINJUTSU; use_hp = TRUE; break;
3382                 default:                use_mind = 0;break;
3383                 }
3384
3385                 /* Dump the spells */
3386                 for (i = 0; i < MAX_MIND_POWERS; i++)
3387                 {
3388                         byte a = TERM_WHITE;
3389
3390                         /* Access the available spell */
3391                         spell = mind_powers[use_mind].info[i];
3392                         if (spell.min_lev > plev) break;
3393
3394                         /* Get the failure rate */
3395                         chance = spell.fail;
3396
3397                         /* Reduce failure rate by "effective" level adjustment */
3398                         chance -= 3 * (p_ptr->lev - spell.min_lev);
3399
3400                         /* Reduce failure rate by INT/WIS adjustment */
3401                         chance -= 3 * (adj_mag_stat[p_ptr->stat_ind[mp_ptr->spell_stat]] - 1);
3402
3403                         if (!use_hp)
3404                         {
3405                                 /* Not enough mana to cast */
3406                                 if (spell.mana_cost > p_ptr->csp)
3407                                 {
3408                                         chance += 5 * (spell.mana_cost - p_ptr->csp);
3409                                         a = TERM_ORANGE;
3410                                 }
3411                         }
3412                         else
3413                         {
3414                                 /* Not enough hp to cast */
3415                                 if (spell.mana_cost > p_ptr->chp)
3416                                 {
3417                                         chance += 100;
3418                                         a = TERM_RED;
3419                                 }
3420                         }
3421
3422                         /* Extract the minimum failure rate */
3423                         minfail = adj_mag_fail[p_ptr->stat_ind[mp_ptr->spell_stat]];
3424
3425                         /* Minimum failure rate */
3426                         if (chance < minfail) chance = minfail;
3427
3428                         /* Stunning makes spells harder */
3429                         if (p_ptr->stun > 50) chance += 25;
3430                         else if (p_ptr->stun) chance += 15;
3431
3432                         /* Always a 5 percent chance of working */
3433                         if (chance > 95) chance = 95;
3434
3435                         /* Get info */
3436                         mindcraft_info(comment, use_mind, i);
3437
3438                         /* Dump the spell */
3439                         sprintf(psi_desc, "  %c) %-30s%2d %4d %3d%%%s",
3440                             I2A(i), spell.name,
3441                             spell.min_lev, spell.mana_cost, chance, comment);
3442
3443                         Term_putstr(x, y + i + 1, -1, a, psi_desc);
3444                 }
3445                 return;
3446         }
3447
3448         /* Cannot read spellbooks */
3449         if (REALM_NONE == p_ptr->realm1) return;
3450
3451         /* Normal spellcaster with books */
3452
3453         /* Scan books */
3454         for (j = 0; j < ((p_ptr->realm2 > REALM_NONE) ? 2 : 1); j++)
3455         {
3456                 int n = 0;
3457
3458                 /* Reset vertical */
3459                 m[j] = 0;
3460
3461                 /* Vertical location */
3462                 y = (j < 3) ? 0 : (m[j - 3] + 2);
3463
3464                 /* Horizontal location */
3465                 x = 27 * (j % 3);
3466
3467                 /* Scan spells */
3468                 for (i = 0; i < 32; i++)
3469                 {
3470                         byte a = TERM_WHITE;
3471
3472                         /* Access the spell */
3473                         if (!is_magic((j < 1) ? p_ptr->realm1 : p_ptr->realm2))
3474                         {
3475                                 s_ptr = &technic_info[((j < 1) ? p_ptr->realm1 : p_ptr->realm2) - MIN_TECHNIC][i % 32];
3476                         }
3477                         else
3478                         {
3479                                 s_ptr = &mp_ptr->info[((j < 1) ? p_ptr->realm1 : p_ptr->realm2) - 1][i % 32];
3480                         }
3481
3482                         strcpy(name, do_spell((j < 1) ? p_ptr->realm1 : p_ptr->realm2, i % 32, SPELL_NAME));
3483
3484                         /* Illegible */
3485                         if (s_ptr->slevel >= 99)
3486                         {
3487                                 /* Illegible */
3488                                 strcpy(name, _("(判読不能)", "(illegible)"));
3489
3490                                 /* Unusable */
3491                                 a = TERM_L_DARK;
3492                         }
3493
3494                         /* Forgotten */
3495                         else if ((j < 1) ?
3496                                 ((p_ptr->spell_forgotten1 & (1L << i))) :
3497                                 ((p_ptr->spell_forgotten2 & (1L << (i % 32)))))
3498                         {
3499                                 /* Forgotten */
3500                                 a = TERM_ORANGE;
3501                         }
3502
3503                         /* Unknown */
3504                         else if (!((j < 1) ?
3505                                 (p_ptr->spell_learned1 & (1L << i)) :
3506                                 (p_ptr->spell_learned2 & (1L << (i % 32)))))
3507                         {
3508                                 /* Unknown */
3509                                 a = TERM_RED;
3510                         }
3511
3512                         /* Untried */
3513                         else if (!((j < 1) ?
3514                                 (p_ptr->spell_worked1 & (1L << i)) :
3515                                 (p_ptr->spell_worked2 & (1L << (i % 32)))))
3516                         {
3517                                 /* Untried */
3518                                 a = TERM_YELLOW;
3519                         }
3520
3521                         /* Dump the spell --(-- */
3522                         sprintf(out_val, "%c/%c) %-20.20s",
3523                                 I2A(n / 8), I2A(n % 8), name);
3524
3525                         /* Track maximum */
3526                         m[j] = y + n;
3527
3528                         /* Dump onto the window */
3529                         Term_putstr(x, m[j], -1, a, out_val);
3530
3531                         /* Next */
3532                         n++;
3533                 }
3534         }
3535 }
3536
3537
3538 /*!
3539  * @brief 呪文の経験値を返す /
3540  * Returns experience of a spell
3541  * @param spell 呪文ID
3542  * @param use_realm 魔法領域
3543  * @return 経験値
3544  */
3545 EXP experience_of_spell(SPELL_IDX spell, REALM_IDX use_realm)
3546 {
3547         if (p_ptr->pclass == CLASS_SORCERER) return SPELL_EXP_MASTER;
3548         else if (p_ptr->pclass == CLASS_RED_MAGE) return SPELL_EXP_SKILLED;
3549         else if (use_realm == p_ptr->realm1) return p_ptr->spell_exp[spell];
3550         else if (use_realm == p_ptr->realm2) return p_ptr->spell_exp[spell + 32];
3551         else return 0;
3552 }
3553
3554
3555 /*!
3556  * @brief 呪文の消費MPを返す /
3557  * Modify mana consumption rate using spell exp and p_ptr->dec_mana
3558  * @param need_mana 基本消費MP
3559  * @param spell 呪文ID
3560  * @param realm 魔法領域
3561  * @return 消費MP
3562  */
3563 MANA_POINT mod_need_mana(MANA_POINT need_mana, SPELL_IDX spell, REALM_IDX realm)
3564 {
3565 #define MANA_CONST   2400
3566 #define MANA_DIV        4
3567 #define DEC_MANA_DIV    3
3568
3569         /* Realm magic */
3570         if ((realm > REALM_NONE) && (realm <= MAX_REALM))
3571         {
3572                 /*
3573                  * need_mana defaults if spell exp equals SPELL_EXP_EXPERT and !p_ptr->dec_mana.
3574                  * MANA_CONST is used to calculate need_mana effected from spell proficiency.
3575                  */
3576                 need_mana = need_mana * (MANA_CONST + SPELL_EXP_EXPERT - experience_of_spell(spell, realm)) + (MANA_CONST - 1);
3577                 need_mana *= p_ptr->dec_mana ? DEC_MANA_DIV : MANA_DIV;
3578                 need_mana /= MANA_CONST * MANA_DIV;
3579                 if (need_mana < 1) need_mana = 1;
3580         }
3581
3582         /* Non-realm magic */
3583         else
3584         {
3585                 if (p_ptr->dec_mana) need_mana = (need_mana + 1) * DEC_MANA_DIV / MANA_DIV;
3586         }
3587
3588 #undef DEC_MANA_DIV
3589 #undef MANA_DIV
3590 #undef MANA_CONST
3591
3592         return need_mana;
3593 }
3594
3595
3596 /*!
3597  * @brief 呪文の失敗率修正処理1(呪い、消費魔力減少、呪文簡易化) /
3598  * Modify spell fail rate
3599  * Using p_ptr->to_m_chance, p_ptr->dec_mana, p_ptr->easy_spell and p_ptr->heavy_spell
3600  * @param chance 修正前失敗率
3601  * @return 失敗率(%)
3602  * @todo 統合を検討
3603  */
3604 PERCENTAGE mod_spell_chance_1(PERCENTAGE chance)
3605 {
3606         chance += p_ptr->to_m_chance;
3607
3608         if (p_ptr->heavy_spell) chance += 20;
3609
3610         if (p_ptr->dec_mana && p_ptr->easy_spell) chance -= 4;
3611         else if (p_ptr->easy_spell) chance -= 3;
3612         else if (p_ptr->dec_mana) chance -= 2;
3613
3614         return chance;
3615 }
3616
3617
3618 /*!
3619  * @brief 呪文の失敗率修正処理2(消費魔力減少、呪い、負値修正) /
3620  * Modify spell fail rate
3621  * Using p_ptr->to_m_chance, p_ptr->dec_mana, p_ptr->easy_spell and p_ptr->heavy_spell
3622  * @param chance 修正前失敗率
3623  * @return 失敗率(%)
3624  * Modify spell fail rate (as "suffix" process)
3625  * Using p_ptr->dec_mana, p_ptr->easy_spell and p_ptr->heavy_spell
3626  * Note: variable "chance" cannot be negative.
3627  * @todo 統合を検討
3628  */
3629 PERCENTAGE mod_spell_chance_2(PERCENTAGE chance)
3630 {
3631         if (p_ptr->dec_mana) chance--;
3632
3633         if (p_ptr->heavy_spell) chance += 5;
3634
3635         return MAX(chance, 0);
3636 }
3637
3638
3639 /*!
3640  * @brief 呪文の失敗率計算メインルーチン /
3641  * Returns spell chance of failure for spell -RAK-
3642  * @param spell 呪文ID
3643  * @param use_realm 魔法領域ID
3644  * @return 失敗率(%)
3645  */
3646 PERCENTAGE spell_chance(SPELL_IDX spell, REALM_IDX use_realm)
3647 {
3648         PERCENTAGE chance, minfail;
3649         const magic_type *s_ptr;
3650         MANA_POINT need_mana;
3651         PERCENTAGE penalty = (mp_ptr->spell_stat == A_WIS) ? 10 : 4;
3652
3653
3654         /* Paranoia -- must be literate */
3655         if (!mp_ptr->spell_book) return (100);
3656
3657         if (use_realm == REALM_HISSATSU) return 0;
3658
3659         /* Access the spell */
3660         if (!is_magic(use_realm))
3661         {
3662                 s_ptr = &technic_info[use_realm - MIN_TECHNIC][spell];
3663         }
3664         else
3665         {
3666                 s_ptr = &mp_ptr->info[use_realm - 1][spell];
3667         }
3668
3669         /* Extract the base spell failure rate */
3670         chance = s_ptr->sfail;
3671
3672         /* Reduce failure rate by "effective" level adjustment */
3673         chance -= 3 * (p_ptr->lev - s_ptr->slevel);
3674
3675         /* Reduce failure rate by INT/WIS adjustment */
3676         chance -= 3 * (adj_mag_stat[p_ptr->stat_ind[mp_ptr->spell_stat]] - 1);
3677
3678         if (p_ptr->riding)
3679                 chance += (MAX(r_info[m_list[p_ptr->riding].r_idx].level - p_ptr->skill_exp[GINOU_RIDING] / 100 - 10, 0));
3680
3681         /* Extract mana consumption rate */
3682         need_mana = mod_need_mana(s_ptr->smana, spell, use_realm);
3683
3684         /* Not enough mana to cast */
3685         if (need_mana > p_ptr->csp)
3686         {
3687                 chance += 5 * (need_mana - p_ptr->csp);
3688         }
3689
3690         if ((use_realm != p_ptr->realm1) && ((p_ptr->pclass == CLASS_MAGE) || (p_ptr->pclass == CLASS_PRIEST))) chance += 5;
3691
3692         /* Extract the minimum failure rate */
3693         minfail = adj_mag_fail[p_ptr->stat_ind[mp_ptr->spell_stat]];
3694
3695         /*
3696          * Non mage/priest characters never get too good
3697          * (added high mage, mindcrafter)
3698          */
3699         if (mp_ptr->spell_xtra & MAGIC_FAIL_5PERCENT)
3700         {
3701                 if (minfail < 5) minfail = 5;
3702         }
3703
3704         /* Hack -- Priest prayer penalty for "edged" weapons  -DGK */
3705         if (((p_ptr->pclass == CLASS_PRIEST) || (p_ptr->pclass == CLASS_SORCERER)) && p_ptr->icky_wield[0]) chance += 25;
3706         if (((p_ptr->pclass == CLASS_PRIEST) || (p_ptr->pclass == CLASS_SORCERER)) && p_ptr->icky_wield[1]) chance += 25;
3707
3708         chance = mod_spell_chance_1(chance);
3709
3710         /* Goodness or evilness gives a penalty to failure rate */
3711         switch (use_realm)
3712         {
3713         case REALM_NATURE:
3714                 if ((p_ptr->align > 50) || (p_ptr->align < -50)) chance += penalty;
3715                 break;
3716         case REALM_LIFE: case REALM_CRUSADE:
3717                 if (p_ptr->align < -20) chance += penalty;
3718                 break;
3719         case REALM_DEATH: case REALM_DAEMON: case REALM_HEX:
3720                 if (p_ptr->align > 20) chance += penalty;
3721                 break;
3722         }
3723
3724         /* Minimum failure rate */
3725         if (chance < minfail) chance = minfail;
3726
3727         /* Stunning makes spells harder */
3728         if (p_ptr->stun > 50) chance += 25;
3729         else if (p_ptr->stun) chance += 15;
3730
3731         /* Always a 5 percent chance of working */
3732         if (chance > 95) chance = 95;
3733
3734         if ((use_realm == p_ptr->realm1) || (use_realm == p_ptr->realm2)
3735             || (p_ptr->pclass == CLASS_SORCERER) || (p_ptr->pclass == CLASS_RED_MAGE))
3736         {
3737                 EXP exp = experience_of_spell(spell, use_realm);
3738                 if (exp >= SPELL_EXP_EXPERT) chance--;
3739                 if (exp >= SPELL_EXP_MASTER) chance--;
3740         }
3741
3742         /* Return the chance */
3743         return mod_spell_chance_2(chance);
3744 }
3745
3746
3747 /*!
3748  * @brief 魔法が利用可能かどうかを返す /
3749  * Determine if a spell is "okay" for the player to cast or study
3750  * The spell must be legible, not forgotten, and also, to cast,
3751  * it must be known, and to study, it must not be known.
3752  * @param spell 呪文ID
3753  * @param learned 使用可能な判定ならばTRUE、学習可能かどうかの判定ならばFALSE
3754  * @param study_pray 祈りの学習判定目的ならばTRUE
3755  * @param use_realm 魔法領域ID
3756  * @return 失敗率(%)
3757  */
3758 bool spell_okay(int spell, bool learned, bool study_pray, int use_realm)
3759 {
3760         const magic_type *s_ptr;
3761
3762         /* Access the spell */
3763         if (!is_magic(use_realm))
3764         {
3765                 s_ptr = &technic_info[use_realm - MIN_TECHNIC][spell];
3766         }
3767         else
3768         {
3769                 s_ptr = &mp_ptr->info[use_realm - 1][spell];
3770         }
3771
3772         /* Spell is illegal */
3773         if (s_ptr->slevel > p_ptr->lev) return (FALSE);
3774
3775         /* Spell is forgotten */
3776         if ((use_realm == p_ptr->realm2) ?
3777             (p_ptr->spell_forgotten2 & (1L << spell)) :
3778             (p_ptr->spell_forgotten1 & (1L << spell)))
3779         {
3780                 /* Never okay */
3781                 return (FALSE);
3782         }
3783
3784         if (p_ptr->pclass == CLASS_SORCERER) return (TRUE);
3785         if (p_ptr->pclass == CLASS_RED_MAGE) return (TRUE);
3786
3787         /* Spell is learned */
3788         if ((use_realm == p_ptr->realm2) ?
3789             (p_ptr->spell_learned2 & (1L << spell)) :
3790             (p_ptr->spell_learned1 & (1L << spell)))
3791         {
3792                 /* Always true */
3793                 return (!study_pray);
3794         }
3795
3796         /* Okay to study, not to cast */
3797         return (!learned);
3798 }
3799
3800
3801
3802 /*!
3803  * @brief 呪文情報の表示処理 /
3804  * Print a list of spells (for browsing or casting or viewing)
3805  * @param target_spell 呪文ID             
3806  * @param spells 表示するスペルID配列の参照ポインタ
3807  * @param num 表示するスペルの数(spellsの要素数)
3808  * @param y 表示メッセージ左上Y座標
3809  * @param x 表示メッセージ左上X座標
3810  * @param use_realm 魔法領域ID
3811  * @return なし
3812  */
3813 void print_spells(SPELL_IDX target_spell, SPELL_IDX *spells, int num, TERM_LEN y, TERM_LEN x, REALM_IDX use_realm)
3814 {
3815         int i;
3816         SPELL_IDX spell;
3817         int  exp_level, increment = 64;
3818         const magic_type *s_ptr;
3819         cptr comment;
3820         char info[80];
3821         char out_val[160];
3822         byte line_attr;
3823         MANA_POINT need_mana;
3824         char ryakuji[5];
3825         char buf[256];
3826         bool max = FALSE;
3827
3828         if (((use_realm <= REALM_NONE) || (use_realm > MAX_REALM)) && p_ptr->wizard)
3829         msg_print(_("警告! print_spell が領域なしに呼ばれた", "Warning! print_spells called with null realm"));
3830
3831         /* Title the list */
3832         prt("", y, x);
3833         if (use_realm == REALM_HISSATSU)
3834                 strcpy(buf,_("  Lv   MP", "  Lv   SP"));
3835         else
3836                 strcpy(buf,_("熟練度 Lv   MP 失率 効果", "Profic Lv   SP Fail Effect"));
3837
3838         put_str(_("名前", "Name"), y, x + 5);
3839         put_str(buf, y, x + 29);
3840
3841         if ((p_ptr->pclass == CLASS_SORCERER) || (p_ptr->pclass == CLASS_RED_MAGE)) increment = 0;
3842         else if (use_realm == p_ptr->realm1) increment = 0;
3843         else if (use_realm == p_ptr->realm2) increment = 32;
3844
3845         /* Dump the spells */
3846         for (i = 0; i < num; i++)
3847         {
3848                 spell = spells[i];
3849
3850                 if (!is_magic(use_realm))
3851                 {
3852                         s_ptr = &technic_info[use_realm - MIN_TECHNIC][spell];
3853                 }
3854                 else
3855                 {
3856                         s_ptr = &mp_ptr->info[use_realm - 1][spell];
3857                 }
3858
3859                 if (use_realm == REALM_HISSATSU)
3860                         need_mana = s_ptr->smana;
3861                 else
3862                 {
3863                         EXP exp = experience_of_spell(spell, use_realm);
3864
3865                         /* Extract mana consumption rate */
3866                         need_mana = mod_need_mana(s_ptr->smana, spell, use_realm);
3867
3868                         if ((increment == 64) || (s_ptr->slevel >= 99)) exp_level = EXP_LEVEL_UNSKILLED;
3869                         else exp_level = spell_exp_level(exp);
3870
3871                         max = FALSE;
3872                         if (!increment && (exp_level == EXP_LEVEL_MASTER)) max = TRUE;
3873                         else if ((increment == 32) && (exp_level >= EXP_LEVEL_EXPERT)) max = TRUE;
3874                         else if (s_ptr->slevel >= 99) max = TRUE;
3875                         else if ((p_ptr->pclass == CLASS_RED_MAGE) && (exp_level >= EXP_LEVEL_SKILLED)) max = TRUE;
3876
3877                         strncpy(ryakuji, exp_level_str[exp_level], 4);
3878                         ryakuji[3] = ']';
3879                         ryakuji[4] = '\0';
3880                 }
3881
3882                 if (use_menu && target_spell)
3883                 {
3884                         if (i == (target_spell-1))
3885                                 strcpy(out_val, _("  》 ", "  >  "));
3886                         else
3887                                 strcpy(out_val, "     ");
3888                 }
3889                 else sprintf(out_val, "  %c) ", I2A(i));
3890                 /* Skip illegible spells */
3891                 if (s_ptr->slevel >= 99)
3892                 {
3893                         strcat(out_val, format("%-30s", _("(判読不能)", "(illegible)")));
3894                         c_prt(TERM_L_DARK, out_val, y + i + 1, x);
3895                         continue;
3896                 }
3897
3898                 /* XXX XXX Could label spells above the players level */
3899
3900                 /* Get extra info */
3901                 strcpy(info, do_spell(use_realm, spell, SPELL_INFO));
3902
3903                 /* Use that info */
3904                 comment = info;
3905
3906                 /* Assume spell is known and tried */
3907                 line_attr = TERM_WHITE;
3908
3909                 /* Analyze the spell */
3910                 if ((p_ptr->pclass == CLASS_SORCERER) || (p_ptr->pclass == CLASS_RED_MAGE))
3911                 {
3912                         if (s_ptr->slevel > p_ptr->max_plv)
3913                         {
3914                                 comment = _("未知", "unknown");
3915                                 line_attr = TERM_L_BLUE;
3916                         }
3917                         else if (s_ptr->slevel > p_ptr->lev)
3918                         {
3919                                 comment = _("忘却", "forgotten");
3920                                 line_attr = TERM_YELLOW;
3921                         }
3922                 }
3923                 else if ((use_realm != p_ptr->realm1) && (use_realm != p_ptr->realm2))
3924                 {
3925                         comment = _("未知", "unknown");
3926                         line_attr = TERM_L_BLUE;
3927                 }
3928                 else if ((use_realm == p_ptr->realm1) ?
3929                     ((p_ptr->spell_forgotten1 & (1L << spell))) :
3930                     ((p_ptr->spell_forgotten2 & (1L << spell))))
3931                 {
3932                         comment = _("忘却", "forgotten");
3933                         line_attr = TERM_YELLOW;
3934                 }
3935                 else if (!((use_realm == p_ptr->realm1) ?
3936                     (p_ptr->spell_learned1 & (1L << spell)) :
3937                     (p_ptr->spell_learned2 & (1L << spell))))
3938                 {
3939                         comment = _("未知", "unknown");
3940                         line_attr = TERM_L_BLUE;
3941                 }
3942                 else if (!((use_realm == p_ptr->realm1) ?
3943                     (p_ptr->spell_worked1 & (1L << spell)) :
3944                     (p_ptr->spell_worked2 & (1L << spell))))
3945                 {
3946                         comment = _("未経験", "untried");
3947                         line_attr = TERM_L_GREEN;
3948                 }
3949
3950                 /* Dump the spell --(-- */
3951                 if (use_realm == REALM_HISSATSU)
3952                 {
3953                         strcat(out_val, format("%-25s %2d %4d",
3954                             do_spell(use_realm, spell, SPELL_NAME), /* realm, spell */
3955                             s_ptr->slevel, need_mana));
3956                 }
3957                 else
3958                 {
3959                         strcat(out_val, format("%-25s%c%-4s %2d %4d %3d%% %s",
3960                             do_spell(use_realm, spell, SPELL_NAME), /* realm, spell */
3961                             (max ? '!' : ' '), ryakuji,
3962                             s_ptr->slevel, need_mana, spell_chance(spell, use_realm), comment));
3963                 }
3964                 c_prt(line_attr, out_val, y + i + 1, x);
3965         }
3966
3967         /* Clear the bottom line */
3968         prt("", y + i + 1, x);
3969 }
3970
3971
3972
3973 /*!
3974  * @brief 防具の錆止め防止処理
3975  * @return ターン消費を要する処理を行ったならばTRUEを返す
3976  */
3977 bool rustproof(void)
3978 {
3979         OBJECT_IDX item;
3980         object_type *o_ptr;
3981         GAME_TEXT o_name[MAX_NLEN];
3982         cptr        q, s;
3983
3984         /* Select a piece of armour */
3985         item_tester_hook = object_is_armour;
3986
3987         q = _("どの防具に錆止めをしますか?", "Rustproof which piece of armour? ");
3988         s = _("錆止めできるものがありません。", "You have nothing to rustproof.");
3989
3990         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR | IGNORE_BOTHHAND_SLOT))) return FALSE;
3991
3992         /* Get the item (in the pack) */
3993         if (item >= 0)
3994         {
3995                 o_ptr = &inventory[item];
3996         }
3997
3998         /* Get the item (on the floor) */
3999         else
4000         {
4001                 o_ptr = &o_list[0 - item];
4002         }
4003
4004         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
4005
4006         add_flag(o_ptr->art_flags, TR_IGNORE_ACID);
4007
4008         if ((o_ptr->to_a < 0) && !object_is_cursed(o_ptr))
4009         {
4010 #ifdef JP
4011                 msg_format("%sは新品同様になった!",o_name);
4012 #else
4013                 msg_format("%s %s look%s as good as new!", ((item >= 0) ? "Your" : "The"), o_name, ((o_ptr->number > 1) ? "" : "s"));
4014 #endif
4015
4016                 o_ptr->to_a = 0;
4017         }
4018
4019 #ifdef JP
4020         msg_format("%sは腐食しなくなった。", o_name);
4021 #else
4022         msg_format("%s %s %s now protected against corrosion.", ((item >= 0) ? "Your" : "The"), o_name, ((o_ptr->number > 1) ? "are" : "is"));
4023 #endif
4024
4025         calc_android_exp();
4026         return TRUE;
4027 }
4028
4029
4030 /*!
4031  * @brief 防具呪縛処理 /
4032  * Curse the players armor
4033  * @return 実際に呪縛されたらTRUEを返す
4034  */
4035 bool curse_armor(void)
4036 {
4037         int i;
4038         object_type *o_ptr;
4039
4040         GAME_TEXT o_name[MAX_NLEN];
4041
4042
4043         /* Curse the body armor */
4044         o_ptr = &inventory[INVEN_BODY];
4045
4046         /* Nothing to curse */
4047         if (!o_ptr->k_idx) return (FALSE);
4048
4049         object_desc(o_name, o_ptr, OD_OMIT_PREFIX);
4050
4051         /* Attempt a saving throw for artifacts */
4052         if (object_is_artifact(o_ptr) && (randint0(100) < 50))
4053         {
4054                 /* Cool */
4055 #ifdef JP
4056 msg_format("%sが%sを包み込もうとしたが、%sはそれを跳ね返した!",
4057 "恐怖の暗黒オーラ", "防具", o_name);
4058 #else
4059                 msg_format("A %s tries to %s, but your %s resists the effects!",
4060                            "terrible black aura", "surround your armor", o_name);
4061 #endif
4062
4063         }
4064
4065         /* not artifact or failed save... */
4066         else
4067         {
4068                 msg_format(_("恐怖の暗黒オーラがあなたの%sを包み込んだ!", "A terrible black aura blasts your %s!"), o_name);
4069                 chg_virtue(V_ENCHANT, -5);
4070
4071                 /* Blast the armor */
4072                 o_ptr->name1 = 0;
4073                 o_ptr->name2 = EGO_BLASTED;
4074                 o_ptr->to_a = 0 - randint1(5) - randint1(5);
4075                 o_ptr->to_h = 0;
4076                 o_ptr->to_d = 0;
4077                 o_ptr->ac = 0;
4078                 o_ptr->dd = 0;
4079                 o_ptr->ds = 0;
4080
4081                 for (i = 0; i < TR_FLAG_SIZE; i++)
4082                         o_ptr->art_flags[i] = 0;
4083
4084                 /* Curse it */
4085                 o_ptr->curse_flags = TRC_CURSED;
4086
4087                 /* Break it */
4088                 o_ptr->ident |= (IDENT_BROKEN);
4089
4090                 /* Recalculate bonuses */
4091                 p_ptr->update |= (PU_BONUS);
4092
4093                 /* Recalculate mana */
4094                 p_ptr->update |= (PU_MANA);
4095
4096                 p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
4097         }
4098
4099         return (TRUE);
4100 }
4101
4102 /*!
4103  * @brief 武器呪縛処理 /
4104  * Curse the players weapon
4105  * @param force 無条件に呪縛を行うならばTRUE
4106  * @param o_ptr 呪縛する武器のアイテム情報参照ポインタ
4107  * @return 実際に呪縛されたらTRUEを返す
4108  */
4109 bool curse_weapon_object(bool force, object_type *o_ptr)
4110 {
4111         int i;
4112         GAME_TEXT o_name[MAX_NLEN];
4113
4114         /* Nothing to curse */
4115         if (!o_ptr->k_idx) return (FALSE);
4116         object_desc(o_name, o_ptr, OD_OMIT_PREFIX);
4117
4118         /* Attempt a saving throw */
4119         if (object_is_artifact(o_ptr) && (randint0(100) < 50) && !force)
4120         {
4121                 /* Cool */
4122 #ifdef JP
4123                 msg_format("%sが%sを包み込もうとしたが、%sはそれを跳ね返した!",
4124                                 "恐怖の暗黒オーラ", "武器", o_name);
4125 #else
4126                 msg_format("A %s tries to %s, but your %s resists the effects!",
4127                                 "terrible black aura", "surround your weapon", o_name);
4128 #endif
4129         }
4130
4131         /* not artifact or failed save... */
4132         else
4133         {
4134                 if (!force) msg_format(_("恐怖の暗黒オーラがあなたの%sを包み込んだ!", "A terrible black aura blasts your %s!"), o_name);
4135                 chg_virtue(V_ENCHANT, -5);
4136
4137                 /* Shatter the weapon */
4138                 o_ptr->name1 = 0;
4139                 o_ptr->name2 = EGO_SHATTERED;
4140                 o_ptr->to_h = 0 - randint1(5) - randint1(5);
4141                 o_ptr->to_d = 0 - randint1(5) - randint1(5);
4142                 o_ptr->to_a = 0;
4143                 o_ptr->ac = 0;
4144                 o_ptr->dd = 0;
4145                 o_ptr->ds = 0;
4146
4147                 for (i = 0; i < TR_FLAG_SIZE; i++)
4148                         o_ptr->art_flags[i] = 0;
4149
4150                 /* Curse it */
4151                 o_ptr->curse_flags = TRC_CURSED;
4152
4153                 /* Break it */
4154                 o_ptr->ident |= (IDENT_BROKEN);
4155
4156                 /* Recalculate bonuses */
4157                 p_ptr->update |= (PU_BONUS);
4158
4159                 /* Recalculate mana */
4160                 p_ptr->update |= (PU_MANA);
4161
4162                 p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
4163         }
4164
4165         return (TRUE);
4166 }
4167
4168 /*!
4169  * @brief 武器呪縛処理のメインルーチン /
4170  * Curse the players weapon
4171  * @param force 無条件に呪縛を行うならばTRUE
4172  * @param slot 呪縛する武器の装備スロット
4173  * @return 実際に呪縛されたらTRUEを返す
4174  */
4175 bool curse_weapon(bool force, int slot)
4176 {
4177         /* Curse the weapon */
4178         return curse_weapon_object(force, &inventory[slot]);
4179 }
4180
4181
4182 /*!
4183  * @brief ボルトのエゴ化処理(火炎エゴのみ) /
4184  * Enchant some bolts
4185  * @return 常にTRUEを返す
4186  */
4187 bool brand_bolts(void)
4188 {
4189         int i;
4190
4191         /* Use the first acceptable bolts */
4192         for (i = 0; i < INVEN_PACK; i++)
4193         {
4194                 object_type *o_ptr = &inventory[i];
4195
4196                 /* Skip non-bolts */
4197                 if (o_ptr->tval != TV_BOLT) continue;
4198
4199                 /* Skip artifacts and ego-items */
4200                 if (object_is_artifact(o_ptr) || object_is_ego(o_ptr))
4201                         continue;
4202
4203                 /* Skip cursed/broken items */
4204                 if (object_is_cursed(o_ptr) || object_is_broken(o_ptr)) continue;
4205
4206                 /* Randomize */
4207                 if (randint0(100) < 75) continue;
4208
4209                 msg_print(_("クロスボウの矢が炎のオーラに包まれた!", "Your bolts are covered in a fiery aura!"));
4210
4211                 /* Ego-item */
4212                 o_ptr->name2 = EGO_FLAME;
4213                 enchant(o_ptr, randint0(3) + 4, ENCH_TOHIT | ENCH_TODAM);
4214                 return (TRUE);
4215         }
4216
4217         if (flush_failure) flush();
4218
4219         /* Fail */
4220         msg_print(_("炎で強化するのに失敗した。", "The fiery enchantment failed."));
4221
4222         return (TRUE);
4223 }
4224
4225
4226 /*!
4227  * @brief 変身処理向けにモンスターの近隣レベル帯モンスターを返す /
4228  * Helper function -- return a "nearby" race for polymorphing
4229  * @param r_idx 基準となるモンスター種族ID
4230  * @return 変更先のモンスター種族ID
4231  * @details
4232  * Note that this function is one of the more "dangerous" ones...
4233  */
4234 static IDX poly_r_idx(MONRACE_IDX r_idx)
4235 {
4236         monster_race *r_ptr = &r_info[r_idx];
4237
4238         int i;
4239         MONRACE_IDX r;
4240         DEPTH lev1, lev2;
4241
4242         /* Hack -- Uniques/Questors never polymorph */
4243         if ((r_ptr->flags1 & RF1_UNIQUE) ||
4244             (r_ptr->flags1 & RF1_QUESTOR))
4245                 return (r_idx);
4246
4247         /* Allowable range of "levels" for resulting monster */
4248         lev1 = r_ptr->level - ((randint1(20) / randint1(9)) + 1);
4249         lev2 = r_ptr->level + ((randint1(20) / randint1(9)) + 1);
4250
4251         /* Pick a (possibly new) non-unique race */
4252         for (i = 0; i < 1000; i++)
4253         {
4254                 /* Pick a new race, using a level calculation */
4255                 r = get_mon_num((dun_level + r_ptr->level) / 2 + 5);
4256
4257                 /* Handle failure */
4258                 if (!r) break;
4259
4260                 /* Obtain race */
4261                 r_ptr = &r_info[r];
4262
4263                 /* Ignore unique monsters */
4264                 if (r_ptr->flags1 & RF1_UNIQUE) continue;
4265
4266                 /* Ignore monsters with incompatible levels */
4267                 if ((r_ptr->level < lev1) || (r_ptr->level > lev2)) continue;
4268
4269                 /* Use that index */
4270                 r_idx = r;
4271
4272                 break;
4273         }
4274         return (r_idx);
4275 }
4276
4277 /*!
4278  * @brief 指定座標にいるモンスターを変身させる /
4279  * Helper function -- return a "nearby" race for polymorphing
4280  * @param y 指定のY座標
4281  * @param x 指定のX座標
4282  * @return 実際に変身したらTRUEを返す
4283  */
4284 bool polymorph_monster(POSITION y, POSITION x)
4285 {
4286         cave_type *c_ptr = &cave[y][x];
4287         monster_type *m_ptr = &m_list[c_ptr->m_idx];
4288         bool polymorphed = FALSE;
4289         MONRACE_IDX new_r_idx;
4290         MONRACE_IDX old_r_idx = m_ptr->r_idx;
4291         bool targeted = (target_who == c_ptr->m_idx) ? TRUE : FALSE;
4292         bool health_tracked = (p_ptr->health_who == c_ptr->m_idx) ? TRUE : FALSE;
4293         monster_type back_m;
4294
4295         if (p_ptr->inside_arena || p_ptr->inside_battle) return (FALSE);
4296
4297         if ((p_ptr->riding == c_ptr->m_idx) || (m_ptr->mflag2 & MFLAG2_KAGE)) return (FALSE);
4298
4299         /* Memorize the monster before polymorphing */
4300         back_m = *m_ptr;
4301
4302         /* Pick a "new" monster race */
4303         new_r_idx = poly_r_idx(old_r_idx);
4304
4305         /* Handle polymorph */
4306         if (new_r_idx != old_r_idx)
4307         {
4308                 BIT_FLAGS mode = 0L;
4309                 bool preserve_hold_objects = back_m.hold_o_idx ? TRUE : FALSE;
4310                 OBJECT_IDX this_o_idx, next_o_idx = 0;
4311
4312                 /* Get the monsters attitude */
4313                 if (is_friendly(m_ptr)) mode |= PM_FORCE_FRIENDLY;
4314                 if (is_pet(m_ptr)) mode |= PM_FORCE_PET;
4315                 if (m_ptr->mflag2 & MFLAG2_NOPET) mode |= PM_NO_PET;
4316
4317                 /* Mega-hack -- ignore held objects */
4318                 m_ptr->hold_o_idx = 0;
4319
4320                 /* "Kill" the "old" monster */
4321                 delete_monster_idx(c_ptr->m_idx);
4322
4323                 /* Create a new monster (no groups) */
4324                 if (place_monster_aux(0, y, x, new_r_idx, mode))
4325                 {
4326                         m_list[hack_m_idx_ii].nickname = back_m.nickname;
4327                         m_list[hack_m_idx_ii].parent_m_idx = back_m.parent_m_idx;
4328                         m_list[hack_m_idx_ii].hold_o_idx = back_m.hold_o_idx;
4329
4330                         /* Success */
4331                         polymorphed = TRUE;
4332                 }
4333                 else
4334                 {
4335                         /* Placing the new monster failed */
4336                         if (place_monster_aux(0, y, x, old_r_idx, (mode | PM_NO_KAGE | PM_IGNORE_TERRAIN)))
4337                         {
4338                                 m_list[hack_m_idx_ii] = back_m;
4339
4340                                 /* Re-initialize monster process */
4341                                 mproc_init();
4342                         }
4343                         else preserve_hold_objects = FALSE;
4344                 }
4345
4346                 /* Mega-hack -- preserve held objects */
4347                 if (preserve_hold_objects)
4348                 {
4349                         for (this_o_idx = back_m.hold_o_idx; this_o_idx; this_o_idx = next_o_idx)
4350                         {
4351                                 object_type *o_ptr = &o_list[this_o_idx];
4352
4353                                 /* Acquire next object */
4354                                 next_o_idx = o_ptr->next_o_idx;
4355
4356                                 /* Held by new monster */
4357                                 o_ptr->held_m_idx = hack_m_idx_ii;
4358                         }
4359                 }
4360                 else if (back_m.hold_o_idx) /* Failed (paranoia) */
4361                 {
4362                         /* Delete objects */
4363                         for (this_o_idx = back_m.hold_o_idx; this_o_idx; this_o_idx = next_o_idx)
4364                         {
4365                                 /* Acquire next object */
4366                                 next_o_idx = o_list[this_o_idx].next_o_idx;
4367
4368                                 delete_object_idx(this_o_idx);
4369                         }
4370                 }
4371
4372                 if (targeted) target_who = hack_m_idx_ii;
4373                 if (health_tracked) health_track(hack_m_idx_ii);
4374         }
4375
4376         return polymorphed;
4377 }
4378
4379 /*!
4380  * @brief 次元の扉処理 /
4381  * Dimension Door
4382  * @param x テレポート先のX座標
4383  * @param y テレポート先のY座標
4384  * @return 目標に指定通りテレポートできたならばTRUEを返す
4385  */
4386 static bool dimension_door_aux(DEPTH x, DEPTH y)
4387 {
4388         PLAYER_LEVEL plev = p_ptr->lev;
4389
4390         p_ptr->energy_need += (s16b)((s32b)(60 - plev) * ENERGY_NEED() / 100L);
4391
4392         if (!cave_player_teleportable_bold(y, x, 0L) ||
4393             (distance(y, x, p_ptr->y, p_ptr->x) > plev / 2 + 10) ||
4394             (!randint0(plev / 10 + 10)))
4395         {
4396                 p_ptr->energy_need += (s16b)((s32b)(60 - plev) * ENERGY_NEED() / 100L);
4397                 teleport_player((plev + 2) * 2, TELEPORT_PASSIVE);
4398
4399                 /* Failed */
4400                 return FALSE;
4401         }
4402         else
4403         {
4404                 teleport_player_to(y, x, 0L);
4405
4406                 /* Success */
4407                 return TRUE;
4408         }
4409 }
4410
4411
4412 /*!
4413  * @brief 次元の扉処理のメインルーチン /
4414  * Dimension Door
4415  * @return ターンを消費した場合TRUEを返す
4416  */
4417 bool dimension_door(void)
4418 {
4419         DEPTH x = 0, y = 0;
4420
4421         /* Rerutn FALSE if cancelled */
4422         if (!tgt_pt(&x, &y)) return FALSE;
4423
4424         if (dimension_door_aux(x, y)) return TRUE;
4425
4426         msg_print(_("精霊界から物質界に戻る時うまくいかなかった!", "You fail to exit the astral plane correctly!"));
4427
4428         return TRUE;
4429 }
4430
4431
4432 /*!
4433  * @brief 鏡抜け処理のメインルーチン /
4434  * Mirror Master's Dimension Door
4435  * @return ターンを消費した場合TRUEを返す
4436  */
4437 bool mirror_tunnel(void)
4438 {
4439         POSITION x = 0, y = 0;
4440
4441         /* Rerutn FALSE if cancelled */
4442         if (!tgt_pt(&x, &y)) return FALSE;
4443
4444         if (dimension_door_aux(x, y)) return TRUE;
4445
4446         msg_print(_("鏡の世界をうまく通れなかった!", "You fail to pass the mirror plane correctly!"));
4447
4448         return TRUE;
4449 }
4450
4451 /*!
4452  * @brief 魔力食い処理
4453  * @param power 基本効力
4454  * @return ターンを消費した場合TRUEを返す
4455  */
4456 bool eat_magic(int power)
4457 {
4458         object_type *o_ptr;
4459         object_kind *k_ptr;
4460         DEPTH lev;
4461         OBJECT_IDX item;
4462         int recharge_strength = 0;
4463
4464         bool fail = FALSE;
4465         byte fail_type = 1;
4466
4467         cptr q, s;
4468         GAME_TEXT o_name[MAX_NLEN];
4469
4470         item_tester_hook = item_tester_hook_recharge;
4471
4472         q = _("どのアイテムから魔力を吸収しますか?", "Drain which item? ");
4473         s = _("魔力を吸収できるアイテムがありません。", "You have nothing to drain.");
4474
4475         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return FALSE;
4476
4477         if (item >= 0)
4478         {
4479                 o_ptr = &inventory[item];
4480         }
4481         else
4482         {
4483                 o_ptr = &o_list[0 - item];
4484         }
4485
4486         k_ptr = &k_info[o_ptr->k_idx];
4487         lev = k_info[o_ptr->k_idx].level;
4488
4489         if (o_ptr->tval == TV_ROD)
4490         {
4491                 recharge_strength = ((power > lev/2) ? (power - lev/2) : 0) / 5;
4492
4493                 /* Back-fire */
4494                 if (one_in_(recharge_strength))
4495                 {
4496                         /* Activate the failure code. */
4497                         fail = TRUE;
4498                 }
4499                 else
4500                 {
4501                         if (o_ptr->timeout > (o_ptr->number - 1) * k_ptr->pval)
4502                         {
4503                                 msg_print(_("充填中のロッドから魔力を吸収することはできません。", "You can't absorb energy from a discharged rod."));
4504                         }
4505                         else
4506                         {
4507                                 p_ptr->csp += lev;
4508                                 o_ptr->timeout += k_ptr->pval;
4509                         }
4510                 }
4511         }
4512         else
4513         {
4514                 /* All staffs, wands. */
4515                 recharge_strength = (100 + power - lev) / 15;
4516
4517                 /* Paranoia */
4518                 if (recharge_strength < 0) recharge_strength = 0;
4519
4520                 /* Back-fire */
4521                 if (one_in_(recharge_strength))
4522                 {
4523                         /* Activate the failure code. */
4524                         fail = TRUE;
4525                 }
4526                 else
4527                 {
4528                         if (o_ptr->pval > 0)
4529                         {
4530                                 p_ptr->csp += lev / 2;
4531                                 o_ptr->pval --;
4532
4533                                 /* XXX Hack -- unstack if necessary */
4534                                 if ((o_ptr->tval == TV_STAFF) && (item >= 0) && (o_ptr->number > 1))
4535                                 {
4536                                         object_type forge;
4537                                         object_type *q_ptr;
4538                                         q_ptr = &forge;
4539
4540                                         /* Obtain a local object */
4541                                         object_copy(q_ptr, o_ptr);
4542
4543                                         /* Modify quantity */
4544                                         q_ptr->number = 1;
4545
4546                                         /* Restore the charges */
4547                                         o_ptr->pval++;
4548
4549                                         /* Unstack the used item */
4550                                         o_ptr->number--;
4551                                         p_ptr->total_weight -= q_ptr->weight;
4552                                         item = inven_carry(q_ptr);
4553
4554                                         msg_print(_("杖をまとめなおした。", "You unstack your staff."));
4555                                 }
4556                         }
4557                         else
4558                         {
4559                                 msg_print(_("吸収できる魔力がありません!", "There's no energy there to absorb!"));
4560                         }
4561                         if (!o_ptr->pval) o_ptr->ident |= IDENT_EMPTY;
4562                 }
4563         }
4564
4565         /* Inflict the penalties for failing a recharge. */
4566         if (fail)
4567         {
4568                 /* Artifacts are never destroyed. */
4569                 if (object_is_fixed_artifact(o_ptr))
4570                 {
4571                         object_desc(o_name, o_ptr, OD_NAME_ONLY);
4572                         msg_format(_("魔力が逆流した!%sは完全に魔力を失った。", "The recharging backfires - %s is completely drained!"), o_name);
4573
4574                         /* Artifact rods. */
4575                         if (o_ptr->tval == TV_ROD)
4576                                 o_ptr->timeout = k_ptr->pval * o_ptr->number;
4577
4578                         /* Artifact wands and staffs. */
4579                         else if ((o_ptr->tval == TV_WAND) || (o_ptr->tval == TV_STAFF))
4580                                 o_ptr->pval = 0;
4581                 }
4582                 else
4583                 {
4584                         /* Get the object description */
4585                         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
4586
4587                         /*** Determine Seriousness of Failure ***/
4588
4589                         /* Mages recharge objects more safely. */
4590                         if (IS_WIZARD_CLASS())
4591                         {
4592                                 /* 10% chance to blow up one rod, otherwise draining. */
4593                                 if (o_ptr->tval == TV_ROD)
4594                                 {
4595                                         if (one_in_(10)) fail_type = 2;
4596                                         else fail_type = 1;
4597                                 }
4598                                 /* 75% chance to blow up one wand, otherwise draining. */
4599                                 else if (o_ptr->tval == TV_WAND)
4600                                 {
4601                                         if (!one_in_(3)) fail_type = 2;
4602                                         else fail_type = 1;
4603                                 }
4604                                 /* 50% chance to blow up one staff, otherwise no effect. */
4605                                 else if (o_ptr->tval == TV_STAFF)
4606                                 {
4607                                         if (one_in_(2)) fail_type = 2;
4608                                         else fail_type = 0;
4609                                 }
4610                         }
4611
4612                         /* All other classes get no special favors. */
4613                         else
4614                         {
4615                                 /* 33% chance to blow up one rod, otherwise draining. */
4616                                 if (o_ptr->tval == TV_ROD)
4617                                 {
4618                                         if (one_in_(3)) fail_type = 2;
4619                                         else fail_type = 1;
4620                                 }
4621                                 /* 20% chance of the entire stack, else destroy one wand. */
4622                                 else if (o_ptr->tval == TV_WAND)
4623                                 {
4624                                         if (one_in_(5)) fail_type = 3;
4625                                         else fail_type = 2;
4626                                 }
4627                                 /* Blow up one staff. */
4628                                 else if (o_ptr->tval == TV_STAFF)
4629                                 {
4630                                         fail_type = 2;
4631                                 }
4632                         }
4633
4634                         /*** Apply draining and destruction. ***/
4635
4636                         /* Drain object or stack of objects. */
4637                         if (fail_type == 1)
4638                         {
4639                                 if (o_ptr->tval == TV_ROD)
4640                                 {
4641                                         msg_format(_("ロッドは破損を免れたが、魔力は全て失なわれた。",
4642                                                                  "You save your rod from destruction, but all charges are lost."), o_name);
4643                                         o_ptr->timeout = k_ptr->pval * o_ptr->number;
4644                                 }
4645                                 else if (o_ptr->tval == TV_WAND)
4646                                 {
4647                                         msg_format(_("%sは破損を免れたが、魔力が全て失われた。", "You save your %s from destruction, but all charges are lost."), o_name);
4648                                         o_ptr->pval = 0;
4649                                 }
4650                                 /* Staffs aren't drained. */
4651                         }
4652
4653                         /* Destroy an object or one in a stack of objects. */
4654                         if (fail_type == 2)
4655                         {
4656                                 if (o_ptr->number > 1)
4657                                 {
4658                                         msg_format(_("乱暴な魔法のために%sが一本壊れた!", "Wild magic consumes one of your %s!"), o_name);
4659                                         /* Reduce rod stack maximum timeout, drain wands. */
4660                                         if (o_ptr->tval == TV_ROD) o_ptr->timeout = MIN(o_ptr->timeout, k_ptr->pval * (o_ptr->number - 1));
4661                                         else if (o_ptr->tval == TV_WAND) o_ptr->pval = o_ptr->pval * (o_ptr->number - 1) / o_ptr->number;
4662                                 }
4663                                 else
4664                                 {
4665                                         msg_format(_("乱暴な魔法のために%sが何本か壊れた!", "Wild magic consumes your %s!"), o_name);
4666                                 }
4667                                 
4668                                 /* Reduce and describe inventory */
4669                                 if (item >= 0)
4670                                 {
4671                                         inven_item_increase(item, -1);
4672                                         inven_item_describe(item);
4673                                         inven_item_optimize(item);
4674                                 }
4675
4676                                 /* Reduce and describe floor item */
4677                                 else
4678                                 {
4679                                         floor_item_increase(0 - item, -1);
4680                                         floor_item_describe(0 - item);
4681                                         floor_item_optimize(0 - item);
4682                                 }
4683                         }
4684
4685                         /* Destroy all members of a stack of objects. */
4686                         if (fail_type == 3)
4687                         {
4688                                 if (o_ptr->number > 1)
4689                                         msg_format(_("乱暴な魔法のために%sが全て壊れた!", "Wild magic consumes all your %s!"), o_name);
4690                                 else
4691                                         msg_format(_("乱暴な魔法のために%sが壊れた!", "Wild magic consumes your %s!"), o_name);
4692
4693                                 /* Reduce and describe inventory */
4694                                 if (item >= 0)
4695                                 {
4696                                         inven_item_increase(item, -999);
4697                                         inven_item_describe(item);
4698                                         inven_item_optimize(item);
4699                                 }
4700
4701                                 /* Reduce and describe floor item */
4702                                 else
4703                                 {
4704                                         floor_item_increase(0 - item, -999);
4705                                         floor_item_describe(0 - item);
4706                                         floor_item_optimize(0 - item);
4707                                 }
4708                         }
4709                 }
4710         }
4711
4712         if (p_ptr->csp > p_ptr->msp)
4713         {
4714                 p_ptr->csp = p_ptr->msp;
4715         }
4716
4717         /* Redraw mana and hp */
4718         p_ptr->redraw |= (PR_MANA);
4719
4720         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
4721         p_ptr->window |= (PW_INVEN);
4722
4723         return TRUE;
4724 }
4725
4726
4727 /*!
4728  * @brief 皆殺し(全方向攻撃)処理
4729  * @param py プレイヤーY座標
4730  * @param px プレイヤーX座標
4731  * @return なし
4732  */
4733 void massacre(void)
4734 {
4735         POSITION x, y;
4736         cave_type       *c_ptr;
4737         monster_type    *m_ptr;
4738         DIRECTION dir;
4739
4740         for (dir = 0; dir < 8; dir++)
4741         {
4742                 y = p_ptr->y + ddy_ddd[dir];
4743                 x = p_ptr->x + ddx_ddd[dir];
4744                 c_ptr = &cave[y][x];
4745
4746                 /* Get the monster */
4747                 m_ptr = &m_list[c_ptr->m_idx];
4748
4749                 /* Hack -- attack monsters */
4750                 if (c_ptr->m_idx && (m_ptr->ml || cave_have_flag_bold(y, x, FF_PROJECT)))
4751                         py_attack(y, x, 0);
4752         }
4753 }
4754
4755 bool eat_lock(void)
4756 {
4757         POSITION x, y;
4758         cave_type *c_ptr;
4759         feature_type *f_ptr, *mimic_f_ptr;
4760         DIRECTION dir;
4761
4762         if (!get_direction(&dir, FALSE, FALSE)) return FALSE;
4763         y = p_ptr->y + ddy[dir];
4764         x = p_ptr->x + ddx[dir];
4765         c_ptr = &cave[y][x];
4766         f_ptr = &f_info[c_ptr->feat];
4767         mimic_f_ptr = &f_info[get_feat_mimic(c_ptr)];
4768
4769         stop_mouth();
4770
4771         if (!have_flag(mimic_f_ptr->flags, FF_HURT_ROCK))
4772         {
4773                 msg_print(_("この地形は食べられない。", "You cannot eat this feature."));
4774         }
4775         else if (have_flag(f_ptr->flags, FF_PERMANENT))
4776         {
4777                 msg_format(_("いてっ!この%sはあなたの歯より硬い!", "Ouch!  This %s is harder than your teeth!"), f_name + mimic_f_ptr->name);
4778         }
4779         else if (c_ptr->m_idx)
4780         {
4781                 monster_type *m_ptr = &m_list[c_ptr->m_idx];
4782                 msg_print(_("何かが邪魔しています!", "There's something in the way!"));
4783
4784                 if (!m_ptr->ml || !is_pet(m_ptr)) py_attack(y, x, 0);
4785         }
4786         else if (have_flag(f_ptr->flags, FF_TREE))
4787         {
4788                 msg_print(_("木の味は好きじゃない!", "You don't like the woody taste!"));
4789         }
4790         else if (have_flag(f_ptr->flags, FF_GLASS))
4791         {
4792                 msg_print(_("ガラスの味は好きじゃない!", "You don't like the glassy taste!"));
4793         }
4794         else if (have_flag(f_ptr->flags, FF_DOOR) || have_flag(f_ptr->flags, FF_CAN_DIG))
4795         {
4796                 (void)set_food(p_ptr->food + 3000);
4797         }
4798         else if (have_flag(f_ptr->flags, FF_MAY_HAVE_GOLD) || have_flag(f_ptr->flags, FF_HAS_GOLD))
4799         {
4800                 (void)set_food(p_ptr->food + 5000);
4801         }
4802         else
4803         {
4804                 msg_format(_("この%sはとてもおいしい!", "This %s is very filling!"), f_name + mimic_f_ptr->name);
4805                 (void)set_food(p_ptr->food + 10000);
4806         }
4807
4808         /* Destroy the wall */
4809         cave_alter_feat(y, x, FF_HURT_ROCK);
4810
4811         /* Move the player */
4812         (void)move_player_effect(y, x, MPE_DONT_PICKUP);
4813         return TRUE;
4814 }
4815
4816
4817 bool shock_power(void)
4818 {
4819         DIRECTION dir;
4820         POSITION y, x;
4821         HIT_POINT dam;
4822         PLAYER_LEVEL plev = p_ptr->lev;
4823         int boost = P_PTR_KI;
4824         if (heavy_armor()) boost /= 2;
4825
4826         project_length = 1;
4827         if (!get_aim_dir(&dir)) return FALSE;
4828
4829         y = p_ptr->y + ddy[dir];
4830         x = p_ptr->x + ddx[dir];
4831         dam = damroll(8 + ((plev - 5) / 4) + boost / 12, 8);
4832         fire_beam(GF_MISSILE, dir, dam);
4833         if (cave[y][x].m_idx)
4834         {
4835                 int i;
4836                 int ty = y, tx = x;
4837                 int oy = y, ox = x;
4838                 MONSTER_IDX m_idx = cave[y][x].m_idx;
4839                 monster_type *m_ptr = &m_list[m_idx];
4840                 monster_race *r_ptr = &r_info[m_ptr->r_idx];
4841                 GAME_TEXT m_name[MAX_NLEN];
4842
4843                 monster_desc(m_name, m_ptr, 0);
4844
4845                 if (randint1(r_ptr->level * 3 / 2) > randint0(dam / 2) + dam / 2)
4846                 {
4847                         msg_format(_("%sは飛ばされなかった。", "%^s was not blown away."), m_name);
4848                 }
4849                 else
4850                 {
4851                         for (i = 0; i < 5; i++)
4852                         {
4853                                 y += ddy[dir];
4854                                 x += ddx[dir];
4855                                 if (cave_empty_bold(y, x))
4856                                 {
4857                                         ty = y;
4858                                         tx = x;
4859                                 }
4860                                 else break;
4861                         }
4862                         if ((ty != oy) || (tx != ox))
4863                         {
4864                                 msg_format(_("%sを吹き飛ばした!", "You blow %s away!"), m_name);
4865                                 cave[oy][ox].m_idx = 0;
4866                                 cave[ty][tx].m_idx = (s16b)m_idx;
4867                                 m_ptr->fy = (byte_hack)ty;
4868                                 m_ptr->fx = (byte_hack)tx;
4869
4870                                 update_monster(m_idx, TRUE);
4871                                 lite_spot(oy, ox);
4872                                 lite_spot(ty, tx);
4873
4874                                 if (r_ptr->flags7 & (RF7_LITE_MASK | RF7_DARK_MASK))
4875                                         p_ptr->update |= (PU_MON_LITE);
4876                         }
4877                 }
4878         }
4879         return TRUE;
4880 }