OSDN Git Service

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