OSDN Git Service

階の雰囲気計算で, 判明した薬や上位魔法書などが雰囲気に反映されないと
[hengband/hengband.git] / src / spells3.c
1 /* File: spells3.c */
2
3 /*
4  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
5  *
6  * This software may be copied and distributed for educational, research,
7  * and not for profit purposes provided that this copyright and statement
8  * are included in all such copies.  Other copyrights may also apply.
9  */
10
11 /* Purpose: Spell code (part 3) */
12
13 #include "angband.h"
14
15 /* Maximum number of tries for teleporting */
16 #define MAX_TRIES 100
17
18 /* 1/x chance of reducing stats (for elemental attacks) */
19 #define HURT_CHANCE 16
20
21
22 static bool cave_monster_teleportable_bold(int m_idx, int y, int x, u32b mode)
23 {
24         monster_type *m_ptr = &m_list[m_idx];
25         cave_type    *c_ptr = &cave[y][x];
26         feature_type *f_ptr = &f_info[c_ptr->feat];
27
28         /* Require "teleportable" space */
29         if (!have_flag(f_ptr->flags, FF_TELEPORTABLE)) return FALSE;
30
31         if (c_ptr->m_idx && (c_ptr->m_idx != m_idx)) return FALSE;
32         if (player_bold(y, x)) return FALSE;
33
34         /* Hack -- no teleport onto glyph of warding */
35         if (is_glyph_grid(c_ptr)) return FALSE;
36         if (is_explosive_rune_grid(c_ptr)) return FALSE;
37
38         if (!(mode & TELEPORT_PASSIVE))
39         {
40                 if (!monster_can_cross_terrain(c_ptr->feat, &r_info[m_ptr->r_idx], 0)) return FALSE;
41         }
42
43         return TRUE;
44 }
45
46
47 /*
48  * Teleport a monster, normally up to "dis" grids away.
49  *
50  * Attempt to move the monster at least "dis/2" grids away.
51  *
52  * But allow variation to prevent infinite loops.
53  */
54 bool teleport_away(int m_idx, int dis, u32b mode)
55 {
56         int oy, ox, d, i, min;
57         int tries = 0;
58         int ny = 0, nx = 0;
59
60         bool look = TRUE;
61
62         monster_type *m_ptr = &m_list[m_idx];
63
64         /* Paranoia */
65         if (!m_ptr->r_idx) return (FALSE);
66
67         /* Save the old location */
68         oy = m_ptr->fy;
69         ox = m_ptr->fx;
70
71         /* Minimum distance */
72         min = dis / 2;
73
74         if ((mode & TELEPORT_DEC_VALOUR) &&
75             (((p_ptr->chp * 10) / p_ptr->mhp) > 5) &&
76                 (4+randint1(5) < ((p_ptr->chp * 10) / p_ptr->mhp)))
77         {
78                 chg_virtue(V_VALOUR, -1);
79         }
80
81         /* Look until done */
82         while (look)
83         {
84                 tries++;
85
86                 /* Verify max distance */
87                 if (dis > 200) dis = 200;
88
89                 /* Try several locations */
90                 for (i = 0; i < 500; i++)
91                 {
92                         /* Pick a (possibly illegal) location */
93                         while (1)
94                         {
95                                 ny = rand_spread(oy, dis);
96                                 nx = rand_spread(ox, dis);
97                                 d = distance(oy, ox, ny, nx);
98                                 if ((d >= min) && (d <= dis)) break;
99                         }
100
101                         /* Ignore illegal locations */
102                         if (!in_bounds(ny, nx)) continue;
103
104                         if (!cave_monster_teleportable_bold(m_idx, ny, nx, mode)) continue;
105
106                         /* No teleporting into vaults and such */
107                         if (!(p_ptr->inside_quest || p_ptr->inside_arena))
108                                 if (cave[ny][nx].info & CAVE_ICKY) continue;
109
110                         /* This grid looks good */
111                         look = FALSE;
112
113                         /* Stop looking */
114                         break;
115                 }
116
117                 /* Increase the maximum distance */
118                 dis = dis * 2;
119
120                 /* Decrease the minimum distance */
121                 min = min / 2;
122
123                 /* Stop after MAX_TRIES tries */
124                 if (tries > MAX_TRIES) return (FALSE);
125         }
126
127         /* Sound */
128         sound(SOUND_TPOTHER);
129
130         /* Update the old location */
131         cave[oy][ox].m_idx = 0;
132
133         /* Update the new location */
134         cave[ny][nx].m_idx = m_idx;
135
136         /* Move the monster */
137         m_ptr->fy = ny;
138         m_ptr->fx = nx;
139
140         /* Forget the counter target */
141         reset_target(m_ptr);
142
143         /* Update the monster (new location) */
144         update_mon(m_idx, TRUE);
145
146         /* Redraw the old grid */
147         lite_spot(oy, ox);
148
149         /* Redraw the new grid */
150         lite_spot(ny, nx);
151
152         if (r_info[m_ptr->r_idx].flags7 & (RF7_LITE_MASK | RF7_DARK_MASK))
153                 p_ptr->update |= (PU_MON_LITE);
154
155         return (TRUE);
156 }
157
158
159
160 /*
161  * Teleport monster next to a grid near the given location
162  */
163 void teleport_monster_to(int m_idx, int ty, int tx, int power, u32b mode)
164 {
165         int ny, nx, oy, ox, d, i, min;
166         int attempts = 500;
167         int dis = 2;
168         bool look = TRUE;
169         monster_type *m_ptr = &m_list[m_idx];
170
171         /* Paranoia */
172         if (!m_ptr->r_idx) return;
173
174         /* "Skill" test */
175         if (randint1(100) > power) return;
176
177         /* Initialize */
178         ny = m_ptr->fy;
179         nx = m_ptr->fx;
180
181         /* Save the old location */
182         oy = m_ptr->fy;
183         ox = m_ptr->fx;
184
185         /* Minimum distance */
186         min = dis / 2;
187
188         /* Look until done */
189         while (look && --attempts)
190         {
191                 /* Verify max distance */
192                 if (dis > 200) dis = 200;
193
194                 /* Try several locations */
195                 for (i = 0; i < 500; i++)
196                 {
197                         /* Pick a (possibly illegal) location */
198                         while (1)
199                         {
200                                 ny = rand_spread(ty, dis);
201                                 nx = rand_spread(tx, dis);
202                                 d = distance(ty, tx, ny, nx);
203                                 if ((d >= min) && (d <= dis)) break;
204                         }
205
206                         /* Ignore illegal locations */
207                         if (!in_bounds(ny, nx)) continue;
208
209                         if (!cave_monster_teleportable_bold(m_idx, ny, nx, mode)) continue;
210
211                         /* No teleporting into vaults and such */
212                         /* if (cave[ny][nx].info & (CAVE_ICKY)) continue; */
213
214                         /* This grid looks good */
215                         look = FALSE;
216
217                         /* Stop looking */
218                         break;
219                 }
220
221                 /* Increase the maximum distance */
222                 dis = dis * 2;
223
224                 /* Decrease the minimum distance */
225                 min = min / 2;
226         }
227
228         if (attempts < 1) return;
229
230         /* Sound */
231         sound(SOUND_TPOTHER);
232
233         /* Update the old location */
234         cave[oy][ox].m_idx = 0;
235
236         /* Update the new location */
237         cave[ny][nx].m_idx = m_idx;
238
239         /* Move the monster */
240         m_ptr->fy = ny;
241         m_ptr->fx = nx;
242
243         /* Update the monster (new location) */
244         update_mon(m_idx, TRUE);
245
246         /* Redraw the old grid */
247         lite_spot(oy, ox);
248
249         /* Redraw the new grid */
250         lite_spot(ny, nx);
251
252         if (r_info[m_ptr->r_idx].flags7 & (RF7_LITE_MASK | RF7_DARK_MASK))
253                 p_ptr->update |= (PU_MON_LITE);
254 }
255
256
257 bool cave_player_teleportable_bold(int y, int x, u32b mode)
258 {
259         cave_type    *c_ptr = &cave[y][x];
260         feature_type *f_ptr = &f_info[c_ptr->feat];
261
262         /* Require "teleportable" space */
263         if (!have_flag(f_ptr->flags, FF_TELEPORTABLE)) return FALSE;
264
265         /* No magical teleporting into vaults and such */
266         if (!(mode & TELEPORT_NONMAGICAL) && (c_ptr->info & CAVE_ICKY)) return FALSE;
267
268         if (c_ptr->m_idx && (c_ptr->m_idx != p_ptr->riding)) return FALSE;
269
270         if (!(mode & TELEPORT_PASSIVE))
271         {
272                 if (!player_can_enter(c_ptr->feat, 0)) return FALSE;
273
274                 if (have_flag(f_ptr->flags, FF_WATER) && have_flag(f_ptr->flags, FF_DEEP))
275                 {
276                         if (!p_ptr->levitation && !p_ptr->can_swim) return FALSE;
277                 }
278
279                 if (have_flag(f_ptr->flags, FF_LAVA) && !p_ptr->immune_fire && !IS_INVULN())
280                 {
281                         /* Always forbid deep lava */
282                         if (have_flag(f_ptr->flags, FF_DEEP)) return FALSE;
283
284                         /* Forbid shallow lava when the player don't have levitation */
285                         if (!p_ptr->levitation) return FALSE;
286                 }
287
288                 if (have_flag(f_ptr->flags, FF_HIT_TRAP))
289                 {
290                         if (!is_known_trap(c_ptr) || !trap_can_be_ignored(c_ptr->feat)) return FALSE;
291                 }
292         }
293
294         return TRUE;
295 }
296
297
298 /*
299  * Teleport the player to a location up to "dis" grids away.
300  *
301  * If no such spaces are readily available, the distance may increase.
302  * Try very hard to move the player at least a quarter that distance.
303  *
304  * There was a nasty tendency for a long time; which was causing the
305  * player to "bounce" between two or three different spots because
306  * these are the only spots that are "far enough" way to satisfy the
307  * algorithm.
308  *
309  * But this tendency is now removed; in the new algorithm, a list of
310  * candidates is selected first, which includes at least 50% of all
311  * floor grids within the distance, and any single grid in this list
312  * of candidates has equal possibility to be choosen as a destination.
313  */
314
315 #define MAX_TELEPORT_DISTANCE 200
316
317 bool teleport_player_aux(int dis, u32b mode)
318 {
319         int candidates_at[MAX_TELEPORT_DISTANCE + 1];
320         int total_candidates, cur_candidates;
321         int y = 0, x = 0, min, pick, i;
322
323         int left = MAX(1, px - dis);
324         int right = MIN(cur_wid - 2, px + dis);
325         int top = MAX(1, py - dis);
326         int bottom = MIN(cur_hgt - 2, py + dis);
327
328         if (p_ptr->wild_mode) return FALSE;
329
330         if (p_ptr->anti_tele && !(mode & TELEPORT_NONMAGICAL))
331         {
332 #ifdef JP
333                 msg_print("ÉԻ׵ĤÊÎϤ¬¥Æ¥ì¥Ý¡¼¥È¤òËɤ¤¤À¡ª");
334 #else
335                 msg_print("A mysterious force prevents you from teleporting!");
336 #endif
337
338                 return FALSE;
339         }
340
341         /* Initialize counters */
342         total_candidates = 0;
343         for (i = 0; i <= MAX_TELEPORT_DISTANCE; i++)
344                 candidates_at[i] = 0;
345
346         /* Limit the distance */
347         if (dis > MAX_TELEPORT_DISTANCE) dis = MAX_TELEPORT_DISTANCE;
348
349         /* Search valid locations */
350         for (y = top; y <= bottom; y++)
351         {
352                 for (x = left; x <= right; x++)
353                 {
354                         int d;
355
356                         /* Skip illegal locations */
357                         if (!cave_player_teleportable_bold(y, x, mode)) continue;
358
359                         /* Calculate distance */
360                         d = distance(py, px, y, x);
361
362                         /* Skip too far locations */
363                         if (d > dis) continue;
364
365                         /* Count the total number of candidates */
366                         total_candidates++;
367
368                         /* Count the number of candidates in this circumference */
369                         candidates_at[d]++;
370                 }
371         }
372
373         /* No valid location! */
374         if (0 == total_candidates) return FALSE;
375
376         /* Fix the minimum distance */
377         for (cur_candidates = 0, min = dis; min >= 0; min--)
378         {
379                 cur_candidates += candidates_at[min];
380
381                 /* 50% of all candidates will have an equal chance to be choosen. */
382                 if (cur_candidates && (cur_candidates >= total_candidates / 2)) break;
383         }
384
385         /* Pick up a single location randomly */
386         pick = randint1(cur_candidates);
387
388         /* Search again the choosen location */
389         for (y = top; y <= bottom; y++)
390         {
391                 for (x = left; x <= right; x++)
392                 {
393                         int d;
394
395                         /* Skip illegal locations */
396                         if (!cave_player_teleportable_bold(y, x, mode)) continue;
397
398                         /* Calculate distance */
399                         d = distance(py, px, y, x);
400
401                         /* Skip too far locations */
402                         if (d > dis) continue;
403
404                         /* Skip too close locations */
405                         if (d < min) continue;
406
407                         /* This grid was picked up? */
408                         pick--;
409                         if (!pick) break;
410                 }
411
412                 /* Exit the loop */
413                 if (!pick) break;
414         }
415
416         if (player_bold(y, x)) return FALSE;
417
418         /* Sound */
419         sound(SOUND_TELEPORT);
420
421 #ifdef JP
422         if ((p_ptr->pseikaku == SEIKAKU_COMBAT) || (inventory[INVEN_BOW].name1 == ART_CRIMSON))
423                 msg_format("¡Ø¤³¤Ã¤Á¤À¤¡¡¢%s¡Ù", player_name);
424 #endif
425
426         /* Move the player */
427         (void)move_player_effect(y, x, MPE_FORGET_FLOW | MPE_HANDLE_STUFF | MPE_DONT_PICKUP);
428
429         return TRUE;
430 }
431
432 void teleport_player(int dis, u32b mode)
433 {
434         int yy, xx;
435
436         /* Save the old location */
437         int oy = py;
438         int ox = px;
439
440         if (!teleport_player_aux(dis, mode)) return;
441
442         /* Monsters with teleport ability may follow the player */
443         for (xx = -1; xx < 2; xx++)
444         {
445                 for (yy = -1; yy < 2; yy++)
446                 {
447                         int tmp_m_idx = cave[oy+yy][ox+xx].m_idx;
448
449                         /* A monster except your mount may follow */
450                         if (tmp_m_idx && (p_ptr->riding != tmp_m_idx))
451                         {
452                                 monster_type *m_ptr = &m_list[tmp_m_idx];
453                                 monster_race *r_ptr = &r_info[m_ptr->r_idx];
454
455                                 /*
456                                  * The latter limitation is to avoid
457                                  * totally unkillable suckers...
458                                  */
459                                 if ((r_ptr->flags6 & RF6_TPORT) &&
460                                     !(r_ptr->flagsr & RFR_RES_TELE))
461                                 {
462                                         if (!MON_CSLEEP(m_ptr)) teleport_monster_to(tmp_m_idx, py, px, r_ptr->level, 0L);
463                                 }
464                         }
465                 }
466         }
467 }
468
469
470 void teleport_player_away(int m_idx, int dis)
471 {
472         int yy, xx;
473
474         /* Save the old location */
475         int oy = py;
476         int ox = px;
477
478         if (!teleport_player_aux(dis, TELEPORT_PASSIVE)) return;
479
480         /* Monsters with teleport ability may follow the player */
481         for (xx = -1; xx < 2; xx++)
482         {
483                 for (yy = -1; yy < 2; yy++)
484                 {
485                         int tmp_m_idx = cave[oy+yy][ox+xx].m_idx;
486
487                         /* A monster except your mount or caster may follow */
488                         if (tmp_m_idx && (p_ptr->riding != tmp_m_idx) && (m_idx != tmp_m_idx))
489                         {
490                                 monster_type *m_ptr = &m_list[tmp_m_idx];
491                                 monster_race *r_ptr = &r_info[m_ptr->r_idx];
492
493                                 /*
494                                  * The latter limitation is to avoid
495                                  * totally unkillable suckers...
496                                  */
497                                 if ((r_ptr->flags6 & RF6_TPORT) &&
498                                     !(r_ptr->flagsr & RFR_RES_TELE))
499                                 {
500                                         if (!MON_CSLEEP(m_ptr)) teleport_monster_to(tmp_m_idx, py, px, r_ptr->level, 0L);
501                                 }
502                         }
503                 }
504         }
505 }
506
507
508 /*
509  * Teleport player to a grid near the given location
510  *
511  * This function is slightly obsessive about correctness.
512  * This function allows teleporting into vaults (!)
513  */
514 void teleport_player_to(int ny, int nx, u32b mode)
515 {
516         int y, x, dis = 0, ctr = 0;
517
518         if (p_ptr->anti_tele && !(mode & TELEPORT_NONMAGICAL))
519         {
520 #ifdef JP
521                 msg_print("ÉԻ׵ĤÊÎϤ¬¥Æ¥ì¥Ý¡¼¥È¤òËɤ¤¤À¡ª");
522 #else
523                 msg_print("A mysterious force prevents you from teleporting!");
524 #endif
525
526                 return;
527         }
528
529         /* Find a usable location */
530         while (1)
531         {
532                 /* Pick a nearby legal location */
533                 while (1)
534                 {
535                         y = rand_spread(ny, dis);
536                         x = rand_spread(nx, dis);
537                         if (in_bounds(y, x)) break;
538                 }
539
540                 /* Accept any grid when wizard mode */
541                 if (p_ptr->wizard && !(mode & TELEPORT_PASSIVE) && (!cave[y][x].m_idx || (cave[y][x].m_idx == p_ptr->riding))) break;
542
543                 /* Accept teleportable floor grids */
544                 if (cave_player_teleportable_bold(y, x, mode)) break;
545
546                 /* Occasionally advance the distance */
547                 if (++ctr > (4 * dis * dis + 4 * dis + 1))
548                 {
549                         ctr = 0;
550                         dis++;
551                 }
552         }
553
554         /* Sound */
555         sound(SOUND_TELEPORT);
556
557         /* Move the player */
558         (void)move_player_effect(y, x, MPE_FORGET_FLOW | MPE_HANDLE_STUFF | MPE_DONT_PICKUP);
559 }
560
561
562 void teleport_away_followable(int m_idx)
563 {
564         monster_type *m_ptr = &m_list[m_idx];
565         int          oldfy = m_ptr->fy;
566         int          oldfx = m_ptr->fx;
567         bool         old_ml = m_ptr->ml;
568         int          old_cdis = m_ptr->cdis;
569
570         teleport_away(m_idx, MAX_SIGHT * 2 + 5, 0L);
571
572         if (old_ml && (old_cdis <= MAX_SIGHT) && !world_monster && !p_ptr->inside_battle && los(py, px, oldfy, oldfx))
573         {
574                 bool follow = FALSE;
575
576                 if ((p_ptr->muta1 & MUT1_VTELEPORT) || (p_ptr->pclass == CLASS_IMITATOR)) follow = TRUE;
577                 else
578                 {
579                         u32b flgs[TR_FLAG_SIZE];
580                         object_type *o_ptr;
581                         int i;
582
583                         for (i = INVEN_RARM; i < INVEN_TOTAL; i++)
584                         {
585                                 o_ptr = &inventory[i];
586                                 if (o_ptr->k_idx && !object_is_cursed(o_ptr))
587                                 {
588                                         object_flags(o_ptr, flgs);
589                                         if (have_flag(flgs, TR_TELEPORT))
590                                         {
591                                                 follow = TRUE;
592                                                 break;
593                                         }
594                                 }
595                         }
596                 }
597
598                 if (follow)
599                 {
600 #ifdef JP
601                         if (get_check_strict("¤Ä¤¤¤Æ¤¤¤­¤Þ¤¹¤«¡©", CHECK_OKAY_CANCEL))
602 #else
603                         if (get_check_strict("Do you follow it? ", CHECK_OKAY_CANCEL))
604 #endif
605                         {
606                                 if (one_in_(3))
607                                 {
608                                         teleport_player(200, TELEPORT_PASSIVE);
609 #ifdef JP
610                                         msg_print("¼ºÇÔ¡ª");
611 #else
612                                         msg_print("Failed!");
613 #endif
614                                 }
615                                 else teleport_player_to(m_ptr->fy, m_ptr->fx, 0L);
616                                 p_ptr->energy_need += ENERGY_NEED();
617                         }
618                 }
619         }
620 }
621
622
623 /*
624  * Teleport the player one level up or down (random when legal)
625  * Note: If m_idx <= 0, target is player.
626  */
627 void teleport_level(int m_idx)
628 {
629         bool         go_up;
630         char         m_name[160];
631         bool         see_m = TRUE;
632
633         if (m_idx <= 0) /* To player */
634         {
635 #ifdef JP
636                 strcpy(m_name, "¤¢¤Ê¤¿");
637 #else
638                 strcpy(m_name, "you");
639 #endif
640         }
641         else /* To monster */
642         {
643                 monster_type *m_ptr = &m_list[m_idx];
644
645                 /* Get the monster name (or "it") */
646                 monster_desc(m_name, m_ptr, 0);
647
648                 see_m = is_seen(m_ptr);
649         }
650
651         /* No effect in some case */
652         if (TELE_LEVEL_IS_INEFF(m_idx))
653         {
654 #ifdef JP
655                 if (see_m) msg_print("¸ú²Ì¤¬¤Ê¤«¤Ã¤¿¡£");
656 #else
657                 if (see_m) msg_print("There is no effect.");
658 #endif
659
660                 return;
661         }
662
663         if ((m_idx <= 0) && p_ptr->anti_tele) /* To player */
664         {
665 #ifdef JP
666                 msg_print("ÉԻ׵ĤÊÎϤ¬¥Æ¥ì¥Ý¡¼¥È¤òËɤ¤¤À¡ª");
667 #else
668                 msg_print("A mysterious force prevents you from teleporting!");
669 #endif
670                 return;
671         }
672
673         /* Choose up or down */
674         if (randint0(100) < 50) go_up = TRUE;
675         else go_up = FALSE;
676
677         if ((m_idx <= 0) && p_ptr->wizard)
678         {
679                 if (get_check("Force to go up? ")) go_up = TRUE;
680                 else if (get_check("Force to go down? ")) go_up = FALSE;
681         }
682
683         /* Down only */ 
684         if ((ironman_downward && (m_idx <= 0)) || (dun_level <= d_info[dungeon_type].mindepth))
685         {
686 #ifdef JP
687                 if (see_m) msg_format("%^s¤Ï¾²¤òÆͤ­ÇˤäÆÄÀ¤ó¤Ç¤¤¤¯¡£", m_name);
688 #else
689                 if (see_m) msg_format("%^s sink%s through the floor.", m_name, (m_idx <= 0) ? "" : "s");
690 #endif
691                 if (m_idx <= 0) /* To player */
692                 {
693                         if (!dun_level)
694                         {
695                                 dungeon_type = p_ptr->recall_dungeon;
696                                 p_ptr->oldpy = py;
697                                 p_ptr->oldpx = px;
698                         }
699
700                         if (record_stair) do_cmd_write_nikki(NIKKI_TELE_LEV, 1, NULL);
701
702                         if (autosave_l) do_cmd_save_game(TRUE);
703
704                         if (!dun_level)
705                         {
706                                 dun_level = d_info[dungeon_type].mindepth;
707                                 prepare_change_floor_mode(CFM_RAND_PLACE);
708                         }
709                         else
710                         {
711                                 prepare_change_floor_mode(CFM_SAVE_FLOORS | CFM_DOWN | CFM_RAND_PLACE | CFM_RAND_CONNECT);
712                         }
713
714                         /* Leaving */
715                         p_ptr->leaving = TRUE;
716                 }
717         }
718
719         /* Up only */
720         else if (quest_number(dun_level) || (dun_level >= d_info[dungeon_type].maxdepth))
721         {
722 #ifdef JP
723                 if (see_m) msg_format("%^s¤ÏÅ·°æ¤òÆͤ­ÇˤäÆÃè¤ØÉ⤤¤Æ¤¤¤¯¡£", m_name);
724 #else
725                 if (see_m) msg_format("%^s rise%s up through the ceiling.", m_name, (m_idx <= 0) ? "" : "s");
726 #endif
727
728
729                 if (m_idx <= 0) /* To player */
730                 {
731                         if (record_stair) do_cmd_write_nikki(NIKKI_TELE_LEV, -1, NULL);
732
733                         if (autosave_l) do_cmd_save_game(TRUE);
734
735                         prepare_change_floor_mode(CFM_SAVE_FLOORS | CFM_UP | CFM_RAND_PLACE | CFM_RAND_CONNECT);
736
737                         leave_quest_check();
738
739                         /* Leaving */
740                         p_ptr->inside_quest = 0;
741                         p_ptr->leaving = TRUE;
742                 }
743         }
744         else if (go_up)
745         {
746 #ifdef JP
747                 if (see_m) msg_format("%^s¤ÏÅ·°æ¤òÆͤ­ÇˤäÆÃè¤ØÉ⤤¤Æ¤¤¤¯¡£", m_name);
748 #else
749                 if (see_m) msg_format("%^s rise%s up through the ceiling.", m_name, (m_idx <= 0) ? "" : "s");
750 #endif
751
752
753                 if (m_idx <= 0) /* To player */
754                 {
755                         if (record_stair) do_cmd_write_nikki(NIKKI_TELE_LEV, -1, NULL);
756
757                         if (autosave_l) do_cmd_save_game(TRUE);
758
759                         prepare_change_floor_mode(CFM_SAVE_FLOORS | CFM_UP | CFM_RAND_PLACE | CFM_RAND_CONNECT);
760
761                         /* Leaving */
762                         p_ptr->leaving = TRUE;
763                 }
764         }
765         else
766         {
767 #ifdef JP
768                 if (see_m) msg_format("%^s¤Ï¾²¤òÆͤ­ÇˤäÆÄÀ¤ó¤Ç¤¤¤¯¡£", m_name);
769 #else
770                 if (see_m) msg_format("%^s sink%s through the floor.", m_name, (m_idx <= 0) ? "" : "s");
771 #endif
772
773                 if (m_idx <= 0) /* To player */
774                 {
775                         /* Never reach this code on the surface */
776                         /* if (!dun_level) dungeon_type = p_ptr->recall_dungeon; */
777
778                         if (record_stair) do_cmd_write_nikki(NIKKI_TELE_LEV, 1, NULL);
779
780                         if (autosave_l) do_cmd_save_game(TRUE);
781
782                         prepare_change_floor_mode(CFM_SAVE_FLOORS | CFM_DOWN | CFM_RAND_PLACE | CFM_RAND_CONNECT);
783
784                         /* Leaving */
785                         p_ptr->leaving = TRUE;
786                 }
787         }
788
789         /* Monster level teleportation is simple deleting now */
790         if (m_idx > 0)
791         {
792                 monster_type *m_ptr = &m_list[m_idx];
793
794                 /* Check for quest completion */
795                 check_quest_completion(m_ptr);
796
797                 if (record_named_pet && is_pet(m_ptr) && m_ptr->nickname)
798                 {
799                         char m2_name[80];
800
801                         monster_desc(m2_name, m_ptr, MD_INDEF_VISIBLE);
802                         do_cmd_write_nikki(NIKKI_NAMED_PET, RECORD_NAMED_PET_TELE_LEVEL, m2_name);
803                 }
804
805                 delete_monster_idx(m_idx);
806         }
807
808         /* Sound */
809         sound(SOUND_TPLEVEL);
810 }
811
812
813
814 int choose_dungeon(cptr note, int y, int x)
815 {
816         int select_dungeon;
817         int i, num = 0;
818         s16b *dun;
819
820         /* Hack -- No need to choose dungeon in some case */
821         if (lite_town || vanilla_town || ironman_downward)
822         {
823                 if (max_dlv[DUNGEON_ANGBAND]) return DUNGEON_ANGBAND;
824                 else
825                 {
826 #ifdef JP
827                         msg_format("¤Þ¤À%s¤ËÆþ¤Ã¤¿¤³¤È¤Ï¤Ê¤¤¡£", d_name + d_info[DUNGEON_ANGBAND].name);
828 #else
829                         msg_format("You haven't entered %s yet.", d_name + d_info[DUNGEON_ANGBAND].name);
830 #endif
831                         msg_print(NULL);
832                         return 0;
833                 }
834         }
835
836         /* Allocate the "dun" array */
837         C_MAKE(dun, max_d_idx, s16b);
838
839         screen_save();
840         for(i = 1; i < max_d_idx; i++)
841         {
842                 char buf[80];
843                 bool seiha = FALSE;
844
845                 if (!d_info[i].maxdepth) continue;
846                 if (!max_dlv[i]) continue;
847                 if (d_info[i].final_guardian)
848                 {
849                         if (!r_info[d_info[i].final_guardian].max_num) seiha = TRUE;
850                 }
851                 else if (max_dlv[i] == d_info[i].maxdepth) seiha = TRUE;
852
853 #ifdef JP
854                 sprintf(buf,"      %c) %c%-12s : ºÇÂç %d ³¬", 'a'+num, seiha ? '!' : ' ', d_name + d_info[i].name, max_dlv[i]);
855 #else
856                 sprintf(buf,"      %c) %c%-16s : Max level %d", 'a'+num, seiha ? '!' : ' ', d_name + d_info[i].name, max_dlv[i]);
857 #endif
858                 prt(buf, y + num, x);
859                 dun[num++] = i;
860         }
861
862         if (!num)
863         {
864 #ifdef JP
865                 prt("      Áª¤Ù¤ë¥À¥ó¥¸¥ç¥ó¤¬¤Ê¤¤¡£", y, x);
866 #else
867                 prt("      No dungeon is available.", y, x);
868 #endif
869         }
870
871 #ifdef JP
872         prt(format("¤É¤Î¥À¥ó¥¸¥ç¥ó%s¤·¤Þ¤¹¤«:", note), 0, 0);
873 #else
874         prt(format("Which dungeon do you %s?: ", note), 0, 0);
875 #endif
876         while(1)
877         {
878                 i = inkey();
879                 if ((i == ESCAPE) || !num)
880                 {
881                         /* Free the "dun" array */
882                         C_KILL(dun, max_d_idx, s16b);
883
884                         screen_load();
885                         return 0;
886                 }
887                 if (i >= 'a' && i <('a'+num))
888                 {
889                         select_dungeon = dun[i-'a'];
890                         break;
891                 }
892                 else bell();
893         }
894         screen_load();
895
896         /* Free the "dun" array */
897         C_KILL(dun, max_d_idx, s16b);
898
899         return select_dungeon;
900 }
901
902
903 /*
904  * Recall the player to town or dungeon
905  */
906 bool recall_player(int turns)
907 {
908         /*
909          * TODO: Recall the player to the last
910          * visited town when in the wilderness
911          */
912
913         /* Ironman option */
914         if (p_ptr->inside_arena || ironman_downward)
915         {
916 #ifdef JP
917 msg_print("²¿¤âµ¯¤³¤é¤Ê¤«¤Ã¤¿¡£");
918 #else
919                 msg_print("Nothing happens.");
920 #endif
921
922                 return TRUE;
923         }
924
925         if (dun_level && (max_dlv[dungeon_type] > dun_level) && !p_ptr->inside_quest && !p_ptr->word_recall)
926         {
927 #ifdef JP
928 if (get_check("¤³¤³¤ÏºÇ¿¼Åþ㳬¤è¤êÀõ¤¤³¬¤Ç¤¹¡£¤³¤Î³¬¤ËÌá¤Ã¤ÆÍè¤Þ¤¹¤«¡© "))
929 #else
930                 if (get_check("Reset recall depth? "))
931 #endif
932                 {
933                         max_dlv[dungeon_type] = dun_level;
934                         if (record_maxdepth)
935 #ifdef JP
936                                 do_cmd_write_nikki(NIKKI_TRUMP, dungeon_type, "µ¢´Ô¤Î¤È¤­¤Ë");
937 #else
938                                 do_cmd_write_nikki(NIKKI_TRUMP, dungeon_type, "when recall from dungeon");
939 #endif
940                 }
941
942         }
943         if (!p_ptr->word_recall)
944         {
945                 if (!dun_level)
946                 {
947                         int select_dungeon;
948 #ifdef JP
949                         select_dungeon = choose_dungeon("¤Ëµ¢´Ô", 2, 14);
950 #else
951                         select_dungeon = choose_dungeon("recall", 2, 14);
952 #endif
953                         if (!select_dungeon) return FALSE;
954                         p_ptr->recall_dungeon = select_dungeon;
955                 }
956                 p_ptr->word_recall = turns;
957 #ifdef JP
958 msg_print("²ó¤ê¤ÎÂ絤¤¬Ä¥¤ê¤Ä¤á¤Æ¤­¤¿...");
959 #else
960                 msg_print("The air about you becomes charged...");
961 #endif
962
963                 p_ptr->redraw |= (PR_STATUS);
964         }
965         else
966         {
967                 p_ptr->word_recall = 0;
968 #ifdef JP
969 msg_print("Ä¥¤ê¤Ä¤á¤¿Â絤¤¬Î®¤ìµî¤Ã¤¿...");
970 #else
971                 msg_print("A tension leaves the air around you...");
972 #endif
973
974                 p_ptr->redraw |= (PR_STATUS);
975         }
976         return TRUE;
977 }
978
979
980 bool word_of_recall(void)
981 {
982         return(recall_player(randint0(21) + 15));
983 }
984
985
986 bool reset_recall(void)
987 {
988         int select_dungeon, dummy = 0;
989         char ppp[80];
990         char tmp_val[160];
991
992 #ifdef JP
993         select_dungeon = choose_dungeon("¤ò¥»¥Ã¥È", 2, 14);
994 #else
995         select_dungeon = choose_dungeon("reset", 2, 14);
996 #endif
997
998         /* Ironman option */
999         if (ironman_downward)
1000         {
1001 #ifdef JP
1002                 msg_print("²¿¤âµ¯¤³¤é¤Ê¤«¤Ã¤¿¡£");
1003 #else
1004                 msg_print("Nothing happens.");
1005 #endif
1006
1007                 return TRUE;
1008         }
1009
1010         if (!select_dungeon) return FALSE;
1011         /* Prompt */
1012 #ifdef JP
1013 sprintf(ppp, "²¿³¬¤Ë¥»¥Ã¥È¤·¤Þ¤¹¤« (%d-%d):", d_info[select_dungeon].mindepth, max_dlv[select_dungeon]);
1014 #else
1015         sprintf(ppp, "Reset to which level (%d-%d): ", d_info[select_dungeon].mindepth, max_dlv[select_dungeon]);
1016 #endif
1017
1018
1019         /* Default */
1020         sprintf(tmp_val, "%d", MAX(dun_level, 1));
1021
1022         /* Ask for a level */
1023         if (get_string(ppp, tmp_val, 10))
1024         {
1025                 /* Extract request */
1026                 dummy = atoi(tmp_val);
1027
1028                 /* Paranoia */
1029                 if (dummy < 1) dummy = 1;
1030
1031                 /* Paranoia */
1032                 if (dummy > max_dlv[select_dungeon]) dummy = max_dlv[select_dungeon];
1033                 if (dummy < d_info[select_dungeon].mindepth) dummy = d_info[select_dungeon].mindepth;
1034
1035                 max_dlv[select_dungeon] = dummy;
1036
1037                 if (record_maxdepth)
1038 #ifdef JP
1039                         do_cmd_write_nikki(NIKKI_TRUMP, select_dungeon, "¥Õ¥í¥¢¡¦¥ê¥»¥Ã¥È¤Ç");
1040 #else
1041                         do_cmd_write_nikki(NIKKI_TRUMP, select_dungeon, "using a scroll of reset recall");
1042 #endif
1043                                         /* Accept request */
1044 #ifdef JP
1045 msg_format("%s¤Îµ¢´Ô¥ì¥Ù¥ë¤ò %d ³¬¤Ë¥»¥Ã¥È¡£", d_name+d_info[select_dungeon].name, dummy, dummy * 50);
1046 #else
1047                 msg_format("Recall depth set to level %d (%d').", dummy, dummy * 50);
1048 #endif
1049
1050         }
1051         else
1052         {
1053                 return FALSE;
1054         }
1055         return TRUE;
1056 }
1057
1058
1059 /*
1060  * Apply disenchantment to the player's stuff
1061  *
1062  * XXX XXX XXX This function is also called from the "melee" code
1063  *
1064  * Return "TRUE" if the player notices anything
1065  */
1066 bool apply_disenchant(int mode)
1067 {
1068         int             t = 0;
1069         object_type     *o_ptr;
1070         char            o_name[MAX_NLEN];
1071         int to_h, to_d, to_a, pval;
1072
1073         /* Pick a random slot */
1074         switch (randint1(8))
1075         {
1076                 case 1: t = INVEN_RARM; break;
1077                 case 2: t = INVEN_LARM; break;
1078                 case 3: t = INVEN_BOW; break;
1079                 case 4: t = INVEN_BODY; break;
1080                 case 5: t = INVEN_OUTER; break;
1081                 case 6: t = INVEN_HEAD; break;
1082                 case 7: t = INVEN_HANDS; break;
1083                 case 8: t = INVEN_FEET; break;
1084         }
1085
1086         /* Get the item */
1087         o_ptr = &inventory[t];
1088
1089         /* No item, nothing happens */
1090         if (!o_ptr->k_idx) return (FALSE);
1091
1092         /* Disenchant equipments only -- No disenchant on monster ball */
1093         if (!object_is_weapon_armour_ammo(o_ptr))
1094                 return FALSE;
1095
1096         /* Nothing to disenchant */
1097         if ((o_ptr->to_h <= 0) && (o_ptr->to_d <= 0) && (o_ptr->to_a <= 0) && (o_ptr->pval <= 1))
1098         {
1099                 /* Nothing to notice */
1100                 return (FALSE);
1101         }
1102
1103
1104         /* Describe the object */
1105         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
1106
1107
1108         /* Artifacts have 71% chance to resist */
1109         if (object_is_artifact(o_ptr) && (randint0(100) < 71))
1110         {
1111                 /* Message */
1112 #ifdef JP
1113 msg_format("%s(%c)¤ÏÎô²½¤òÄ·¤ÍÊÖ¤·¤¿¡ª",o_name, index_to_label(t) );
1114 #else
1115                 msg_format("Your %s (%c) resist%s disenchantment!",
1116                            o_name, index_to_label(t),
1117                            ((o_ptr->number != 1) ? "" : "s"));
1118 #endif
1119
1120
1121                 /* Notice */
1122                 return (TRUE);
1123         }
1124
1125
1126         /* Memorize old value */
1127         to_h = o_ptr->to_h;
1128         to_d = o_ptr->to_d;
1129         to_a = o_ptr->to_a;
1130         pval = o_ptr->pval;
1131
1132         /* Disenchant tohit */
1133         if (o_ptr->to_h > 0) o_ptr->to_h--;
1134         if ((o_ptr->to_h > 5) && (randint0(100) < 20)) o_ptr->to_h--;
1135
1136         /* Disenchant todam */
1137         if (o_ptr->to_d > 0) o_ptr->to_d--;
1138         if ((o_ptr->to_d > 5) && (randint0(100) < 20)) o_ptr->to_d--;
1139
1140         /* Disenchant toac */
1141         if (o_ptr->to_a > 0) o_ptr->to_a--;
1142         if ((o_ptr->to_a > 5) && (randint0(100) < 20)) o_ptr->to_a--;
1143
1144         /* Disenchant pval (occasionally) */
1145         /* Unless called from wild_magic() */
1146         if ((o_ptr->pval > 1) && one_in_(13) && !(mode & 0x01)) o_ptr->pval--;
1147
1148         if ((to_h != o_ptr->to_h) || (to_d != o_ptr->to_d) ||
1149             (to_a != o_ptr->to_a) || (pval != o_ptr->pval))
1150         {
1151                 /* Message */
1152 #ifdef JP
1153                 msg_format("%s(%c)¤ÏÎô²½¤·¤Æ¤·¤Þ¤Ã¤¿¡ª",
1154                            o_name, index_to_label(t) );
1155 #else
1156                 msg_format("Your %s (%c) %s disenchanted!",
1157                            o_name, index_to_label(t),
1158                            ((o_ptr->number != 1) ? "were" : "was"));
1159 #endif
1160
1161                 chg_virtue(V_HARMONY, 1);
1162                 chg_virtue(V_ENCHANT, -2);
1163
1164                 /* Recalculate bonuses */
1165                 p_ptr->update |= (PU_BONUS);
1166
1167                 /* Window stuff */
1168                 p_ptr->window |= (PW_EQUIP | PW_PLAYER);
1169
1170                 calc_android_exp();
1171         }
1172
1173         /* Notice */
1174         return (TRUE);
1175 }
1176
1177
1178 void mutate_player(void)
1179 {
1180         int max1, cur1, max2, cur2, ii, jj, i;
1181
1182         /* Pick a pair of stats */
1183         ii = randint0(6);
1184         for (jj = ii; jj == ii; jj = randint0(6)) /* loop */;
1185
1186         max1 = p_ptr->stat_max[ii];
1187         cur1 = p_ptr->stat_cur[ii];
1188         max2 = p_ptr->stat_max[jj];
1189         cur2 = p_ptr->stat_cur[jj];
1190
1191         p_ptr->stat_max[ii] = max2;
1192         p_ptr->stat_cur[ii] = cur2;
1193         p_ptr->stat_max[jj] = max1;
1194         p_ptr->stat_cur[jj] = cur1;
1195
1196         for (i=0;i<6;i++)
1197         {
1198                 if(p_ptr->stat_max[i] > p_ptr->stat_max_max[i]) p_ptr->stat_max[i] = p_ptr->stat_max_max[i];
1199                 if(p_ptr->stat_cur[i] > p_ptr->stat_max_max[i]) p_ptr->stat_cur[i] = p_ptr->stat_max_max[i];
1200         }
1201
1202         p_ptr->update |= (PU_BONUS);
1203 }
1204
1205
1206 /*
1207  * Apply Nexus
1208  */
1209 void apply_nexus(monster_type *m_ptr)
1210 {
1211         switch (randint1(7))
1212         {
1213                 case 1: case 2: case 3:
1214                 {
1215                         teleport_player(200, TELEPORT_PASSIVE);
1216                         break;
1217                 }
1218
1219                 case 4: case 5:
1220                 {
1221                         teleport_player_to(m_ptr->fy, m_ptr->fx, TELEPORT_PASSIVE);
1222                         break;
1223                 }
1224
1225                 case 6:
1226                 {
1227                         if (randint0(100) < p_ptr->skill_sav)
1228                         {
1229 #ifdef JP
1230 msg_print("¤·¤«¤·¸úÎϤòÄ·¤ÍÊÖ¤·¤¿¡ª");
1231 #else
1232                                 msg_print("You resist the effects!");
1233 #endif
1234
1235                                 break;
1236                         }
1237
1238                         /* Teleport Level */
1239                         teleport_level(0);
1240                         break;
1241                 }
1242
1243                 case 7:
1244                 {
1245                         if (randint0(100) < p_ptr->skill_sav)
1246                         {
1247 #ifdef JP
1248 msg_print("¤·¤«¤·¸úÎϤòÄ·¤ÍÊÖ¤·¤¿¡ª");
1249 #else
1250                                 msg_print("You resist the effects!");
1251 #endif
1252
1253                                 break;
1254                         }
1255
1256 #ifdef JP
1257 msg_print("ÂΤ¬¤Í¤¸¤ì»Ï¤á¤¿...");
1258 #else
1259                         msg_print("Your body starts to scramble...");
1260 #endif
1261
1262                         mutate_player();
1263                         break;
1264                 }
1265         }
1266 }
1267
1268
1269 /*
1270  * Charge a lite (torch or latern)
1271  */
1272 void phlogiston(void)
1273 {
1274         int max_flog = 0;
1275         object_type * o_ptr = &inventory[INVEN_LITE];
1276
1277         /* It's a lamp */
1278         if ((o_ptr->tval == TV_LITE) && (o_ptr->sval == SV_LITE_LANTERN))
1279         {
1280                 max_flog = FUEL_LAMP;
1281         }
1282
1283         /* It's a torch */
1284         else if ((o_ptr->tval == TV_LITE) && (o_ptr->sval == SV_LITE_TORCH))
1285         {
1286                 max_flog = FUEL_TORCH;
1287         }
1288
1289         /* No torch to refill */
1290         else
1291         {
1292 #ifdef JP
1293 msg_print("dzÁǤò¾ÃÈñ¤¹¤ë¥¢¥¤¥Æ¥à¤òÁõÈ÷¤·¤Æ¤¤¤Þ¤»¤ó¡£");
1294 #else
1295                 msg_print("You are not wielding anything which uses phlogiston.");
1296 #endif
1297
1298                 return;
1299         }
1300
1301         if (o_ptr->xtra4 >= max_flog)
1302         {
1303 #ifdef JP
1304 msg_print("¤³¤Î¥¢¥¤¥Æ¥à¤Ë¤Ï¤³¤ì°Ê¾ådzÁǤòÊä½¼¤Ç¤­¤Þ¤»¤ó¡£");
1305 #else
1306                 msg_print("No more phlogiston can be put in this item.");
1307 #endif
1308
1309                 return;
1310         }
1311
1312         /* Refuel */
1313         o_ptr->xtra4 += (max_flog / 2);
1314
1315         /* Message */
1316 #ifdef JP
1317 msg_print("¾ÈÌÀÍÑ¥¢¥¤¥Æ¥à¤ËdzÁǤòÊä½¼¤·¤¿¡£");
1318 #else
1319         msg_print("You add phlogiston to your light item.");
1320 #endif
1321
1322
1323         /* Comment */
1324         if (o_ptr->xtra4 >= max_flog)
1325         {
1326                 o_ptr->xtra4 = max_flog;
1327 #ifdef JP
1328 msg_print("¾ÈÌÀÍÑ¥¢¥¤¥Æ¥à¤ÏËþ¥¿¥ó¤Ë¤Ê¤Ã¤¿¡£");
1329 #else
1330                 msg_print("Your light item is full.");
1331 #endif
1332
1333         }
1334
1335         /* Recalculate torch */
1336         p_ptr->update |= (PU_TORCH);
1337 }
1338
1339
1340 /*
1341  * Brand the current weapon
1342  */
1343 void brand_weapon(int brand_type)
1344 {
1345         int         item;
1346         object_type *o_ptr;
1347         cptr        q, s;
1348
1349
1350         /* Assume enchant weapon */
1351         item_tester_hook = object_allow_enchant_melee_weapon;
1352         item_tester_no_ryoute = TRUE;
1353
1354         /* Get an item */
1355 #ifdef JP
1356 q = "¤É¤ÎÉð´ï¤ò¶¯²½¤·¤Þ¤¹¤«? ";
1357 s = "¶¯²½¤Ç¤­¤ëÉð´ï¤¬¤Ê¤¤¡£";
1358 #else
1359         q = "Enchant which weapon? ";
1360         s = "You have nothing to enchant.";
1361 #endif
1362
1363         if (!get_item(&item, q, s, (USE_EQUIP))) return;
1364
1365         /* Get the item (in the pack) */
1366         if (item >= 0)
1367         {
1368                 o_ptr = &inventory[item];
1369         }
1370
1371         /* Get the item (on the floor) */
1372         else
1373         {
1374                 o_ptr = &o_list[0 - item];
1375         }
1376
1377
1378         /* you can never modify artifacts / ego-items */
1379         /* you can never modify cursed items */
1380         /* TY: You _can_ modify broken items (if you're silly enough) */
1381         if (o_ptr->k_idx && !object_is_artifact(o_ptr) && !object_is_ego(o_ptr) &&
1382             !object_is_cursed(o_ptr) &&
1383             !((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI)) &&
1384             !((o_ptr->tval == TV_POLEARM) && (o_ptr->sval == SV_DEATH_SCYTHE)) &&
1385             !((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DIAMOND_EDGE)))
1386         {
1387                 cptr act = NULL;
1388
1389                 /* Let's get the name before it is changed... */
1390                 char o_name[MAX_NLEN];
1391                 object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
1392
1393                 switch (brand_type)
1394                 {
1395                 case 17:
1396                         if (o_ptr->tval == TV_SWORD)
1397                         {
1398 #ifdef JP
1399 act = "¤Ï±Ô¤µ¤òÁý¤·¤¿¡ª";
1400 #else
1401                                 act = "becomes very sharp!";
1402 #endif
1403
1404                                 o_ptr->name2 = EGO_SHARPNESS;
1405                                 o_ptr->pval = m_bonus(5, dun_level) + 1;
1406
1407                                 if ((o_ptr->sval == SV_HAYABUSA) && (o_ptr->pval > 2))
1408                                         o_ptr->pval = 2;
1409                         }
1410                         else
1411                         {
1412 #ifdef JP
1413 act = "¤ÏÇ˲õÎϤòÁý¤·¤¿¡ª";
1414 #else
1415                                 act = "seems very powerful.";
1416 #endif
1417
1418                                 o_ptr->name2 = EGO_EARTHQUAKES;
1419                                 o_ptr->pval = m_bonus(3, dun_level);
1420                         }
1421                         break;
1422                 case 16:
1423 #ifdef JP
1424 act = "¤Ï¿Í´Ö¤Î·ì¤òµá¤á¤Æ¤¤¤ë¡ª";
1425 #else
1426                         act = "seems to be looking for humans!";
1427 #endif
1428
1429                         o_ptr->name2 = EGO_SLAY_HUMAN;
1430                         break;
1431                 case 15:
1432 #ifdef JP
1433 act = "¤ÏÅÅ·â¤Ëʤ¤ï¤ì¤¿¡ª";
1434 #else
1435                         act = "covered with lightning!";
1436 #endif
1437
1438                         o_ptr->name2 = EGO_BRAND_ELEC;
1439                         break;
1440                 case 14:
1441 #ifdef JP
1442 act = "¤Ï»À¤Ëʤ¤ï¤ì¤¿¡ª";
1443 #else
1444                         act = "coated with acid!";
1445 #endif
1446
1447                         o_ptr->name2 = EGO_BRAND_ACID;
1448                         break;
1449                 case 13:
1450 #ifdef JP
1451 act = "¤Ï¼Ù°­¤Ê¤ë²øʪ¤òµá¤á¤Æ¤¤¤ë¡ª";
1452 #else
1453                         act = "seems to be looking for evil monsters!";
1454 #endif
1455
1456                         o_ptr->name2 = EGO_SLAY_EVIL;
1457                         break;
1458                 case 12:
1459 #ifdef JP
1460 act = "¤Ï°ÛÀ¤³¦¤Î½»¿Í¤ÎÆùÂΤòµá¤á¤Æ¤¤¤ë¡ª";
1461 #else
1462                         act = "seems to be looking for demons!";
1463 #endif
1464
1465                         o_ptr->name2 = EGO_SLAY_DEMON;
1466                         break;
1467                 case 11:
1468 #ifdef JP
1469 act = "¤Ï»Ó¤òµá¤á¤Æ¤¤¤ë¡ª";
1470 #else
1471                         act = "seems to be looking for undead!";
1472 #endif
1473
1474                         o_ptr->name2 = EGO_SLAY_UNDEAD;
1475                         break;
1476                 case 10:
1477 #ifdef JP
1478 act = "¤Ïưʪ¤Î·ì¤òµá¤á¤Æ¤¤¤ë¡ª";
1479 #else
1480                         act = "seems to be looking for animals!";
1481 #endif
1482
1483                         o_ptr->name2 = EGO_SLAY_ANIMAL;
1484                         break;
1485                 case 9:
1486 #ifdef JP
1487 act = "¤Ï¥É¥é¥´¥ó¤Î·ì¤òµá¤á¤Æ¤¤¤ë¡ª";
1488 #else
1489                         act = "seems to be looking for dragons!";
1490 #endif
1491
1492                         o_ptr->name2 = EGO_SLAY_DRAGON;
1493                         break;
1494                 case 8:
1495 #ifdef JP
1496 act = "¤Ï¥È¥í¥ë¤Î·ì¤òµá¤á¤Æ¤¤¤ë¡ª";
1497 #else
1498                         act = "seems to be looking for troll!s";
1499 #endif
1500
1501                         o_ptr->name2 = EGO_SLAY_TROLL;
1502                         break;
1503                 case 7:
1504 #ifdef JP
1505 act = "¤Ï¥ª¡¼¥¯¤Î·ì¤òµá¤á¤Æ¤¤¤ë¡ª";
1506 #else
1507                         act = "seems to be looking for orcs!";
1508 #endif
1509
1510                         o_ptr->name2 = EGO_SLAY_ORC;
1511                         break;
1512                 case 6:
1513 #ifdef JP
1514 act = "¤Ïµð¿Í¤Î·ì¤òµá¤á¤Æ¤¤¤ë¡ª";
1515 #else
1516                         act = "seems to be looking for giants!";
1517 #endif
1518
1519                         o_ptr->name2 = EGO_SLAY_GIANT;
1520                         break;
1521                 case 5:
1522 #ifdef JP
1523 act = "¤ÏÈó¾ï¤ËÉÔ°ÂÄê¤Ë¤Ê¤Ã¤¿¤è¤¦¤À¡£";
1524 #else
1525                         act = "seems very unstable now.";
1526 #endif
1527
1528                         o_ptr->name2 = EGO_TRUMP;
1529                         o_ptr->pval = randint1(2);
1530                         break;
1531                 case 4:
1532 #ifdef JP
1533 act = "¤Ï·ì¤òµá¤á¤Æ¤¤¤ë¡ª";
1534 #else
1535                         act = "thirsts for blood!";
1536 #endif
1537
1538                         o_ptr->name2 = EGO_VAMPIRIC;
1539                         break;
1540                 case 3:
1541 #ifdef JP
1542 act = "¤ÏÆǤËʤ¤ï¤ì¤¿¡£";
1543 #else
1544                         act = "is coated with poison.";
1545 #endif
1546
1547                         o_ptr->name2 = EGO_BRAND_POIS;
1548                         break;
1549                 case 2:
1550 #ifdef JP
1551 act = "¤Ï½ã¥í¥°¥ë¥¹¤Ë°û¤ß¹þ¤Þ¤ì¤¿¡£";
1552 #else
1553                         act = "is engulfed in raw Logrus!";
1554 #endif
1555
1556                         o_ptr->name2 = EGO_CHAOTIC;
1557                         break;
1558                 case 1:
1559 #ifdef JP
1560 act = "¤Ï±ê¤Î¥·¡¼¥ë¥É¤Ëʤ¤ï¤ì¤¿¡ª";
1561 #else
1562                         act = "is covered in a fiery shield!";
1563 #endif
1564
1565                         o_ptr->name2 = EGO_BRAND_FIRE;
1566                         break;
1567                 default:
1568 #ifdef JP
1569 act = "¤Ï¿¼¤¯Î䤿¤¤¥Ö¥ë¡¼¤Ëµ±¤¤¤¿¡ª";
1570 #else
1571                         act = "glows deep, icy blue!";
1572 #endif
1573
1574                         o_ptr->name2 = EGO_BRAND_COLD;
1575                         break;
1576                 }
1577
1578 #ifdef JP
1579 msg_format("¤¢¤Ê¤¿¤Î%s%s", o_name, act);
1580 #else
1581                 msg_format("Your %s %s", o_name, act);
1582 #endif
1583
1584
1585                 enchant(o_ptr, randint0(3) + 4, ENCH_TOHIT | ENCH_TODAM);
1586
1587                 o_ptr->discount = 99;
1588                 chg_virtue(V_ENCHANT, 2);
1589         }
1590         else
1591         {
1592                 if (flush_failure) flush();
1593
1594 #ifdef JP
1595 msg_print("°À­Éղä˼ºÇÔ¤·¤¿¡£");
1596 #else
1597                 msg_print("The Branding failed.");
1598 #endif
1599
1600                 chg_virtue(V_ENCHANT, -2);
1601         }
1602         calc_android_exp();
1603 }
1604
1605
1606 /*
1607  * Vanish all walls in this floor
1608  */
1609 static bool vanish_dungeon(void)
1610 {
1611         int          y, x;
1612         cave_type    *c_ptr;
1613         feature_type *f_ptr;
1614         monster_type *m_ptr;
1615         char         m_name[80];
1616
1617         /* Prevent vasishing of quest levels and town */
1618         if ((p_ptr->inside_quest && is_fixed_quest_idx(p_ptr->inside_quest)) || !dun_level)
1619         {
1620                 return FALSE;
1621         }
1622
1623         /* Scan all normal grids */
1624         for (y = 1; y < cur_hgt - 1; y++)
1625         {
1626                 for (x = 1; x < cur_wid - 1; x++)
1627                 {
1628                         c_ptr = &cave[y][x];
1629
1630                         /* Seeing true feature code (ignore mimic) */
1631                         f_ptr = &f_info[c_ptr->feat];
1632
1633                         /* Lose room and vault */
1634                         c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY);
1635
1636                         m_ptr = &m_list[c_ptr->m_idx];
1637
1638                         /* Awake monster */
1639                         if (c_ptr->m_idx && MON_CSLEEP(m_ptr))
1640                         {
1641                                 /* Reset sleep counter */
1642                                 (void)set_monster_csleep(c_ptr->m_idx, 0);
1643
1644                                 /* Notice the "waking up" */
1645                                 if (m_ptr->ml)
1646                                 {
1647                                         /* Acquire the monster name */
1648                                         monster_desc(m_name, m_ptr, 0);
1649
1650                                         /* Dump a message */
1651 #ifdef JP
1652                                         msg_format("%^s¤¬Ìܤò³Ð¤Þ¤·¤¿¡£", m_name);
1653 #else
1654                                         msg_format("%^s wakes up.", m_name);
1655 #endif
1656                                 }
1657                         }
1658
1659                         /* Process all walls, doors and patterns */
1660                         if (have_flag(f_ptr->flags, FF_HURT_DISI)) cave_alter_feat(y, x, FF_HURT_DISI);
1661                 }
1662         }
1663
1664         /* Special boundary walls -- Top and bottom */
1665         for (x = 0; x < cur_wid; x++)
1666         {
1667                 c_ptr = &cave[0][x];
1668                 f_ptr = &f_info[c_ptr->mimic];
1669
1670                 /* Lose room and vault */
1671                 c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY);
1672
1673                 /* Set boundary mimic if needed */
1674                 if (c_ptr->mimic && have_flag(f_ptr->flags, FF_HURT_DISI))
1675                 {
1676                         c_ptr->mimic = feat_state(c_ptr->mimic, FF_HURT_DISI);
1677
1678                         /* Check for change to boring grid */
1679                         if (!have_flag(f_info[c_ptr->mimic].flags, FF_REMEMBER)) c_ptr->info &= ~(CAVE_MARK);
1680                 }
1681
1682                 c_ptr = &cave[cur_hgt - 1][x];
1683                 f_ptr = &f_info[c_ptr->mimic];
1684
1685                 /* Lose room and vault */
1686                 c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY);
1687
1688                 /* Set boundary mimic if needed */
1689                 if (c_ptr->mimic && have_flag(f_ptr->flags, FF_HURT_DISI))
1690                 {
1691                         c_ptr->mimic = feat_state(c_ptr->mimic, FF_HURT_DISI);
1692
1693                         /* Check for change to boring grid */
1694                         if (!have_flag(f_info[c_ptr->mimic].flags, FF_REMEMBER)) c_ptr->info &= ~(CAVE_MARK);
1695                 }
1696         }
1697
1698         /* Special boundary walls -- Left and right */
1699         for (y = 1; y < (cur_hgt - 1); y++)
1700         {
1701                 c_ptr = &cave[y][0];
1702                 f_ptr = &f_info[c_ptr->mimic];
1703
1704                 /* Lose room and vault */
1705                 c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY);
1706
1707                 /* Set boundary mimic if needed */
1708                 if (c_ptr->mimic && have_flag(f_ptr->flags, FF_HURT_DISI))
1709                 {
1710                         c_ptr->mimic = feat_state(c_ptr->mimic, FF_HURT_DISI);
1711
1712                         /* Check for change to boring grid */
1713                         if (!have_flag(f_info[c_ptr->mimic].flags, FF_REMEMBER)) c_ptr->info &= ~(CAVE_MARK);
1714                 }
1715
1716                 c_ptr = &cave[y][cur_wid - 1];
1717                 f_ptr = &f_info[c_ptr->mimic];
1718
1719                 /* Lose room and vault */
1720                 c_ptr->info &= ~(CAVE_ROOM | CAVE_ICKY);
1721
1722                 /* Set boundary mimic if needed */
1723                 if (c_ptr->mimic && have_flag(f_ptr->flags, FF_HURT_DISI))
1724                 {
1725                         c_ptr->mimic = feat_state(c_ptr->mimic, FF_HURT_DISI);
1726
1727                         /* Check for change to boring grid */
1728                         if (!have_flag(f_info[c_ptr->mimic].flags, FF_REMEMBER)) c_ptr->info &= ~(CAVE_MARK);
1729                 }
1730         }
1731
1732         /* Mega-Hack -- Forget the view and lite */
1733         p_ptr->update |= (PU_UN_VIEW | PU_UN_LITE);
1734
1735         /* Update stuff */
1736         p_ptr->update |= (PU_VIEW | PU_LITE | PU_FLOW | PU_MON_LITE);
1737
1738         /* Update the monsters */
1739         p_ptr->update |= (PU_MONSTERS);
1740
1741         /* Redraw map */
1742         p_ptr->redraw |= (PR_MAP);
1743
1744         /* Window stuff */
1745         p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON);
1746
1747         return TRUE;
1748 }
1749
1750
1751 void call_the_(void)
1752 {
1753         int i;
1754         cave_type *c_ptr;
1755         bool do_call = TRUE;
1756
1757         for (i = 0; i < 9; i++)
1758         {
1759                 c_ptr = &cave[py + ddy_ddd[i]][px + ddx_ddd[i]];
1760
1761                 if (!cave_have_flag_grid(c_ptr, FF_PROJECT))
1762                 {
1763                         if (!c_ptr->mimic || !have_flag(f_info[c_ptr->mimic].flags, FF_PROJECT) ||
1764                             !permanent_wall(&f_info[c_ptr->feat]))
1765                         {
1766                                 do_call = FALSE;
1767                                 break;
1768                         }
1769                 }
1770         }
1771
1772         if (do_call)
1773         {
1774                 for (i = 1; i < 10; i++)
1775                 {
1776                         if (i - 5) fire_ball(GF_ROCKET, i, 175, 2);
1777                 }
1778
1779                 for (i = 1; i < 10; i++)
1780                 {
1781                         if (i - 5) fire_ball(GF_MANA, i, 175, 3);
1782                 }
1783
1784                 for (i = 1; i < 10; i++)
1785                 {
1786                         if (i - 5) fire_ball(GF_NUKE, i, 175, 4);
1787                 }
1788         }
1789
1790         /* Prevent destruction of quest levels and town */
1791         else if ((p_ptr->inside_quest && is_fixed_quest_idx(p_ptr->inside_quest)) || !dun_level)
1792         {
1793 #ifdef JP
1794                 msg_print("ÃÏÌ̤¬Íɤ줿¡£");
1795 #else
1796                 msg_print("The ground trembles.");
1797 #endif
1798         }
1799
1800         else
1801         {
1802 #ifdef JP
1803                 msg_format("¤¢¤Ê¤¿¤Ï%s¤òÊɤ˶᤹¤®¤ë¾ì½ê¤Ç¾§¤¨¤Æ¤·¤Þ¤Ã¤¿¡ª",
1804                         ((mp_ptr->spell_book == TV_LIFE_BOOK) ? "µ§¤ê" : "¼öʸ"));
1805                 msg_print("Â礭¤ÊÇúȯ²»¤¬¤¢¤Ã¤¿¡ª");
1806 #else
1807                 msg_format("You %s the %s too close to a wall!",
1808                         ((mp_ptr->spell_book == TV_LIFE_BOOK) ? "recite" : "cast"),
1809                         ((mp_ptr->spell_book == TV_LIFE_BOOK) ? "prayer" : "spell"));
1810                 msg_print("There is a loud explosion!");
1811 #endif
1812
1813                 if (one_in_(666))
1814                 {
1815 #ifdef JP
1816                         if (!vanish_dungeon()) msg_print("¥À¥ó¥¸¥ç¥ó¤Ï°ì½ÖÀŤޤêÊ֤ä¿¡£");
1817 #else
1818                         if (!vanish_dungeon()) msg_print("The dungeon silences a moment.");
1819 #endif
1820                 }
1821                 else
1822                 {
1823                         if (destroy_area(py, px, 15 + p_ptr->lev + randint0(11), FALSE))
1824 #ifdef JP
1825                                 msg_print("¥À¥ó¥¸¥ç¥ó¤¬Êø²õ¤·¤¿...");
1826 #else
1827                                 msg_print("The dungeon collapses...");
1828 #endif
1829
1830                         else
1831 #ifdef JP
1832                                 msg_print("¥À¥ó¥¸¥ç¥ó¤ÏÂ礭¤¯Íɤ줿¡£");
1833 #else
1834                                 msg_print("The dungeon trembles.");
1835 #endif
1836                 }
1837
1838 #ifdef JP
1839                 take_hit(DAMAGE_NOESCAPE, 100 + randint1(150), "¼«»¦Åª¤Êµõ̵¾·Íè", -1);
1840 #else
1841                 take_hit(DAMAGE_NOESCAPE, 100 + randint1(150), "a suicidal Call the Void", -1);
1842 #endif
1843         }
1844 }
1845
1846
1847 /*
1848  * Fetch an item (teleport it right underneath the caster)
1849  */
1850 void fetch(int dir, int wgt, bool require_los)
1851 {
1852         int             ty, tx, i;
1853         cave_type       *c_ptr;
1854         object_type     *o_ptr;
1855         char            o_name[MAX_NLEN];
1856
1857         /* Check to see if an object is already there */
1858         if (cave[py][px].o_idx)
1859         {
1860 #ifdef JP
1861 msg_print("¼«Ê¬¤Î­¤Î²¼¤Ë¤¢¤ëʪ¤Ï¼è¤ì¤Þ¤»¤ó¡£");
1862 #else
1863                 msg_print("You can't fetch when you're already standing on something.");
1864 #endif
1865
1866                 return;
1867         }
1868
1869         /* Use a target */
1870         if (dir == 5 && target_okay())
1871         {
1872                 tx = target_col;
1873                 ty = target_row;
1874
1875                 if (distance(py, px, ty, tx) > MAX_RANGE)
1876                 {
1877 #ifdef JP
1878 msg_print("¤½¤ó¤Ê¤Ë±ó¤¯¤Ë¤¢¤ëʪ¤Ï¼è¤ì¤Þ¤»¤ó¡ª");
1879 #else
1880                         msg_print("You can't fetch something that far away!");
1881 #endif
1882
1883                         return;
1884                 }
1885
1886                 c_ptr = &cave[ty][tx];
1887
1888                 /* We need an item to fetch */
1889                 if (!c_ptr->o_idx)
1890                 {
1891 #ifdef JP
1892 msg_print("¤½¤³¤Ë¤Ï²¿¤â¤¢¤ê¤Þ¤»¤ó¡£");
1893 #else
1894                         msg_print("There is no object at this place.");
1895 #endif
1896
1897                         return;
1898                 }
1899
1900                 /* No fetching from vault */
1901                 if (c_ptr->info & CAVE_ICKY)
1902                 {
1903 #ifdef JP
1904 msg_print("¥¢¥¤¥Æ¥à¤¬¥³¥ó¥È¥í¡¼¥ë¤ò³°¤ì¤ÆÍî¤Á¤¿¡£");
1905 #else
1906                         msg_print("The item slips from your control.");
1907 #endif
1908
1909                         return;
1910                 }
1911
1912                 /* We need to see the item */
1913                 if (require_los)
1914                 {
1915                         if (!player_has_los_bold(ty, tx))
1916                         {
1917 #ifdef JP
1918                                 msg_print("¤½¤³¤Ï¤¢¤Ê¤¿¤Î»ë³¦¤ËÆþ¤Ã¤Æ¤¤¤Þ¤»¤ó¡£");
1919 #else
1920                                 msg_print("You have no direct line of sight to that location.");
1921 #endif
1922
1923                                 return;
1924                         }
1925                         else if (!projectable(py, px, ty, tx))
1926                         {
1927 #ifdef JP
1928                                 msg_print("¤½¤³¤ÏÊɤθþ¤³¤¦¤Ç¤¹¡£");
1929 #else
1930                                 msg_print("You have no direct line of sight to that location.");
1931 #endif
1932
1933                                 return;
1934                         }
1935                 }
1936         }
1937         else
1938         {
1939                 /* Use a direction */
1940                 ty = py; /* Where to drop the item */
1941                 tx = px;
1942
1943                 do
1944                 {
1945                         ty += ddy[dir];
1946                         tx += ddx[dir];
1947                         c_ptr = &cave[ty][tx];
1948
1949                         if ((distance(py, px, ty, tx) > MAX_RANGE) ||
1950                                 !cave_have_flag_bold(ty, tx, FF_PROJECT)) return;
1951                 }
1952                 while (!c_ptr->o_idx);
1953         }
1954
1955         o_ptr = &o_list[c_ptr->o_idx];
1956
1957         if (o_ptr->weight > wgt)
1958         {
1959                 /* Too heavy to 'fetch' */
1960 #ifdef JP
1961 msg_print("¤½¤Î¥¢¥¤¥Æ¥à¤Ï½Å²á¤®¤Þ¤¹¡£");
1962 #else
1963                 msg_print("The object is too heavy.");
1964 #endif
1965
1966                 return;
1967         }
1968
1969         i = c_ptr->o_idx;
1970         c_ptr->o_idx = o_ptr->next_o_idx;
1971         cave[py][px].o_idx = i; /* 'move' it */
1972         o_ptr->next_o_idx = 0;
1973         o_ptr->iy = (byte)py;
1974         o_ptr->ix = (byte)px;
1975
1976         object_desc(o_name, o_ptr, OD_NAME_ONLY);
1977 #ifdef JP
1978 msg_format("%^s¤¬¤¢¤Ê¤¿¤Î­¸µ¤ËÈô¤ó¤Ç¤­¤¿¡£", o_name);
1979 #else
1980         msg_format("%^s flies through the air to your feet.", o_name);
1981 #endif
1982
1983
1984         note_spot(py, px);
1985         p_ptr->redraw |= PR_MAP;
1986 }
1987
1988
1989 void alter_reality(void)
1990 {
1991         /* Ironman option */
1992         if (p_ptr->inside_arena || ironman_downward)
1993         {
1994 #ifdef JP
1995                 msg_print("²¿¤âµ¯¤³¤é¤Ê¤«¤Ã¤¿¡£");
1996 #else
1997                 msg_print("Nothing happens.");
1998 #endif
1999                 return;
2000         }
2001
2002         if (!p_ptr->alter_reality)
2003         {
2004                 int turns = randint0(21) + 15;
2005
2006                 p_ptr->alter_reality = turns;
2007 #ifdef JP
2008                 msg_print("²ó¤ê¤Î·Ê¿§¤¬ÊѤï¤ê»Ï¤á¤¿...");
2009 #else
2010                 msg_print("The view around you begins to change...");
2011 #endif
2012
2013                 p_ptr->redraw |= (PR_STATUS);
2014         }
2015         else
2016         {
2017                 p_ptr->alter_reality = 0;
2018 #ifdef JP
2019                 msg_print("·Ê¿§¤¬¸µ¤ËÌá¤Ã¤¿...");
2020 #else
2021                 msg_print("The view around you got back...");
2022 #endif
2023
2024                 p_ptr->redraw |= (PR_STATUS);
2025         }
2026         return;
2027 }
2028
2029
2030 /*
2031  * Leave a "glyph of warding" which prevents monster movement
2032  */
2033 bool warding_glyph(void)
2034 {
2035         /* XXX XXX XXX */
2036         if (!cave_clean_bold(py, px))
2037         {
2038 #ifdef JP
2039 msg_print("¾²¾å¤Î¥¢¥¤¥Æ¥à¤¬¼öʸ¤òÄ·¤ÍÊÖ¤·¤¿¡£");
2040 #else
2041                 msg_print("The object resists the spell.");
2042 #endif
2043
2044                 return FALSE;
2045         }
2046
2047         /* Create a glyph */
2048         cave[py][px].info |= CAVE_OBJECT;
2049         cave[py][px].mimic = feat_glyph;
2050
2051         /* Notice */
2052         note_spot(py, px);
2053
2054         /* Redraw */
2055         lite_spot(py, px);
2056
2057         return TRUE;
2058 }
2059
2060 bool place_mirror(void)
2061 {
2062         /* XXX XXX XXX */
2063         if (!cave_clean_bold(py, px))
2064         {
2065 #ifdef JP
2066 msg_print("¾²¾å¤Î¥¢¥¤¥Æ¥à¤¬¼öʸ¤òÄ·¤ÍÊÖ¤·¤¿¡£");
2067 #else
2068                 msg_print("The object resists the spell.");
2069 #endif
2070
2071                 return FALSE;
2072         }
2073
2074         /* Create a mirror */
2075         cave[py][px].info |= CAVE_OBJECT;
2076         cave[py][px].mimic = feat_mirror;
2077
2078         /* Turn on the light */
2079         cave[py][px].info |= CAVE_GLOW;
2080
2081         /* Notice */
2082         note_spot(py, px);
2083
2084         /* Redraw */
2085         lite_spot(py, px);
2086
2087         update_local_illumination(py, px);
2088
2089         return TRUE;
2090 }
2091
2092
2093 /*
2094  * Leave an "explosive rune" which prevents monster movement
2095  */
2096 bool explosive_rune(void)
2097 {
2098         /* XXX XXX XXX */
2099         if (!cave_clean_bold(py, px))
2100         {
2101 #ifdef JP
2102 msg_print("¾²¾å¤Î¥¢¥¤¥Æ¥à¤¬¼öʸ¤òÄ·¤ÍÊÖ¤·¤¿¡£");
2103 #else
2104                 msg_print("The object resists the spell.");
2105 #endif
2106
2107                 return FALSE;
2108         }
2109
2110         /* Create a glyph */
2111         cave[py][px].info |= CAVE_OBJECT;
2112         cave[py][px].mimic = feat_explosive_rune;
2113
2114         /* Notice */
2115         note_spot(py, px);
2116         
2117         /* Redraw */
2118         lite_spot(py, px);
2119
2120         return TRUE;
2121 }
2122
2123
2124 /*
2125  * Identify everything being carried.
2126  * Done by a potion of "self knowledge".
2127  */
2128 void identify_pack(void)
2129 {
2130         int i;
2131
2132         /* Simply identify and know every item */
2133         for (i = 0; i < INVEN_TOTAL; i++)
2134         {
2135                 object_type *o_ptr = &inventory[i];
2136
2137                 /* Skip non-objects */
2138                 if (!o_ptr->k_idx) continue;
2139
2140                 /* Identify it */
2141                 identify_item(o_ptr);
2142
2143                 /* Auto-inscription */
2144                 autopick_alter_item(i, FALSE);
2145         }
2146 }
2147
2148
2149 /*
2150  * Used by the "enchant" function (chance of failure)
2151  * (modified for Zangband, we need better stuff there...) -- TY
2152  */
2153 static int enchant_table[16] =
2154 {
2155         0, 10,  50, 100, 200,
2156         300, 400, 500, 650, 800,
2157         950, 987, 993, 995, 998,
2158         1000
2159 };
2160
2161
2162 /*
2163  * Removes curses from items in inventory
2164  *
2165  * Note that Items which are "Perma-Cursed" (The One Ring,
2166  * The Crown of Morgoth) can NEVER be uncursed.
2167  *
2168  * Note that if "all" is FALSE, then Items which are
2169  * "Heavy-Cursed" (Mormegil, Calris, and Weapons of Morgul)
2170  * will not be uncursed.
2171  */
2172 static int remove_curse_aux(int all)
2173 {
2174         int i, cnt = 0;
2175
2176         /* Attempt to uncurse items being worn */
2177         for (i = INVEN_RARM; i < INVEN_TOTAL; i++)
2178         {
2179                 object_type *o_ptr = &inventory[i];
2180
2181                 /* Skip non-objects */
2182                 if (!o_ptr->k_idx) continue;
2183
2184                 /* Uncursed already */
2185                 if (!object_is_cursed(o_ptr)) continue;
2186
2187                 /* Heavily Cursed Items need a special spell */
2188                 if (!all && (o_ptr->curse_flags & TRC_HEAVY_CURSE)) continue;
2189
2190                 /* Perma-Cursed Items can NEVER be uncursed */
2191                 if (o_ptr->curse_flags & TRC_PERMA_CURSE)
2192                 {
2193                         /* Uncurse it */
2194                         o_ptr->curse_flags &= (TRC_CURSED | TRC_HEAVY_CURSE | TRC_PERMA_CURSE);
2195                         continue;
2196                 }
2197
2198                 /* Uncurse it */
2199                 o_ptr->curse_flags = 0L;
2200
2201                 /* Hack -- Assume felt */
2202                 o_ptr->ident |= (IDENT_SENSE);
2203
2204                 /* Take note */
2205                 o_ptr->feeling = FEEL_NONE;
2206
2207                 /* Recalculate the bonuses */
2208                 p_ptr->update |= (PU_BONUS);
2209
2210                 /* Window stuff */
2211                 p_ptr->window |= (PW_EQUIP);
2212
2213                 /* Count the uncursings */
2214                 cnt++;
2215         }
2216
2217         /* Return "something uncursed" */
2218         return (cnt);
2219 }
2220
2221
2222 /*
2223  * Remove most curses
2224  */
2225 bool remove_curse(void)
2226 {
2227         return (remove_curse_aux(FALSE));
2228 }
2229
2230 /*
2231  * Remove all curses
2232  */
2233 bool remove_all_curse(void)
2234 {
2235         return (remove_curse_aux(TRUE));
2236 }
2237
2238
2239 /*
2240  * Turns an object into gold, gain some of its value in a shop
2241  */
2242 bool alchemy(void)
2243 {
2244         int item, amt = 1;
2245         int old_number;
2246         long price;
2247         bool force = FALSE;
2248         object_type *o_ptr;
2249         char o_name[MAX_NLEN];
2250         char out_val[MAX_NLEN+40];
2251
2252         cptr q, s;
2253
2254         /* Hack -- force destruction */
2255         if (command_arg > 0) force = TRUE;
2256
2257         /* Get an item */
2258 #ifdef JP
2259 q = "¤É¤Î¥¢¥¤¥Æ¥à¤ò¶â¤ËÊѤ¨¤Þ¤¹¤«¡©";
2260 s = "¶â¤ËÊѤ¨¤é¤ì¤ëʪ¤¬¤¢¤ê¤Þ¤»¤ó¡£";
2261 #else
2262         q = "Turn which item to gold? ";
2263         s = "You have nothing to turn to gold.";
2264 #endif
2265
2266         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return (FALSE);
2267
2268         /* Get the item (in the pack) */
2269         if (item >= 0)
2270         {
2271                 o_ptr = &inventory[item];
2272         }
2273
2274         /* Get the item (on the floor) */
2275         else
2276         {
2277                 o_ptr = &o_list[0 - item];
2278         }
2279
2280
2281         /* See how many items */
2282         if (o_ptr->number > 1)
2283         {
2284                 /* Get a quantity */
2285                 amt = get_quantity(NULL, o_ptr->number);
2286
2287                 /* Allow user abort */
2288                 if (amt <= 0) return FALSE;
2289         }
2290
2291
2292         /* Describe the object */
2293         old_number = o_ptr->number;
2294         o_ptr->number = amt;
2295         object_desc(o_name, o_ptr, 0);
2296         o_ptr->number = old_number;
2297
2298         /* Verify unless quantity given */
2299         if (!force)
2300         {
2301                 if (confirm_destroy || (object_value(o_ptr) > 0))
2302                 {
2303                         /* Make a verification */
2304 #ifdef JP
2305 sprintf(out_val, "ËÜÅö¤Ë%s¤ò¶â¤ËÊѤ¨¤Þ¤¹¤«¡©", o_name);
2306 #else
2307                         sprintf(out_val, "Really turn %s to gold? ", o_name);
2308 #endif
2309
2310                         if (!get_check(out_val)) return FALSE;
2311                 }
2312         }
2313
2314         /* Artifacts cannot be destroyed */
2315         if (!can_player_destroy_object(o_ptr))
2316         {
2317                 /* Message */
2318 #ifdef JP
2319                 msg_format("%s¤ò¶â¤ËÊѤ¨¤ë¤³¤È¤Ë¼ºÇÔ¤·¤¿¡£", o_name);
2320 #else
2321                 msg_format("You fail to turn %s to gold!", o_name);
2322 #endif
2323
2324                 /* Done */
2325                 return FALSE;
2326         }
2327
2328         price = object_value_real(o_ptr);
2329
2330         if (price <= 0)
2331         {
2332                 /* Message */
2333 #ifdef JP
2334 msg_format("%s¤ò¥Ë¥»¤Î¶â¤ËÊѤ¨¤¿¡£", o_name);
2335 #else
2336                 msg_format("You turn %s to fool's gold.", o_name);
2337 #endif
2338
2339         }
2340         else
2341         {
2342                 price /= 3;
2343
2344                 if (amt > 1) price *= amt;
2345
2346                 if (price > 30000) price = 30000;
2347 #ifdef JP
2348 msg_format("%s¤ò¡ð%d ¤Î¶â¤ËÊѤ¨¤¿¡£", o_name, price);
2349 #else
2350                 msg_format("You turn %s to %ld coins worth of gold.", o_name, price);
2351 #endif
2352
2353                 p_ptr->au += price;
2354
2355                 /* Redraw gold */
2356                 p_ptr->redraw |= (PR_GOLD);
2357
2358                 /* Window stuff */
2359                 p_ptr->window |= (PW_PLAYER);
2360
2361         }
2362
2363         /* Eliminate the item (from the pack) */
2364         if (item >= 0)
2365         {
2366                 inven_item_increase(item, -amt);
2367                 inven_item_describe(item);
2368                 inven_item_optimize(item);
2369         }
2370
2371         /* Eliminate the item (from the floor) */
2372         else
2373         {
2374                 floor_item_increase(0 - item, -amt);
2375                 floor_item_describe(0 - item);
2376                 floor_item_optimize(0 - item);
2377         }
2378
2379         return TRUE;
2380 }
2381
2382
2383 /*
2384  * Break the curse of an item
2385  */
2386 static void break_curse(object_type *o_ptr)
2387 {
2388         if (object_is_cursed(o_ptr) && !(o_ptr->curse_flags & TRC_PERMA_CURSE) && !(o_ptr->curse_flags & TRC_HEAVY_CURSE) && (randint0(100) < 25))
2389         {
2390 #ifdef JP
2391 msg_print("¤«¤±¤é¤ì¤Æ¤¤¤¿¼ö¤¤¤¬ÂǤÁÇˤé¤ì¤¿¡ª");
2392 #else
2393                 msg_print("The curse is broken!");
2394 #endif
2395
2396                 o_ptr->curse_flags = 0L;
2397
2398                 o_ptr->ident |= (IDENT_SENSE);
2399
2400                 o_ptr->feeling = FEEL_NONE;
2401         }
2402 }
2403
2404
2405 /*
2406  * Enchants a plus onto an item. -RAK-
2407  *
2408  * Revamped!  Now takes item pointer, number of times to try enchanting,
2409  * and a flag of what to try enchanting.  Artifacts resist enchantment
2410  * some of the time, and successful enchantment to at least +0 might
2411  * break a curse on the item. -CFT-
2412  *
2413  * Note that an item can technically be enchanted all the way to +15 if
2414  * you wait a very, very, long time.  Going from +9 to +10 only works
2415  * about 5% of the time, and from +10 to +11 only about 1% of the time.
2416  *
2417  * Note that this function can now be used on "piles" of items, and
2418  * the larger the pile, the lower the chance of success.
2419  */
2420 bool enchant(object_type *o_ptr, int n, int eflag)
2421 {
2422         int     i, chance, prob;
2423         bool    res = FALSE;
2424         bool    a = object_is_artifact(o_ptr);
2425         bool    force = (eflag & ENCH_FORCE);
2426
2427
2428         /* Large piles resist enchantment */
2429         prob = o_ptr->number * 100;
2430
2431         /* Missiles are easy to enchant */
2432         if ((o_ptr->tval == TV_BOLT) ||
2433             (o_ptr->tval == TV_ARROW) ||
2434             (o_ptr->tval == TV_SHOT))
2435         {
2436                 prob = prob / 20;
2437         }
2438
2439         /* Try "n" times */
2440         for (i = 0; i < n; i++)
2441         {
2442                 /* Hack -- Roll for pile resistance */
2443                 if (!force && randint0(prob) >= 100) continue;
2444
2445                 /* Enchant to hit */
2446                 if (eflag & ENCH_TOHIT)
2447                 {
2448                         if (o_ptr->to_h < 0) chance = 0;
2449                         else if (o_ptr->to_h > 15) chance = 1000;
2450                         else chance = enchant_table[o_ptr->to_h];
2451
2452                         if (force || ((randint1(1000) > chance) && (!a || (randint0(100) < 50))))
2453                         {
2454                                 o_ptr->to_h++;
2455                                 res = TRUE;
2456
2457                                 /* only when you get it above -1 -CFT */
2458                                 if (o_ptr->to_h >= 0)
2459                                         break_curse(o_ptr);
2460                         }
2461                 }
2462
2463                 /* Enchant to damage */
2464                 if (eflag & ENCH_TODAM)
2465                 {
2466                         if (o_ptr->to_d < 0) chance = 0;
2467                         else if (o_ptr->to_d > 15) chance = 1000;
2468                         else chance = enchant_table[o_ptr->to_d];
2469
2470                         if (force || ((randint1(1000) > chance) && (!a || (randint0(100) < 50))))
2471                         {
2472                                 o_ptr->to_d++;
2473                                 res = TRUE;
2474
2475                                 /* only when you get it above -1 -CFT */
2476                                 if (o_ptr->to_d >= 0)
2477                                         break_curse(o_ptr);
2478                         }
2479                 }
2480
2481                 /* Enchant to armor class */
2482                 if (eflag & ENCH_TOAC)
2483                 {
2484                         if (o_ptr->to_a < 0) chance = 0;
2485                         else if (o_ptr->to_a > 15) chance = 1000;
2486                         else chance = enchant_table[o_ptr->to_a];
2487
2488                         if (force || ((randint1(1000) > chance) && (!a || (randint0(100) < 50))))
2489                         {
2490                                 o_ptr->to_a++;
2491                                 res = TRUE;
2492
2493                                 /* only when you get it above -1 -CFT */
2494                                 if (o_ptr->to_a >= 0)
2495                                         break_curse(o_ptr);
2496                         }
2497                 }
2498         }
2499
2500         /* Failure */
2501         if (!res) return (FALSE);
2502
2503         /* Recalculate bonuses */
2504         p_ptr->update |= (PU_BONUS);
2505
2506         /* Combine / Reorder the pack (later) */
2507         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
2508
2509         /* Window stuff */
2510         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
2511
2512         calc_android_exp();
2513
2514         /* Success */
2515         return (TRUE);
2516 }
2517
2518
2519
2520 /*
2521  * Enchant an item (in the inventory or on the floor)
2522  * Note that "num_ac" requires armour, else weapon
2523  * Returns TRUE if attempted, FALSE if cancelled
2524  */
2525 bool enchant_spell(int num_hit, int num_dam, int num_ac)
2526 {
2527         int         item;
2528         bool        okay = FALSE;
2529         object_type *o_ptr;
2530         char        o_name[MAX_NLEN];
2531         cptr        q, s;
2532
2533
2534         /* Assume enchant weapon */
2535         item_tester_hook = object_allow_enchant_weapon;
2536         item_tester_no_ryoute = TRUE;
2537
2538         /* Enchant armor if requested */
2539         if (num_ac) item_tester_hook = object_is_armour;
2540
2541         /* Get an item */
2542 #ifdef JP
2543 q = "¤É¤Î¥¢¥¤¥Æ¥à¤ò¶¯²½¤·¤Þ¤¹¤«? ";
2544 s = "¶¯²½¤Ç¤­¤ë¥¢¥¤¥Æ¥à¤¬¤Ê¤¤¡£";
2545 #else
2546         q = "Enchant which item? ";
2547         s = "You have nothing to enchant.";
2548 #endif
2549
2550         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return (FALSE);
2551
2552         /* Get the item (in the pack) */
2553         if (item >= 0)
2554         {
2555                 o_ptr = &inventory[item];
2556         }
2557
2558         /* Get the item (on the floor) */
2559         else
2560         {
2561                 o_ptr = &o_list[0 - item];
2562         }
2563
2564
2565         /* Description */
2566         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
2567
2568         /* Describe */
2569 #ifdef JP
2570 msg_format("%s ¤ÏÌÀ¤ë¤¯µ±¤¤¤¿¡ª",
2571     o_name);
2572 #else
2573         msg_format("%s %s glow%s brightly!",
2574                    ((item >= 0) ? "Your" : "The"), o_name,
2575                    ((o_ptr->number > 1) ? "" : "s"));
2576 #endif
2577
2578
2579         /* Enchant */
2580         if (enchant(o_ptr, num_hit, ENCH_TOHIT)) okay = TRUE;
2581         if (enchant(o_ptr, num_dam, ENCH_TODAM)) okay = TRUE;
2582         if (enchant(o_ptr, num_ac, ENCH_TOAC)) okay = TRUE;
2583
2584         /* Failure */
2585         if (!okay)
2586         {
2587                 /* Flush */
2588                 if (flush_failure) flush();
2589
2590                 /* Message */
2591 #ifdef JP
2592 msg_print("¶¯²½¤Ë¼ºÇÔ¤·¤¿¡£");
2593 #else
2594                 msg_print("The enchantment failed.");
2595 #endif
2596
2597                 if (one_in_(3)) chg_virtue(V_ENCHANT, -1);
2598         }
2599         else
2600                 chg_virtue(V_ENCHANT, 1);
2601
2602         calc_android_exp();
2603
2604         /* Something happened */
2605         return (TRUE);
2606 }
2607
2608
2609 /*
2610  * Check if an object is nameless weapon or armour
2611  */
2612 static bool item_tester_hook_nameless_weapon_armour(object_type *o_ptr)
2613 {
2614         /* Require weapon or armour */
2615         if (!object_is_weapon_armour_ammo(o_ptr)) return FALSE;
2616         
2617         /* Require nameless object if the object is well known */
2618         if (object_is_known(o_ptr) && !object_is_nameless(o_ptr))
2619                 return FALSE;
2620
2621         return TRUE;
2622 }
2623
2624
2625 bool artifact_scroll(void)
2626 {
2627         int             item;
2628         bool            okay = FALSE;
2629         object_type     *o_ptr;
2630         char            o_name[MAX_NLEN];
2631         cptr            q, s;
2632
2633
2634         item_tester_no_ryoute = TRUE;
2635
2636         /* Enchant weapon/armour */
2637         item_tester_hook = item_tester_hook_nameless_weapon_armour;
2638
2639         /* Get an item */
2640 #ifdef JP
2641         q = "¤É¤Î¥¢¥¤¥Æ¥à¤ò¶¯²½¤·¤Þ¤¹¤«? ";
2642         s = "¶¯²½¤Ç¤­¤ë¥¢¥¤¥Æ¥à¤¬¤Ê¤¤¡£";
2643 #else
2644         q = "Enchant which item? ";
2645         s = "You have nothing to enchant.";
2646 #endif
2647
2648         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return (FALSE);
2649
2650         /* Get the item (in the pack) */
2651         if (item >= 0)
2652         {
2653                 o_ptr = &inventory[item];
2654         }
2655
2656         /* Get the item (on the floor) */
2657         else
2658         {
2659                 o_ptr = &o_list[0 - item];
2660         }
2661
2662
2663         /* Description */
2664         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
2665
2666         /* Describe */
2667 #ifdef JP
2668         msg_format("%s ¤ÏâÁ¤¤¸÷¤òȯ¤·¤¿¡ª",o_name);
2669 #else
2670         msg_format("%s %s radiate%s a blinding light!",
2671                   ((item >= 0) ? "Your" : "The"), o_name,
2672                   ((o_ptr->number > 1) ? "" : "s"));
2673 #endif
2674
2675         if (object_is_artifact(o_ptr))
2676         {
2677 #ifdef JP
2678                 msg_format("%s¤Ï´û¤ËÅÁÀâ¤Î¥¢¥¤¥Æ¥à¤Ç¤¹¡ª", o_name  );
2679 #else
2680                 msg_format("The %s %s already %s!",
2681                     o_name, ((o_ptr->number > 1) ? "are" : "is"),
2682                     ((o_ptr->number > 1) ? "artifacts" : "an artifact"));
2683 #endif
2684
2685                 okay = FALSE;
2686         }
2687
2688         else if (object_is_ego(o_ptr))
2689         {
2690 #ifdef JP
2691                 msg_format("%s¤Ï´û¤Ë̾¤Î¤¢¤ë¥¢¥¤¥Æ¥à¤Ç¤¹¡ª", o_name );
2692 #else
2693                 msg_format("The %s %s already %s!",
2694                     o_name, ((o_ptr->number > 1) ? "are" : "is"),
2695                     ((o_ptr->number > 1) ? "ego items" : "an ego item"));
2696 #endif
2697
2698                 okay = FALSE;
2699         }
2700
2701         else if (o_ptr->xtra3)
2702         {
2703 #ifdef JP
2704                 msg_format("%s¤Ï´û¤Ë¶¯²½¤µ¤ì¤Æ¤¤¤Þ¤¹¡ª", o_name );
2705 #else
2706                 msg_format("The %s %s already %s!",
2707                     o_name, ((o_ptr->number > 1) ? "are" : "is"),
2708                     ((o_ptr->number > 1) ? "customized items" : "a customized item"));
2709 #endif
2710         }
2711
2712         else
2713         {
2714                 if (o_ptr->number > 1)
2715                 {
2716 #ifdef JP
2717                         msg_print("Ê£¿ô¤Î¥¢¥¤¥Æ¥à¤ËËâË¡¤ò¤«¤±¤ë¤À¤±¤Î¥¨¥Í¥ë¥®¡¼¤Ï¤¢¤ê¤Þ¤»¤ó¡ª");
2718                         msg_format("%d ¸Ä¤Î%s¤¬²õ¤ì¤¿¡ª",(o_ptr->number)-1, o_name);
2719 #else
2720                         msg_print("Not enough enough energy to enchant more than one object!");
2721                         msg_format("%d of your %s %s destroyed!",(o_ptr->number)-1, o_name, (o_ptr->number>2?"were":"was"));
2722 #endif
2723
2724                         if (item >= 0)
2725                         {
2726                                 inven_item_increase(item, 1-(o_ptr->number));
2727                         }
2728                         else
2729                         {
2730                                 floor_item_increase(0-item, 1-(o_ptr->number));
2731                         }
2732                 }
2733                 okay = create_artifact(o_ptr, TRUE);
2734         }
2735
2736         /* Failure */
2737         if (!okay)
2738         {
2739                 /* Flush */
2740                 if (flush_failure) flush();
2741
2742                 /* Message */
2743 #ifdef JP
2744                 msg_print("¶¯²½¤Ë¼ºÇÔ¤·¤¿¡£");
2745 #else
2746                 msg_print("The enchantment failed.");
2747 #endif
2748
2749                 if (one_in_(3)) chg_virtue(V_ENCHANT, -1);
2750         }
2751         else
2752                 chg_virtue(V_ENCHANT, 1);
2753
2754         calc_android_exp();
2755
2756         /* Something happened */
2757         return (TRUE);
2758 }
2759
2760
2761 /*
2762  * Identify an object
2763  */
2764 bool identify_item(object_type *o_ptr)
2765 {
2766         bool old_known = FALSE;
2767         char o_name[MAX_NLEN];
2768
2769         /* Description */
2770         object_desc(o_name, o_ptr, 0);
2771
2772         if (o_ptr->ident & IDENT_KNOWN)
2773                 old_known = TRUE;
2774
2775         if (!(o_ptr->ident & (IDENT_MENTAL)))
2776         {
2777                 if (object_is_artifact(o_ptr) || one_in_(5))
2778                         chg_virtue(V_KNOWLEDGE, 1);
2779         }
2780
2781         /* Identify it fully */
2782         object_aware(o_ptr);
2783         object_known(o_ptr);
2784
2785         /* Player touches it */
2786         o_ptr->marked |= OM_TOUCHED;
2787
2788         /* Recalculate bonuses */
2789         p_ptr->update |= (PU_BONUS);
2790
2791         /* Combine / Reorder the pack (later) */
2792         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
2793
2794         /* Window stuff */
2795         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
2796
2797         strcpy(record_o_name, o_name);
2798         record_turn = turn;
2799
2800         /* Description */
2801         object_desc(o_name, o_ptr, OD_NAME_ONLY);
2802
2803         if(record_fix_art && !old_known && object_is_fixed_artifact(o_ptr))
2804                 do_cmd_write_nikki(NIKKI_ART, 0, o_name);
2805         if(record_rand_art && !old_known && o_ptr->art_name)
2806                 do_cmd_write_nikki(NIKKI_ART, 0, o_name);
2807
2808         return old_known;
2809 }
2810
2811
2812 static bool item_tester_hook_identify(object_type *o_ptr)
2813 {
2814         return (bool)!object_is_known(o_ptr);
2815 }
2816
2817 static bool item_tester_hook_identify_weapon_armour(object_type *o_ptr)
2818 {
2819         if (object_is_known(o_ptr))
2820                 return FALSE;
2821         return object_is_weapon_armour_ammo(o_ptr);
2822 }
2823
2824 /*
2825  * Identify an object in the inventory (or on the floor)
2826  * This routine does *not* automatically combine objects.
2827  * Returns TRUE if something was identified, else FALSE.
2828  */
2829 bool ident_spell(bool only_equip)
2830 {
2831         int             item;
2832         object_type     *o_ptr;
2833         char            o_name[MAX_NLEN];
2834         cptr            q, s;
2835         bool old_known;
2836
2837         item_tester_no_ryoute = TRUE;
2838
2839         if (only_equip)
2840                 item_tester_hook = item_tester_hook_identify_weapon_armour;
2841         else
2842                 item_tester_hook = item_tester_hook_identify;
2843
2844         if (can_get_item())
2845         {
2846 #ifdef JP
2847                 q = "¤É¤Î¥¢¥¤¥Æ¥à¤ò´ÕÄꤷ¤Þ¤¹¤«? ";
2848 #else
2849                 q = "Identify which item? ";
2850 #endif
2851         }
2852         else
2853         {
2854                 if (only_equip)
2855                         item_tester_hook = object_is_weapon_armour_ammo;
2856                 else
2857                         item_tester_hook = NULL;
2858
2859 #ifdef JP
2860                 q = "¤¹¤Ù¤Æ´ÕÄêºÑ¤ß¤Ç¤¹¡£ ";
2861 #else
2862                 q = "All items are identified. ";
2863 #endif
2864         }
2865
2866         /* Get an item */
2867 #ifdef JP
2868         s = "´ÕÄꤹ¤ë¤Ù¤­¥¢¥¤¥Æ¥à¤¬¤Ê¤¤¡£";
2869 #else
2870         s = "You have nothing to identify.";
2871 #endif
2872
2873         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return (FALSE);
2874
2875         /* Get the item (in the pack) */
2876         if (item >= 0)
2877         {
2878                 o_ptr = &inventory[item];
2879         }
2880
2881         /* Get the item (on the floor) */
2882         else
2883         {
2884                 o_ptr = &o_list[0 - item];
2885         }
2886
2887         /* Identify it */
2888         old_known = identify_item(o_ptr);
2889
2890         /* Description */
2891         object_desc(o_name, o_ptr, 0);
2892
2893         /* Describe */
2894         if (item >= INVEN_RARM)
2895         {
2896 #ifdef JP
2897                 msg_format("%^s: %s(%c)¡£", describe_use(item), o_name, index_to_label(item));
2898 #else
2899                 msg_format("%^s: %s (%c).", describe_use(item), o_name, index_to_label(item));
2900 #endif
2901         }
2902         else if (item >= 0)
2903         {
2904 #ifdef JP
2905                 msg_format("¥¶¥Ã¥¯Ãæ: %s(%c)¡£", o_name, index_to_label(item));
2906 #else
2907                 msg_format("In your pack: %s (%c).", o_name, index_to_label(item));
2908 #endif
2909         }
2910         else
2911         {
2912 #ifdef JP
2913                 msg_format("¾²¾å: %s¡£", o_name);
2914 #else
2915                 msg_format("On the ground: %s.", o_name);
2916 #endif
2917         }
2918
2919         /* Auto-inscription/destroy */
2920         autopick_alter_item(item, (bool)(destroy_identify && !old_known));
2921
2922         /* Something happened */
2923         return (TRUE);
2924 }
2925
2926
2927 /*
2928  * Mundanify an object in the inventory (or on the floor)
2929  * This routine does *not* automatically combine objects.
2930  * Returns TRUE if something was mundanified, else FALSE.
2931  */
2932 bool mundane_spell(bool only_equip)
2933 {
2934         int             item;
2935         object_type     *o_ptr;
2936         cptr            q, s;
2937
2938         if (only_equip) item_tester_hook = object_is_weapon_armour_ammo;
2939         item_tester_no_ryoute = TRUE;
2940
2941         /* Get an item */
2942 #ifdef JP
2943 q = "¤É¤ì¤ò»È¤¤¤Þ¤¹¤«¡©";
2944 s = "»È¤¨¤ë¤â¤Î¤¬¤¢¤ê¤Þ¤»¤ó¡£";
2945 #else
2946         q = "Use which item? ";
2947         s = "You have nothing you can use.";
2948 #endif
2949
2950         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return (FALSE);
2951
2952         /* Get the item (in the pack) */
2953         if (item >= 0)
2954         {
2955                 o_ptr = &inventory[item];
2956         }
2957
2958         /* Get the item (on the floor) */
2959         else
2960         {
2961                 o_ptr = &o_list[0 - item];
2962         }
2963
2964         /* Oops */
2965 #ifdef JP
2966         msg_print("¤Þ¤Ð¤æ¤¤Á®¸÷¤¬Áö¤Ã¤¿¡ª");
2967 #else
2968         msg_print("There is a bright flash of light!");
2969 #endif
2970         {
2971                 byte iy = o_ptr->iy;                 /* Y-position on map, or zero */
2972                 byte ix = o_ptr->ix;                 /* X-position on map, or zero */
2973                 s16b next_o_idx = o_ptr->next_o_idx; /* Next object in stack (if any) */
2974                 byte marked = o_ptr->marked;         /* Object is marked */
2975                 s16b weight = o_ptr->number * o_ptr->weight;
2976                 u16b inscription = o_ptr->inscription;
2977
2978                 /* Wipe it clean */
2979                 object_prep(o_ptr, o_ptr->k_idx);
2980
2981                 o_ptr->iy = iy;
2982                 o_ptr->ix = ix;
2983                 o_ptr->next_o_idx = next_o_idx;
2984                 o_ptr->marked = marked;
2985                 o_ptr->inscription = inscription;
2986                 if (item >= 0) p_ptr->total_weight += (o_ptr->weight - weight);
2987         }
2988         calc_android_exp();
2989
2990         /* Something happened */
2991         return TRUE;
2992 }
2993
2994
2995
2996 static bool item_tester_hook_identify_fully(object_type *o_ptr)
2997 {
2998         return (bool)(!object_is_known(o_ptr) || !(o_ptr->ident & IDENT_MENTAL));
2999 }
3000
3001 static bool item_tester_hook_identify_fully_weapon_armour(object_type *o_ptr)
3002 {
3003         if (!item_tester_hook_identify_fully(o_ptr))
3004                 return FALSE;
3005         return object_is_weapon_armour_ammo(o_ptr);
3006 }
3007
3008 /*
3009  * Fully "identify" an object in the inventory  -BEN-
3010  * This routine returns TRUE if an item was identified.
3011  */
3012 bool identify_fully(bool only_equip)
3013 {
3014         int             item;
3015         object_type     *o_ptr;
3016         char            o_name[MAX_NLEN];
3017         cptr            q, s;
3018         bool old_known;
3019
3020         item_tester_no_ryoute = TRUE;
3021         if (only_equip)
3022                 item_tester_hook = item_tester_hook_identify_fully_weapon_armour;
3023         else
3024                 item_tester_hook = item_tester_hook_identify_fully;
3025
3026         if (can_get_item())
3027         {
3028 #ifdef JP
3029                 q = "¤É¤Î¥¢¥¤¥Æ¥à¤ò*´ÕÄê*¤·¤Þ¤¹¤«? ";
3030 #else
3031                 q = "*Identify* which item? ";
3032 #endif
3033         }
3034         else
3035         {
3036                 if (only_equip)
3037                         item_tester_hook = object_is_weapon_armour_ammo;
3038                 else
3039                         item_tester_hook = NULL;
3040
3041 #ifdef JP
3042                 q = "¤¹¤Ù¤Æ*´ÕÄê*ºÑ¤ß¤Ç¤¹¡£ ";
3043 #else
3044                 q = "All items are *identified*. ";
3045 #endif
3046         }
3047
3048         /* Get an item */
3049 #ifdef JP
3050         s = "*´ÕÄê*¤¹¤ë¤Ù¤­¥¢¥¤¥Æ¥à¤¬¤Ê¤¤¡£";
3051 #else
3052         s = "You have nothing to *identify*.";
3053 #endif
3054
3055         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return (FALSE);
3056
3057         /* Get the item (in the pack) */
3058         if (item >= 0)
3059         {
3060                 o_ptr = &inventory[item];
3061         }
3062
3063         /* Get the item (on the floor) */
3064         else
3065         {
3066                 o_ptr = &o_list[0 - item];
3067         }
3068
3069         /* Identify it */
3070         old_known = identify_item(o_ptr);
3071
3072         /* Mark the item as fully known */
3073         o_ptr->ident |= (IDENT_MENTAL);
3074
3075         /* Handle stuff */
3076         handle_stuff();
3077
3078         /* Description */
3079         object_desc(o_name, o_ptr, 0);
3080
3081         /* Describe */
3082         if (item >= INVEN_RARM)
3083         {
3084 #ifdef JP
3085                 msg_format("%^s: %s(%c)¡£", describe_use(item), o_name, index_to_label(item));
3086 #else
3087                 msg_format("%^s: %s (%c).", describe_use(item), o_name, index_to_label(item));
3088 #endif
3089
3090
3091         }
3092         else if (item >= 0)
3093         {
3094 #ifdef JP
3095                 msg_format("¥¶¥Ã¥¯Ãæ: %s(%c)¡£", o_name, index_to_label(item));
3096 #else
3097                 msg_format("In your pack: %s (%c).", o_name, index_to_label(item));
3098 #endif
3099         }
3100         else
3101         {
3102 #ifdef JP
3103                 msg_format("¾²¾å: %s¡£", o_name);
3104 #else
3105                 msg_format("On the ground: %s.", o_name);
3106 #endif
3107         }
3108
3109         /* Describe it fully */
3110         (void)screen_object(o_ptr, 0L);
3111
3112         /* Auto-inscription/destroy */
3113         autopick_alter_item(item, (bool)(destroy_identify && !old_known));
3114
3115         /* Success */
3116         return (TRUE);
3117 }
3118
3119
3120
3121
3122 /*
3123  * Hook for "get_item()".  Determine if something is rechargable.
3124  */
3125 bool item_tester_hook_recharge(object_type *o_ptr)
3126 {
3127         /* Recharge staffs */
3128         if (o_ptr->tval == TV_STAFF) return (TRUE);
3129
3130         /* Recharge wands */
3131         if (o_ptr->tval == TV_WAND) return (TRUE);
3132
3133         /* Hack -- Recharge rods */
3134         if (o_ptr->tval == TV_ROD) return (TRUE);
3135
3136         /* Nope */
3137         return (FALSE);
3138 }
3139
3140
3141 /*
3142  * Recharge a wand/staff/rod from the pack or on the floor.
3143  * This function has been rewritten in Oangband and ZAngband.
3144  *
3145  * Sorcery/Arcane -- Recharge  --> recharge(plev * 4)
3146  * Chaos -- Arcane Binding     --> recharge(90)
3147  *
3148  * Scroll of recharging        --> recharge(130)
3149  * Artifact activation/Thingol --> recharge(130)
3150  *
3151  * It is harder to recharge high level, and highly charged wands,
3152  * staffs, and rods.  The more wands in a stack, the more easily and
3153  * strongly they recharge.  Staffs, however, each get fewer charges if
3154  * stacked.
3155  *
3156  * XXX XXX XXX Beware of "sliding index errors".
3157  */
3158 bool recharge(int power)
3159 {
3160         int item, lev;
3161         int recharge_strength, recharge_amount;
3162
3163         object_type *o_ptr;
3164         object_kind *k_ptr;
3165
3166         bool fail = FALSE;
3167         byte fail_type = 1;
3168
3169         cptr q, s;
3170         char o_name[MAX_NLEN];
3171
3172         /* Only accept legal items */
3173         item_tester_hook = item_tester_hook_recharge;
3174
3175         /* Get an item */
3176 #ifdef JP
3177 q = "¤É¤Î¥¢¥¤¥Æ¥à¤ËËâÎϤò½¼Å¶¤·¤Þ¤¹¤«? ";
3178 s = "ËâÎϤò½¼Å¶¤¹¤Ù¤­¥¢¥¤¥Æ¥à¤¬¤Ê¤¤¡£";
3179 #else
3180         q = "Recharge which item? ";
3181         s = "You have nothing to recharge.";
3182 #endif
3183
3184         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return (FALSE);
3185
3186         /* Get the item (in the pack) */
3187         if (item >= 0)
3188         {
3189                 o_ptr = &inventory[item];
3190         }
3191
3192         /* Get the item (on the floor) */
3193         else
3194         {
3195                 o_ptr = &o_list[0 - item];
3196         }
3197
3198         /* Get the object kind. */
3199         k_ptr = &k_info[o_ptr->k_idx];
3200
3201         /* Extract the object "level" */
3202         lev = k_info[o_ptr->k_idx].level;
3203
3204
3205         /* Recharge a rod */
3206         if (o_ptr->tval == TV_ROD)
3207         {
3208                 /* Extract a recharge strength by comparing object level to power. */
3209                 recharge_strength = ((power > lev/2) ? (power - lev/2) : 0) / 5;
3210
3211
3212                 /* Back-fire */
3213                 if (one_in_(recharge_strength))
3214                 {
3215                         /* Activate the failure code. */
3216                         fail = TRUE;
3217                 }
3218
3219                 /* Recharge */
3220                 else
3221                 {
3222                         /* Recharge amount */
3223                         recharge_amount = (power * damroll(3, 2));
3224
3225                         /* Recharge by that amount */
3226                         if (o_ptr->timeout > recharge_amount)
3227                                 o_ptr->timeout -= recharge_amount;
3228                         else
3229                                 o_ptr->timeout = 0;
3230                 }
3231         }
3232
3233
3234         /* Recharge wand/staff */
3235         else
3236         {
3237                 /* Extract a recharge strength by comparing object level to power.
3238                  * Divide up a stack of wands' charges to calculate charge penalty.
3239                  */
3240                 if ((o_ptr->tval == TV_WAND) && (o_ptr->number > 1))
3241                         recharge_strength = (100 + power - lev -
3242                         (8 * o_ptr->pval / o_ptr->number)) / 15;
3243
3244                 /* All staffs, unstacked wands. */
3245                 else recharge_strength = (100 + power - lev -
3246                         (8 * o_ptr->pval)) / 15;
3247
3248                 /* Paranoia */
3249                 if (recharge_strength < 0) recharge_strength = 0;
3250
3251                 /* Back-fire */
3252                 if (one_in_(recharge_strength))
3253                 {
3254                         /* Activate the failure code. */
3255                         fail = TRUE;
3256                 }
3257
3258                 /* If the spell didn't backfire, recharge the wand or staff. */
3259                 else
3260                 {
3261                         /* Recharge based on the standard number of charges. */
3262                         recharge_amount = randint1(1 + k_ptr->pval / 2);
3263
3264                         /* Multiple wands in a stack increase recharging somewhat. */
3265                         if ((o_ptr->tval == TV_WAND) && (o_ptr->number > 1))
3266                         {
3267                                 recharge_amount +=
3268                                         (randint1(recharge_amount * (o_ptr->number - 1))) / 2;
3269                                 if (recharge_amount < 1) recharge_amount = 1;
3270                                 if (recharge_amount > 12) recharge_amount = 12;
3271                         }
3272
3273                         /* But each staff in a stack gets fewer additional charges,
3274                          * although always at least one.
3275                          */
3276                         if ((o_ptr->tval == TV_STAFF) && (o_ptr->number > 1))
3277                         {
3278                                 recharge_amount /= o_ptr->number;
3279                                 if (recharge_amount < 1) recharge_amount = 1;
3280                         }
3281
3282                         /* Recharge the wand or staff. */
3283                         o_ptr->pval += recharge_amount;
3284
3285
3286                         /* Hack -- we no longer "know" the item */
3287                         o_ptr->ident &= ~(IDENT_KNOWN);
3288
3289                         /* Hack -- we no longer think the item is empty */
3290                         o_ptr->ident &= ~(IDENT_EMPTY);
3291                 }
3292         }
3293
3294
3295         /* Inflict the penalties for failing a recharge. */
3296         if (fail)
3297         {
3298                 /* Artifacts are never destroyed. */
3299                 if (object_is_fixed_artifact(o_ptr))
3300                 {
3301                         object_desc(o_name, o_ptr, OD_NAME_ONLY);
3302 #ifdef JP
3303 msg_format("ËâÎϤ¬µÕή¤·¤¿¡ª%s¤Ï´°Á´¤ËËâÎϤò¼º¤Ã¤¿¡£", o_name);
3304 #else
3305                         msg_format("The recharging backfires - %s is completely drained!", o_name);
3306 #endif
3307
3308
3309                         /* Artifact rods. */
3310                         if ((o_ptr->tval == TV_ROD) && (o_ptr->timeout < 10000))
3311                                 o_ptr->timeout = (o_ptr->timeout + 100) * 2;
3312
3313                         /* Artifact wands and staffs. */
3314                         else if ((o_ptr->tval == TV_WAND) || (o_ptr->tval == TV_STAFF))
3315                                 o_ptr->pval = 0;
3316                 }
3317                 else
3318                 {
3319                         /* Get the object description */
3320                         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
3321
3322                         /*** Determine Seriousness of Failure ***/
3323
3324                         /* Mages recharge objects more safely. */
3325                         if (p_ptr->pclass == CLASS_MAGE || p_ptr->pclass == CLASS_HIGH_MAGE || p_ptr->pclass == CLASS_SORCERER || p_ptr->pclass == CLASS_MAGIC_EATER || p_ptr->pclass == CLASS_BLUE_MAGE)
3326                         {
3327                                 /* 10% chance to blow up one rod, otherwise draining. */
3328                                 if (o_ptr->tval == TV_ROD)
3329                                 {
3330                                         if (one_in_(10)) fail_type = 2;
3331                                         else fail_type = 1;
3332                                 }
3333                                 /* 75% chance to blow up one wand, otherwise draining. */
3334                                 else if (o_ptr->tval == TV_WAND)
3335                                 {
3336                                         if (!one_in_(3)) fail_type = 2;
3337                                         else fail_type = 1;
3338                                 }
3339                                 /* 50% chance to blow up one staff, otherwise no effect. */
3340                                 else if (o_ptr->tval == TV_STAFF)
3341                                 {
3342                                         if (one_in_(2)) fail_type = 2;
3343                                         else fail_type = 0;
3344                                 }
3345                         }
3346
3347                         /* All other classes get no special favors. */
3348                         else
3349                         {
3350                                 /* 33% chance to blow up one rod, otherwise draining. */
3351                                 if (o_ptr->tval == TV_ROD)
3352                                 {
3353                                         if (one_in_(3)) fail_type = 2;
3354                                         else fail_type = 1;
3355                                 }
3356                                 /* 20% chance of the entire stack, else destroy one wand. */
3357                                 else if (o_ptr->tval == TV_WAND)
3358                                 {
3359                                         if (one_in_(5)) fail_type = 3;
3360                                         else fail_type = 2;
3361                                 }
3362                                 /* Blow up one staff. */
3363                                 else if (o_ptr->tval == TV_STAFF)
3364                                 {
3365                                         fail_type = 2;
3366                                 }
3367                         }
3368
3369                         /*** Apply draining and destruction. ***/
3370
3371                         /* Drain object or stack of objects. */
3372                         if (fail_type == 1)
3373                         {
3374                                 if (o_ptr->tval == TV_ROD)
3375                                 {
3376 #ifdef JP
3377 msg_print("ËâÎϤ¬µÕÊ®¼Í¤·¤Æ¡¢¥í¥Ã¥É¤«¤é¤µ¤é¤ËËâÎϤòµÛ¤¤¼è¤Ã¤Æ¤·¤Þ¤Ã¤¿¡ª");
3378 #else
3379                                         msg_print("The recharge backfires, draining the rod further!");
3380 #endif
3381
3382                                         if (o_ptr->timeout < 10000)
3383                                                 o_ptr->timeout = (o_ptr->timeout + 100) * 2;
3384                                 }
3385                                 else if (o_ptr->tval == TV_WAND)
3386                                 {
3387 #ifdef JP
3388 msg_format("%s¤ÏÇË»¤òÌȤ줿¤¬¡¢ËâÎϤ¬Á´¤Æ¼º¤ï¤ì¤¿¡£", o_name);
3389 #else
3390                                         msg_format("You save your %s from destruction, but all charges are lost.", o_name);
3391 #endif
3392
3393                                         o_ptr->pval = 0;
3394                                 }
3395                                 /* Staffs aren't drained. */
3396                         }
3397
3398                         /* Destroy an object or one in a stack of objects. */
3399                         if (fail_type == 2)
3400                         {
3401                                 if (o_ptr->number > 1)
3402 #ifdef JP
3403 msg_format("Íð˽¤ÊËâË¡¤Î¤¿¤á¤Ë%s¤¬°ìËܲõ¤ì¤¿¡ª", o_name);
3404 #else
3405                                         msg_format("Wild magic consumes one of your %s!", o_name);
3406 #endif
3407
3408                                 else
3409 #ifdef JP
3410 msg_format("Íð˽¤ÊËâË¡¤Î¤¿¤á¤Ë%s¤¬²õ¤ì¤¿¡ª", o_name);
3411 #else
3412                                         msg_format("Wild magic consumes your %s!", o_name);
3413 #endif
3414
3415
3416                                 /* Reduce rod stack maximum timeout, drain wands. */
3417                                 if (o_ptr->tval == TV_ROD) o_ptr->timeout = (o_ptr->number - 1) * k_ptr->pval;
3418                                 if (o_ptr->tval == TV_WAND) o_ptr->pval = 0;
3419
3420                                 /* Reduce and describe inventory */
3421                                 if (item >= 0)
3422                                 {
3423                                         inven_item_increase(item, -1);
3424                                         inven_item_describe(item);
3425                                         inven_item_optimize(item);
3426                                 }
3427
3428                                 /* Reduce and describe floor item */
3429                                 else
3430                                 {
3431                                         floor_item_increase(0 - item, -1);
3432                                         floor_item_describe(0 - item);
3433                                         floor_item_optimize(0 - item);
3434                                 }
3435                         }
3436
3437                         /* Destroy all members of a stack of objects. */
3438                         if (fail_type == 3)
3439                         {
3440                                 if (o_ptr->number > 1)
3441 #ifdef JP
3442 msg_format("Íð˽¤ÊËâË¡¤Î¤¿¤á¤Ë%s¤¬Á´¤Æ²õ¤ì¤¿¡ª", o_name);
3443 #else
3444                                         msg_format("Wild magic consumes all your %s!", o_name);
3445 #endif
3446
3447                                 else
3448 #ifdef JP
3449 msg_format("Íð˽¤ÊËâË¡¤Î¤¿¤á¤Ë%s¤¬²õ¤ì¤¿¡ª", o_name);
3450 #else
3451                                         msg_format("Wild magic consumes your %s!", o_name);
3452 #endif
3453
3454
3455
3456                                 /* Reduce and describe inventory */
3457                                 if (item >= 0)
3458                                 {
3459                                         inven_item_increase(item, -999);
3460                                         inven_item_describe(item);
3461                                         inven_item_optimize(item);
3462                                 }
3463
3464                                 /* Reduce and describe floor item */
3465                                 else
3466                                 {
3467                                         floor_item_increase(0 - item, -999);
3468                                         floor_item_describe(0 - item);
3469                                         floor_item_optimize(0 - item);
3470                                 }
3471                         }
3472                 }
3473         }
3474
3475         /* Combine / Reorder the pack (later) */
3476         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
3477
3478         /* Window stuff */
3479         p_ptr->window |= (PW_INVEN);
3480
3481         /* Something was done */
3482         return (TRUE);
3483 }
3484
3485
3486 /*
3487  * Bless a weapon
3488  */
3489 bool bless_weapon(void)
3490 {
3491         int             item;
3492         object_type     *o_ptr;
3493         u32b flgs[TR_FLAG_SIZE];
3494         char            o_name[MAX_NLEN];
3495         cptr            q, s;
3496
3497         item_tester_no_ryoute = TRUE;
3498
3499         /* Bless only weapons */
3500         item_tester_hook = object_is_weapon;
3501
3502         /* Get an item */
3503 #ifdef JP
3504 q = "¤É¤Î¥¢¥¤¥Æ¥à¤ò½ËÊ¡¤·¤Þ¤¹¤«¡©";
3505 s = "½ËÊ¡¤Ç¤­¤ëÉð´ï¤¬¤¢¤ê¤Þ¤»¤ó¡£";
3506 #else
3507         q = "Bless which weapon? ";
3508         s = "You have weapon to bless.";
3509 #endif
3510
3511         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR)))
3512                 return FALSE;
3513
3514         /* Get the item (in the pack) */
3515         if (item >= 0)
3516         {
3517                 o_ptr = &inventory[item];
3518         }
3519
3520         /* Get the item (on the floor) */
3521         else
3522         {
3523                 o_ptr = &o_list[0 - item];
3524         }
3525
3526
3527         /* Description */
3528         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
3529
3530         /* Extract the flags */
3531         object_flags(o_ptr, flgs);
3532
3533         if (object_is_cursed(o_ptr))
3534         {
3535                 if (((o_ptr->curse_flags & TRC_HEAVY_CURSE) && (randint1(100) < 33)) ||
3536                     (o_ptr->curse_flags & TRC_PERMA_CURSE))
3537                 {
3538 #ifdef JP
3539 msg_format("%s¤òʤ¤¦¹õ¤¤¥ª¡¼¥é¤Ï½ËÊ¡¤òÄ·¤ÍÊÖ¤·¤¿¡ª",
3540     o_name);
3541 #else
3542                         msg_format("The black aura on %s %s disrupts the blessing!",
3543                             ((item >= 0) ? "your" : "the"), o_name);
3544 #endif
3545
3546                         return TRUE;
3547                 }
3548
3549 #ifdef JP
3550 msg_format("%s ¤«¤é¼Ù°­¤Ê¥ª¡¼¥é¤¬¾Ã¤¨¤¿¡£",
3551     o_name);
3552 #else
3553                 msg_format("A malignant aura leaves %s %s.",
3554                     ((item >= 0) ? "your" : "the"), o_name);
3555 #endif
3556
3557
3558                 /* Uncurse it */
3559                 o_ptr->curse_flags = 0L;
3560
3561                 /* Hack -- Assume felt */
3562                 o_ptr->ident |= (IDENT_SENSE);
3563
3564                 /* Take note */
3565                 o_ptr->feeling = FEEL_NONE;
3566
3567                 /* Recalculate the bonuses */
3568                 p_ptr->update |= (PU_BONUS);
3569
3570                 /* Window stuff */
3571                 p_ptr->window |= (PW_EQUIP);
3572         }
3573
3574         /*
3575          * Next, we try to bless it. Artifacts have a 1/3 chance of
3576          * being blessed, otherwise, the operation simply disenchants
3577          * them, godly power negating the magic. Ok, the explanation
3578          * is silly, but otherwise priests would always bless every
3579          * artifact weapon they find. Ego weapons and normal weapons
3580          * can be blessed automatically.
3581          */
3582         if (have_flag(flgs, TR_BLESSED))
3583         {
3584 #ifdef JP
3585 msg_format("%s ¤Ï´û¤Ë½ËÊ¡¤µ¤ì¤Æ¤¤¤ë¡£",
3586     o_name    );
3587 #else
3588                 msg_format("%s %s %s blessed already.",
3589                     ((item >= 0) ? "Your" : "The"), o_name,
3590                     ((o_ptr->number > 1) ? "were" : "was"));
3591 #endif
3592
3593                 return TRUE;
3594         }
3595
3596         if (!(object_is_artifact(o_ptr) || object_is_ego(o_ptr)) || one_in_(3))
3597         {
3598                 /* Describe */
3599 #ifdef JP
3600 msg_format("%s¤Ïµ±¤¤¤¿¡ª",
3601      o_name);
3602 #else
3603                 msg_format("%s %s shine%s!",
3604                     ((item >= 0) ? "Your" : "The"), o_name,
3605                     ((o_ptr->number > 1) ? "" : "s"));
3606 #endif
3607
3608                 add_flag(o_ptr->art_flags, TR_BLESSED);
3609                 o_ptr->discount = 99;
3610         }
3611         else
3612         {
3613                 bool dis_happened = FALSE;
3614
3615 #ifdef JP
3616 msg_print("¤½¤ÎÉð´ï¤Ï½ËÊ¡¤ò·ù¤Ã¤Æ¤¤¤ë¡ª");
3617 #else
3618                 msg_print("The weapon resists your blessing!");
3619 #endif
3620
3621
3622                 /* Disenchant tohit */
3623                 if (o_ptr->to_h > 0)
3624                 {
3625                         o_ptr->to_h--;
3626                         dis_happened = TRUE;
3627                 }
3628
3629                 if ((o_ptr->to_h > 5) && (randint0(100) < 33)) o_ptr->to_h--;
3630
3631                 /* Disenchant todam */
3632                 if (o_ptr->to_d > 0)
3633                 {
3634                         o_ptr->to_d--;
3635                         dis_happened = TRUE;
3636                 }
3637
3638                 if ((o_ptr->to_d > 5) && (randint0(100) < 33)) o_ptr->to_d--;
3639
3640                 /* Disenchant toac */
3641                 if (o_ptr->to_a > 0)
3642                 {
3643                         o_ptr->to_a--;
3644                         dis_happened = TRUE;
3645                 }
3646
3647                 if ((o_ptr->to_a > 5) && (randint0(100) < 33)) o_ptr->to_a--;
3648
3649                 if (dis_happened)
3650                 {
3651 #ifdef JP
3652 msg_print("¼þ°Ï¤¬ËÞÍǤÊÊ·°Ïµ¤¤ÇËþ¤Á¤¿...");
3653 #else
3654                         msg_print("There is a static feeling in the air...");
3655 #endif
3656
3657 #ifdef JP
3658 msg_format("%s ¤ÏÎô²½¤·¤¿¡ª",
3659      o_name    );
3660 #else
3661                         msg_format("%s %s %s disenchanted!",
3662                             ((item >= 0) ? "Your" : "The"), o_name,
3663                             ((o_ptr->number > 1) ? "were" : "was"));
3664 #endif
3665
3666                 }
3667         }
3668
3669         /* Recalculate bonuses */
3670         p_ptr->update |= (PU_BONUS);
3671
3672         /* Window stuff */
3673         p_ptr->window |= (PW_EQUIP | PW_PLAYER);
3674
3675         calc_android_exp();
3676
3677         return TRUE;
3678 }
3679
3680
3681 /*
3682  * pulish shield
3683  */
3684 bool pulish_shield(void)
3685 {
3686         int             item;
3687         object_type     *o_ptr;
3688         u32b flgs[TR_FLAG_SIZE];
3689         char            o_name[MAX_NLEN];
3690         cptr            q, s;
3691
3692         item_tester_no_ryoute = TRUE;
3693         /* Assume enchant weapon */
3694         item_tester_tval = TV_SHIELD;
3695
3696         /* Get an item */
3697 #ifdef JP
3698 q = "¤É¤Î½â¤òË᤭¤Þ¤¹¤«¡©";
3699 s = "Ë᤯½â¤¬¤¢¤ê¤Þ¤»¤ó¡£";
3700 #else
3701         q = "Pulish which weapon? ";
3702         s = "You have weapon to pulish.";
3703 #endif
3704
3705         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR)))
3706                 return FALSE;
3707
3708         /* Get the item (in the pack) */
3709         if (item >= 0)
3710         {
3711                 o_ptr = &inventory[item];
3712         }
3713
3714         /* Get the item (on the floor) */
3715         else
3716         {
3717                 o_ptr = &o_list[0 - item];
3718         }
3719
3720
3721         /* Description */
3722         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
3723
3724         /* Extract the flags */
3725         object_flags(o_ptr, flgs);
3726
3727         if (o_ptr->k_idx && !object_is_artifact(o_ptr) && !object_is_ego(o_ptr) &&
3728             !object_is_cursed(o_ptr) && (o_ptr->sval != SV_MIRROR_SHIELD))
3729         {
3730 #ifdef JP
3731 msg_format("%s¤Ïµ±¤¤¤¿¡ª", o_name);
3732 #else
3733                 msg_format("%s %s shine%s!",
3734                     ((item >= 0) ? "Your" : "The"), o_name,
3735                     ((o_ptr->number > 1) ? "" : "s"));
3736 #endif
3737                 o_ptr->name2 = EGO_REFLECTION;
3738                 enchant(o_ptr, randint0(3) + 4, ENCH_TOAC);
3739
3740                 o_ptr->discount = 99;
3741                 chg_virtue(V_ENCHANT, 2);
3742
3743                 return TRUE;
3744         }
3745         else
3746         {
3747                 if (flush_failure) flush();
3748
3749 #ifdef JP
3750 msg_print("¼ºÇÔ¤·¤¿¡£");
3751 #else
3752                 msg_print("Failed.");
3753 #endif
3754
3755                 chg_virtue(V_ENCHANT, -2);
3756         }
3757         calc_android_exp();
3758
3759         return FALSE;
3760 }
3761
3762
3763 /*
3764  * Potions "smash open" and cause an area effect when
3765  * (1) they are shattered while in the player's inventory,
3766  * due to cold (etc) attacks;
3767  * (2) they are thrown at a monster, or obstacle;
3768  * (3) they are shattered by a "cold ball" or other such spell
3769  * while lying on the floor.
3770  *
3771  * Arguments:
3772  *    who   ---  who caused the potion to shatter (0=player)
3773  *          potions that smash on the floor are assumed to
3774  *          be caused by no-one (who = 1), as are those that
3775  *          shatter inside the player inventory.
3776  *          (Not anymore -- I changed this; TY)
3777  *    y, x  --- coordinates of the potion (or player if
3778  *          the potion was in her inventory);
3779  *    o_ptr --- pointer to the potion object.
3780  */
3781 bool potion_smash_effect(int who, int y, int x, int k_idx)
3782 {
3783         int     radius = 2;
3784         int     dt = 0;
3785         int     dam = 0;
3786         bool    angry = FALSE;
3787
3788         object_kind *k_ptr = &k_info[k_idx];
3789
3790         switch (k_ptr->sval)
3791         {
3792                 case SV_POTION_SALT_WATER:
3793                 case SV_POTION_SLIME_MOLD:
3794                 case SV_POTION_LOSE_MEMORIES:
3795                 case SV_POTION_DEC_STR:
3796                 case SV_POTION_DEC_INT:
3797                 case SV_POTION_DEC_WIS:
3798                 case SV_POTION_DEC_DEX:
3799                 case SV_POTION_DEC_CON:
3800                 case SV_POTION_DEC_CHR:
3801                 case SV_POTION_WATER:   /* perhaps a 'water' attack? */
3802                 case SV_POTION_APPLE_JUICE:
3803                         return TRUE;
3804
3805                 case SV_POTION_INFRAVISION:
3806                 case SV_POTION_DETECT_INVIS:
3807                 case SV_POTION_SLOW_POISON:
3808                 case SV_POTION_CURE_POISON:
3809                 case SV_POTION_BOLDNESS:
3810                 case SV_POTION_RESIST_HEAT:
3811                 case SV_POTION_RESIST_COLD:
3812                 case SV_POTION_HEROISM:
3813                 case SV_POTION_BESERK_STRENGTH:
3814                 case SV_POTION_RES_STR:
3815                 case SV_POTION_RES_INT:
3816                 case SV_POTION_RES_WIS:
3817                 case SV_POTION_RES_DEX:
3818                 case SV_POTION_RES_CON:
3819                 case SV_POTION_RES_CHR:
3820                 case SV_POTION_INC_STR:
3821                 case SV_POTION_INC_INT:
3822                 case SV_POTION_INC_WIS:
3823                 case SV_POTION_INC_DEX:
3824                 case SV_POTION_INC_CON:
3825                 case SV_POTION_INC_CHR:
3826                 case SV_POTION_AUGMENTATION:
3827                 case SV_POTION_ENLIGHTENMENT:
3828                 case SV_POTION_STAR_ENLIGHTENMENT:
3829                 case SV_POTION_SELF_KNOWLEDGE:
3830                 case SV_POTION_EXPERIENCE:
3831                 case SV_POTION_RESISTANCE:
3832                 case SV_POTION_INVULNERABILITY:
3833                 case SV_POTION_NEW_LIFE:
3834                         /* All of the above potions have no effect when shattered */
3835                         return FALSE;
3836                 case SV_POTION_SLOWNESS:
3837                         dt = GF_OLD_SLOW;
3838                         dam = 5;
3839                         angry = TRUE;
3840                         break;
3841                 case SV_POTION_POISON:
3842                         dt = GF_POIS;
3843                         dam = 3;
3844                         angry = TRUE;
3845                         break;
3846                 case SV_POTION_BLINDNESS:
3847                         dt = GF_DARK;
3848                         angry = TRUE;
3849                         break;
3850                 case SV_POTION_CONFUSION: /* Booze */
3851                         dt = GF_OLD_CONF;
3852                         angry = TRUE;
3853                         break;
3854                 case SV_POTION_SLEEP:
3855                         dt = GF_OLD_SLEEP;
3856                         angry = TRUE;
3857                         break;
3858                 case SV_POTION_RUINATION:
3859                 case SV_POTION_DETONATIONS:
3860                         dt = GF_SHARDS;
3861                         dam = damroll(25, 25);
3862                         angry = TRUE;
3863                         break;
3864                 case SV_POTION_DEATH:
3865                         dt = GF_DEATH_RAY;    /* !! */
3866                         dam = k_ptr->level * 10;
3867                         angry = TRUE;
3868                         radius = 1;
3869                         break;
3870                 case SV_POTION_SPEED:
3871                         dt = GF_OLD_SPEED;
3872                         break;
3873                 case SV_POTION_CURE_LIGHT:
3874                         dt = GF_OLD_HEAL;
3875                         dam = damroll(2, 3);
3876                         break;
3877                 case SV_POTION_CURE_SERIOUS:
3878                         dt = GF_OLD_HEAL;
3879                         dam = damroll(4, 3);
3880                         break;
3881                 case SV_POTION_CURE_CRITICAL:
3882                 case SV_POTION_CURING:
3883                         dt = GF_OLD_HEAL;
3884                         dam = damroll(6, 3);
3885                         break;
3886                 case SV_POTION_HEALING:
3887                         dt = GF_OLD_HEAL;
3888                         dam = damroll(10, 10);
3889                         break;
3890                 case SV_POTION_RESTORE_EXP:
3891                         dt = GF_STAR_HEAL;
3892                         dam = 0;
3893                         radius = 1;
3894                         break;
3895                 case SV_POTION_LIFE:
3896                         dt = GF_STAR_HEAL;
3897                         dam = damroll(50, 50);
3898                         radius = 1;
3899                         break;
3900                 case SV_POTION_STAR_HEALING:
3901                         dt = GF_OLD_HEAL;
3902                         dam = damroll(50, 50);
3903                         radius = 1;
3904                         break;
3905                 case SV_POTION_RESTORE_MANA:   /* MANA */
3906                         dt = GF_MANA;
3907                         dam = damroll(10, 10);
3908                         radius = 1;
3909                         break;
3910                 default:
3911                         /* Do nothing */  ;
3912         }
3913
3914         (void)project(who, radius, y, x, dam, dt,
3915             (PROJECT_JUMP | PROJECT_ITEM | PROJECT_KILL), -1);
3916
3917         /* XXX  those potions that explode need to become "known" */
3918         return angry;
3919 }
3920
3921
3922 /*
3923  * Hack -- Display all known spells in a window
3924  *
3925  * XXX XXX XXX Need to analyze size of the window.
3926  *
3927  * XXX XXX XXX Need more color coding.
3928  */
3929 void display_spell_list(void)
3930 {
3931         int             i, j;
3932         int             y, x;
3933         int             m[9];
3934         magic_type      *s_ptr;
3935         char            name[80];
3936         char            out_val[160];
3937
3938
3939         /* Erase window */
3940         clear_from(0);
3941
3942         /* They have too many spells to list */
3943         if (p_ptr->pclass == CLASS_SORCERER) return;
3944         if (p_ptr->pclass == CLASS_RED_MAGE) return;
3945
3946         /* mind.c type classes */
3947         if ((p_ptr->pclass == CLASS_MINDCRAFTER) ||
3948             (p_ptr->pclass == CLASS_BERSERKER) ||
3949             (p_ptr->pclass == CLASS_NINJA) ||
3950             (p_ptr->pclass == CLASS_MIRROR_MASTER) ||
3951             (p_ptr->pclass == CLASS_FORCETRAINER))
3952         {
3953                 int             i;
3954                 int             y = 1;
3955                 int             x = 1;
3956                 int             minfail = 0;
3957                 int             plev = p_ptr->lev;
3958                 int             chance = 0;
3959                 mind_type       spell;
3960                 char            comment[80];
3961                 char            psi_desc[80];
3962                 int             use_mind;
3963                 bool use_hp = FALSE;
3964
3965                 /* Display a list of spells */
3966                 prt("", y, x);
3967 #ifdef JP
3968 put_str("̾Á°", y, x + 5);
3969 put_str("Lv   MP ¼ºÎ¨ ¸ú²Ì", y, x + 35);
3970 #else
3971                 put_str("Name", y, x + 5);
3972                 put_str("Lv Mana Fail Info", y, x + 35);
3973 #endif
3974
3975                 switch(p_ptr->pclass)
3976                 {
3977                 case CLASS_MINDCRAFTER: use_mind = MIND_MINDCRAFTER;break;
3978                 case CLASS_FORCETRAINER:          use_mind = MIND_KI;break;
3979                 case CLASS_BERSERKER: use_mind = MIND_BERSERKER; use_hp = TRUE; break;
3980                 case CLASS_MIRROR_MASTER: use_mind = MIND_MIRROR_MASTER; break;
3981                 case CLASS_NINJA: use_mind = MIND_NINJUTSU; use_hp = TRUE; break;
3982                 default:                use_mind = 0;break;
3983                 }
3984
3985                 /* Dump the spells */
3986                 for (i = 0; i < MAX_MIND_POWERS; i++)
3987                 {
3988                         byte a = TERM_WHITE;
3989
3990                         /* Access the available spell */
3991                         spell = mind_powers[use_mind].info[i];
3992                         if (spell.min_lev > plev) break;
3993
3994                         /* Get the failure rate */
3995                         chance = spell.fail;
3996
3997                         /* Reduce failure rate by "effective" level adjustment */
3998                         chance -= 3 * (p_ptr->lev - spell.min_lev);
3999
4000                         /* Reduce failure rate by INT/WIS adjustment */
4001                         chance -= 3 * (adj_mag_stat[p_ptr->stat_ind[mp_ptr->spell_stat]] - 1);
4002
4003                         if (!use_hp)
4004                         {
4005                                 /* Not enough mana to cast */
4006                                 if (spell.mana_cost > p_ptr->csp)
4007                                 {
4008                                         chance += 5 * (spell.mana_cost - p_ptr->csp);
4009                                         a = TERM_ORANGE;
4010                                 }
4011                         }
4012                         else
4013                         {
4014                                 /* Not enough hp to cast */
4015                                 if (spell.mana_cost > p_ptr->chp)
4016                                 {
4017                                         chance += 100;
4018                                         a = TERM_RED;
4019                                 }
4020                         }
4021
4022                         /* Extract the minimum failure rate */
4023                         minfail = adj_mag_fail[p_ptr->stat_ind[mp_ptr->spell_stat]];
4024
4025                         /* Minimum failure rate */
4026                         if (chance < minfail) chance = minfail;
4027
4028                         /* Stunning makes spells harder */
4029                         if (p_ptr->stun > 50) chance += 25;
4030                         else if (p_ptr->stun) chance += 15;
4031
4032                         /* Always a 5 percent chance of working */
4033                         if (chance > 95) chance = 95;
4034
4035                         /* Get info */
4036                         mindcraft_info(comment, use_mind, i);
4037
4038                         /* Dump the spell */
4039                         sprintf(psi_desc, "  %c) %-30s%2d %4d %3d%%%s",
4040                             I2A(i), spell.name,
4041                             spell.min_lev, spell.mana_cost, chance, comment);
4042
4043                         Term_putstr(x, y + i + 1, -1, a, psi_desc);
4044                 }
4045                 return;
4046         }
4047
4048         /* Cannot read spellbooks */
4049         if (REALM_NONE == p_ptr->realm1) return;
4050
4051         /* Normal spellcaster with books */
4052
4053         /* Scan books */
4054         for (j = 0; j < ((p_ptr->realm2 > REALM_NONE) ? 2 : 1); j++)
4055         {
4056                 int n = 0;
4057
4058                 /* Reset vertical */
4059                 m[j] = 0;
4060
4061                 /* Vertical location */
4062                 y = (j < 3) ? 0 : (m[j - 3] + 2);
4063
4064                 /* Horizontal location */
4065                 x = 27 * (j % 3);
4066
4067                 /* Scan spells */
4068                 for (i = 0; i < 32; i++)
4069                 {
4070                         byte a = TERM_WHITE;
4071
4072                         /* Access the spell */
4073                         if (!is_magic((j < 1) ? p_ptr->realm1 : p_ptr->realm2))
4074                         {
4075                                 s_ptr = &technic_info[((j < 1) ? p_ptr->realm1 : p_ptr->realm2) - MIN_TECHNIC][i % 32];
4076                         }
4077                         else
4078                         {
4079                                 s_ptr = &mp_ptr->info[((j < 1) ? p_ptr->realm1 : p_ptr->realm2) - 1][i % 32];
4080                         }
4081
4082                         strcpy(name, do_spell((j < 1) ? p_ptr->realm1 : p_ptr->realm2, i % 32, SPELL_NAME));
4083
4084                         /* Illegible */
4085                         if (s_ptr->slevel >= 99)
4086                         {
4087                                 /* Illegible */
4088 #ifdef JP
4089 strcpy(name, "(ȽÆÉÉÔǽ)");
4090 #else
4091                                 strcpy(name, "(illegible)");
4092 #endif
4093
4094
4095                                 /* Unusable */
4096                                 a = TERM_L_DARK;
4097                         }
4098
4099                         /* Forgotten */
4100                         else if ((j < 1) ?
4101                                 ((p_ptr->spell_forgotten1 & (1L << i))) :
4102                                 ((p_ptr->spell_forgotten2 & (1L << (i % 32)))))
4103                         {
4104                                 /* Forgotten */
4105                                 a = TERM_ORANGE;
4106                         }
4107
4108                         /* Unknown */
4109                         else if (!((j < 1) ?
4110                                 (p_ptr->spell_learned1 & (1L << i)) :
4111                                 (p_ptr->spell_learned2 & (1L << (i % 32)))))
4112                         {
4113                                 /* Unknown */
4114                                 a = TERM_RED;
4115                         }
4116
4117                         /* Untried */
4118                         else if (!((j < 1) ?
4119                                 (p_ptr->spell_worked1 & (1L << i)) :
4120                                 (p_ptr->spell_worked2 & (1L << (i % 32)))))
4121                         {
4122                                 /* Untried */
4123                                 a = TERM_YELLOW;
4124                         }
4125
4126                         /* Dump the spell --(-- */
4127                         sprintf(out_val, "%c/%c) %-20.20s",
4128                                 I2A(n / 8), I2A(n % 8), name);
4129
4130                         /* Track maximum */
4131                         m[j] = y + n;
4132
4133                         /* Dump onto the window */
4134                         Term_putstr(x, m[j], -1, a, out_val);
4135
4136                         /* Next */
4137                         n++;
4138                 }
4139         }
4140 }
4141
4142
4143 /*
4144  * Returns experience of a spell
4145  */
4146 s16b experience_of_spell(int spell, int use_realm)
4147 {
4148         if (p_ptr->pclass == CLASS_SORCERER) return SPELL_EXP_MASTER;
4149         else if (p_ptr->pclass == CLASS_RED_MAGE) return SPELL_EXP_SKILLED;
4150         else if (use_realm == p_ptr->realm1) return p_ptr->spell_exp[spell];
4151         else if (use_realm == p_ptr->realm2) return p_ptr->spell_exp[spell + 32];
4152         else return 0;
4153 }
4154
4155
4156 /*
4157  * Modify mana consumption rate using spell exp and p_ptr->dec_mana
4158  */
4159 int mod_need_mana(int need_mana, int spell, int realm)
4160 {
4161 #define MANA_CONST   2400
4162 #define MANA_DIV        4
4163 #define DEC_MANA_DIV    3
4164
4165         /* Realm magic */
4166         if ((realm > REALM_NONE) && (realm <= MAX_REALM))
4167         {
4168                 /*
4169                  * need_mana defaults if spell exp equals SPELL_EXP_EXPERT and !p_ptr->dec_mana.
4170                  * MANA_CONST is used to calculate need_mana effected from spell proficiency.
4171                  */
4172                 need_mana = need_mana * (MANA_CONST + SPELL_EXP_EXPERT - experience_of_spell(spell, realm)) + (MANA_CONST - 1);
4173                 need_mana *= p_ptr->dec_mana ? DEC_MANA_DIV : MANA_DIV;
4174                 need_mana /= MANA_CONST * MANA_DIV;
4175                 if (need_mana < 1) need_mana = 1;
4176         }
4177
4178         /* Non-realm magic */
4179         else
4180         {
4181                 if (p_ptr->dec_mana) need_mana = (need_mana + 1) * DEC_MANA_DIV / MANA_DIV;
4182         }
4183
4184 #undef DEC_MANA_DIV
4185 #undef MANA_DIV
4186 #undef MANA_CONST
4187
4188         return need_mana;
4189 }
4190
4191
4192 /*
4193  * Modify spell fail rate
4194  * Using p_ptr->to_m_chance, p_ptr->dec_mana, p_ptr->easy_spell and p_ptr->heavy_spell
4195  */
4196 int mod_spell_chance_1(int chance)
4197 {
4198         chance += p_ptr->to_m_chance;
4199
4200         if (p_ptr->heavy_spell) chance += 20;
4201
4202         if (p_ptr->dec_mana && p_ptr->easy_spell) chance -= 4;
4203         else if (p_ptr->easy_spell) chance -= 3;
4204         else if (p_ptr->dec_mana) chance -= 2;
4205
4206         return chance;
4207 }
4208
4209
4210 /*
4211  * Modify spell fail rate (as "suffix" process)
4212  * Using p_ptr->dec_mana, p_ptr->easy_spell and p_ptr->heavy_spell
4213  * Note: variable "chance" cannot be negative.
4214  */
4215 int mod_spell_chance_2(int chance)
4216 {
4217         if (p_ptr->dec_mana) chance--;
4218
4219         if (p_ptr->heavy_spell) chance += 5;
4220
4221         return MAX(chance, 0);
4222 }
4223
4224
4225 /*
4226  * Returns spell chance of failure for spell -RAK-
4227  */
4228 s16b spell_chance(int spell, int use_realm)
4229 {
4230         int             chance, minfail;
4231         magic_type      *s_ptr;
4232         int             need_mana;
4233         int penalty = (mp_ptr->spell_stat == A_WIS) ? 10 : 4;
4234
4235
4236         /* Paranoia -- must be literate */
4237         if (!mp_ptr->spell_book) return (100);
4238
4239         if (use_realm == REALM_HISSATSU) return 0;
4240
4241         /* Access the spell */
4242         if (!is_magic(use_realm))
4243         {
4244                 s_ptr = &technic_info[use_realm - MIN_TECHNIC][spell];
4245         }
4246         else
4247         {
4248                 s_ptr = &mp_ptr->info[use_realm - 1][spell];
4249         }
4250
4251         /* Extract the base spell failure rate */
4252         chance = s_ptr->sfail;
4253
4254         /* Reduce failure rate by "effective" level adjustment */
4255         chance -= 3 * (p_ptr->lev - s_ptr->slevel);
4256
4257         /* Reduce failure rate by INT/WIS adjustment */
4258         chance -= 3 * (adj_mag_stat[p_ptr->stat_ind[mp_ptr->spell_stat]] - 1);
4259
4260         if (p_ptr->riding)
4261                 chance += (MAX(r_info[m_list[p_ptr->riding].r_idx].level - p_ptr->skill_exp[GINOU_RIDING] / 100 - 10, 0));
4262
4263         /* Extract mana consumption rate */
4264         need_mana = mod_need_mana(s_ptr->smana, spell, use_realm);
4265
4266         /* Not enough mana to cast */
4267         if (need_mana > p_ptr->csp)
4268         {
4269                 chance += 5 * (need_mana - p_ptr->csp);
4270         }
4271
4272         if ((use_realm != p_ptr->realm1) && ((p_ptr->pclass == CLASS_MAGE) || (p_ptr->pclass == CLASS_PRIEST))) chance += 5;
4273
4274         /* Extract the minimum failure rate */
4275         minfail = adj_mag_fail[p_ptr->stat_ind[mp_ptr->spell_stat]];
4276
4277         /*
4278          * Non mage/priest characters never get too good
4279          * (added high mage, mindcrafter)
4280          */
4281         if (mp_ptr->spell_xtra & MAGIC_FAIL_5PERCENT)
4282         {
4283                 if (minfail < 5) minfail = 5;
4284         }
4285
4286         /* Hack -- Priest prayer penalty for "edged" weapons  -DGK */
4287         if (((p_ptr->pclass == CLASS_PRIEST) || (p_ptr->pclass == CLASS_SORCERER)) && p_ptr->icky_wield[0]) chance += 25;
4288         if (((p_ptr->pclass == CLASS_PRIEST) || (p_ptr->pclass == CLASS_SORCERER)) && p_ptr->icky_wield[1]) chance += 25;
4289
4290         chance = mod_spell_chance_1(chance);
4291
4292         if ((use_realm == REALM_NATURE) && ((p_ptr->align > 50) || (p_ptr->align < -50))) chance += penalty;
4293         if (((use_realm == REALM_LIFE) || (use_realm == REALM_CRUSADE)) && (p_ptr->align < -20)) chance += penalty;
4294         if (((use_realm == REALM_DEATH) || (use_realm == REALM_DAEMON)) && (p_ptr->align > 20)) chance += penalty;
4295
4296         /* Minimum failure rate */
4297         if (chance < minfail) chance = minfail;
4298
4299         /* Stunning makes spells harder */
4300         if (p_ptr->stun > 50) chance += 25;
4301         else if (p_ptr->stun) chance += 15;
4302
4303         /* Always a 5 percent chance of working */
4304         if (chance > 95) chance = 95;
4305
4306         if ((use_realm == p_ptr->realm1) || (use_realm == p_ptr->realm2)
4307             || (p_ptr->pclass == CLASS_SORCERER) || (p_ptr->pclass == CLASS_RED_MAGE))
4308         {
4309                 s16b exp = experience_of_spell(spell, use_realm);
4310                 if (exp >= SPELL_EXP_EXPERT) chance--;
4311                 if (exp >= SPELL_EXP_MASTER) chance--;
4312         }
4313
4314         /* Return the chance */
4315         return mod_spell_chance_2(chance);
4316 }
4317
4318
4319
4320 /*
4321  * Determine if a spell is "okay" for the player to cast or study
4322  * The spell must be legible, not forgotten, and also, to cast,
4323  * it must be known, and to study, it must not be known.
4324  */
4325 bool spell_okay(int spell, bool learned, bool study_pray, int use_realm)
4326 {
4327         magic_type *s_ptr;
4328
4329         /* Access the spell */
4330         if (!is_magic(use_realm))
4331         {
4332                 s_ptr = &technic_info[use_realm - MIN_TECHNIC][spell];
4333         }
4334         else
4335         {
4336                 s_ptr = &mp_ptr->info[use_realm - 1][spell];
4337         }
4338
4339         /* Spell is illegal */
4340         if (s_ptr->slevel > p_ptr->lev) return (FALSE);
4341
4342         /* Spell is forgotten */
4343         if ((use_realm == p_ptr->realm2) ?
4344             (p_ptr->spell_forgotten2 & (1L << spell)) :
4345             (p_ptr->spell_forgotten1 & (1L << spell)))
4346         {
4347                 /* Never okay */
4348                 return (FALSE);
4349         }
4350
4351         if (p_ptr->pclass == CLASS_SORCERER) return (TRUE);
4352         if (p_ptr->pclass == CLASS_RED_MAGE) return (TRUE);
4353
4354         /* Spell is learned */
4355         if ((use_realm == p_ptr->realm2) ?
4356             (p_ptr->spell_learned2 & (1L << spell)) :
4357             (p_ptr->spell_learned1 & (1L << spell)))
4358         {
4359                 /* Always true */
4360                 return (!study_pray);
4361         }
4362
4363         /* Okay to study, not to cast */
4364         return (!learned);
4365 }
4366
4367
4368 /*
4369  * Print a list of spells (for browsing or casting or viewing)
4370  */
4371 void print_spells(int target_spell, byte *spells, int num, int y, int x, int use_realm)
4372 {
4373         int             i, spell, exp_level, increment = 64;
4374         magic_type      *s_ptr;
4375         cptr            comment;
4376         char            info[80];
4377         char            out_val[160];
4378         byte            line_attr;
4379         int             need_mana;
4380         char            ryakuji[5];
4381         char            buf[256];
4382         bool max = FALSE;
4383
4384
4385         if (((use_realm <= REALM_NONE) || (use_realm > MAX_REALM)) && p_ptr->wizard)
4386 #ifdef JP
4387 msg_print("·Ù¹ð¡ª print_spell ¤¬Îΰè¤Ê¤·¤Ë¸Æ¤Ð¤ì¤¿");
4388 #else
4389                 msg_print("Warning! print_spells called with null realm");
4390 #endif
4391
4392
4393         /* Title the list */
4394         prt("", y, x);
4395         if (use_realm == REALM_HISSATSU)
4396 #ifdef JP
4397                 strcpy(buf,"  Lv   MP");
4398 #else
4399                 strcpy(buf,"  Lv   SP");
4400 #endif
4401         else
4402 #ifdef JP
4403                 strcpy(buf,"½ÏÎýÅÙ Lv   MP ¼ºÎ¨ ¸ú²Ì");
4404 #else
4405                 strcpy(buf,"Profic Lv   SP Fail Effect");
4406 #endif
4407
4408 #ifdef JP
4409 put_str("̾Á°", y, x + 5);
4410 put_str(buf, y, x + 29);
4411 #else
4412         put_str("Name", y, x + 5);
4413         put_str(buf, y, x + 29);
4414 #endif
4415
4416         if ((p_ptr->pclass == CLASS_SORCERER) || (p_ptr->pclass == CLASS_RED_MAGE)) increment = 0;
4417         else if (use_realm == p_ptr->realm1) increment = 0;
4418         else if (use_realm == p_ptr->realm2) increment = 32;
4419
4420         /* Dump the spells */
4421         for (i = 0; i < num; i++)
4422         {
4423                 /* Access the spell */
4424                 spell = spells[i];
4425
4426                 /* Access the spell */
4427                 if (!is_magic(use_realm))
4428                 {
4429                         s_ptr = &technic_info[use_realm - MIN_TECHNIC][spell];
4430                 }
4431                 else
4432                 {
4433                         s_ptr = &mp_ptr->info[use_realm - 1][spell];
4434                 }
4435
4436                 if (use_realm == REALM_HISSATSU)
4437                         need_mana = s_ptr->smana;
4438                 else
4439                 {
4440                         s16b exp = experience_of_spell(spell, use_realm);
4441
4442                         /* Extract mana consumption rate */
4443                         need_mana = mod_need_mana(s_ptr->smana, spell, use_realm);
4444
4445                         if ((increment == 64) || (s_ptr->slevel >= 99)) exp_level = EXP_LEVEL_UNSKILLED;
4446                         else exp_level = spell_exp_level(exp);
4447
4448                         max = FALSE;
4449                         if (!increment && (exp_level == EXP_LEVEL_MASTER)) max = TRUE;
4450                         else if ((increment == 32) && (exp_level >= EXP_LEVEL_EXPERT)) max = TRUE;
4451                         else if (s_ptr->slevel >= 99) max = TRUE;
4452                         else if ((p_ptr->pclass == CLASS_RED_MAGE) && (exp_level >= EXP_LEVEL_SKILLED)) max = TRUE;
4453
4454                         strncpy(ryakuji, exp_level_str[exp_level], 4);
4455                         ryakuji[3] = ']';
4456                         ryakuji[4] = '\0';
4457                 }
4458
4459                 if (use_menu && target_spell)
4460                 {
4461                         if (i == (target_spell-1))
4462 #ifdef JP
4463                                 strcpy(out_val, "  ¡Õ ");
4464 #else
4465                                 strcpy(out_val, "  >  ");
4466 #endif
4467                         else
4468                                 strcpy(out_val, "     ");
4469                 }
4470                 else sprintf(out_val, "  %c) ", I2A(i));
4471                 /* Skip illegible spells */
4472                 if (s_ptr->slevel >= 99)
4473                 {
4474 #ifdef JP
4475 strcat(out_val, format("%-30s", "(ȽÆÉÉÔǽ)"));
4476 #else
4477                                 strcat(out_val, format("%-30s", "(illegible)"));
4478 #endif
4479
4480                                 c_prt(TERM_L_DARK, out_val, y + i + 1, x);
4481                                 continue;
4482                 }
4483
4484                 /* XXX XXX Could label spells above the players level */
4485
4486                 /* Get extra info */
4487                 strcpy(info, do_spell(use_realm, spell, SPELL_INFO));
4488
4489                 /* Use that info */
4490                 comment = info;
4491
4492                 /* Assume spell is known and tried */
4493                 line_attr = TERM_WHITE;
4494
4495                 /* Analyze the spell */
4496                 if ((p_ptr->pclass == CLASS_SORCERER) || (p_ptr->pclass == CLASS_RED_MAGE))
4497                 {
4498                         if (s_ptr->slevel > p_ptr->max_plv)
4499                         {
4500 #ifdef JP
4501 comment = "̤ÃÎ";
4502 #else
4503                                 comment = "unknown";
4504 #endif
4505
4506                                 line_attr = TERM_L_BLUE;
4507                         }
4508                         else if (s_ptr->slevel > p_ptr->lev)
4509                         {
4510 #ifdef JP
4511 comment = "˺µÑ";
4512 #else
4513                                 comment = "forgotten";
4514 #endif
4515
4516                                 line_attr = TERM_YELLOW;
4517                         }
4518                 }
4519                 else if ((use_realm != p_ptr->realm1) && (use_realm != p_ptr->realm2))
4520                 {
4521 #ifdef JP
4522 comment = "̤ÃÎ";
4523 #else
4524                         comment = "unknown";
4525 #endif
4526
4527                         line_attr = TERM_L_BLUE;
4528                 }
4529                 else if ((use_realm == p_ptr->realm1) ?
4530                     ((p_ptr->spell_forgotten1 & (1L << spell))) :
4531                     ((p_ptr->spell_forgotten2 & (1L << spell))))
4532                 {
4533 #ifdef JP
4534 comment = "˺µÑ";
4535 #else
4536                         comment = "forgotten";
4537 #endif
4538
4539                         line_attr = TERM_YELLOW;
4540                 }
4541                 else if (!((use_realm == p_ptr->realm1) ?
4542                     (p_ptr->spell_learned1 & (1L << spell)) :
4543                     (p_ptr->spell_learned2 & (1L << spell))))
4544                 {
4545 #ifdef JP
4546 comment = "̤ÃÎ";
4547 #else
4548                         comment = "unknown";
4549 #endif
4550
4551                         line_attr = TERM_L_BLUE;
4552                 }
4553                 else if (!((use_realm == p_ptr->realm1) ?
4554                     (p_ptr->spell_worked1 & (1L << spell)) :
4555                     (p_ptr->spell_worked2 & (1L << spell))))
4556                 {
4557 #ifdef JP
4558 comment = "̤·Ð¸³";
4559 #else
4560                         comment = "untried";
4561 #endif
4562
4563                         line_attr = TERM_L_GREEN;
4564                 }
4565
4566                 /* Dump the spell --(-- */
4567                 if (use_realm == REALM_HISSATSU)
4568                 {
4569                         strcat(out_val, format("%-25s %2d %4d",
4570                             do_spell(use_realm, spell, SPELL_NAME), /* realm, spell */
4571                             s_ptr->slevel, need_mana));
4572                 }
4573                 else
4574                 {
4575                         strcat(out_val, format("%-25s%c%-4s %2d %4d %3d%% %s",
4576                             do_spell(use_realm, spell, SPELL_NAME), /* realm, spell */
4577                             (max ? '!' : ' '), ryakuji,
4578                             s_ptr->slevel, need_mana, spell_chance(spell, use_realm), comment));
4579                 }
4580                 c_prt(line_attr, out_val, y + i + 1, x);
4581         }
4582
4583         /* Clear the bottom line */
4584         prt("", y + i + 1, x);
4585 }
4586
4587
4588 /*
4589  * Note that amulets, rods, and high-level spell books are immune
4590  * to "inventory damage" of any kind.  Also sling ammo and shovels.
4591  */
4592
4593
4594 /*
4595  * Does a given class of objects (usually) hate acid?
4596  * Note that acid can either melt or corrode something.
4597  */
4598 bool hates_acid(object_type *o_ptr)
4599 {
4600         /* Analyze the type */
4601         switch (o_ptr->tval)
4602         {
4603                 /* Wearable items */
4604                 case TV_ARROW:
4605                 case TV_BOLT:
4606                 case TV_BOW:
4607                 case TV_SWORD:
4608                 case TV_HAFTED:
4609                 case TV_POLEARM:
4610                 case TV_HELM:
4611                 case TV_CROWN:
4612                 case TV_SHIELD:
4613                 case TV_BOOTS:
4614                 case TV_GLOVES:
4615                 case TV_CLOAK:
4616                 case TV_SOFT_ARMOR:
4617                 case TV_HARD_ARMOR:
4618                 case TV_DRAG_ARMOR:
4619                 {
4620                         return (TRUE);
4621                 }
4622
4623                 /* Staffs/Scrolls are wood/paper */
4624                 case TV_STAFF:
4625                 case TV_SCROLL:
4626                 {
4627                         return (TRUE);
4628                 }
4629
4630                 /* Ouch */
4631                 case TV_CHEST:
4632                 {
4633                         return (TRUE);
4634                 }
4635
4636                 /* Junk is useless */
4637                 case TV_SKELETON:
4638                 case TV_BOTTLE:
4639                 case TV_JUNK:
4640                 {
4641                         return (TRUE);
4642                 }
4643         }
4644
4645         return (FALSE);
4646 }
4647
4648
4649 /*
4650  * Does a given object (usually) hate electricity?
4651  */
4652 bool hates_elec(object_type *o_ptr)
4653 {
4654         switch (o_ptr->tval)
4655         {
4656                 case TV_RING:
4657                 case TV_WAND:
4658                 {
4659                         return (TRUE);
4660                 }
4661         }
4662
4663         return (FALSE);
4664 }
4665
4666
4667 /*
4668  * Does a given object (usually) hate fire?
4669  * Hafted/Polearm weapons have wooden shafts.
4670  * Arrows/Bows are mostly wooden.
4671  */
4672 bool hates_fire(object_type *o_ptr)
4673 {
4674         /* Analyze the type */
4675         switch (o_ptr->tval)
4676         {
4677                 /* Wearable */
4678                 case TV_LITE:
4679                 case TV_ARROW:
4680                 case TV_BOW:
4681                 case TV_HAFTED:
4682                 case TV_POLEARM:
4683                 case TV_BOOTS:
4684                 case TV_GLOVES:
4685                 case TV_CLOAK:
4686                 case TV_SOFT_ARMOR:
4687                 {
4688                         return (TRUE);
4689                 }
4690
4691                 /* Books */
4692                 case TV_LIFE_BOOK:
4693                 case TV_SORCERY_BOOK:
4694                 case TV_NATURE_BOOK:
4695                 case TV_CHAOS_BOOK:
4696                 case TV_DEATH_BOOK:
4697                 case TV_TRUMP_BOOK:
4698                 case TV_ARCANE_BOOK:
4699                 case TV_CRAFT_BOOK:
4700                 case TV_DAEMON_BOOK:
4701                 case TV_CRUSADE_BOOK:
4702                 case TV_MUSIC_BOOK:
4703                 case TV_HISSATSU_BOOK:
4704                 {
4705                         return (TRUE);
4706                 }
4707
4708                 /* Chests */
4709                 case TV_CHEST:
4710                 {
4711                         return (TRUE);
4712                 }
4713
4714                 /* Staffs/Scrolls burn */
4715                 case TV_STAFF:
4716                 case TV_SCROLL:
4717                 {
4718                         return (TRUE);
4719                 }
4720         }
4721
4722         return (FALSE);
4723 }
4724
4725
4726 /*
4727  * Does a given object (usually) hate cold?
4728  */
4729 bool hates_cold(object_type *o_ptr)
4730 {
4731         switch (o_ptr->tval)
4732         {
4733                 case TV_POTION:
4734                 case TV_FLASK:
4735                 case TV_BOTTLE:
4736                 {
4737                         return (TRUE);
4738                 }
4739         }
4740
4741         return (FALSE);
4742 }
4743
4744
4745 /*
4746  * Melt something
4747  */
4748 int set_acid_destroy(object_type *o_ptr)
4749 {
4750         u32b flgs[TR_FLAG_SIZE];
4751         if (!hates_acid(o_ptr)) return (FALSE);
4752         object_flags(o_ptr, flgs);
4753         if (have_flag(flgs, TR_IGNORE_ACID)) return (FALSE);
4754         return (TRUE);
4755 }
4756
4757
4758 /*
4759  * Electrical damage
4760  */
4761 int set_elec_destroy(object_type *o_ptr)
4762 {
4763         u32b flgs[TR_FLAG_SIZE];
4764         if (!hates_elec(o_ptr)) return (FALSE);
4765         object_flags(o_ptr, flgs);
4766         if (have_flag(flgs, TR_IGNORE_ELEC)) return (FALSE);
4767         return (TRUE);
4768 }
4769
4770
4771 /*
4772  * Burn something
4773  */
4774 int set_fire_destroy(object_type *o_ptr)
4775 {
4776         u32b flgs[TR_FLAG_SIZE];
4777         if (!hates_fire(o_ptr)) return (FALSE);
4778         object_flags(o_ptr, flgs);
4779         if (have_flag(flgs, TR_IGNORE_FIRE)) return (FALSE);
4780         return (TRUE);
4781 }
4782
4783
4784 /*
4785  * Freeze things
4786  */
4787 int set_cold_destroy(object_type *o_ptr)
4788 {
4789         u32b flgs[TR_FLAG_SIZE];
4790         if (!hates_cold(o_ptr)) return (FALSE);
4791         object_flags(o_ptr, flgs);
4792         if (have_flag(flgs, TR_IGNORE_COLD)) return (FALSE);
4793         return (TRUE);
4794 }
4795
4796
4797 /*
4798  * Destroys a type of item on a given percent chance
4799  * Note that missiles are no longer necessarily all destroyed
4800  * Destruction taken from "melee.c" code for "stealing".
4801  * New-style wands and rods handled correctly. -LM-
4802  * Returns number of items destroyed.
4803  */
4804 int inven_damage(inven_func typ, int perc)
4805 {
4806         int         i, j, k, amt;
4807         object_type *o_ptr;
4808         char        o_name[MAX_NLEN];
4809
4810         if (CHECK_MULTISHADOW()) return 0;
4811
4812         if (p_ptr->inside_arena) return 0;
4813
4814         /* Count the casualties */
4815         k = 0;
4816
4817         /* Scan through the slots backwards */
4818         for (i = 0; i < INVEN_PACK; i++)
4819         {
4820                 o_ptr = &inventory[i];
4821
4822                 /* Skip non-objects */
4823                 if (!o_ptr->k_idx) continue;
4824
4825                 /* Hack -- for now, skip artifacts */
4826                 if (object_is_artifact(o_ptr)) continue;
4827
4828                 /* Give this item slot a shot at death */
4829                 if ((*typ)(o_ptr))
4830                 {
4831                         /* Count the casualties */
4832                         for (amt = j = 0; j < o_ptr->number; ++j)
4833                         {
4834                                 if (randint0(100) < perc) amt++;
4835                         }
4836
4837                         /* Some casualities */
4838                         if (amt)
4839                         {
4840                                 /* Get a description */
4841                                 object_desc(o_name, o_ptr, OD_OMIT_PREFIX);
4842
4843                                 /* Message */
4844 #ifdef JP
4845 msg_format("%s(%c)¤¬%s²õ¤ì¤Æ¤·¤Þ¤Ã¤¿¡ª",
4846 #else
4847                                 msg_format("%sour %s (%c) %s destroyed!",
4848 #endif
4849
4850 #ifdef JP
4851 o_name, index_to_label(i),
4852     ((o_ptr->number > 1) ?
4853     ((amt == o_ptr->number) ? "Á´Éô" :
4854     (amt > 1 ? "²¿¸Ä¤«" : "°ì¸Ä")) : "")    );
4855 #else
4856                                     ((o_ptr->number > 1) ?
4857                                     ((amt == o_ptr->number) ? "All of y" :
4858                                     (amt > 1 ? "Some of y" : "One of y")) : "Y"),
4859                                     o_name, index_to_label(i),
4860                                     ((amt > 1) ? "were" : "was"));
4861 #endif
4862
4863 #ifdef JP
4864                                 if ((p_ptr->pseikaku == SEIKAKU_COMBAT) || (inventory[INVEN_BOW].name1 == ART_CRIMSON))
4865                                         msg_print("¤ä¤ê¤ä¤¬¤Ã¤¿¤Ê¡ª");
4866 #endif
4867
4868                                 /* Potions smash open */
4869                                 if (object_is_potion(o_ptr))
4870                                 {
4871                                         (void)potion_smash_effect(0, py, px, o_ptr->k_idx);
4872                                 }
4873
4874                                 /* Reduce the charges of rods/wands */
4875                                 reduce_charges(o_ptr, amt);
4876
4877                                 /* Destroy "amt" items */
4878                                 inven_item_increase(i, -amt);
4879                                 inven_item_optimize(i);
4880
4881                                 /* Count the casualties */
4882                                 k += amt;
4883                         }
4884                 }
4885         }
4886
4887         /* Return the casualty count */
4888         return (k);
4889 }
4890
4891
4892 /*
4893  * Acid has hit the player, attempt to affect some armor.
4894  *
4895  * Note that the "base armor" of an object never changes.
4896  *
4897  * If any armor is damaged (or resists), the player takes less damage.
4898  */
4899 static int minus_ac(void)
4900 {
4901         object_type *o_ptr = NULL;
4902         u32b flgs[TR_FLAG_SIZE];
4903         char        o_name[MAX_NLEN];
4904
4905
4906         /* Pick a (possibly empty) inventory slot */
4907         switch (randint1(7))
4908         {
4909                 case 1: o_ptr = &inventory[INVEN_RARM]; break;
4910                 case 2: o_ptr = &inventory[INVEN_LARM]; break;
4911                 case 3: o_ptr = &inventory[INVEN_BODY]; break;
4912                 case 4: o_ptr = &inventory[INVEN_OUTER]; break;
4913                 case 5: o_ptr = &inventory[INVEN_HANDS]; break;
4914                 case 6: o_ptr = &inventory[INVEN_HEAD]; break;
4915                 case 7: o_ptr = &inventory[INVEN_FEET]; break;
4916         }
4917
4918         /* Nothing to damage */
4919         if (!o_ptr->k_idx) return (FALSE);
4920
4921         if (!object_is_armour(o_ptr)) return (FALSE);
4922
4923         /* No damage left to be done */
4924         if (o_ptr->ac + o_ptr->to_a <= 0) return (FALSE);
4925
4926
4927         /* Describe */
4928         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
4929
4930         /* Extract the flags */
4931         object_flags(o_ptr, flgs);
4932
4933         /* Object resists */
4934         if (have_flag(flgs, TR_IGNORE_ACID))
4935         {
4936 #ifdef JP
4937 msg_format("¤·¤«¤·%s¤Ë¤Ï¸ú²Ì¤¬¤Ê¤«¤Ã¤¿¡ª", o_name);
4938 #else
4939                 msg_format("Your %s is unaffected!", o_name);
4940 #endif
4941
4942
4943                 return (TRUE);
4944         }
4945
4946         /* Message */
4947 #ifdef JP
4948 msg_format("%s¤¬¥À¥á¡¼¥¸¤ò¼õ¤±¤¿¡ª", o_name);
4949 #else
4950         msg_format("Your %s is damaged!", o_name);
4951 #endif
4952
4953
4954         /* Damage the item */
4955         o_ptr->to_a--;
4956
4957         /* Calculate bonuses */
4958         p_ptr->update |= (PU_BONUS);
4959
4960         /* Window stuff */
4961         p_ptr->window |= (PW_EQUIP | PW_PLAYER);
4962
4963         calc_android_exp();
4964
4965         /* Item was damaged */
4966         return (TRUE);
4967 }
4968
4969
4970 /*
4971  * Hurt the player with Acid
4972  */
4973 int acid_dam(int dam, cptr kb_str, int monspell)
4974 {
4975         int get_damage;  
4976         int inv = (dam < 30) ? 1 : (dam < 60) ? 2 : 3;
4977         bool double_resist = IS_OPPOSE_ACID();
4978
4979         /* Total Immunity */
4980         if (p_ptr->immune_acid || (dam <= 0))
4981         {
4982                 learn_spell(monspell);
4983                 return 0;
4984         }
4985
4986         /* Vulnerability (Ouch!) */
4987         if (p_ptr->muta3 & MUT3_VULN_ELEM) dam *= 2;
4988         if (p_ptr->special_defense & KATA_KOUKIJIN) dam += dam / 3;
4989
4990         /* Resist the damage */
4991         if (p_ptr->resist_acid) dam = (dam + 2) / 3;
4992         if (double_resist) dam = (dam + 2) / 3;
4993
4994         if (!CHECK_MULTISHADOW())
4995         {
4996                 if ((!(double_resist || p_ptr->resist_acid)) &&
4997                     one_in_(HURT_CHANCE))
4998                         (void)do_dec_stat(A_CHR);
4999
5000                 /* If any armor gets hit, defend the player */
5001                 if (minus_ac()) dam = (dam + 1) / 2;
5002         }
5003
5004         /* Take damage */
5005         get_damage = take_hit(DAMAGE_ATTACK, dam, kb_str, monspell);
5006
5007         /* Inventory damage */
5008         if (!(double_resist && p_ptr->resist_acid))
5009                 inven_damage(set_acid_destroy, inv);
5010         return get_damage;
5011 }
5012
5013
5014 /*
5015  * Hurt the player with electricity
5016  */
5017 int elec_dam(int dam, cptr kb_str, int monspell)
5018 {
5019         int get_damage;  
5020         int inv = (dam < 30) ? 1 : (dam < 60) ? 2 : 3;
5021         bool double_resist = IS_OPPOSE_ELEC();
5022
5023         /* Total immunity */
5024         if (p_ptr->immune_elec || (dam <= 0))
5025         {
5026                 learn_spell(monspell);
5027                 return 0;
5028         }
5029
5030         /* Vulnerability (Ouch!) */
5031         if (p_ptr->muta3 & MUT3_VULN_ELEM) dam *= 2;
5032         if (p_ptr->special_defense & KATA_KOUKIJIN) dam += dam / 3;
5033         if (prace_is_(RACE_ANDROID)) dam += dam / 3;
5034
5035         /* Resist the damage */
5036         if (p_ptr->resist_elec) dam = (dam + 2) / 3;
5037         if (double_resist) dam = (dam + 2) / 3;
5038
5039         if ((!(double_resist || p_ptr->resist_elec)) &&
5040             one_in_(HURT_CHANCE) && !CHECK_MULTISHADOW())
5041                 (void)do_dec_stat(A_DEX);
5042
5043         /* Take damage */
5044         get_damage = take_hit(DAMAGE_ATTACK, dam, kb_str, monspell);
5045
5046         /* Inventory damage */
5047         if (!(double_resist && p_ptr->resist_elec))
5048                 inven_damage(set_elec_destroy, inv);
5049
5050         return get_damage;
5051 }
5052
5053
5054 /*
5055  * Hurt the player with Fire
5056  */
5057 int fire_dam(int dam, cptr kb_str, int monspell)
5058 {
5059         int get_damage;  
5060         int inv = (dam < 30) ? 1 : (dam < 60) ? 2 : 3;
5061         bool double_resist = IS_OPPOSE_FIRE();
5062
5063         /* Totally immune */
5064         if (p_ptr->immune_fire || (dam <= 0))
5065         {
5066                 learn_spell(monspell);
5067                 return 0;
5068         }
5069
5070         /* Vulnerability (Ouch!) */
5071         if (p_ptr->muta3 & MUT3_VULN_ELEM) dam *= 2;
5072         if (prace_is_(RACE_ENT)) dam += dam / 3;
5073         if (p_ptr->special_defense & KATA_KOUKIJIN) dam += dam / 3;
5074
5075         /* Resist the damage */
5076         if (p_ptr->resist_fire) dam = (dam + 2) / 3;
5077         if (double_resist) dam = (dam + 2) / 3;
5078
5079         if ((!(double_resist || p_ptr->resist_fire)) &&
5080             one_in_(HURT_CHANCE) && !CHECK_MULTISHADOW())
5081                 (void)do_dec_stat(A_STR);
5082
5083         /* Take damage */
5084         get_damage = take_hit(DAMAGE_ATTACK, dam, kb_str, monspell);
5085
5086         /* Inventory damage */
5087         if (!(double_resist && p_ptr->resist_fire))
5088                 inven_damage(set_fire_destroy, inv);
5089
5090         return get_damage;
5091 }
5092
5093
5094 /*
5095  * Hurt the player with Cold
5096  */
5097 int cold_dam(int dam, cptr kb_str, int monspell)
5098 {
5099         int get_damage;  
5100         int inv = (dam < 30) ? 1 : (dam < 60) ? 2 : 3;
5101         bool double_resist = IS_OPPOSE_COLD();
5102
5103         /* Total immunity */
5104         if (p_ptr->immune_cold || (dam <= 0))
5105         {
5106                 learn_spell(monspell);
5107                 return 0;
5108         }
5109
5110         /* Vulnerability (Ouch!) */
5111         if (p_ptr->muta3 & MUT3_VULN_ELEM) dam *= 2;
5112         if (p_ptr->special_defense & KATA_KOUKIJIN) dam += dam / 3;
5113
5114         /* Resist the damage */
5115         if (p_ptr->resist_cold) dam = (dam + 2) / 3;
5116         if (double_resist) dam = (dam + 2) / 3;
5117
5118         if ((!(double_resist || p_ptr->resist_cold)) &&
5119             one_in_(HURT_CHANCE) && !CHECK_MULTISHADOW())
5120                 (void)do_dec_stat(A_STR);
5121
5122         /* Take damage */
5123         get_damage = take_hit(DAMAGE_ATTACK, dam, kb_str, monspell);
5124
5125         /* Inventory damage */
5126         if (!(double_resist && p_ptr->resist_cold))
5127                 inven_damage(set_cold_destroy, inv);
5128
5129         return get_damage;
5130 }
5131
5132
5133 bool rustproof(void)
5134 {
5135         int         item;
5136         object_type *o_ptr;
5137         char        o_name[MAX_NLEN];
5138         cptr        q, s;
5139
5140         item_tester_no_ryoute = TRUE;
5141         /* Select a piece of armour */
5142         item_tester_hook = object_is_armour;
5143
5144         /* Get an item */
5145 #ifdef JP
5146 q = "¤É¤ÎËɶñ¤Ë»¬»ß¤á¤ò¤·¤Þ¤¹¤«¡©";
5147 s = "»¬»ß¤á¤Ç¤­¤ë¤â¤Î¤¬¤¢¤ê¤Þ¤»¤ó¡£";
5148 #else
5149         q = "Rustproof which piece of armour? ";
5150         s = "You have nothing to rustproof.";
5151 #endif
5152
5153         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return FALSE;
5154
5155         /* Get the item (in the pack) */
5156         if (item >= 0)
5157         {
5158                 o_ptr = &inventory[item];
5159         }
5160
5161         /* Get the item (on the floor) */
5162         else
5163         {
5164                 o_ptr = &o_list[0 - item];
5165         }
5166
5167
5168         /* Description */
5169         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
5170
5171         add_flag(o_ptr->art_flags, TR_IGNORE_ACID);
5172
5173         if ((o_ptr->to_a < 0) && !object_is_cursed(o_ptr))
5174         {
5175 #ifdef JP
5176 msg_format("%s¤Ï¿·ÉÊƱÍͤˤʤä¿¡ª",o_name);
5177 #else
5178                 msg_format("%s %s look%s as good as new!",
5179                         ((item >= 0) ? "Your" : "The"), o_name,
5180                         ((o_ptr->number > 1) ? "" : "s"));
5181 #endif
5182
5183                 o_ptr->to_a = 0;
5184         }
5185
5186 #ifdef JP
5187 msg_format("%s¤ÏÉå¿©¤·¤Ê¤¯¤Ê¤Ã¤¿¡£", o_name);
5188 #else
5189         msg_format("%s %s %s now protected against corrosion.",
5190                 ((item >= 0) ? "Your" : "The"), o_name,
5191                 ((o_ptr->number > 1) ? "are" : "is"));
5192 #endif
5193
5194
5195         calc_android_exp();
5196
5197         return TRUE;
5198 }
5199
5200
5201 /*
5202  * Curse the players armor
5203  */
5204 bool curse_armor(void)
5205 {
5206         int i;
5207         object_type *o_ptr;
5208
5209         char o_name[MAX_NLEN];
5210
5211
5212         /* Curse the body armor */
5213         o_ptr = &inventory[INVEN_BODY];
5214
5215         /* Nothing to curse */
5216         if (!o_ptr->k_idx) return (FALSE);
5217
5218
5219         /* Describe */
5220         object_desc(o_name, o_ptr, OD_OMIT_PREFIX);
5221
5222         /* Attempt a saving throw for artifacts */
5223         if (object_is_artifact(o_ptr) && (randint0(100) < 50))
5224         {
5225                 /* Cool */
5226 #ifdef JP
5227 msg_format("%s¤¬%s¤òÊñ¤ß¹þ¤â¤¦¤È¤·¤¿¤¬¡¢%s¤Ï¤½¤ì¤òÄ·¤ÍÊÖ¤·¤¿¡ª",
5228 "¶²ÉݤΰŹõ¥ª¡¼¥é", "Ëɶñ", o_name);
5229 #else
5230                 msg_format("A %s tries to %s, but your %s resists the effects!",
5231                            "terrible black aura", "surround your armor", o_name);
5232 #endif
5233
5234         }
5235
5236         /* not artifact or failed save... */
5237         else
5238         {
5239                 /* Oops */
5240 #ifdef JP
5241 msg_format("¶²ÉݤΰŹõ¥ª¡¼¥é¤¬¤¢¤Ê¤¿¤Î%s¤òÊñ¤ß¹þ¤ó¤À¡ª", o_name);
5242 #else
5243                 msg_format("A terrible black aura blasts your %s!", o_name);
5244 #endif
5245
5246                 chg_virtue(V_ENCHANT, -5);
5247
5248                 /* Blast the armor */
5249                 o_ptr->name1 = 0;
5250                 o_ptr->name2 = EGO_BLASTED;
5251                 o_ptr->to_a = 0 - randint1(5) - randint1(5);
5252                 o_ptr->to_h = 0;
5253                 o_ptr->to_d = 0;
5254                 o_ptr->ac = 0;
5255                 o_ptr->dd = 0;
5256                 o_ptr->ds = 0;
5257
5258                 for (i = 0; i < TR_FLAG_SIZE; i++)
5259                         o_ptr->art_flags[i] = 0;
5260
5261                 /* Curse it */
5262                 o_ptr->curse_flags = TRC_CURSED;
5263
5264                 /* Break it */
5265                 o_ptr->ident |= (IDENT_BROKEN);
5266
5267                 /* Recalculate bonuses */
5268                 p_ptr->update |= (PU_BONUS);
5269
5270                 /* Recalculate mana */
5271                 p_ptr->update |= (PU_MANA);
5272
5273                 /* Window stuff */
5274                 p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
5275         }
5276
5277         return (TRUE);
5278 }
5279
5280
5281 /*
5282  * Curse the players weapon
5283  */
5284 bool curse_weapon(bool force, int slot)
5285 {
5286         int i;
5287
5288         object_type *o_ptr;
5289
5290         char o_name[MAX_NLEN];
5291
5292
5293         /* Curse the weapon */
5294         o_ptr = &inventory[slot];
5295
5296         /* Nothing to curse */
5297         if (!o_ptr->k_idx) return (FALSE);
5298
5299
5300         /* Describe */
5301         object_desc(o_name, o_ptr, OD_OMIT_PREFIX);
5302
5303         /* Attempt a saving throw */
5304         if (object_is_artifact(o_ptr) && (randint0(100) < 50) && !force)
5305         {
5306                 /* Cool */
5307 #ifdef JP
5308 msg_format("%s¤¬%s¤òÊñ¤ß¹þ¤â¤¦¤È¤·¤¿¤¬¡¢%s¤Ï¤½¤ì¤òÄ·¤ÍÊÖ¤·¤¿¡ª",
5309 "¶²ÉݤΰŹõ¥ª¡¼¥é", "Éð´ï", o_name);
5310 #else
5311                 msg_format("A %s tries to %s, but your %s resists the effects!",
5312                            "terrible black aura", "surround your weapon", o_name);
5313 #endif
5314
5315         }
5316
5317         /* not artifact or failed save... */
5318         else
5319         {
5320                 /* Oops */
5321 #ifdef JP
5322 if (!force) msg_format("¶²ÉݤΰŹõ¥ª¡¼¥é¤¬¤¢¤Ê¤¿¤Î%s¤òÊñ¤ß¹þ¤ó¤À¡ª", o_name);
5323 #else
5324                 if (!force) msg_format("A terrible black aura blasts your %s!", o_name);
5325 #endif
5326
5327                 chg_virtue(V_ENCHANT, -5);
5328
5329                 /* Shatter the weapon */
5330                 o_ptr->name1 = 0;
5331                 o_ptr->name2 = EGO_SHATTERED;
5332                 o_ptr->to_h = 0 - randint1(5) - randint1(5);
5333                 o_ptr->to_d = 0 - randint1(5) - randint1(5);
5334                 o_ptr->to_a = 0;
5335                 o_ptr->ac = 0;
5336                 o_ptr->dd = 0;
5337                 o_ptr->ds = 0;
5338
5339                 for (i = 0; i < TR_FLAG_SIZE; i++)
5340                         o_ptr->art_flags[i] = 0;
5341
5342
5343                 /* Curse it */
5344                 o_ptr->curse_flags = TRC_CURSED;
5345
5346                 /* Break it */
5347                 o_ptr->ident |= (IDENT_BROKEN);
5348
5349                 /* Recalculate bonuses */
5350                 p_ptr->update |= (PU_BONUS);
5351
5352                 /* Recalculate mana */
5353                 p_ptr->update |= (PU_MANA);
5354
5355                 /* Window stuff */
5356                 p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
5357         }
5358
5359         /* Notice */
5360         return (TRUE);
5361 }
5362
5363
5364 /*
5365  * Enchant some bolts
5366  */
5367 bool brand_bolts(void)
5368 {
5369         int i;
5370
5371         /* Use the first acceptable bolts */
5372         for (i = 0; i < INVEN_PACK; i++)
5373         {
5374                 object_type *o_ptr = &inventory[i];
5375
5376                 /* Skip non-bolts */
5377                 if (o_ptr->tval != TV_BOLT) continue;
5378
5379                 /* Skip artifacts and ego-items */
5380                 if (object_is_artifact(o_ptr) || object_is_ego(o_ptr))
5381                         continue;
5382
5383                 /* Skip cursed/broken items */
5384                 if (object_is_cursed(o_ptr) || object_is_broken(o_ptr)) continue;
5385
5386                 /* Randomize */
5387                 if (randint0(100) < 75) continue;
5388
5389                 /* Message */
5390 #ifdef JP
5391 msg_print("¥¯¥í¥¹¥Ü¥¦¤ÎÌ𤬱ê¤Î¥ª¡¼¥é¤ËÊñ¤Þ¤ì¤¿¡ª");
5392 #else
5393                 msg_print("Your bolts are covered in a fiery aura!");
5394 #endif
5395
5396
5397                 /* Ego-item */
5398                 o_ptr->name2 = EGO_FLAME;
5399
5400                 /* Enchant */
5401                 enchant(o_ptr, randint0(3) + 4, ENCH_TOHIT | ENCH_TODAM);
5402
5403                 /* Notice */
5404                 return (TRUE);
5405         }
5406
5407         /* Flush */
5408         if (flush_failure) flush();
5409
5410         /* Fail */
5411 #ifdef JP
5412 msg_print("±ê¤Ç¶¯²½¤¹¤ë¤Î¤Ë¼ºÇÔ¤·¤¿¡£");
5413 #else
5414         msg_print("The fiery enchantment failed.");
5415 #endif
5416
5417
5418         /* Notice */
5419         return (TRUE);
5420 }
5421
5422
5423 /*
5424  * Helper function -- return a "nearby" race for polymorphing
5425  *
5426  * Note that this function is one of the more "dangerous" ones...
5427  */
5428 static s16b poly_r_idx(int r_idx)
5429 {
5430         monster_race *r_ptr = &r_info[r_idx];
5431
5432         int i, r, lev1, lev2;
5433
5434         /* Hack -- Uniques/Questors never polymorph */
5435         if ((r_ptr->flags1 & RF1_UNIQUE) ||
5436             (r_ptr->flags1 & RF1_QUESTOR))
5437                 return (r_idx);
5438
5439         /* Allowable range of "levels" for resulting monster */
5440         lev1 = r_ptr->level - ((randint1(20) / randint1(9)) + 1);
5441         lev2 = r_ptr->level + ((randint1(20) / randint1(9)) + 1);
5442
5443         /* Pick a (possibly new) non-unique race */
5444         for (i = 0; i < 1000; i++)
5445         {
5446                 /* Pick a new race, using a level calculation */
5447                 r = get_mon_num((dun_level + r_ptr->level) / 2 + 5);
5448
5449                 /* Handle failure */
5450                 if (!r) break;
5451
5452                 /* Obtain race */
5453                 r_ptr = &r_info[r];
5454
5455                 /* Ignore unique monsters */
5456                 if (r_ptr->flags1 & RF1_UNIQUE) continue;
5457
5458                 /* Ignore monsters with incompatible levels */
5459                 if ((r_ptr->level < lev1) || (r_ptr->level > lev2)) continue;
5460
5461                 /* Use that index */
5462                 r_idx = r;
5463
5464                 /* Done */
5465                 break;
5466         }
5467
5468         /* Result */
5469         return (r_idx);
5470 }
5471
5472
5473 bool polymorph_monster(int y, int x)
5474 {
5475         cave_type *c_ptr = &cave[y][x];
5476         monster_type *m_ptr = &m_list[c_ptr->m_idx];
5477         bool polymorphed = FALSE;
5478         int new_r_idx;
5479         int old_r_idx = m_ptr->r_idx;
5480         bool targeted = (target_who == c_ptr->m_idx) ? TRUE : FALSE;
5481         bool health_tracked = (p_ptr->health_who == c_ptr->m_idx) ? TRUE : FALSE;
5482         monster_type back_m;
5483
5484         if (p_ptr->inside_arena || p_ptr->inside_battle) return (FALSE);
5485
5486         if ((p_ptr->riding == c_ptr->m_idx) || (m_ptr->mflag2 & MFLAG2_KAGE)) return (FALSE);
5487
5488         /* Memorize the monster before polymorphing */
5489         back_m = *m_ptr;
5490
5491         /* Pick a "new" monster race */
5492         new_r_idx = poly_r_idx(old_r_idx);
5493
5494         /* Handle polymorph */
5495         if (new_r_idx != old_r_idx)
5496         {
5497                 u32b mode = 0L;
5498                 bool preserve_hold_objects = back_m.hold_o_idx ? TRUE : FALSE;
5499                 s16b this_o_idx, next_o_idx = 0;
5500
5501                 /* Get the monsters attitude */
5502                 if (is_friendly(m_ptr)) mode |= PM_FORCE_FRIENDLY;
5503                 if (is_pet(m_ptr)) mode |= PM_FORCE_PET;
5504                 if (m_ptr->mflag2 & MFLAG2_NOPET) mode |= PM_NO_PET;
5505
5506                 /* Mega-hack -- ignore held objects */
5507                 m_ptr->hold_o_idx = 0;
5508
5509                 /* "Kill" the "old" monster */
5510                 delete_monster_idx(c_ptr->m_idx);
5511
5512                 /* Create a new monster (no groups) */
5513                 if (place_monster_aux(0, y, x, new_r_idx, mode))
5514                 {
5515                         m_list[hack_m_idx_ii].nickname = back_m.nickname;
5516                         m_list[hack_m_idx_ii].parent_m_idx = back_m.parent_m_idx;
5517                         m_list[hack_m_idx_ii].hold_o_idx = back_m.hold_o_idx;
5518
5519                         /* Success */
5520                         polymorphed = TRUE;
5521                 }
5522                 else
5523                 {
5524                         /* Placing the new monster failed */
5525                         if (place_monster_aux(0, y, x, old_r_idx, (mode | PM_NO_KAGE | PM_IGNORE_TERRAIN)))
5526                         {
5527                                 m_list[hack_m_idx_ii] = back_m;
5528
5529                                 /* Re-initialize monster process */
5530                                 mproc_init();
5531                         }
5532                         else preserve_hold_objects = FALSE;
5533                 }
5534
5535                 /* Mega-hack -- preserve held objects */
5536                 if (preserve_hold_objects)
5537                 {
5538                         for (this_o_idx = back_m.hold_o_idx; this_o_idx; this_o_idx = next_o_idx)
5539                         {
5540                                 /* Acquire object */
5541                                 object_type *o_ptr = &o_list[this_o_idx];
5542
5543                                 /* Acquire next object */
5544                                 next_o_idx = o_ptr->next_o_idx;
5545
5546                                 /* Held by new monster */
5547                                 o_ptr->held_m_idx = hack_m_idx_ii;
5548                         }
5549                 }
5550                 else if (back_m.hold_o_idx) /* Failed (paranoia) */
5551                 {
5552                         /* Delete objects */
5553                         for (this_o_idx = back_m.hold_o_idx; this_o_idx; this_o_idx = next_o_idx)
5554                         {
5555                                 /* Acquire next object */
5556                                 next_o_idx = o_list[this_o_idx].next_o_idx;
5557
5558                                 /* Delete the object */
5559                                 delete_object_idx(this_o_idx);
5560                         }
5561                 }
5562
5563                 if (targeted) target_who = hack_m_idx_ii;
5564                 if (health_tracked) health_track(hack_m_idx_ii);
5565         }
5566
5567         return polymorphed;
5568 }
5569
5570
5571 /*
5572  * Dimension Door
5573  */
5574 static bool dimension_door_aux(int x, int y)
5575 {
5576         int     plev = p_ptr->lev;
5577
5578         p_ptr->energy_need += (s16b)((s32b)(60 - plev) * ENERGY_NEED() / 100L);
5579
5580         if (!cave_player_teleportable_bold(y, x, 0L) ||
5581             (distance(y, x, py, px) > plev / 2 + 10) ||
5582             (!randint0(plev / 10 + 10)))
5583         {
5584                 p_ptr->energy_need += (s16b)((s32b)(60 - plev) * ENERGY_NEED() / 100L);
5585                 teleport_player((plev + 2) * 2, TELEPORT_PASSIVE);
5586
5587                 /* Failed */
5588                 return FALSE;
5589         }
5590         else
5591         {
5592                 teleport_player_to(y, x, 0L);
5593
5594                 /* Success */
5595                 return TRUE;
5596         }
5597 }
5598
5599
5600 /*
5601  * Dimension Door
5602  */
5603 bool dimension_door(void)
5604 {
5605         int x = 0, y = 0;
5606
5607         /* Rerutn FALSE if cancelled */
5608         if (!tgt_pt(&x, &y)) return FALSE;
5609
5610         if (dimension_door_aux(x, y)) return TRUE;
5611
5612 #ifdef JP
5613         msg_print("ÀºÎ¤«¤éʪ¼Á³¦¤ËÌá¤ë»þ¤¦¤Þ¤¯¤¤¤«¤Ê¤«¤Ã¤¿¡ª");
5614 #else
5615         msg_print("You fail to exit the astral plane correctly!");
5616 #endif
5617
5618         return TRUE;
5619 }
5620
5621
5622 /*
5623  * Mirror Master's Dimension Door
5624  */
5625 bool mirror_tunnel(void)
5626 {
5627         int x = 0, y = 0;
5628
5629         /* Rerutn FALSE if cancelled */
5630         if (!tgt_pt(&x, &y)) return FALSE;
5631
5632         if (dimension_door_aux(x, y)) return TRUE;
5633
5634 #ifdef JP
5635         msg_print("¶À¤ÎÀ¤³¦¤ò¤¦¤Þ¤¯Ä̤ì¤Ê¤«¤Ã¤¿¡ª");
5636 #else
5637         msg_print("You fail to pass the mirror plane correctly!");
5638 #endif
5639
5640         return TRUE;
5641 }
5642
5643
5644 bool eat_magic(int power)
5645 {
5646         object_type * o_ptr;
5647         object_kind *k_ptr;
5648         int lev, item;
5649         int recharge_strength = 0;
5650
5651         bool fail = FALSE;
5652         byte fail_type = 1;
5653
5654         cptr q, s;
5655         char o_name[MAX_NLEN];
5656
5657         item_tester_hook = item_tester_hook_recharge;
5658
5659         /* Get an item */
5660 #ifdef JP
5661 q = "¤É¤Î¥¢¥¤¥Æ¥à¤«¤éËâÎϤòµÛ¼ý¤·¤Þ¤¹¤«¡©";
5662 s = "ËâÎϤòµÛ¼ý¤Ç¤­¤ë¥¢¥¤¥Æ¥à¤¬¤¢¤ê¤Þ¤»¤ó¡£";
5663 #else
5664         q = "Drain which item? ";
5665         s = "You have nothing to drain.";
5666 #endif
5667
5668         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return FALSE;
5669
5670         if (item >= 0)
5671         {
5672                 o_ptr = &inventory[item];
5673         }
5674         else
5675         {
5676                 o_ptr = &o_list[0 - item];
5677         }
5678
5679         k_ptr = &k_info[o_ptr->k_idx];
5680         lev = k_info[o_ptr->k_idx].level;
5681
5682         if (o_ptr->tval == TV_ROD)
5683         {
5684                 recharge_strength = ((power > lev/2) ? (power - lev/2) : 0) / 5;
5685
5686                 /* Back-fire */
5687                 if (one_in_(recharge_strength))
5688                 {
5689                         /* Activate the failure code. */
5690                         fail = TRUE;
5691                 }
5692                 else
5693                 {
5694                         if (o_ptr->timeout > (o_ptr->number - 1) * k_ptr->pval)
5695                         {
5696 #ifdef JP
5697 msg_print("½¼Å¶Ãæ¤Î¥í¥Ã¥É¤«¤éËâÎϤòµÛ¼ý¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£");
5698 #else
5699                                 msg_print("You can't absorb energy from a discharged rod.");
5700 #endif
5701
5702                         }
5703                         else
5704                         {
5705                                 p_ptr->csp += lev;
5706                                 o_ptr->timeout += k_ptr->pval;
5707                         }
5708                 }
5709         }
5710         else
5711         {
5712                 /* All staffs, wands. */
5713                 recharge_strength = (100 + power - lev) / 15;
5714
5715                 /* Paranoia */
5716                 if (recharge_strength < 0) recharge_strength = 0;
5717
5718                 /* Back-fire */
5719                 if (one_in_(recharge_strength))
5720                 {
5721                         /* Activate the failure code. */
5722                         fail = TRUE;
5723                 }
5724                 else
5725                 {
5726                         if (o_ptr->pval > 0)
5727                         {
5728                                 p_ptr->csp += lev / 2;
5729                                 o_ptr->pval --;
5730
5731                                 /* XXX Hack -- unstack if necessary */
5732                                 if ((o_ptr->tval == TV_STAFF) && (item >= 0) && (o_ptr->number > 1))
5733                                 {
5734                                         object_type forge;
5735                                         object_type *q_ptr;
5736
5737                                         /* Get local object */
5738                                         q_ptr = &forge;
5739
5740                                         /* Obtain a local object */
5741                                         object_copy(q_ptr, o_ptr);
5742
5743                                         /* Modify quantity */
5744                                         q_ptr->number = 1;
5745
5746                                         /* Restore the charges */
5747                                         o_ptr->pval++;
5748
5749                                         /* Unstack the used item */
5750                                         o_ptr->number--;
5751                                         p_ptr->total_weight -= q_ptr->weight;
5752                                         item = inven_carry(q_ptr);
5753
5754                                         /* Message */
5755 #ifdef JP
5756                                         msg_print("¾ó¤ò¤Þ¤È¤á¤Ê¤ª¤·¤¿¡£");
5757 #else
5758                                         msg_print("You unstack your staff.");
5759 #endif
5760
5761                                 }
5762                         }
5763                         else
5764                         {
5765 #ifdef JP
5766 msg_print("µÛ¼ý¤Ç¤­¤ëËâÎϤ¬¤¢¤ê¤Þ¤»¤ó¡ª");
5767 #else
5768                                 msg_print("There's no energy there to absorb!");
5769 #endif
5770
5771                         }
5772                         if (!o_ptr->pval) o_ptr->ident |= IDENT_EMPTY;
5773                 }
5774         }
5775
5776         /* Inflict the penalties for failing a recharge. */
5777         if (fail)
5778         {
5779                 /* Artifacts are never destroyed. */
5780                 if (object_is_fixed_artifact(o_ptr))
5781                 {
5782                         object_desc(o_name, o_ptr, OD_NAME_ONLY);
5783 #ifdef JP
5784 msg_format("ËâÎϤ¬µÕή¤·¤¿¡ª%s¤Ï´°Á´¤ËËâÎϤò¼º¤Ã¤¿¡£", o_name);
5785 #else
5786                         msg_format("The recharging backfires - %s is completely drained!", o_name);
5787 #endif
5788
5789
5790                         /* Artifact rods. */
5791                         if (o_ptr->tval == TV_ROD)
5792                                 o_ptr->timeout = k_ptr->pval * o_ptr->number;
5793
5794                         /* Artifact wands and staffs. */
5795                         else if ((o_ptr->tval == TV_WAND) || (o_ptr->tval == TV_STAFF))
5796                                 o_ptr->pval = 0;
5797                 }
5798                 else
5799                 {
5800                         /* Get the object description */
5801                         object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
5802
5803                         /*** Determine Seriousness of Failure ***/
5804
5805                         /* Mages recharge objects more safely. */
5806                         if (p_ptr->pclass == CLASS_MAGE || p_ptr->pclass == CLASS_HIGH_MAGE || p_ptr->pclass == CLASS_SORCERER || p_ptr->pclass == CLASS_MAGIC_EATER || p_ptr->pclass == CLASS_BLUE_MAGE)
5807                         {
5808                                 /* 10% chance to blow up one rod, otherwise draining. */
5809                                 if (o_ptr->tval == TV_ROD)
5810                                 {
5811                                         if (one_in_(10)) fail_type = 2;
5812                                         else fail_type = 1;
5813                                 }
5814                                 /* 75% chance to blow up one wand, otherwise draining. */
5815                                 else if (o_ptr->tval == TV_WAND)
5816                                 {
5817                                         if (!one_in_(3)) fail_type = 2;
5818                                         else fail_type = 1;
5819                                 }
5820                                 /* 50% chance to blow up one staff, otherwise no effect. */
5821                                 else if (o_ptr->tval == TV_STAFF)
5822                                 {
5823                                         if (one_in_(2)) fail_type = 2;
5824                                         else fail_type = 0;
5825                                 }
5826                         }
5827
5828                         /* All other classes get no special favors. */
5829                         else
5830                         {
5831                                 /* 33% chance to blow up one rod, otherwise draining. */
5832                                 if (o_ptr->tval == TV_ROD)
5833                                 {
5834                                         if (one_in_(3)) fail_type = 2;
5835                                         else fail_type = 1;
5836                                 }
5837                                 /* 20% chance of the entire stack, else destroy one wand. */
5838                                 else if (o_ptr->tval == TV_WAND)
5839                                 {
5840                                         if (one_in_(5)) fail_type = 3;
5841                                         else fail_type = 2;
5842                                 }
5843                                 /* Blow up one staff. */
5844                                 else if (o_ptr->tval == TV_STAFF)
5845                                 {
5846                                         fail_type = 2;
5847                                 }
5848                         }
5849
5850                         /*** Apply draining and destruction. ***/
5851
5852                         /* Drain object or stack of objects. */
5853                         if (fail_type == 1)
5854                         {
5855                                 if (o_ptr->tval == TV_ROD)
5856                                 {
5857 #ifdef JP
5858 msg_print("¥í¥Ã¥É¤ÏÇË»¤òÌȤ줿¤¬¡¢ËâÎϤÏÁ´¤Æ¼º¤Ê¤ï¤ì¤¿¡£");
5859 #else
5860                                         msg_format("You save your rod from destruction, but all charges are lost.", o_name);
5861 #endif
5862
5863                                         o_ptr->timeout = k_ptr->pval * o_ptr->number;
5864                                 }
5865                                 else if (o_ptr->tval == TV_WAND)
5866                                 {
5867 #ifdef JP
5868 msg_format("%s¤ÏÇË»¤òÌȤ줿¤¬¡¢ËâÎϤ¬Á´¤Æ¼º¤ï¤ì¤¿¡£", o_name);
5869 #else
5870                                         msg_format("You save your %s from destruction, but all charges are lost.", o_name);
5871 #endif
5872
5873                                         o_ptr->pval = 0;
5874                                 }
5875                                 /* Staffs aren't drained. */
5876                         }
5877
5878                         /* Destroy an object or one in a stack of objects. */
5879                         if (fail_type == 2)
5880                         {
5881                                 if (o_ptr->number > 1)
5882                                 {
5883 #ifdef JP
5884 msg_format("Íð˽¤ÊËâË¡¤Î¤¿¤á¤Ë%s¤¬°ìËܲõ¤ì¤¿¡ª", o_name);
5885 #else
5886                                         msg_format("Wild magic consumes one of your %s!", o_name);
5887 #endif
5888
5889                                         /* Reduce rod stack maximum timeout, drain wands. */
5890                                         if (o_ptr->tval == TV_ROD) o_ptr->timeout = MIN(o_ptr->timeout, k_ptr->pval * (o_ptr->number - 1));
5891                                         else if (o_ptr->tval == TV_WAND) o_ptr->pval = o_ptr->pval * (o_ptr->number - 1) / o_ptr->number;
5892
5893                                 }
5894                                 else
5895 #ifdef JP
5896 msg_format("Íð˽¤ÊËâË¡¤Î¤¿¤á¤Ë%s¤¬²¿Ëܤ«²õ¤ì¤¿¡ª", o_name);
5897 #else
5898                                         msg_format("Wild magic consumes your %s!", o_name);
5899 #endif
5900
5901                                 /* Reduce and describe inventory */
5902                                 if (item >= 0)
5903                                 {
5904                                         inven_item_increase(item, -1);
5905                                         inven_item_describe(item);
5906                                         inven_item_optimize(item);
5907                                 }
5908
5909                                 /* Reduce and describe floor item */
5910                                 else
5911                                 {
5912                                         floor_item_increase(0 - item, -1);
5913                                         floor_item_describe(0 - item);
5914                                         floor_item_optimize(0 - item);
5915                                 }
5916                         }
5917
5918                         /* Destroy all members of a stack of objects. */
5919                         if (fail_type == 3)
5920                         {
5921                                 if (o_ptr->number > 1)
5922 #ifdef JP
5923 msg_format("Íð˽¤ÊËâË¡¤Î¤¿¤á¤Ë%s¤¬Á´¤Æ²õ¤ì¤¿¡ª", o_name);
5924 #else
5925                                         msg_format("Wild magic consumes all your %s!", o_name);
5926 #endif
5927
5928                                 else
5929 #ifdef JP
5930 msg_format("Íð˽¤ÊËâË¡¤Î¤¿¤á¤Ë%s¤¬²õ¤ì¤¿¡ª", o_name);
5931 #else
5932                                         msg_format("Wild magic consumes your %s!", o_name);
5933 #endif
5934
5935
5936
5937                                 /* Reduce and describe inventory */
5938                                 if (item >= 0)
5939                                 {
5940                                         inven_item_increase(item, -999);
5941                                         inven_item_describe(item);
5942                                         inven_item_optimize(item);
5943                                 }
5944
5945                                 /* Reduce and describe floor item */
5946                                 else
5947                                 {
5948                                         floor_item_increase(0 - item, -999);
5949                                         floor_item_describe(0 - item);
5950                                         floor_item_optimize(0 - item);
5951                                 }
5952                         }
5953                 }
5954         }
5955
5956         if (p_ptr->csp > p_ptr->msp)
5957         {
5958                 p_ptr->csp = p_ptr->msp;
5959         }
5960
5961         /* Redraw mana and hp */
5962         p_ptr->redraw |= (PR_MANA);
5963
5964         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
5965         p_ptr->window |= (PW_INVEN);
5966
5967         return TRUE;
5968 }
5969
5970
5971 bool summon_kin_player(int level, int y, int x, u32b mode)
5972 {
5973         bool pet = (bool)(mode & PM_FORCE_PET);
5974         if (!pet) mode |= PM_NO_PET;
5975
5976         switch (p_ptr->mimic_form)
5977         {
5978         case MIMIC_NONE:
5979                 switch (p_ptr->prace)
5980                 {
5981                         case RACE_HUMAN:
5982                         case RACE_AMBERITE:
5983                         case RACE_BARBARIAN:
5984                         case RACE_BEASTMAN:
5985                         case RACE_DUNADAN:
5986                                 summon_kin_type = 'p';
5987                                 break;
5988                         case RACE_HALF_ELF:
5989                         case RACE_ELF:
5990                         case RACE_HOBBIT:
5991                         case RACE_GNOME:
5992                         case RACE_DWARF:
5993                         case RACE_HIGH_ELF:
5994                         case RACE_NIBELUNG:
5995                         case RACE_DARK_ELF:
5996                         case RACE_MIND_FLAYER:
5997                         case RACE_KUTA:
5998                         case RACE_S_FAIRY:
5999                                 summon_kin_type = 'h';
6000                                 break;
6001                         case RACE_HALF_ORC:
6002                                 summon_kin_type = 'o';
6003                                 break;
6004                         case RACE_HALF_TROLL:
6005                                 summon_kin_type = 'T';
6006                                 break;
6007                         case RACE_HALF_OGRE:
6008                                 summon_kin_type = 'O';
6009                                 break;
6010                         case RACE_HALF_GIANT:
6011                         case RACE_HALF_TITAN:
6012                         case RACE_CYCLOPS:
6013                                 summon_kin_type = 'P';
6014                                 break;
6015                         case RACE_YEEK:
6016                                 summon_kin_type = 'y';
6017                                 break;
6018                         case RACE_KLACKON:
6019                                 summon_kin_type = 'K';
6020                                 break;
6021                         case RACE_KOBOLD:
6022                                 summon_kin_type = 'k';
6023                                 break;
6024                         case RACE_IMP:
6025                                 if (one_in_(13)) summon_kin_type = 'U';
6026                                 else summon_kin_type = 'u';
6027                                 break;
6028                         case RACE_DRACONIAN:
6029                                 summon_kin_type = 'd';
6030                                 break;
6031                         case RACE_GOLEM:
6032                         case RACE_ANDROID:
6033                                 summon_kin_type = 'g';
6034                                 break;
6035                         case RACE_SKELETON:
6036                                 if (one_in_(13)) summon_kin_type = 'L';
6037                                 else summon_kin_type = 's';
6038                                 break;
6039                         case RACE_ZOMBIE:
6040                                 summon_kin_type = 'z';
6041                                 break;
6042                         case RACE_VAMPIRE:
6043                                 summon_kin_type = 'V';
6044                                 break;
6045                         case RACE_SPECTRE:
6046                                 summon_kin_type = 'G';
6047                                 break;
6048                         case RACE_SPRITE:
6049                                 summon_kin_type = 'I';
6050                                 break;
6051                         case RACE_ENT:
6052                                 summon_kin_type = '#';
6053                                 break;
6054                         case RACE_ANGEL:
6055                                 summon_kin_type = 'A';
6056                                 break;
6057                         case RACE_DEMON:
6058                                 summon_kin_type = 'U';
6059                                 break;
6060                         default:
6061                                 summon_kin_type = 'p';
6062                                 break;
6063                 }
6064                 break;
6065         case MIMIC_DEMON:
6066                 if (one_in_(13)) summon_kin_type = 'U';
6067                 else summon_kin_type = 'u';
6068                 break;
6069         case MIMIC_DEMON_LORD:
6070                 summon_kin_type = 'U';
6071                 break;
6072         case MIMIC_VAMPIRE:
6073                 summon_kin_type = 'V';
6074                 break;
6075         }       
6076         return summon_specific((pet ? -1 : 0), y, x, level, SUMMON_KIN, mode);
6077 }