OSDN Git Service

さらに続きを実装。
[hengband/hengband.git] / src / cmd6.c
1 /* File: cmd6.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: Object commands */
12
13 #include "angband.h"
14
15
16 /*
17  * This file includes code for eating food, drinking potions,
18  * reading scrolls, aiming wands, using staffs, zapping rods,
19  * and activating artifacts.
20  *
21  * In all cases, if the player becomes "aware" of the item's use
22  * by testing it, mark it as "aware" and reward some experience
23  * based on the object's level, always rounding up.  If the player
24  * remains "unaware", mark that object "kind" as "tried".
25  *
26  * This code now correctly handles the unstacking of wands, staffs,
27  * and rods.  Note the overly paranoid warning about potential pack
28  * overflow, which allows the player to use and drop a stacked item.
29  *
30  * In all "unstacking" scenarios, the "used" object is "carried" as if
31  * the player had just picked it up.  In particular, this means that if
32  * the use of an item induces pack overflow, that item will be dropped.
33  *
34  * For simplicity, these routines induce a full "pack reorganization"
35  * which not only combines similar items, but also reorganizes various
36  * items to obey the current "sorting" method.  This may require about
37  * 400 item comparisons, but only occasionally.
38  *
39  * There may be a BIG problem with any "effect" that can cause "changes"
40  * to the inventory.  For example, a "scroll of recharging" can cause
41  * a wand/staff to "disappear", moving the inventory up.  Luckily, the
42  * scrolls all appear BEFORE the staffs/wands, so this is not a problem.
43  * But, for example, a "staff of recharging" could cause MAJOR problems.
44  * In such a case, it will be best to either (1) "postpone" the effect
45  * until the end of the function, or (2) "change" the effect, say, into
46  * giving a staff "negative" charges, or "turning a staff into a stick".
47  * It seems as though a "rod of recharging" might in fact cause problems.
48  * The basic problem is that the act of recharging (and destroying) an
49  * item causes the inducer of that action to "move", causing "o_ptr" to
50  * no longer point at the correct item, with horrifying results.
51  *
52  * Note that food/potions/scrolls no longer use bit-flags for effects,
53  * but instead use the "sval" (which is also used to sort the objects).
54  */
55
56
57 static void do_cmd_eat_food_aux(int item)
58 {
59         int ident, lev;
60         object_type *o_ptr;
61
62         if (music_singing_any()) stop_singing();
63         if (hex_spelling_any()) stop_hex_spell_all();
64
65         /* Get the item (in the pack) */
66         if (item >= 0)
67         {
68                 o_ptr = &inventory[item];
69         }
70
71         /* Get the item (on the floor) */
72         else
73         {
74                 o_ptr = &o_list[0 - item];
75         }
76
77         /* Sound */
78         sound(SOUND_EAT);
79
80         /* Take a turn */
81         energy_use = 100;
82
83         /* Identity not known yet */
84         ident = FALSE;
85
86         /* Object level */
87         lev = k_info[o_ptr->k_idx].level;
88
89         if (o_ptr->tval == TV_FOOD)
90         {
91                 /* Analyze the food */
92                 switch (o_ptr->sval)
93                 {
94                         case SV_FOOD_POISON:
95                         {
96                                 if (!(p_ptr->resist_pois || IS_OPPOSE_POIS()))
97                                 {
98                                         if (set_poisoned(p_ptr->poisoned + randint0(10) + 10))
99                                         {
100                                                 ident = TRUE;
101                                         }
102                                 }
103                                 break;
104                         }
105
106                         case SV_FOOD_BLINDNESS:
107                         {
108                                 if (!p_ptr->resist_blind)
109                                 {
110                                         if (set_blind(p_ptr->blind + randint0(200) + 200))
111                                         {
112                                                 ident = TRUE;
113                                         }
114                                 }
115                                 break;
116                         }
117
118                         case SV_FOOD_PARANOIA:
119                         {
120                                 if (!p_ptr->resist_fear)
121                                 {
122                                         if (set_afraid(p_ptr->afraid + randint0(10) + 10))
123                                         {
124                                                 ident = TRUE;
125                                         }
126                                 }
127                                 break;
128                         }
129
130                         case SV_FOOD_CONFUSION:
131                         {
132                                 if (!p_ptr->resist_conf)
133                                 {
134                                         if (set_confused(p_ptr->confused + randint0(10) + 10))
135                                         {
136                                                 ident = TRUE;
137                                         }
138                                 }
139                                 break;
140                         }
141
142                         case SV_FOOD_HALLUCINATION:
143                         {
144                                 if (!p_ptr->resist_chaos)
145                                 {
146                                         if (set_image(p_ptr->image + randint0(250) + 250))
147                                         {
148                                                 ident = TRUE;
149                                         }
150                                 }
151                                 break;
152                         }
153
154                         case SV_FOOD_PARALYSIS:
155                         {
156                                 if (!p_ptr->free_act)
157                                 {
158                                         if (set_paralyzed(p_ptr->paralyzed + randint0(10) + 10))
159                                         {
160                                                 ident = TRUE;
161                                         }
162                                 }
163                                 break;
164                         }
165
166                         case SV_FOOD_WEAKNESS:
167                         {
168 #ifdef JP
169                                 take_hit(DAMAGE_NOESCAPE, damroll(6, 6), "ÆÇÆþ¤ê¿©ÎÁ", -1);
170 #else
171                                 take_hit(DAMAGE_NOESCAPE, damroll(6, 6), "poisonous food", -1);
172 #endif
173
174                                 (void)do_dec_stat(A_STR);
175                                 ident = TRUE;
176                                 break;
177                         }
178
179                         case SV_FOOD_SICKNESS:
180                         {
181 #ifdef JP
182                                 take_hit(DAMAGE_NOESCAPE, damroll(6, 6), "ÆÇÆþ¤ê¿©ÎÁ", -1);
183 #else
184                                 take_hit(DAMAGE_NOESCAPE, damroll(6, 6), "poisonous food", -1);
185 #endif
186
187                                 (void)do_dec_stat(A_CON);
188                                 ident = TRUE;
189                                 break;
190                         }
191
192                         case SV_FOOD_STUPIDITY:
193                         {
194 #ifdef JP
195                                 take_hit(DAMAGE_NOESCAPE, damroll(8, 8), "ÆÇÆþ¤ê¿©ÎÁ", -1);
196 #else
197                                 take_hit(DAMAGE_NOESCAPE, damroll(8, 8), "poisonous food", -1);
198 #endif
199
200                                 (void)do_dec_stat(A_INT);
201                                 ident = TRUE;
202                                 break;
203                         }
204
205                         case SV_FOOD_NAIVETY:
206                         {
207 #ifdef JP
208                                 take_hit(DAMAGE_NOESCAPE, damroll(8, 8), "ÆÇÆþ¤ê¿©ÎÁ", -1);
209 #else
210                                 take_hit(DAMAGE_NOESCAPE, damroll(8, 8), "poisonous food", -1);
211 #endif
212
213                                 (void)do_dec_stat(A_WIS);
214                                 ident = TRUE;
215                                 break;
216                         }
217
218                         case SV_FOOD_UNHEALTH:
219                         {
220 #ifdef JP
221                                 take_hit(DAMAGE_NOESCAPE, damroll(10, 10), "ÆÇÆþ¤ê¿©ÎÁ", -1);
222 #else
223                                 take_hit(DAMAGE_NOESCAPE, damroll(10, 10), "poisonous food", -1);
224 #endif
225
226                                 (void)do_dec_stat(A_CON);
227                                 ident = TRUE;
228                                 break;
229                         }
230
231                         case SV_FOOD_DISEASE:
232                         {
233 #ifdef JP
234                                 take_hit(DAMAGE_NOESCAPE, damroll(10, 10), "ÆÇÆþ¤ê¿©ÎÁ", -1);
235 #else
236                                 take_hit(DAMAGE_NOESCAPE, damroll(10, 10), "poisonous food", -1);
237 #endif
238
239                                 (void)do_dec_stat(A_STR);
240                                 ident = TRUE;
241                                 break;
242                         }
243
244                         case SV_FOOD_CURE_POISON:
245                         {
246                                 if (set_poisoned(0)) ident = TRUE;
247                                 break;
248                         }
249
250                         case SV_FOOD_CURE_BLINDNESS:
251                         {
252                                 if (set_blind(0)) ident = TRUE;
253                                 break;
254                         }
255
256                         case SV_FOOD_CURE_PARANOIA:
257                         {
258                                 if (set_afraid(0)) ident = TRUE;
259                                 break;
260                         }
261
262                         case SV_FOOD_CURE_CONFUSION:
263                         {
264                                 if (set_confused(0)) ident = TRUE;
265                                 break;
266                         }
267
268                         case SV_FOOD_CURE_SERIOUS:
269                         {
270                                 if (hp_player(damroll(4, 8))) ident = TRUE;
271                                 break;
272                         }
273
274                         case SV_FOOD_RESTORE_STR:
275                         {
276                                 if (do_res_stat(A_STR)) ident = TRUE;
277                                 break;
278                         }
279
280                         case SV_FOOD_RESTORE_CON:
281                         {
282                                 if (do_res_stat(A_CON)) ident = TRUE;
283                                 break;
284                         }
285
286                         case SV_FOOD_RESTORING:
287                         {
288                                 if (do_res_stat(A_STR)) ident = TRUE;
289                                 if (do_res_stat(A_INT)) ident = TRUE;
290                                 if (do_res_stat(A_WIS)) ident = TRUE;
291                                 if (do_res_stat(A_DEX)) ident = TRUE;
292                                 if (do_res_stat(A_CON)) ident = TRUE;
293                                 if (do_res_stat(A_CHR)) ident = TRUE;
294                                 break;
295                         }
296
297
298 #ifdef JP
299                         /* ¤½¤ì¤¾¤ì¤Î¿©¤Ùʪ¤Î´¶ÁÛ¤ò¥ª¥ê¥¸¥Ê¥ë¤è¤êºÙ¤«¤¯É½¸½ */
300                         case SV_FOOD_BISCUIT:
301                         {
302                                 msg_print("´Å¤¯¤Æ¥µ¥¯¥µ¥¯¤·¤Æ¤È¤Æ¤â¤ª¤¤¤·¤¤¡£");
303                                 ident = TRUE;
304                                 break;
305                         }
306
307                         case SV_FOOD_JERKY:
308                         {
309                                 msg_print("»õ¤´¤¿¤¨¤¬¤¢¤Ã¤Æ¤ª¤¤¤·¤¤¡£");
310                                 ident = TRUE;
311                                 break;
312                         }
313
314                         case SV_FOOD_SLIME_MOLD:
315                         {
316                                 msg_print("¤³¤ì¤Ï¤Ê¤ó¤È¤â·ÁÍƤ·¤¬¤¿¤¤Ì£¤À¡£");
317                                 ident = TRUE;
318                                 break;
319                         }
320
321                         case SV_FOOD_RATION:
322                         {
323                                 msg_print("¤³¤ì¤Ï¤ª¤¤¤·¤¤¡£");
324                                 ident = TRUE;
325                                 break;
326                         }
327 #else
328                         case SV_FOOD_RATION:
329                         case SV_FOOD_BISCUIT:
330                         case SV_FOOD_JERKY:
331                         case SV_FOOD_SLIME_MOLD:
332                         {
333                                 msg_print("That tastes good.");
334                                 ident = TRUE;
335                                 break;
336                         }
337 #endif
338
339
340                         case SV_FOOD_WAYBREAD:
341                         {
342 #ifdef JP
343                                 msg_print("¤³¤ì¤Ï¤Ò¤¸¤ç¤¦¤ËÈþÌ£¤À¡£");
344 #else
345                                 msg_print("That tastes good.");
346 #endif
347
348                                 (void)set_poisoned(0);
349                                 (void)hp_player(damroll(4, 8));
350                                 ident = TRUE;
351                                 break;
352                         }
353
354 #ifdef JP
355                         case SV_FOOD_PINT_OF_ALE:
356                         {
357                                 msg_print("¤Î¤É¤´¤·Á֤䤫¤À¡£");
358                                 ident = TRUE;
359                                 break;
360                         }
361
362                         case SV_FOOD_PINT_OF_WINE:
363                         {
364                                 msg_print("That tastes good.");
365                                 ident = TRUE;
366                                 break;
367                         }
368 #else
369                         case SV_FOOD_PINT_OF_ALE:
370                         case SV_FOOD_PINT_OF_WINE:
371                         {
372                                 msg_print("That tastes good.");
373                                 ident = TRUE;
374                                 break;
375                         }
376 #endif
377
378                 }
379         }
380
381         /* Combine / Reorder the pack (later) */
382         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
383
384         if (!(object_is_aware(o_ptr)))
385         {
386                 chg_virtue(V_KNOWLEDGE, -1);
387                 chg_virtue(V_PATIENCE, -1);
388                 chg_virtue(V_CHANCE, 1);
389         }
390
391         /* We have tried it */
392         if (o_ptr->tval == TV_FOOD) object_tried(o_ptr);
393
394         /* The player is now aware of the object */
395         if (ident && !object_is_aware(o_ptr))
396         {
397                 object_aware(o_ptr);
398                 gain_exp((lev + (p_ptr->lev >> 1)) / p_ptr->lev);
399         }
400
401         /* Window stuff */
402         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
403
404
405         /* Food can feed the player */
406         if (prace_is_(RACE_VAMPIRE) || (p_ptr->mimic_form == MIMIC_VAMPIRE))
407         {
408                 /* Reduced nutritional benefit */
409                 (void)set_food(p_ptr->food + (o_ptr->pval / 10));
410 #ifdef JP
411 msg_print("¤¢¤Ê¤¿¤Î¤è¤¦¤Ê¼Ô¤Ë¤È¤Ã¤Æ¿©ÎȤʤɶϤ«¤Ê±ÉÍܤˤ·¤«¤Ê¤é¤Ê¤¤¡£");
412 #else
413                 msg_print("Mere victuals hold scant sustenance for a being such as yourself.");
414 #endif
415
416                 if (p_ptr->food < PY_FOOD_ALERT)   /* Hungry */
417 #ifdef JP
418 msg_print("¤¢¤Ê¤¿¤Îµ²¤¨¤Ï¿·Á¯¤Ê·ì¤Ë¤è¤Ã¤Æ¤Î¤ßËþ¤¿¤µ¤ì¤ë¡ª");
419 #else
420                         msg_print("Your hunger can only be satisfied with fresh blood!");
421 #endif
422
423         }
424         else if ((prace_is_(RACE_SKELETON) ||
425                   prace_is_(RACE_GOLEM) ||
426                   prace_is_(RACE_ZOMBIE) ||
427                   prace_is_(RACE_SPECTRE)) &&
428                  (o_ptr->tval == TV_STAFF || o_ptr->tval == TV_WAND))
429         {
430                 cptr staff;
431
432                 if (o_ptr->tval == TV_STAFF &&
433                     (item < 0) && (o_ptr->number > 1))
434                 {
435 #ifdef JP
436                         msg_print("¤Þ¤º¤Ï¾ó¤ò½¦¤ï¤Ê¤±¤ì¤Ð¡£");
437 #else
438                         msg_print("You must first pick up the staffs.");
439 #endif
440                         return;
441                 }
442
443 #ifdef JP
444                 staff = (o_ptr->tval == TV_STAFF) ? "¾ó" : "ËâË¡ËÀ";
445 #else
446                 staff = (o_ptr->tval == TV_STAFF) ? "staff" : "wand";
447 #endif
448
449                 /* "Eat" charges */
450                 if (o_ptr->pval == 0)
451                 {
452 #ifdef JP
453                         msg_format("¤³¤Î%s¤Ë¤Ï¤â¤¦ËâÎϤ¬»Ä¤Ã¤Æ¤¤¤Ê¤¤¡£", staff);
454 #else
455                         msg_format("The %s has no charges left.", staff);
456 #endif
457
458                         o_ptr->ident |= (IDENT_EMPTY);
459
460                         /* Combine / Reorder the pack (later) */
461                         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
462                         p_ptr->window |= (PW_INVEN);
463
464                         return;
465                 }
466
467 #ifdef JP
468                 msg_format("¤¢¤Ê¤¿¤Ï%s¤ÎËâÎϤò¥¨¥Í¥ë¥®¡¼¸»¤È¤·¤ÆµÛ¼ý¤·¤¿¡£", staff);
469 #else
470                 msg_format("You absorb mana of the %s as your energy.", staff);
471 #endif
472
473                 /* Use a single charge */
474                 o_ptr->pval--;
475
476                 /* Eat a charge */
477                 set_food(p_ptr->food + 5000);
478
479                 /* XXX Hack -- unstack if necessary */
480                 if (o_ptr->tval == TV_STAFF &&
481                     (item >= 0) && (o_ptr->number > 1))
482                 {
483                         object_type forge;
484                         object_type *q_ptr;
485
486                         /* Get local object */
487                         q_ptr = &forge;
488
489                         /* Obtain a local object */
490                         object_copy(q_ptr, o_ptr);
491
492                         /* Modify quantity */
493                         q_ptr->number = 1;
494
495                         /* Restore the charges */
496                         o_ptr->pval++;
497
498                         /* Unstack the used item */
499                         o_ptr->number--;
500                         p_ptr->total_weight -= q_ptr->weight;
501                         item = inven_carry(q_ptr);
502
503                         /* Message */
504 #ifdef JP
505                         msg_format("¾ó¤ò¤Þ¤È¤á¤Ê¤ª¤·¤¿¡£");
506 #else
507                         msg_print("You unstack your staff.");
508 #endif
509                 }
510
511                 /* Describe charges in the pack */
512                 if (item >= 0)
513                 {
514                         inven_item_charges(item);
515                 }
516
517                 /* Describe charges on the floor */
518                 else
519                 {
520                         floor_item_charges(0 - item);
521                 }
522
523                 /* Window stuff */
524                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
525
526                 /* Don't eat a staff/wand itself */
527                 return;
528         }
529         else if ((prace_is_(RACE_DEMON) ||
530                  (mimic_info[p_ptr->mimic_form].MIMIC_FLAGS & MIMIC_IS_DEMON)) &&
531                  (o_ptr->tval == TV_CORPSE && o_ptr->sval == SV_CORPSE &&
532                   my_strchr("pht", r_info[o_ptr->pval].d_char)))
533         {
534                 /* Drain vitality of humanoids */
535                 char o_name[MAX_NLEN];
536
537                 object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
538
539 #ifdef JP
540                 msg_format("%s¤Ïdz¤¨¾å¤ê³¥¤Ë¤Ê¤Ã¤¿¡£ÀºÎϤòµÛ¼ý¤·¤¿µ¤¤¬¤¹¤ë¡£", o_name);
541 #else
542                 msg_format("%^s is burnt to ashes.  You absorb its vitality!", o_name);
543 #endif
544                 (void)set_food(PY_FOOD_MAX - 1);
545         }
546         else if (prace_is_(RACE_SKELETON))
547         {
548 #if 0
549                 if (o_ptr->tval == TV_SKELETON ||
550                     (o_ptr->tval == TV_CORPSE && o_ptr->sval == SV_SKELETON))
551                 {
552 #ifdef JP
553                         msg_print("¤¢¤Ê¤¿¤Ï¹ü¤Ç¼«Ê¬¤ÎÂΤòÊä¤Ã¤¿¡£");
554 #else
555                         msg_print("Your body absorbs the bone.");
556 #endif
557                         set_food(p_ptr->food + 5000);
558                 }
559                 else 
560 #endif
561
562                 if (!((o_ptr->sval == SV_FOOD_WAYBREAD) ||
563                       (o_ptr->sval < SV_FOOD_BISCUIT)))
564                 {
565                         object_type forge;
566                         object_type *q_ptr = &forge;
567
568 #ifdef JP
569 msg_print("¿©¤Ùʪ¤¬¥¢¥´¤òÁÇÄ̤ꤷ¤ÆÍî¤Á¤¿¡ª");
570 #else
571                         msg_print("The food falls through your jaws!");
572 #endif
573
574
575                         /* Create the item */
576                         object_prep(q_ptr, lookup_kind(o_ptr->tval, o_ptr->sval));
577
578                         /* Drop the object from heaven */
579                         (void)drop_near(q_ptr, -1, py, px);
580                 }
581                 else
582                 {
583 #ifdef JP
584 msg_print("¿©¤Ùʪ¤¬¥¢¥´¤òÁÇÄ̤ꤷ¤ÆÍî¤Á¡¢¾Ã¤¨¤¿¡ª");
585 #else
586                         msg_print("The food falls through your jaws and vanishes!");
587 #endif
588
589                 }
590         }
591         else if (prace_is_(RACE_GOLEM) ||
592                  prace_is_(RACE_ZOMBIE) ||
593                  prace_is_(RACE_ENT) ||
594                  prace_is_(RACE_DEMON) ||
595                  prace_is_(RACE_ANDROID) ||
596                  prace_is_(RACE_SPECTRE) ||
597                  (mimic_info[p_ptr->mimic_form].MIMIC_FLAGS & MIMIC_IS_NONLIVING))
598         {
599 #ifdef JP
600 msg_print("À¸¼Ô¤Î¿©Êª¤Ï¤¢¤Ê¤¿¤Ë¤È¤Ã¤Æ¤Û¤È¤ó¤É±ÉÍܤˤʤé¤Ê¤¤¡£");
601 #else
602                 msg_print("The food of mortals is poor sustenance for you.");
603 #endif
604
605                 set_food(p_ptr->food + ((o_ptr->pval) / 20));
606         }
607         else if (o_ptr->tval == TV_FOOD && o_ptr->sval == SV_FOOD_WAYBREAD)
608         {
609                 /* Waybread is always fully satisfying. */
610                 set_food(MAX(p_ptr->food, PY_FOOD_MAX - 1));
611         }
612         else
613         {
614                 /* Food can feed the player */
615                 (void)set_food(p_ptr->food + o_ptr->pval);
616         }
617
618         /* Destroy a food in the pack */
619         if (item >= 0)
620         {
621                 inven_item_increase(item, -1);
622                 inven_item_describe(item);
623                 inven_item_optimize(item);
624         }
625
626         /* Destroy a food on the floor */
627         else
628         {
629                 floor_item_increase(0 - item, -1);
630                 floor_item_describe(0 - item);
631                 floor_item_optimize(0 - item);
632         }
633 }
634
635
636 /*
637  * Hook to determine if an object is eatable
638  */
639 static bool item_tester_hook_eatable(object_type *o_ptr)
640 {
641         if (o_ptr->tval==TV_FOOD) return TRUE;
642
643 #if 0
644         if (prace_is_(RACE_SKELETON))
645         {
646                 if (o_ptr->tval == TV_SKELETON ||
647                     (o_ptr->tval == TV_CORPSE && o_ptr->sval == SV_SKELETON))
648                         return TRUE;
649         }
650         else 
651 #endif
652
653         if (prace_is_(RACE_SKELETON) ||
654             prace_is_(RACE_GOLEM) ||
655             prace_is_(RACE_ZOMBIE) ||
656             prace_is_(RACE_SPECTRE))
657         {
658                 if (o_ptr->tval == TV_STAFF || o_ptr->tval == TV_WAND)
659                         return TRUE;
660         }
661         else if (prace_is_(RACE_DEMON) ||
662                  (mimic_info[p_ptr->mimic_form].MIMIC_FLAGS & MIMIC_IS_DEMON))
663         {
664                 if (o_ptr->tval == TV_CORPSE &&
665                     o_ptr->sval == SV_CORPSE &&
666                     my_strchr("pht", r_info[o_ptr->pval].d_char))
667                         return TRUE;
668         }
669
670         /* Assume not */
671         return (FALSE);
672 }
673
674
675 /*
676  * Eat some food (from the pack or floor)
677  */
678 void do_cmd_eat_food(void)
679 {
680         int         item;
681         cptr        q, s;
682
683
684         if (p_ptr->special_defense & (KATA_MUSOU | KATA_KOUKIJIN))
685         {
686                 set_action(ACTION_NONE);
687         }
688
689         /* Restrict choices to food */
690         item_tester_hook = item_tester_hook_eatable;
691
692         /* Get an item */
693 #ifdef JP
694         q = "¤É¤ì¤ò¿©¤Ù¤Þ¤¹¤«? ";
695         s = "¿©¤Ùʪ¤¬¤Ê¤¤¡£";
696 #else
697         q = "Eat which item? ";
698         s = "You have nothing to eat.";
699 #endif
700
701         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return;
702
703         /* Eat the object */
704         do_cmd_eat_food_aux(item);
705 }
706
707
708 /*
709  * Quaff a potion (from the pack or the floor)
710  */
711 static void do_cmd_quaff_potion_aux(int item)
712 {
713         int         ident, lev;
714         object_type *o_ptr;
715         object_type forge;
716         object_type *q_ptr;
717
718
719         /* Take a turn */
720         energy_use = 100;
721
722         if (world_player)
723         {
724                 if (flush_failure) flush();
725 #ifdef JP
726                 msg_print("ÉÓ¤«¤é¿å¤¬Î®¤ì½Ð¤Æ¤³¤Ê¤¤¡ª");
727 #else
728                 msg_print("The potion doesn't flow out from a bottle.");
729 #endif
730
731                 sound(SOUND_FAIL);
732                 return;
733         }
734
735         if (music_singing_any()) stop_singing();
736         if (hex_spelling_any())
737         {
738                 if (!hex_spelling(HEX_INHAIL)) stop_hex_spell_all();
739         }
740
741         /* Get the item (in the pack) */
742         if (item >= 0)
743         {
744                 o_ptr = &inventory[item];
745         }
746
747         /* Get the item (on the floor) */
748         else
749         {
750                 o_ptr = &o_list[0 - item];
751         }
752
753         /* Get local object */
754         q_ptr = &forge;
755
756         /* Obtain a local object */
757         object_copy(q_ptr, o_ptr);
758
759         /* Single object */
760         q_ptr->number = 1;
761
762         /* Reduce and describe inventory */
763         if (item >= 0)
764         {
765                 inven_item_increase(item, -1);
766                 inven_item_describe(item);
767                 inven_item_optimize(item);
768         }
769
770         /* Reduce and describe floor item */
771         else
772         {
773                 floor_item_increase(0 - item, -1);
774                 floor_item_describe(0 - item);
775                 floor_item_optimize(0 - item);
776         }
777
778         /* Sound */
779         sound(SOUND_QUAFF);
780
781
782         /* Not identified yet */
783         ident = FALSE;
784
785         /* Object level */
786         lev = k_info[q_ptr->k_idx].level;
787
788         /* Analyze the potion */
789         if (q_ptr->tval == TV_POTION)
790         {
791                 switch (q_ptr->sval)
792                 {
793 #ifdef JP
794                         /* °û¤ß¤´¤¿¤¨¤ò¥ª¥ê¥¸¥Ê¥ë¤è¤êºÙ¤«¤¯É½¸½ */
795                 case SV_POTION_WATER:
796                         msg_print("¸ý¤ÎÃ椬¤µ¤Ã¤Ñ¤ê¤·¤¿¡£");
797                         msg_print("¤Î¤É¤Î³é¤­¤¬¾¯¤·¤ª¤µ¤Þ¤Ã¤¿¡£");
798                         ident = TRUE;
799                         break;
800
801                 case SV_POTION_APPLE_JUICE:
802                         msg_print("´Å¤¯¤Æ¥µ¥Ã¥Ñ¥ê¤È¤·¤Æ¤¤¤Æ¡¢¤È¤Æ¤â¤ª¤¤¤·¤¤¡£");
803                         msg_print("¤Î¤É¤Î³é¤­¤¬¾¯¤·¤ª¤µ¤Þ¤Ã¤¿¡£");
804                         ident = TRUE;
805                         break;
806
807                 case SV_POTION_SLIME_MOLD:
808                         msg_print("¤Ê¤ó¤È¤âÉÔµ¤Ì£¤ÊÌ£¤À¡£");
809                         msg_print("¤Î¤É¤Î³é¤­¤¬¾¯¤·¤ª¤µ¤Þ¤Ã¤¿¡£");
810                         ident = TRUE;
811                         break;
812
813 #else
814                 case SV_POTION_WATER:
815                 case SV_POTION_APPLE_JUICE:
816                 case SV_POTION_SLIME_MOLD:
817                         msg_print("You feel less thirsty.");
818                         ident = TRUE;
819                         break;
820 #endif
821
822                 case SV_POTION_SLOWNESS:
823                         if (set_slow(randint1(25) + 15, FALSE)) ident = TRUE;
824                         break;
825
826                 case SV_POTION_SALT_WATER:
827 #ifdef JP
828                         msg_print("¤¦¤§¡ª»×¤ï¤ºÅǤ¤¤Æ¤·¤Þ¤Ã¤¿¡£");
829 #else
830                         msg_print("The potion makes you vomit!");
831 #endif
832
833                         if (!(prace_is_(RACE_GOLEM) ||
834                               prace_is_(RACE_ZOMBIE) ||
835                               prace_is_(RACE_DEMON) ||
836                               prace_is_(RACE_ANDROID) ||
837                               prace_is_(RACE_SPECTRE) ||
838                               (mimic_info[p_ptr->mimic_form].MIMIC_FLAGS & MIMIC_IS_NONLIVING)))
839                         {
840                                 /* Only living creatures get thirsty */
841                                 (void)set_food(PY_FOOD_STARVE - 1);
842                         }
843
844                         (void)set_poisoned(0);
845                         (void)set_paralyzed(p_ptr->paralyzed + 4);
846                         ident = TRUE;
847                         break;
848
849                 case SV_POTION_POISON:
850                         if (!(p_ptr->resist_pois || IS_OPPOSE_POIS()))
851                         {
852                                 if (set_poisoned(p_ptr->poisoned + randint0(15) + 10))
853                                 {
854                                         ident = TRUE;
855                                 }
856                         }
857                         break;
858
859                 case SV_POTION_BLINDNESS:
860                         if (!p_ptr->resist_blind)
861                         {
862                                 if (set_blind(p_ptr->blind + randint0(100) + 100))
863                                 {
864                                         ident = TRUE;
865                                 }
866                         }
867                         break;
868
869                 case SV_POTION_CONFUSION: /* Booze */
870                         if (p_ptr->pclass != CLASS_MONK) chg_virtue(V_HARMONY, -1);
871                         else if (!p_ptr->resist_conf) p_ptr->special_attack |= ATTACK_SUIKEN;
872                         if (!p_ptr->resist_conf)
873                         {
874                                 if (set_confused(randint0(20) + 15))
875                                 {
876                                         ident = TRUE;
877                                 }
878                         }
879
880                         if (!p_ptr->resist_chaos)
881                         {
882                                 if (one_in_(2))
883                                 {
884                                         if (set_image(p_ptr->image + randint0(150) + 150))
885                                         {
886                                                 ident = TRUE;
887                                         }
888                                 }
889                                 if (one_in_(13) && (p_ptr->pclass != CLASS_MONK))
890                                 {
891                                         ident = TRUE;
892                                         if (one_in_(3)) lose_all_info();
893                                         else wiz_dark();
894                                         (void)teleport_player_aux(100, TELEPORT_NONMAGICAL | TELEPORT_PASSIVE);
895                                         wiz_dark();
896 #ifdef JP
897                                         msg_print("ÃΤé¤Ê¤¤¾ì½ê¤ÇÌܤ¬Àä᤿¡£Æ¬Äˤ¬¤¹¤ë¡£");
898                                         msg_print("²¿¤â»×¤¤½Ð¤»¤Ê¤¤¡£¤É¤¦¤ä¤Ã¤Æ¤³¤³¤ØÍ褿¤Î¤«¤âʬ¤«¤é¤Ê¤¤¡ª");
899 #else
900                                         msg_print("You wake up somewhere with a sore head...");
901                                         msg_print("You can't remember a thing, or how you got here!");
902 #endif
903
904                                 }
905                         }
906                         break;
907
908                 case SV_POTION_SLEEP:
909                         if (!p_ptr->free_act)
910                         {
911 #ifdef JP
912                 msg_print("¤¢¤Ê¤¿¤Ï̲¤Ã¤Æ¤·¤Þ¤Ã¤¿¡£");
913 #else
914                 msg_print("You fall asleep.");
915 #endif
916
917
918                                 if (ironman_nightmare)
919                                 {
920 #ifdef JP
921 msg_print("¶²¤í¤·¤¤¸÷·Ê¤¬Æ¬¤ËÉ⤫¤ó¤Ç¤­¤¿¡£");
922 #else
923                                         msg_print("A horrible vision enters your mind.");
924 #endif
925
926
927                                         /* Pick a nightmare */
928                                         get_mon_num_prep(get_nightmare, NULL);
929
930                                         /* Have some nightmares */
931                                         have_nightmare(get_mon_num(MAX_DEPTH));
932
933                                         /* Remove the monster restriction */
934                                         get_mon_num_prep(NULL, NULL);
935                                 }
936                                 if (set_paralyzed(p_ptr->paralyzed + randint0(4) + 4))
937                                 {
938                                         ident = TRUE;
939                                 }
940                         }
941                         break;
942
943                 case SV_POTION_LOSE_MEMORIES:
944                         if (!p_ptr->hold_life && (p_ptr->exp > 0))
945                         {
946 #ifdef JP
947                                 msg_print("²áµî¤Îµ­²±¤¬Çö¤ì¤Æ¤¤¤¯µ¤¤¬¤¹¤ë¡£");
948 #else
949                                 msg_print("You feel your memories fade.");
950 #endif
951                                 chg_virtue(V_KNOWLEDGE, -5);
952
953                                 lose_exp(p_ptr->exp / 4);
954                                 ident = TRUE;
955                         }
956                         break;
957
958                 case SV_POTION_RUINATION:
959 #ifdef JP
960                         msg_print("¿È¤â¿´¤â¼å¤Ã¤Æ¤­¤Æ¡¢Àºµ¤¤¬È´¤±¤Æ¤¤¤¯¤è¤¦¤À¡£");
961                         take_hit(DAMAGE_LOSELIFE, damroll(10, 10), "ÇËÌǤÎÌô", -1);
962 #else
963                         msg_print("Your nerves and muscles feel weak and lifeless!");
964                         take_hit(DAMAGE_LOSELIFE, damroll(10, 10), "a potion of Ruination", -1);
965 #endif
966
967                         (void)dec_stat(A_DEX, 25, TRUE);
968                         (void)dec_stat(A_WIS, 25, TRUE);
969                         (void)dec_stat(A_CON, 25, TRUE);
970                         (void)dec_stat(A_STR, 25, TRUE);
971                         (void)dec_stat(A_CHR, 25, TRUE);
972                         (void)dec_stat(A_INT, 25, TRUE);
973                         ident = TRUE;
974                         break;
975
976                 case SV_POTION_DEC_STR:
977                         if (do_dec_stat(A_STR)) ident = TRUE;
978                         break;
979
980                 case SV_POTION_DEC_INT:
981                         if (do_dec_stat(A_INT)) ident = TRUE;
982                         break;
983
984                 case SV_POTION_DEC_WIS:
985                         if (do_dec_stat(A_WIS)) ident = TRUE;
986                         break;
987
988                 case SV_POTION_DEC_DEX:
989                         if (do_dec_stat(A_DEX)) ident = TRUE;
990                         break;
991
992                 case SV_POTION_DEC_CON:
993                         if (do_dec_stat(A_CON)) ident = TRUE;
994                         break;
995
996                 case SV_POTION_DEC_CHR:
997                         if (do_dec_stat(A_CHR)) ident = TRUE;
998                         break;
999
1000                 case SV_POTION_DETONATIONS:
1001 #ifdef JP
1002                         msg_print("ÂΤÎÃæ¤Ç·ã¤·¤¤Çúȯ¤¬µ¯¤­¤¿¡ª");
1003                         take_hit(DAMAGE_NOESCAPE, damroll(50, 20), "Çúȯ¤ÎÌô", -1);
1004 #else
1005                         msg_print("Massive explosions rupture your body!");
1006                         take_hit(DAMAGE_NOESCAPE, damroll(50, 20), "a potion of Detonation", -1);
1007 #endif
1008
1009                         (void)set_stun(p_ptr->stun + 75);
1010                         (void)set_cut(p_ptr->cut + 5000);
1011                         ident = TRUE;
1012                         break;
1013
1014                 case SV_POTION_DEATH:
1015                         chg_virtue(V_VITALITY, -1);
1016                         chg_virtue(V_UNLIFE, 5);
1017 #ifdef JP
1018                         msg_print("»à¤Îͽ´¶¤¬ÂÎÃæ¤ò¶î¤±¤á¤°¤Ã¤¿¡£");
1019                         take_hit(DAMAGE_LOSELIFE, 5000, "»à¤ÎÌô", -1);
1020 #else
1021                         msg_print("A feeling of Death flows through your body.");
1022                         take_hit(DAMAGE_LOSELIFE, 5000, "a potion of Death", -1);
1023 #endif
1024
1025                         ident = TRUE;
1026                         break;
1027
1028                 case SV_POTION_INFRAVISION:
1029                         if (set_tim_infra(p_ptr->tim_infra + 100 + randint1(100), FALSE))
1030                         {
1031                                 ident = TRUE;
1032                         }
1033                         break;
1034
1035                 case SV_POTION_DETECT_INVIS:
1036                         if (set_tim_invis(p_ptr->tim_invis + 12 + randint1(12), FALSE))
1037                         {
1038                                 ident = TRUE;
1039                         }
1040                         break;
1041
1042                 case SV_POTION_SLOW_POISON:
1043                         if (set_poisoned(p_ptr->poisoned / 2)) ident = TRUE;
1044                         break;
1045
1046                 case SV_POTION_CURE_POISON:
1047                         if (set_poisoned(0)) ident = TRUE;
1048                         break;
1049
1050                 case SV_POTION_BOLDNESS:
1051                         if (set_afraid(0)) ident = TRUE;
1052                         break;
1053
1054                 case SV_POTION_SPEED:
1055                         if (!p_ptr->fast)
1056                         {
1057                                 if (set_fast(randint1(25) + 15, FALSE)) ident = TRUE;
1058                         }
1059                         else
1060                         {
1061                                 (void)set_fast(p_ptr->fast + 5, FALSE);
1062                         }
1063                         break;
1064
1065                 case SV_POTION_RESIST_HEAT:
1066                         if (set_oppose_fire(p_ptr->oppose_fire + randint1(10) + 10, FALSE))
1067                         {
1068                                 ident = TRUE;
1069                         }
1070                         break;
1071
1072                 case SV_POTION_RESIST_COLD:
1073                         if (set_oppose_cold(p_ptr->oppose_cold + randint1(10) + 10, FALSE))
1074                         {
1075                                 ident = TRUE;
1076                         }
1077                         break;
1078
1079                 case SV_POTION_HEROISM:
1080                         if (set_afraid(0)) ident = TRUE;
1081                         if (set_hero(p_ptr->hero + randint1(25) + 25, FALSE)) ident = TRUE;
1082                         if (hp_player(10)) ident = TRUE;
1083                         break;
1084
1085                 case SV_POTION_BESERK_STRENGTH:
1086                         if (set_afraid(0)) ident = TRUE;
1087                         if (set_shero(p_ptr->shero + randint1(25) + 25, FALSE)) ident = TRUE;
1088                         if (hp_player(30)) ident = TRUE;
1089                         break;
1090
1091                 case SV_POTION_CURE_LIGHT:
1092                         if (hp_player(damroll(2, 8))) ident = TRUE;
1093                         if (set_blind(0)) ident = TRUE;
1094                         if (set_cut(p_ptr->cut - 10)) ident = TRUE;
1095                         if (set_shero(0,TRUE)) ident = TRUE;
1096                         break;
1097
1098                 case SV_POTION_CURE_SERIOUS:
1099                         if (hp_player(damroll(4, 8))) ident = TRUE;
1100                         if (set_blind(0)) ident = TRUE;
1101                         if (set_confused(0)) ident = TRUE;
1102                         if (set_cut((p_ptr->cut / 2) - 50)) ident = TRUE;
1103                         if (set_shero(0,TRUE)) ident = TRUE;
1104                         break;
1105
1106                 case SV_POTION_CURE_CRITICAL:
1107                         if (hp_player(damroll(6, 8))) ident = TRUE;
1108                         if (set_blind(0)) ident = TRUE;
1109                         if (set_confused(0)) ident = TRUE;
1110                         if (set_poisoned(0)) ident = TRUE;
1111                         if (set_stun(0)) ident = TRUE;
1112                         if (set_cut(0)) ident = TRUE;
1113                         if (set_shero(0,TRUE)) ident = TRUE;
1114                         break;
1115
1116                 case SV_POTION_HEALING:
1117                         if (hp_player(300)) ident = TRUE;
1118                         if (set_blind(0)) ident = TRUE;
1119                         if (set_confused(0)) ident = TRUE;
1120                         if (set_poisoned(0)) ident = TRUE;
1121                         if (set_stun(0)) ident = TRUE;
1122                         if (set_cut(0)) ident = TRUE;
1123                         if (set_shero(0,TRUE)) ident = TRUE;
1124                         break;
1125
1126                 case SV_POTION_STAR_HEALING:
1127                         if (hp_player(1200)) ident = TRUE;
1128                         if (set_blind(0)) ident = TRUE;
1129                         if (set_confused(0)) ident = TRUE;
1130                         if (set_poisoned(0)) ident = TRUE;
1131                         if (set_stun(0)) ident = TRUE;
1132                         if (set_cut(0)) ident = TRUE;
1133                         if (set_shero(0,TRUE)) ident = TRUE;
1134                         break;
1135
1136                 case SV_POTION_LIFE:
1137                         chg_virtue(V_VITALITY, 1);
1138                         chg_virtue(V_UNLIFE, -5);
1139 #ifdef JP
1140                         msg_print("ÂÎÃæ¤ËÀ¸Ì¿ÎϤ¬Ëþ¤Á¤¢¤Õ¤ì¤Æ¤­¤¿¡ª");
1141 #else
1142                         msg_print("You feel life flow through your body!");
1143 #endif
1144
1145                         restore_level();
1146                         (void)set_poisoned(0);
1147                         (void)set_blind(0);
1148                         (void)set_confused(0);
1149                         (void)set_image(0);
1150                         (void)set_stun(0);
1151                         (void)set_cut(0);
1152                         (void)do_res_stat(A_STR);
1153                         (void)do_res_stat(A_CON);
1154                         (void)do_res_stat(A_DEX);
1155                         (void)do_res_stat(A_WIS);
1156                         (void)do_res_stat(A_INT);
1157                         (void)do_res_stat(A_CHR);
1158                         (void)set_shero(0,TRUE);
1159                         update_stuff();
1160                         hp_player(5000);
1161                         ident = TRUE;
1162                         break;
1163
1164                 case SV_POTION_RESTORE_MANA:
1165                         if (p_ptr->pclass == CLASS_MAGIC_EATER)
1166                         {
1167                                 int i;
1168                                 for (i = 0; i < EATER_EXT*2; i++)
1169                                 {
1170                                         p_ptr->magic_num1[i] += (p_ptr->magic_num2[i] < 10) ? EATER_CHARGE * 3 : p_ptr->magic_num2[i]*EATER_CHARGE/3;
1171                                         if (p_ptr->magic_num1[i] > p_ptr->magic_num2[i]*EATER_CHARGE) p_ptr->magic_num1[i] = p_ptr->magic_num2[i]*EATER_CHARGE;
1172                                 }
1173                                 for (; i < EATER_EXT*3; i++)
1174                                 {
1175                                         int k_idx = lookup_kind(TV_ROD, i-EATER_EXT*2);
1176                                         p_ptr->magic_num1[i] -= ((p_ptr->magic_num2[i] < 10) ? EATER_ROD_CHARGE*3 : p_ptr->magic_num2[i]*EATER_ROD_CHARGE/3)*k_info[k_idx].pval;
1177                                         if (p_ptr->magic_num1[i] < 0) p_ptr->magic_num1[i] = 0;
1178                                 }
1179 #ifdef JP
1180                                 msg_print("Ƭ¤¬¥Ï¥Ã¥­¥ê¤È¤·¤¿¡£");
1181 #else
1182                                 msg_print("You feel your head clear.");
1183 #endif
1184                                 p_ptr->window |= (PW_PLAYER);
1185                                 ident = TRUE;
1186                         }
1187                         else if (p_ptr->csp < p_ptr->msp)
1188                         {
1189                                 p_ptr->csp = p_ptr->msp;
1190                                 p_ptr->csp_frac = 0;
1191 #ifdef JP
1192                                 msg_print("Ƭ¤¬¥Ï¥Ã¥­¥ê¤È¤·¤¿¡£");
1193 #else
1194                                 msg_print("You feel your head clear.");
1195 #endif
1196
1197                                 p_ptr->redraw |= (PR_MANA);
1198                                 p_ptr->window |= (PW_PLAYER);
1199                                 p_ptr->window |= (PW_SPELL);
1200                                 ident = TRUE;
1201                         }
1202                         if (set_shero(0,TRUE)) ident = TRUE;
1203                         break;
1204
1205                 case SV_POTION_RESTORE_EXP:
1206                         if (restore_level()) ident = TRUE;
1207                         break;
1208
1209                 case SV_POTION_RES_STR:
1210                         if (do_res_stat(A_STR)) ident = TRUE;
1211                         break;
1212
1213                 case SV_POTION_RES_INT:
1214                         if (do_res_stat(A_INT)) ident = TRUE;
1215                         break;
1216
1217                 case SV_POTION_RES_WIS:
1218                         if (do_res_stat(A_WIS)) ident = TRUE;
1219                         break;
1220
1221                 case SV_POTION_RES_DEX:
1222                         if (do_res_stat(A_DEX)) ident = TRUE;
1223                         break;
1224
1225                 case SV_POTION_RES_CON:
1226                         if (do_res_stat(A_CON)) ident = TRUE;
1227                         break;
1228
1229                 case SV_POTION_RES_CHR:
1230                         if (do_res_stat(A_CHR)) ident = TRUE;
1231                         break;
1232
1233                 case SV_POTION_INC_STR:
1234                         if (do_inc_stat(A_STR)) ident = TRUE;
1235                         break;
1236
1237                 case SV_POTION_INC_INT:
1238                         if (do_inc_stat(A_INT)) ident = TRUE;
1239                         break;
1240
1241                 case SV_POTION_INC_WIS:
1242                         if (do_inc_stat(A_WIS)) ident = TRUE;
1243                         break;
1244
1245                 case SV_POTION_INC_DEX:
1246                         if (do_inc_stat(A_DEX)) ident = TRUE;
1247                         break;
1248
1249                 case SV_POTION_INC_CON:
1250                         if (do_inc_stat(A_CON)) ident = TRUE;
1251                         break;
1252
1253                 case SV_POTION_INC_CHR:
1254                         if (do_inc_stat(A_CHR)) ident = TRUE;
1255                         break;
1256
1257                 case SV_POTION_AUGMENTATION:
1258                         if (do_inc_stat(A_STR)) ident = TRUE;
1259                         if (do_inc_stat(A_INT)) ident = TRUE;
1260                         if (do_inc_stat(A_WIS)) ident = TRUE;
1261                         if (do_inc_stat(A_DEX)) ident = TRUE;
1262                         if (do_inc_stat(A_CON)) ident = TRUE;
1263                         if (do_inc_stat(A_CHR)) ident = TRUE;
1264                         break;
1265
1266                 case SV_POTION_ENLIGHTENMENT:
1267 #ifdef JP
1268                         msg_print("¼«Ê¬¤ÎÃÖ¤«¤ì¤Æ¤¤¤ë¾õ¶·¤¬Ç¾Î¢¤ËÉ⤫¤ó¤Ç¤­¤¿...");
1269 #else
1270                         msg_print("An image of your surroundings forms in your mind...");
1271 #endif
1272
1273                         chg_virtue(V_KNOWLEDGE, 1);
1274                         chg_virtue(V_ENLIGHTEN, 1);
1275                         wiz_lite(FALSE);
1276                         ident = TRUE;
1277                         break;
1278
1279                 case SV_POTION_STAR_ENLIGHTENMENT:
1280 #ifdef JP
1281                         msg_print("¹¹¤Ê¤ë·¼Ìؤò´¶¤¸¤¿...");
1282 #else
1283                         msg_print("You begin to feel more enlightened...");
1284 #endif
1285
1286                         chg_virtue(V_KNOWLEDGE, 1);
1287                         chg_virtue(V_ENLIGHTEN, 2);
1288                         msg_print(NULL);
1289                         wiz_lite(FALSE);
1290                         (void)do_inc_stat(A_INT);
1291                         (void)do_inc_stat(A_WIS);
1292                         (void)detect_traps(DETECT_RAD_DEFAULT, TRUE);
1293                         (void)detect_doors(DETECT_RAD_DEFAULT);
1294                         (void)detect_stairs(DETECT_RAD_DEFAULT);
1295                         (void)detect_treasure(DETECT_RAD_DEFAULT);
1296                         (void)detect_objects_gold(DETECT_RAD_DEFAULT);
1297                         (void)detect_objects_normal(DETECT_RAD_DEFAULT);
1298                         identify_pack();
1299                         self_knowledge();
1300                         ident = TRUE;
1301                         break;
1302
1303                 case SV_POTION_SELF_KNOWLEDGE:
1304 #ifdef JP
1305                         msg_print("¼«Ê¬¼«¿È¤Î¤³¤È¤¬¾¯¤·¤Ïʬ¤«¤Ã¤¿µ¤¤¬¤¹¤ë...");
1306 #else
1307                         msg_print("You begin to know yourself a little better...");
1308 #endif
1309
1310                         msg_print(NULL);
1311                         self_knowledge();
1312                         ident = TRUE;
1313                         break;
1314
1315                 case SV_POTION_EXPERIENCE:
1316                         if (p_ptr->prace == RACE_ANDROID) break;
1317                         chg_virtue(V_ENLIGHTEN, 1);
1318                         if (p_ptr->exp < PY_MAX_EXP)
1319                         {
1320                                 s32b ee = (p_ptr->exp / 2) + 10;
1321                                 if (ee > 100000L) ee = 100000L;
1322 #ifdef JP
1323                                 msg_print("¹¹¤Ë·Ð¸³¤òÀѤó¤À¤è¤¦¤Êµ¤¤¬¤¹¤ë¡£");
1324 #else
1325                                 msg_print("You feel more experienced.");
1326 #endif
1327
1328                                 gain_exp(ee);
1329                                 ident = TRUE;
1330                         }
1331                         break;
1332
1333                 case SV_POTION_RESISTANCE:
1334                         (void)set_oppose_acid(p_ptr->oppose_acid + randint1(20) + 20, FALSE);
1335                         (void)set_oppose_elec(p_ptr->oppose_elec + randint1(20) + 20, FALSE);
1336                         (void)set_oppose_fire(p_ptr->oppose_fire + randint1(20) + 20, FALSE);
1337                         (void)set_oppose_cold(p_ptr->oppose_cold + randint1(20) + 20, FALSE);
1338                         (void)set_oppose_pois(p_ptr->oppose_pois + randint1(20) + 20, FALSE);
1339                         ident = TRUE;
1340                         break;
1341
1342                 case SV_POTION_CURING:
1343                         if (hp_player(50)) ident = TRUE;
1344                         if (set_blind(0)) ident = TRUE;
1345                         if (set_poisoned(0)) ident = TRUE;
1346                         if (set_confused(0)) ident = TRUE;
1347                         if (set_stun(0)) ident = TRUE;
1348                         if (set_cut(0)) ident = TRUE;
1349                         if (set_image(0)) ident = TRUE;
1350                         break;
1351
1352                 case SV_POTION_INVULNERABILITY:
1353                         (void)set_invuln(p_ptr->invuln + randint1(4) + 4, FALSE);
1354                         ident = TRUE;
1355                         break;
1356
1357                 case SV_POTION_NEW_LIFE:
1358                         do_cmd_rerate(FALSE);
1359                         get_max_stats();
1360                         p_ptr->update |= PU_BONUS;
1361                         if (p_ptr->muta1 || p_ptr->muta2 || p_ptr->muta3)
1362                         {
1363                                 chg_virtue(V_CHANCE, -5);
1364 #ifdef JP
1365 msg_print("Á´¤Æ¤ÎÆÍÁ³ÊÑ°Û¤¬¼£¤Ã¤¿¡£");
1366 #else
1367                                 msg_print("You are cured of all mutations.");
1368 #endif
1369
1370                                 p_ptr->muta1 = p_ptr->muta2 = p_ptr->muta3 = 0;
1371                                 p_ptr->update |= PU_BONUS;
1372                                 handle_stuff();
1373                                 mutant_regenerate_mod = calc_mutant_regenerate_mod();
1374                         }
1375                         ident = TRUE;
1376                         break;
1377
1378                 case SV_POTION_NEO_TSUYOSHI:
1379                         (void)set_image(0);
1380                         (void)set_tsuyoshi(p_ptr->tsuyoshi + randint1(100) + 100, FALSE);
1381                         ident = TRUE;
1382                         break;
1383
1384                 case SV_POTION_TSUYOSHI:
1385 #ifdef JP
1386 msg_print("¡Ö¥ª¥¯¥ì·»¤µ¤ó¡ª¡×");
1387 #else
1388                         msg_print("Brother OKURE!");
1389 #endif
1390                         msg_print(NULL);
1391                         p_ptr->tsuyoshi = 1;
1392                         (void)set_tsuyoshi(0, TRUE);
1393                         if (!p_ptr->resist_chaos)
1394                         {
1395                                 (void)set_image(50 + randint1(50));
1396                         }
1397                         ident = TRUE;
1398                         break;
1399                 
1400                 case SV_POTION_POLYMORPH:
1401                         if ((p_ptr->muta1 || p_ptr->muta2 || p_ptr->muta3) && one_in_(23))
1402                         {
1403                                 chg_virtue(V_CHANCE, -5);
1404 #ifdef JP
1405 msg_print("Á´¤Æ¤ÎÆÍÁ³ÊÑ°Û¤¬¼£¤Ã¤¿¡£");
1406 #else
1407                                 msg_print("You are cured of all mutations.");
1408 #endif
1409
1410                                 p_ptr->muta1 = p_ptr->muta2 = p_ptr->muta3 = 0;
1411                                 p_ptr->update |= PU_BONUS;
1412                                 handle_stuff();
1413                         }
1414                         else
1415                         {
1416                                 do
1417                                 {
1418                                         if (one_in_(2))
1419                                         {
1420                                                 if(gain_random_mutation(0)) ident = TRUE;
1421                                         }
1422                                         else if (lose_mutation(0)) ident = TRUE;
1423                                 } while(!ident || one_in_(2));
1424                         }
1425                         break;
1426                 }
1427         }
1428
1429         if (prace_is_(RACE_SKELETON))
1430         {
1431 #ifdef JP
1432 msg_print("±ÕÂΤΰìÉô¤Ï¤¢¤Ê¤¿¤Î¥¢¥´¤òÁÇÄ̤ꤷ¤ÆÍî¤Á¤¿¡ª");
1433 #else
1434                 msg_print("Some of the fluid falls through your jaws!");
1435 #endif
1436
1437                 (void)potion_smash_effect(0, py, px, q_ptr->k_idx);
1438         }
1439
1440         /* Combine / Reorder the pack (later) */
1441         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
1442
1443         if (!(object_is_aware(q_ptr)))
1444         {
1445                 chg_virtue(V_PATIENCE, -1);
1446                 chg_virtue(V_CHANCE, 1);
1447                 chg_virtue(V_KNOWLEDGE, -1);
1448         }
1449
1450         /* The item has been tried */
1451         object_tried(q_ptr);
1452
1453         /* An identification was made */
1454         if (ident && !object_is_aware(q_ptr))
1455         {
1456                 object_aware(q_ptr);
1457                 gain_exp((lev + (p_ptr->lev >> 1)) / p_ptr->lev);
1458         }
1459
1460         /* Window stuff */
1461         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
1462
1463         /* Potions can feed the player */
1464         switch (p_ptr->mimic_form)
1465         {
1466         case MIMIC_NONE:
1467                 switch (p_ptr->prace)
1468                 {
1469                         case RACE_VAMPIRE:
1470                                 (void)set_food(p_ptr->food + (q_ptr->pval / 10));
1471                                 break;
1472                         case RACE_SKELETON:
1473                                 /* Do nothing */
1474                                 break;
1475                         case RACE_GOLEM:
1476                         case RACE_ZOMBIE:
1477                         case RACE_DEMON:
1478                         case RACE_SPECTRE:
1479                                 set_food(p_ptr->food + ((q_ptr->pval) / 20));
1480                                 break;
1481                         case RACE_ANDROID:
1482                                 if (q_ptr->tval == TV_FLASK)
1483                                 {
1484 #ifdef JP
1485                                         msg_print("¥ª¥¤¥ë¤òÊäµë¤·¤¿¡£");
1486 #else
1487                                         msg_print("You replenish yourself with the oil.");
1488 #endif
1489                                         set_food(p_ptr->food + 5000);
1490                                 }
1491                                 else
1492                                 {
1493                                         set_food(p_ptr->food + ((q_ptr->pval) / 20));
1494                                 }
1495                                 break;
1496                         case RACE_ENT:
1497 #ifdef JP
1498                                 msg_print("¿åʬ¤ò¼è¤ê¹þ¤ó¤À¡£");
1499 #else
1500                                 msg_print("You are moistened.");
1501 #endif
1502                                 set_food(MIN(p_ptr->food + q_ptr->pval + MAX(0, q_ptr->pval * 10) + 2000, PY_FOOD_MAX - 1));
1503                                 break;
1504                         default:
1505                                 (void)set_food(p_ptr->food + q_ptr->pval);
1506                                 break;
1507                 }
1508                 break;
1509         case MIMIC_DEMON:
1510         case MIMIC_DEMON_LORD:
1511                 set_food(p_ptr->food + ((q_ptr->pval) / 20));
1512                 break;
1513         case MIMIC_VAMPIRE:
1514                 (void)set_food(p_ptr->food + (q_ptr->pval / 10));
1515                 break;
1516         default:
1517                 (void)set_food(p_ptr->food + q_ptr->pval);
1518                 break;
1519         }
1520 }
1521
1522
1523 /*
1524  * Hook to determine if an object can be quaffed
1525  */
1526 static bool item_tester_hook_quaff(object_type *o_ptr)
1527 {
1528         if (o_ptr->tval == TV_POTION) return TRUE;
1529
1530         if (prace_is_(RACE_ANDROID))
1531         {
1532                 if (o_ptr->tval == TV_FLASK && o_ptr->sval == SV_FLASK_OIL)
1533                         return TRUE;
1534         }
1535
1536         return FALSE;
1537 }
1538
1539
1540 /*
1541  * Quaff some potion (from the pack or floor)
1542  */
1543 void do_cmd_quaff_potion(void)
1544 {
1545         int  item;
1546         cptr q, s;
1547
1548         if (p_ptr->special_defense & (KATA_MUSOU | KATA_KOUKIJIN))
1549         {
1550                 set_action(ACTION_NONE);
1551         }
1552
1553         /* Restrict choices to potions */
1554         item_tester_hook = item_tester_hook_quaff;
1555
1556         /* Get an item */
1557 #ifdef JP
1558         q = "¤É¤ÎÌô¤ò°û¤ß¤Þ¤¹¤«? ";
1559         s = "°û¤á¤ëÌô¤¬¤Ê¤¤¡£";
1560 #else
1561         q = "Quaff which potion? ";
1562         s = "You have no potions to quaff.";
1563 #endif
1564
1565         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return;
1566
1567         /* Quaff the potion */
1568         do_cmd_quaff_potion_aux(item);
1569 }
1570
1571
1572 /*
1573  * Read a scroll (from the pack or floor).
1574  *
1575  * Certain scrolls can be "aborted" without losing the scroll.  These
1576  * include scrolls with no effects but recharge or identify, which are
1577  * cancelled before use.  XXX Reading them still takes a turn, though.
1578  */
1579 static void do_cmd_read_scroll_aux(int item, bool known)
1580 {
1581         int         k, used_up, ident, lev;
1582         object_type *o_ptr;
1583         char        Rumor[1024];
1584
1585
1586         /* Get the item (in the pack) */
1587         if (item >= 0)
1588         {
1589                 o_ptr = &inventory[item];
1590         }
1591
1592         /* Get the item (on the floor) */
1593         else
1594         {
1595                 o_ptr = &o_list[0 - item];
1596         }
1597
1598
1599         /* Take a turn */
1600         energy_use = 100;
1601
1602         if (world_player)
1603         {
1604                 if (flush_failure) flush();
1605 #ifdef JP
1606                 msg_print("»ß¤Þ¤Ã¤¿»þ¤ÎÃæ¤Ç¤Ï¤¦¤Þ¤¯Æ¯¤«¤Ê¤¤¤è¤¦¤À¡£");
1607 #else
1608                 msg_print("Nothing happen.");
1609 #endif
1610
1611                 sound(SOUND_FAIL);
1612                 return;
1613         }
1614
1615         if (p_ptr->pclass == CLASS_BERSERKER)
1616         {
1617 #ifdef JP
1618                 msg_print("´¬Êª¤Ê¤ó¤ÆÆɤá¤Ê¤¤¡£");
1619 #else
1620                 msg_print("You cannot read.");
1621 #endif
1622                 return;
1623         }
1624
1625         if (music_singing_any()) stop_singing();
1626
1627         /* Hex */
1628         if (hex_spelling_any() && ((p_ptr->lev < 35) || hex_spell_fully())) stop_hex_spell_all();
1629
1630         /* Not identified yet */
1631         ident = FALSE;
1632
1633         /* Object level */
1634         lev = k_info[o_ptr->k_idx].level;
1635
1636         /* Assume the scroll will get used up */
1637         used_up = TRUE;
1638
1639         if (o_ptr->tval == TV_SCROLL)
1640         {
1641         /* Analyze the scroll */
1642         switch (o_ptr->sval)
1643         {
1644                 case SV_SCROLL_DARKNESS:
1645                 {
1646                         if (!(p_ptr->resist_blind) && !(p_ptr->resist_dark))
1647                         {
1648                                 (void)set_blind(p_ptr->blind + 3 + randint1(5));
1649                         }
1650                         if (unlite_area(10, 3)) ident = TRUE;
1651                         break;
1652                 }
1653
1654                 case SV_SCROLL_AGGRAVATE_MONSTER:
1655                 {
1656 #ifdef JP
1657                         msg_print("¥«¥ó¹â¤¯¤¦¤Ê¤ëÍͤʲ»¤¬ÊÕ¤ê¤òʤ¤Ã¤¿¡£");
1658 #else
1659                         msg_print("There is a high pitched humming noise.");
1660 #endif
1661
1662                         aggravate_monsters(0);
1663                         ident = TRUE;
1664                         break;
1665                 }
1666
1667                 case SV_SCROLL_CURSE_ARMOR:
1668                 {
1669                         if (curse_armor()) ident = TRUE;
1670                         break;
1671                 }
1672
1673                 case SV_SCROLL_CURSE_WEAPON:
1674                 {
1675                         k = 0;
1676                         if (buki_motteruka(INVEN_RARM))
1677                         {
1678                                 k = INVEN_RARM;
1679                                 if (buki_motteruka(INVEN_LARM) && one_in_(2)) k = INVEN_LARM;
1680                         }
1681                         else if (buki_motteruka(INVEN_LARM)) k = INVEN_LARM;
1682                         if (k && curse_weapon(FALSE, k)) ident = TRUE;
1683                         break;
1684                 }
1685
1686                 case SV_SCROLL_SUMMON_MONSTER:
1687                 {
1688                         for (k = 0; k < randint1(3); k++)
1689                         {
1690                                 if (summon_specific(0, py, px, dun_level, 0, (PM_ALLOW_GROUP | PM_ALLOW_UNIQUE | PM_NO_PET)))
1691                                 {
1692                                         ident = TRUE;
1693                                 }
1694                         }
1695                         break;
1696                 }
1697
1698                 case SV_SCROLL_SUMMON_UNDEAD:
1699                 {
1700                         for (k = 0; k < randint1(3); k++)
1701                         {
1702                                 if (summon_specific(0, py, px, dun_level, SUMMON_UNDEAD, (PM_ALLOW_GROUP | PM_ALLOW_UNIQUE | PM_NO_PET)))
1703                                 {
1704                                         ident = TRUE;
1705                                 }
1706                         }
1707                         break;
1708                 }
1709
1710                 case SV_SCROLL_SUMMON_PET:
1711                 {
1712                         if (summon_specific(-1, py, px, dun_level, 0, (PM_ALLOW_GROUP | PM_FORCE_PET)))
1713                         {
1714                                 ident = TRUE;
1715                         }
1716                         break;
1717                 }
1718
1719                 case SV_SCROLL_SUMMON_KIN:
1720                 {
1721                         if (summon_kin_player(p_ptr->lev, py, px, (PM_FORCE_PET | PM_ALLOW_GROUP)))
1722                         {
1723                                 ident = TRUE;
1724                         }
1725                         break;
1726                 }
1727
1728                 case SV_SCROLL_TRAP_CREATION:
1729                 {
1730                         if (trap_creation(py, px)) ident = TRUE;
1731                         break;
1732                 }
1733
1734                 case SV_SCROLL_PHASE_DOOR:
1735                 {
1736                         teleport_player(10, 0L);
1737                         ident = TRUE;
1738                         break;
1739                 }
1740
1741                 case SV_SCROLL_TELEPORT:
1742                 {
1743                         teleport_player(100, 0L);
1744                         ident = TRUE;
1745                         break;
1746                 }
1747
1748                 case SV_SCROLL_TELEPORT_LEVEL:
1749                 {
1750                         (void)teleport_level(0);
1751                         ident = TRUE;
1752                         break;
1753                 }
1754
1755                 case SV_SCROLL_WORD_OF_RECALL:
1756                 {
1757                         if (!word_of_recall()) used_up = FALSE;
1758                         ident = TRUE;
1759                         break;
1760                 }
1761
1762                 case SV_SCROLL_IDENTIFY:
1763                 {
1764                         if (!ident_spell(FALSE)) used_up = FALSE;
1765                         ident = TRUE;
1766                         break;
1767                 }
1768
1769                 case SV_SCROLL_STAR_IDENTIFY:
1770                 {
1771                         if (!identify_fully(FALSE)) used_up = FALSE;
1772                         ident = TRUE;
1773                         break;
1774                 }
1775
1776                 case SV_SCROLL_REMOVE_CURSE:
1777                 {
1778                         if (remove_curse())
1779                         {
1780 #ifdef JP
1781                                 msg_print("狼¤Ë¸«¼é¤é¤ì¤Æ¤¤¤ë¤è¤¦¤Êµ¤¤¬¤¹¤ë¡£");
1782 #else
1783                                 msg_print("You feel as if someone is watching over you.");
1784 #endif
1785
1786                                 ident = TRUE;
1787                         }
1788                         break;
1789                 }
1790
1791                 case SV_SCROLL_STAR_REMOVE_CURSE:
1792                 {
1793                         if (remove_all_curse())
1794                         {
1795 #ifdef JP
1796                                 msg_print("狼¤Ë¸«¼é¤é¤ì¤Æ¤¤¤ë¤è¤¦¤Êµ¤¤¬¤¹¤ë¡£");
1797 #else
1798                                 msg_print("You feel as if someone is watching over you.");
1799 #endif
1800                         }
1801                         ident = TRUE;
1802                         break;
1803                 }
1804
1805                 case SV_SCROLL_ENCHANT_ARMOR:
1806                 {
1807                         ident = TRUE;
1808                         if (!enchant_spell(0, 0, 1)) used_up = FALSE;
1809                         break;
1810                 }
1811
1812                 case SV_SCROLL_ENCHANT_WEAPON_TO_HIT:
1813                 {
1814                         if (!enchant_spell(1, 0, 0)) used_up = FALSE;
1815                         ident = TRUE;
1816                         break;
1817                 }
1818
1819                 case SV_SCROLL_ENCHANT_WEAPON_TO_DAM:
1820                 {
1821                         if (!enchant_spell(0, 1, 0)) used_up = FALSE;
1822                         ident = TRUE;
1823                         break;
1824                 }
1825
1826                 case SV_SCROLL_STAR_ENCHANT_ARMOR:
1827                 {
1828                         if (!enchant_spell(0, 0, randint1(3) + 2)) used_up = FALSE;
1829                         ident = TRUE;
1830                         break;
1831                 }
1832
1833                 case SV_SCROLL_STAR_ENCHANT_WEAPON:
1834                 {
1835                         if (!enchant_spell(randint1(3), randint1(3), 0)) used_up = FALSE;
1836                         ident = TRUE;
1837                         break;
1838                 }
1839
1840                 case SV_SCROLL_RECHARGING:
1841                 {
1842                         if (!recharge(130)) used_up = FALSE;
1843                         ident = TRUE;
1844                         break;
1845                 }
1846
1847                 case SV_SCROLL_MUNDANITY:
1848                 {
1849                         ident = TRUE;
1850                         if (!mundane_spell(FALSE)) used_up = FALSE;
1851                         break;
1852                 }
1853
1854                 case SV_SCROLL_LIGHT:
1855                 {
1856                         if (lite_area(damroll(2, 8), 2)) ident = TRUE;
1857                         break;
1858                 }
1859
1860                 case SV_SCROLL_MAPPING:
1861                 {
1862                         map_area(DETECT_RAD_MAP);
1863                         ident = TRUE;
1864                         break;
1865                 }
1866
1867                 case SV_SCROLL_DETECT_GOLD:
1868                 {
1869                         if (detect_treasure(DETECT_RAD_DEFAULT)) ident = TRUE;
1870                         if (detect_objects_gold(DETECT_RAD_DEFAULT)) ident = TRUE;
1871                         break;
1872                 }
1873
1874                 case SV_SCROLL_DETECT_ITEM:
1875                 {
1876                         if (detect_objects_normal(DETECT_RAD_DEFAULT)) ident = TRUE;
1877                         break;
1878                 }
1879
1880                 case SV_SCROLL_DETECT_TRAP:
1881                 {
1882                         if (detect_traps(DETECT_RAD_DEFAULT, known)) ident = TRUE;
1883                         break;
1884                 }
1885
1886                 case SV_SCROLL_DETECT_DOOR:
1887                 {
1888                         if (detect_doors(DETECT_RAD_DEFAULT)) ident = TRUE;
1889                         if (detect_stairs(DETECT_RAD_DEFAULT)) ident = TRUE;
1890                         break;
1891                 }
1892
1893                 case SV_SCROLL_DETECT_INVIS:
1894                 {
1895                         if (detect_monsters_invis(DETECT_RAD_DEFAULT)) ident = TRUE;
1896                         break;
1897                 }
1898
1899                 case SV_SCROLL_SATISFY_HUNGER:
1900                 {
1901                         if (set_food(PY_FOOD_MAX - 1)) ident = TRUE;
1902                         break;
1903                 }
1904
1905                 case SV_SCROLL_BLESSING:
1906                 {
1907                         if (set_blessed(p_ptr->blessed + randint1(12) + 6, FALSE)) ident = TRUE;
1908                         break;
1909                 }
1910
1911                 case SV_SCROLL_HOLY_CHANT:
1912                 {
1913                         if (set_blessed(p_ptr->blessed + randint1(24) + 12, FALSE)) ident = TRUE;
1914                         break;
1915                 }
1916
1917                 case SV_SCROLL_HOLY_PRAYER:
1918                 {
1919                         if (set_blessed(p_ptr->blessed + randint1(48) + 24, FALSE)) ident = TRUE;
1920                         break;
1921                 }
1922
1923                 case SV_SCROLL_MONSTER_CONFUSION:
1924                 {
1925                         if (!(p_ptr->special_attack & ATTACK_CONFUSE))
1926                         {
1927 #ifdef JP
1928                                 msg_print("¼ê¤¬µ±¤­»Ï¤á¤¿¡£");
1929 #else
1930                                 msg_print("Your hands begin to glow.");
1931 #endif
1932
1933                                 p_ptr->special_attack |= ATTACK_CONFUSE;
1934                                 p_ptr->redraw |= (PR_STATUS);
1935                                 ident = TRUE;
1936                         }
1937                         break;
1938                 }
1939
1940                 case SV_SCROLL_PROTECTION_FROM_EVIL:
1941                 {
1942                         k = 3 * p_ptr->lev;
1943                         if (set_protevil(p_ptr->protevil + randint1(25) + k, FALSE)) ident = TRUE;
1944                         break;
1945                 }
1946
1947                 case SV_SCROLL_RUNE_OF_PROTECTION:
1948                 {
1949                         warding_glyph();
1950                         ident = TRUE;
1951                         break;
1952                 }
1953
1954                 case SV_SCROLL_TRAP_DOOR_DESTRUCTION:
1955                 {
1956                         if (destroy_doors_touch()) ident = TRUE;
1957                         break;
1958                 }
1959
1960                 case SV_SCROLL_STAR_DESTRUCTION:
1961                 {
1962                         if (destroy_area(py, px, 13 + randint0(5), FALSE))
1963                                 ident = TRUE;
1964                         else
1965 #ifdef JP
1966 msg_print("¥À¥ó¥¸¥ç¥ó¤¬Íɤ줿...");
1967 #else
1968                                 msg_print("The dungeon trembles...");
1969 #endif
1970
1971
1972                         break;
1973                 }
1974
1975                 case SV_SCROLL_DISPEL_UNDEAD:
1976                 {
1977                         if (dispel_undead(80)) ident = TRUE;
1978                         break;
1979                 }
1980
1981                 case SV_SCROLL_SPELL:
1982                 {
1983                         if ((p_ptr->pclass == CLASS_WARRIOR) ||
1984                                 (p_ptr->pclass == CLASS_IMITATOR) ||
1985                                 (p_ptr->pclass == CLASS_MINDCRAFTER) ||
1986                                 (p_ptr->pclass == CLASS_SORCERER) ||
1987                                 (p_ptr->pclass == CLASS_ARCHER) ||
1988                                 (p_ptr->pclass == CLASS_MAGIC_EATER) ||
1989                                 (p_ptr->pclass == CLASS_RED_MAGE) ||
1990                                 (p_ptr->pclass == CLASS_SAMURAI) ||
1991                                 (p_ptr->pclass == CLASS_BLUE_MAGE) ||
1992                                 (p_ptr->pclass == CLASS_CAVALRY) ||
1993                                 (p_ptr->pclass == CLASS_BERSERKER) ||
1994                                 (p_ptr->pclass == CLASS_SMITH) ||
1995                                 (p_ptr->pclass == CLASS_MIRROR_MASTER) ||
1996                                 (p_ptr->pclass == CLASS_NINJA) ||
1997                                 (p_ptr->pclass == CLASS_SNIPER)) break;
1998                         p_ptr->add_spells++;
1999                         p_ptr->update |= (PU_SPELLS);
2000                         ident = TRUE;
2001                         break;
2002                 }
2003
2004                 case SV_SCROLL_GENOCIDE:
2005                 {
2006                         (void)symbol_genocide(300, TRUE);
2007                         ident = TRUE;
2008                         break;
2009                 }
2010
2011                 case SV_SCROLL_MASS_GENOCIDE:
2012                 {
2013                         (void)mass_genocide(300, TRUE);
2014                         ident = TRUE;
2015                         break;
2016                 }
2017
2018                 case SV_SCROLL_ACQUIREMENT:
2019                 {
2020                         acquirement(py, px, 1, TRUE, FALSE);
2021                         ident = TRUE;
2022                         break;
2023                 }
2024
2025                 case SV_SCROLL_STAR_ACQUIREMENT:
2026                 {
2027                         acquirement(py, px, randint1(2) + 1, TRUE, FALSE);
2028                         ident = TRUE;
2029                         break;
2030                 }
2031
2032                 /* New Hengband scrolls */
2033                 case SV_SCROLL_FIRE:
2034                 {
2035                         fire_ball(GF_FIRE, 0, 666, 4);
2036                         /* Note: "Double" damage since it is centered on the player ... */
2037                         if (!(IS_OPPOSE_FIRE() || p_ptr->resist_fire || p_ptr->immune_fire))
2038 #ifdef JP
2039 take_hit(DAMAGE_NOESCAPE, 50+randint1(50), "±ê¤Î´¬Êª", -1);
2040 #else
2041                                 take_hit(DAMAGE_NOESCAPE, 50 + randint1(50), "a Scroll of Fire", -1);
2042 #endif
2043
2044                         ident = TRUE;
2045                         break;
2046                 }
2047
2048
2049                 case SV_SCROLL_ICE:
2050                 {
2051                         fire_ball(GF_ICE, 0, 777, 4);
2052                         if (!(IS_OPPOSE_COLD() || p_ptr->resist_cold || p_ptr->immune_cold))
2053 #ifdef JP
2054 take_hit(DAMAGE_NOESCAPE, 100+randint1(100), "ɹ¤Î´¬Êª", -1);
2055 #else
2056                                 take_hit(DAMAGE_NOESCAPE, 100 + randint1(100), "a Scroll of Ice", -1);
2057 #endif
2058
2059                         ident = TRUE;
2060                         break;
2061                 }
2062
2063                 case SV_SCROLL_CHAOS:
2064                 {
2065                         fire_ball(GF_CHAOS, 0, 1000, 4);
2066                         if (!p_ptr->resist_chaos)
2067 #ifdef JP
2068 take_hit(DAMAGE_NOESCAPE, 111+randint1(111), "¥í¥°¥ë¥¹¤Î´¬Êª", -1);
2069 #else
2070                                 take_hit(DAMAGE_NOESCAPE, 111 + randint1(111), "a Scroll of Logrus", -1);
2071 #endif
2072
2073                         ident = TRUE;
2074                         break;
2075                 }
2076
2077                 case SV_SCROLL_RUMOR:
2078                 {
2079 #ifdef JP
2080                         msg_print("´¬Êª¤Ë¤Ï¥á¥Ã¥»¡¼¥¸¤¬½ñ¤«¤ì¤Æ¤¤¤ë:");
2081 #else
2082                         msg_print("There is message on the scroll. It says:");
2083 #endif
2084
2085                         msg_print(NULL);
2086                         display_rumor(TRUE);
2087                         msg_print(NULL);
2088 #ifdef JP
2089                         msg_print("´¬Êª¤Ï±ì¤òΩ¤Æ¤Æ¾Ã¤¨µî¤Ã¤¿¡ª");
2090 #else
2091                         msg_print("The scroll disappears in a puff of smoke!");
2092 #endif
2093
2094                         ident = TRUE;
2095                         break;
2096                 }
2097
2098                 case SV_SCROLL_ARTIFACT:
2099                 {
2100                         ident = TRUE;
2101                         if (!artifact_scroll()) used_up = FALSE;
2102                         break;
2103                 }
2104
2105                 case SV_SCROLL_RESET_RECALL:
2106                 {
2107                         ident = TRUE;
2108                         if (!reset_recall()) used_up = FALSE;
2109                         break;
2110                 }
2111         }
2112         }
2113         else if (o_ptr->name1 == ART_GHB)
2114         {
2115 #ifdef JP
2116                 msg_print("»ä¤Ï¶ìÏ«¤·¤Æ¡Ø¥°¥ì¡¼¥¿¡¼¡¦¥Ø¥ë=¥Ó¡¼¥¹¥È¡Ù¤òÅݤ·¤¿¡£");
2117                 msg_print("¤·¤«¤·¼ê¤ËÆþ¤Ã¤¿¤Î¤Ï¤³¤Î¤­¤¿¤Ê¤¤£Ô¥·¥ã¥Ä¤À¤±¤À¤Ã¤¿¡£");
2118 #else
2119                 msg_print("I had a very hard time to kill the Greater hell-beast, ");
2120                 msg_print("but all I got was this lousy t-shirt!");
2121 #endif
2122                 used_up = FALSE;
2123         }
2124         else if (o_ptr->name1 == ART_POWER)
2125         {
2126 #ifdef JP
2127                 msg_print("¡Ö°ì¤Ä¤Î»ØÎؤÏÁ´¤Æ¤òÅý¤Ù¡¢");
2128                 msg_print(NULL);
2129                 msg_print("°ì¤Ä¤Î»ØÎؤÏÁ´¤Æ¤ò¸«¤Ä¤±¡¢");
2130                 msg_print(NULL);
2131                 msg_print("°ì¤Ä¤Î»ØÎؤÏÁ´¤Æ¤òÊá¤é¤¨¤Æ");
2132                 msg_print(NULL);
2133                 msg_print("°Å°Ç¤ÎÃæ¤Ë·Ò¤®¤È¤á¤ë¡£¡×");
2134 #else
2135                 msg_print("'One Ring to rule them all, ");
2136                 msg_print(NULL);
2137                 msg_print("One Ring to find them, ");
2138                 msg_print(NULL);
2139                 msg_print("One Ring to bring them all ");
2140                 msg_print(NULL);
2141                 msg_print("and in the darkness bind them.'");
2142 #endif
2143                 used_up = FALSE;
2144         }
2145         else if (o_ptr->tval==TV_PARCHMENT)
2146         {
2147                 cptr q;
2148                 char o_name[MAX_NLEN];
2149                 char buf[1024];
2150
2151                 /* Save screen */
2152                 screen_save();
2153
2154                 q=format("book-%d_jp.txt",o_ptr->sval);
2155
2156                 /* Display object description */
2157                 object_desc(o_name, o_ptr, OD_NAME_ONLY);
2158
2159                 /* Build the filename */
2160                 path_build(buf, sizeof(buf), ANGBAND_DIR_FILE, q);
2161
2162                 /* Peruse the help file */
2163                 (void)show_file(TRUE, buf, o_name, 0, 0);
2164
2165                 /* Load screen */
2166                 screen_load();
2167
2168                 used_up=FALSE;
2169         }
2170
2171
2172         /* Combine / Reorder the pack (later) */
2173         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
2174
2175         if (!(object_is_aware(o_ptr)))
2176         {
2177                 chg_virtue(V_PATIENCE, -1);
2178                 chg_virtue(V_CHANCE, 1);
2179                 chg_virtue(V_KNOWLEDGE, -1);
2180         }
2181
2182         /* The item was tried */
2183         object_tried(o_ptr);
2184
2185         /* An identification was made */
2186         if (ident && !object_is_aware(o_ptr))
2187         {
2188                 object_aware(o_ptr);
2189                 gain_exp((lev + (p_ptr->lev >> 1)) / p_ptr->lev);
2190         }
2191
2192         /* Window stuff */
2193         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
2194
2195
2196         /* Hack -- allow certain scrolls to be "preserved" */
2197         if (!used_up)
2198         {
2199                 return;
2200         }
2201
2202         sound(SOUND_SCROLL);
2203
2204         /* Destroy a scroll in the pack */
2205         if (item >= 0)
2206         {
2207                 inven_item_increase(item, -1);
2208                 inven_item_describe(item);
2209                 inven_item_optimize(item);
2210         }
2211
2212         /* Destroy a scroll on the floor */
2213         else
2214         {
2215                 floor_item_increase(0 - item, -1);
2216                 floor_item_describe(0 - item);
2217                 floor_item_optimize(0 - item);
2218         }
2219 }
2220
2221
2222 /*
2223  * Hook to determine if an object is readable
2224  */
2225 static bool item_tester_hook_readable(object_type *o_ptr)
2226 {
2227         if ((o_ptr->tval==TV_SCROLL) || (o_ptr->tval==TV_PARCHMENT) || (o_ptr->name1 == ART_GHB) || (o_ptr->name1 == ART_POWER)) return (TRUE);
2228
2229         /* Assume not */
2230         return (FALSE);
2231 }
2232
2233
2234 void do_cmd_read_scroll(void)
2235 {
2236         object_type *o_ptr;
2237         int  item;
2238         cptr q, s;
2239
2240         if (p_ptr->special_defense & (KATA_MUSOU | KATA_KOUKIJIN))
2241         {
2242                 set_action(ACTION_NONE);
2243         }
2244
2245         /* Check some conditions */
2246         if (p_ptr->blind)
2247         {
2248 #ifdef JP
2249                 msg_print("Ìܤ¬¸«¤¨¤Ê¤¤¡£");
2250 #else
2251                 msg_print("You can't see anything.");
2252 #endif
2253
2254                 return;
2255         }
2256         if (no_lite())
2257         {
2258 #ifdef JP
2259                 msg_print("ÌÀ¤«¤ê¤¬¤Ê¤¤¤Î¤Ç¡¢°Å¤¯¤ÆÆɤá¤Ê¤¤¡£");
2260 #else
2261                 msg_print("You have no light to read by.");
2262 #endif
2263
2264                 return;
2265         }
2266         if (p_ptr->confused)
2267         {
2268 #ifdef JP
2269                 msg_print("º®Í𤷤Ƥ¤¤ÆÆɤá¤Ê¤¤¡£");
2270 #else
2271                 msg_print("You are too confused!");
2272 #endif
2273
2274                 return;
2275         }
2276
2277
2278         /* Restrict choices to scrolls */
2279         item_tester_hook = item_tester_hook_readable;
2280
2281         /* Get an item */
2282 #ifdef JP
2283         q = "¤É¤Î´¬Êª¤òÆɤߤޤ¹¤«? ";
2284         s = "Æɤá¤ë´¬Êª¤¬¤Ê¤¤¡£";
2285 #else
2286         q = "Read which scroll? ";
2287         s = "You have no scrolls to read.";
2288 #endif
2289
2290         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return;
2291
2292         /* Get the item (in the pack) */
2293         if (item >= 0)
2294         {
2295                 o_ptr = &inventory[item];
2296         }
2297
2298         /* Get the item (on the floor) */
2299         else
2300         {
2301                 o_ptr = &o_list[0 - item];
2302         }
2303
2304         /* Read the scroll */
2305         do_cmd_read_scroll_aux(item, object_is_aware(o_ptr));
2306 }
2307
2308
2309 static int staff_effect(int sval, bool *use_charge, bool magic, bool known)
2310 {
2311         int k;
2312         int ident = FALSE;
2313
2314         /* Analyze the staff */
2315         switch (sval)
2316         {
2317                 case SV_STAFF_DARKNESS:
2318                 {
2319                         if (!(p_ptr->resist_blind) && !(p_ptr->resist_dark))
2320                         {
2321                                 if (set_blind(p_ptr->blind + 3 + randint1(5))) ident = TRUE;
2322                         }
2323                         if (unlite_area(10, 3)) ident = TRUE;
2324                         break;
2325                 }
2326
2327                 case SV_STAFF_SLOWNESS:
2328                 {
2329                         if (set_slow(p_ptr->slow + randint1(30) + 15, FALSE)) ident = TRUE;
2330                         break;
2331                 }
2332
2333                 case SV_STAFF_HASTE_MONSTERS:
2334                 {
2335                         if (speed_monsters()) ident = TRUE;
2336                         break;
2337                 }
2338
2339                 case SV_STAFF_SUMMONING:
2340                 {
2341                         for (k = 0; k < randint1(4); k++)
2342                         {
2343                                 if (summon_specific(0, py, px, dun_level, 0, (PM_ALLOW_GROUP | PM_ALLOW_UNIQUE | PM_NO_PET)))
2344                                 {
2345                                         ident = TRUE;
2346                                 }
2347                         }
2348                         break;
2349                 }
2350
2351                 case SV_STAFF_TELEPORTATION:
2352                 {
2353                         teleport_player(100, 0L);
2354                         ident = TRUE;
2355                         break;
2356                 }
2357
2358                 case SV_STAFF_IDENTIFY:
2359                 {
2360                         if (!ident_spell(FALSE)) *use_charge = FALSE;
2361                         ident = TRUE;
2362                         break;
2363                 }
2364
2365                 case SV_STAFF_REMOVE_CURSE:
2366                 {
2367                         if (remove_curse())
2368                         {
2369                                 if (magic)
2370                                 {
2371 #ifdef JP
2372                                         msg_print("狼¤Ë¸«¼é¤é¤ì¤Æ¤¤¤ë¤è¤¦¤Êµ¤¤¬¤¹¤ë¡£");
2373 #else
2374                                         msg_print("You feel as if someone is watching over you.");
2375 #endif
2376                                 }
2377                                 else if (!p_ptr->blind)
2378                                 {
2379 #ifdef JP
2380                                         msg_print("¾ó¤Ï°ì½Ö¥Ö¥ë¡¼¤Ëµ±¤¤¤¿...");
2381 #else
2382                                         msg_print("The staff glows blue for a moment...");
2383 #endif
2384
2385                                 }
2386                                 ident = TRUE;
2387                         }
2388                         break;
2389                 }
2390
2391                 case SV_STAFF_STARLITE:
2392                 {
2393                         int num = damroll(5, 3);
2394                         int y, x;
2395                         int attempts;
2396
2397                         if (!p_ptr->blind && !magic)
2398                         {
2399 #ifdef JP
2400                                 msg_print("¾ó¤ÎÀ褬ÌÀ¤ë¤¯µ±¤¤¤¿...");
2401 #else
2402                                 msg_print("The end of the staff glows brightly...");
2403 #endif
2404
2405                         }
2406                         for (k = 0; k < num; k++)
2407                         {
2408                                 attempts = 1000;
2409
2410                                 while (attempts--)
2411                                 {
2412                                         scatter(&y, &x, py, px, 4, 0);
2413
2414                                         if (!cave_have_flag_bold(y, x, FF_PROJECT)) continue;
2415
2416                                         if (!player_bold(y, x)) break;
2417                                 }
2418
2419                                 project(0, 0, y, x, damroll(6 + p_ptr->lev / 8, 10), GF_LITE_WEAK,
2420                                                   (PROJECT_BEAM | PROJECT_THRU | PROJECT_GRID | PROJECT_KILL), -1);
2421                         }
2422                         ident = TRUE;
2423                         break;
2424                 }
2425
2426                 case SV_STAFF_LITE:
2427                 {
2428                         if (lite_area(damroll(2, 8), 2)) ident = TRUE;
2429                         break;
2430                 }
2431
2432                 case SV_STAFF_MAPPING:
2433                 {
2434                         map_area(DETECT_RAD_MAP);
2435                         ident = TRUE;
2436                         break;
2437                 }
2438
2439                 case SV_STAFF_DETECT_GOLD:
2440                 {
2441                         if (detect_treasure(DETECT_RAD_DEFAULT)) ident = TRUE;
2442                         if (detect_objects_gold(DETECT_RAD_DEFAULT)) ident = TRUE;
2443                         break;
2444                 }
2445
2446                 case SV_STAFF_DETECT_ITEM:
2447                 {
2448                         if (detect_objects_normal(DETECT_RAD_DEFAULT)) ident = TRUE;
2449                         break;
2450                 }
2451
2452                 case SV_STAFF_DETECT_TRAP:
2453                 {
2454                         if (detect_traps(DETECT_RAD_DEFAULT, known)) ident = TRUE;
2455                         break;
2456                 }
2457
2458                 case SV_STAFF_DETECT_DOOR:
2459                 {
2460                         if (detect_doors(DETECT_RAD_DEFAULT)) ident = TRUE;
2461                         if (detect_stairs(DETECT_RAD_DEFAULT)) ident = TRUE;
2462                         break;
2463                 }
2464
2465                 case SV_STAFF_DETECT_INVIS:
2466                 {
2467                         if (detect_monsters_invis(DETECT_RAD_DEFAULT)) ident = TRUE;
2468                         break;
2469                 }
2470
2471                 case SV_STAFF_DETECT_EVIL:
2472                 {
2473                         if (detect_monsters_evil(DETECT_RAD_DEFAULT)) ident = TRUE;
2474                         break;
2475                 }
2476
2477                 case SV_STAFF_CURE_LIGHT:
2478                 {
2479                         if (hp_player(damroll(2, 8))) ident = TRUE;
2480                         if (set_shero(0,TRUE)) ident = TRUE;
2481                         break;
2482                 }
2483
2484                 case SV_STAFF_CURING:
2485                 {
2486                         if (set_blind(0)) ident = TRUE;
2487                         if (set_poisoned(0)) ident = TRUE;
2488                         if (set_confused(0)) ident = TRUE;
2489                         if (set_stun(0)) ident = TRUE;
2490                         if (set_cut(0)) ident = TRUE;
2491                         if (set_image(0)) ident = TRUE;
2492                         if (set_shero(0,TRUE)) ident = TRUE;
2493                         break;
2494                 }
2495
2496                 case SV_STAFF_HEALING:
2497                 {
2498                         if (hp_player(300)) ident = TRUE;
2499                         if (set_stun(0)) ident = TRUE;
2500                         if (set_cut(0)) ident = TRUE;
2501                         if (set_shero(0,TRUE)) ident = TRUE;
2502                         break;
2503                 }
2504
2505                 case SV_STAFF_THE_MAGI:
2506                 {
2507                         if (do_res_stat(A_INT)) ident = TRUE;
2508                         if (p_ptr->csp < p_ptr->msp)
2509                         {
2510                                 p_ptr->csp = p_ptr->msp;
2511                                 p_ptr->csp_frac = 0;
2512                                 ident = TRUE;
2513 #ifdef JP
2514                                 msg_print("Ƭ¤¬¥Ï¥Ã¥­¥ê¤È¤·¤¿¡£");
2515 #else
2516                                 msg_print("You feel your head clear.");
2517 #endif
2518
2519                                 p_ptr->redraw |= (PR_MANA);
2520                                 p_ptr->window |= (PW_PLAYER);
2521                                 p_ptr->window |= (PW_SPELL);
2522                         }
2523                         if (set_shero(0,TRUE)) ident = TRUE;
2524                         break;
2525                 }
2526
2527                 case SV_STAFF_SLEEP_MONSTERS:
2528                 {
2529                         if (sleep_monsters()) ident = TRUE;
2530                         break;
2531                 }
2532
2533                 case SV_STAFF_SLOW_MONSTERS:
2534                 {
2535                         if (slow_monsters()) ident = TRUE;
2536                         break;
2537                 }
2538
2539                 case SV_STAFF_SPEED:
2540                 {
2541                         if (set_fast(randint1(30) + 15, FALSE)) ident = TRUE;
2542                         break;
2543                 }
2544
2545                 case SV_STAFF_PROBING:
2546                 {
2547                         probing();
2548                         ident = TRUE;
2549                         break;
2550                 }
2551
2552                 case SV_STAFF_DISPEL_EVIL:
2553                 {
2554                         if (dispel_evil(80)) ident = TRUE;
2555                         break;
2556                 }
2557
2558                 case SV_STAFF_POWER:
2559                 {
2560                         if (dispel_monsters(150)) ident = TRUE;
2561                         break;
2562                 }
2563
2564                 case SV_STAFF_HOLINESS:
2565                 {
2566                         if (dispel_evil(150)) ident = TRUE;
2567                         k = 3 * p_ptr->lev;
2568                         if (set_protevil((magic ? 0 : p_ptr->protevil) + randint1(25) + k, FALSE)) ident = TRUE;
2569                         if (set_poisoned(0)) ident = TRUE;
2570                         if (set_afraid(0)) ident = TRUE;
2571                         if (hp_player(50)) ident = TRUE;
2572                         if (set_stun(0)) ident = TRUE;
2573                         if (set_cut(0)) ident = TRUE;
2574                         break;
2575                 }
2576
2577                 case SV_STAFF_GENOCIDE:
2578                 {
2579                         (void)symbol_genocide((magic ? p_ptr->lev + 50 : 200), TRUE);
2580                         ident = TRUE;
2581                         break;
2582                 }
2583
2584                 case SV_STAFF_EARTHQUAKES:
2585                 {
2586                         if (earthquake(py, px, 10))
2587                                 ident = TRUE;
2588                         else
2589 #ifdef JP
2590 msg_print("¥À¥ó¥¸¥ç¥ó¤¬Íɤ줿¡£");
2591 #else
2592                                 msg_print("The dungeon trembles.");
2593 #endif
2594
2595
2596                         break;
2597                 }
2598
2599                 case SV_STAFF_DESTRUCTION:
2600                 {
2601                         if (destroy_area(py, px, 13 + randint0(5), FALSE))
2602                                 ident = TRUE;
2603
2604                         break;
2605                 }
2606
2607                 case SV_STAFF_ANIMATE_DEAD:
2608                 {
2609                         if (animate_dead(0, py, px))
2610                                 ident = TRUE;
2611
2612                         break;
2613                 }
2614
2615                 case SV_STAFF_MSTORM:
2616                 {
2617 #ifdef JP
2618                         msg_print("¶¯ÎϤÊËâÎϤ¬Å¨¤ò°ú¤­Îö¤¤¤¿¡ª");
2619 #else
2620                         msg_print("Mighty magics rend your enemies!");
2621 #endif
2622                         project(0, 5, py, px,
2623                                 (randint1(200) + 300) * 2, GF_MANA, PROJECT_KILL | PROJECT_ITEM | PROJECT_GRID, -1);
2624                         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))
2625                         {
2626 #ifdef JP
2627                                 (void)take_hit(DAMAGE_NOESCAPE, 50, "¥³¥ó¥È¥í¡¼¥ë¤·Æñ¤¤¶¯ÎϤÊËâÎϤβòÊü", -1);
2628 #else
2629                                 (void)take_hit(DAMAGE_NOESCAPE, 50, "unleashing magics too mighty to control", -1);
2630 #endif
2631                         }
2632                         ident = TRUE;
2633
2634                         break;
2635                 }
2636
2637                 case SV_STAFF_NOTHING:
2638                 {
2639 #ifdef JP
2640                         msg_print("²¿¤âµ¯¤é¤Ê¤«¤Ã¤¿¡£");
2641 #else
2642                         msg_print("Nothing happen.");
2643 #endif
2644                         if (prace_is_(RACE_SKELETON) || prace_is_(RACE_GOLEM) ||
2645                                 prace_is_(RACE_ZOMBIE) || prace_is_(RACE_SPECTRE))
2646 #ifdef JP
2647                                 msg_print("¤â¤Ã¤¿¤¤¤Ê¤¤»ö¤ò¤·¤¿¤è¤¦¤Êµ¤¤¬¤¹¤ë¡£¿©¤Ùʪ¤ÏÂçÀڤˤ·¤Ê¤¯¤Æ¤Ï¡£");
2648 #else
2649                                 msg_print("What a waste.  It's your food!");
2650 #endif
2651                         break;
2652                 }
2653         }
2654         return ident;
2655 }
2656
2657 /*
2658  * Use a staff.                 -RAK-
2659  *
2660  * One charge of one staff disappears.
2661  *
2662  * Hack -- staffs of identify can be "cancelled".
2663  */
2664 static void do_cmd_use_staff_aux(int item)
2665 {
2666         int         ident, chance, lev;
2667         object_type *o_ptr;
2668
2669
2670         /* Hack -- let staffs of identify get aborted */
2671         bool use_charge = TRUE;
2672
2673
2674         /* Get the item (in the pack) */
2675         if (item >= 0)
2676         {
2677                 o_ptr = &inventory[item];
2678         }
2679
2680         /* Get the item (on the floor) */
2681         else
2682         {
2683                 o_ptr = &o_list[0 - item];
2684         }
2685
2686
2687         /* Mega-Hack -- refuse to use a pile from the ground */
2688         if ((item < 0) && (o_ptr->number > 1))
2689         {
2690 #ifdef JP
2691                 msg_print("¤Þ¤º¤Ï¾ó¤ò½¦¤ï¤Ê¤±¤ì¤Ð¡£");
2692 #else
2693                 msg_print("You must first pick up the staffs.");
2694 #endif
2695
2696                 return;
2697         }
2698
2699
2700         /* Take a turn */
2701         energy_use = 100;
2702
2703         /* Extract the item level */
2704         lev = k_info[o_ptr->k_idx].level;
2705         if (lev > 50) lev = 50 + (lev - 50)/2;
2706
2707         /* Base chance of success */
2708         chance = p_ptr->skill_dev;
2709
2710         /* Confusion hurts skill */
2711         if (p_ptr->confused) chance = chance / 2;
2712
2713         /* Hight level objects are harder */
2714         chance = chance - lev;
2715
2716         /* Give everyone a (slight) chance */
2717         if ((chance < USE_DEVICE) && one_in_(USE_DEVICE - chance + 1))
2718         {
2719                 chance = USE_DEVICE;
2720         }
2721
2722         if (world_player)
2723         {
2724                 if (flush_failure) flush();
2725 #ifdef JP
2726                 msg_print("»ß¤Þ¤Ã¤¿»þ¤ÎÃæ¤Ç¤Ï¤¦¤Þ¤¯Æ¯¤«¤Ê¤¤¤è¤¦¤À¡£");
2727 #else
2728                 msg_print("Nothing happen. Maybe this staff is freezing too.");
2729 #endif
2730
2731                 sound(SOUND_FAIL);
2732                 return;
2733         }
2734
2735         /* Roll for usage */
2736         if ((chance < USE_DEVICE) || (randint1(chance) < USE_DEVICE) || (p_ptr->pclass == CLASS_BERSERKER))
2737         {
2738                 if (flush_failure) flush();
2739 #ifdef JP
2740                 msg_print("¾ó¤ò¤¦¤Þ¤¯»È¤¨¤Ê¤«¤Ã¤¿¡£");
2741 #else
2742                 msg_print("You failed to use the staff properly.");
2743 #endif
2744
2745                 sound(SOUND_FAIL);
2746                 return;
2747         }
2748
2749         /* Notice empty staffs */
2750         if (o_ptr->pval <= 0)
2751         {
2752                 if (flush_failure) flush();
2753 #ifdef JP
2754                 msg_print("¤³¤Î¾ó¤Ë¤Ï¤â¤¦ËâÎϤ¬»Ä¤Ã¤Æ¤¤¤Ê¤¤¡£");
2755 #else
2756                 msg_print("The staff has no charges left.");
2757 #endif
2758
2759                 o_ptr->ident |= (IDENT_EMPTY);
2760
2761                 /* Combine / Reorder the pack (later) */
2762                 p_ptr->notice |= (PN_COMBINE | PN_REORDER);
2763                 p_ptr->window |= (PW_INVEN);
2764
2765                 return;
2766         }
2767
2768
2769         /* Sound */
2770         sound(SOUND_ZAP);
2771
2772         ident = staff_effect(o_ptr->sval, &use_charge, FALSE, object_is_aware(o_ptr));
2773
2774         if (!(object_is_aware(o_ptr)))
2775         {
2776                 chg_virtue(V_PATIENCE, -1);
2777                 chg_virtue(V_CHANCE, 1);
2778                 chg_virtue(V_KNOWLEDGE, -1);
2779         }
2780
2781         /* Combine / Reorder the pack (later) */
2782         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
2783
2784         /* Tried the item */
2785         object_tried(o_ptr);
2786
2787         /* An identification was made */
2788         if (ident && !object_is_aware(o_ptr))
2789         {
2790                 object_aware(o_ptr);
2791                 gain_exp((lev + (p_ptr->lev >> 1)) / p_ptr->lev);
2792         }
2793
2794         /* Window stuff */
2795         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
2796
2797
2798         /* Hack -- some uses are "free" */
2799         if (!use_charge) return;
2800
2801
2802         /* Use a single charge */
2803         o_ptr->pval--;
2804
2805         /* XXX Hack -- unstack if necessary */
2806         if ((item >= 0) && (o_ptr->number > 1))
2807         {
2808                 object_type forge;
2809                 object_type *q_ptr;
2810
2811                 /* Get local object */
2812                 q_ptr = &forge;
2813
2814                 /* Obtain a local object */
2815                 object_copy(q_ptr, o_ptr);
2816
2817                 /* Modify quantity */
2818                 q_ptr->number = 1;
2819
2820                 /* Restore the charges */
2821                 o_ptr->pval++;
2822
2823                 /* Unstack the used item */
2824                 o_ptr->number--;
2825                 p_ptr->total_weight -= q_ptr->weight;
2826                 item = inven_carry(q_ptr);
2827
2828                 /* Message */
2829 #ifdef JP
2830                 msg_print("¾ó¤ò¤Þ¤È¤á¤Ê¤ª¤·¤¿¡£");
2831 #else
2832                 msg_print("You unstack your staff.");
2833 #endif
2834
2835         }
2836
2837         /* Describe charges in the pack */
2838         if (item >= 0)
2839         {
2840                 inven_item_charges(item);
2841         }
2842
2843         /* Describe charges on the floor */
2844         else
2845         {
2846                 floor_item_charges(0 - item);
2847         }
2848 }
2849
2850
2851 void do_cmd_use_staff(void)
2852 {
2853         int  item;
2854         cptr q, s;
2855
2856         if (p_ptr->special_defense & (KATA_MUSOU | KATA_KOUKIJIN))
2857         {
2858                 set_action(ACTION_NONE);
2859         }
2860
2861         /* Restrict choices to wands */
2862         item_tester_tval = TV_STAFF;
2863
2864         /* Get an item */
2865 #ifdef JP
2866         q = "¤É¤Î¾ó¤ò»È¤¤¤Þ¤¹¤«? ";
2867         s = "»È¤¨¤ë¾ó¤¬¤Ê¤¤¡£";
2868 #else
2869         q = "Use which staff? ";
2870         s = "You have no staff to use.";
2871 #endif
2872
2873         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return;
2874
2875         do_cmd_use_staff_aux(item);
2876 }
2877
2878
2879 static int wand_effect(int sval, int dir, bool magic)
2880 {
2881         int ident = FALSE;
2882
2883         /* XXX Hack -- Wand of wonder can do anything before it */
2884         if (sval == SV_WAND_WONDER)
2885         {
2886                 int vir = virtue_number(V_CHANCE);
2887                 sval = randint0(SV_WAND_WONDER);
2888
2889                 if (vir)
2890                 {
2891                         if (p_ptr->virtues[vir - 1] > 0)
2892                         {
2893                                 while (randint1(300) < p_ptr->virtues[vir - 1]) sval++;
2894                                 if (sval > SV_WAND_COLD_BALL) sval = randint0(4) + SV_WAND_ACID_BALL;
2895                         }
2896                         else
2897                         {
2898                                 while (randint1(300) < (0-p_ptr->virtues[vir - 1])) sval--;
2899                                 if (sval < SV_WAND_HEAL_MONSTER) sval = randint0(3) + SV_WAND_HEAL_MONSTER;
2900                         }
2901                 }
2902                 if (sval < SV_WAND_TELEPORT_AWAY)
2903                         chg_virtue(V_CHANCE, 1);
2904         }
2905
2906         /* Analyze the wand */
2907         switch (sval)
2908         {
2909                 case SV_WAND_HEAL_MONSTER:
2910                 {
2911                         if (heal_monster(dir, damroll(10, 10))) ident = TRUE;
2912                         break;
2913                 }
2914
2915                 case SV_WAND_HASTE_MONSTER:
2916                 {
2917                         if (speed_monster(dir)) ident = TRUE;
2918                         break;
2919                 }
2920
2921                 case SV_WAND_CLONE_MONSTER:
2922                 {
2923                         if (clone_monster(dir)) ident = TRUE;
2924                         break;
2925                 }
2926
2927                 case SV_WAND_TELEPORT_AWAY:
2928                 {
2929                         if (teleport_monster(dir)) ident = TRUE;
2930                         break;
2931                 }
2932
2933                 case SV_WAND_DISARMING:
2934                 {
2935                         if (disarm_trap(dir)) ident = TRUE;
2936                         break;
2937                 }
2938
2939                 case SV_WAND_TRAP_DOOR_DEST:
2940                 {
2941                         if (destroy_door(dir)) ident = TRUE;
2942                         break;
2943                 }
2944
2945                 case SV_WAND_STONE_TO_MUD:
2946                 {
2947                         if (wall_to_mud(dir)) ident = TRUE;
2948                         break;
2949                 }
2950
2951                 case SV_WAND_LITE:
2952                 {
2953 #ifdef JP
2954                         msg_print("ÀĤ¯µ±¤¯¸÷Àþ¤¬Êü¤¿¤ì¤¿¡£");
2955 #else
2956                         msg_print("A line of blue shimmering light appears.");
2957 #endif
2958
2959                         (void)lite_line(dir);
2960                         ident = TRUE;
2961                         break;
2962                 }
2963
2964                 case SV_WAND_SLEEP_MONSTER:
2965                 {
2966                         if (sleep_monster(dir)) ident = TRUE;
2967                         break;
2968                 }
2969
2970                 case SV_WAND_SLOW_MONSTER:
2971                 {
2972                         if (slow_monster(dir)) ident = TRUE;
2973                         break;
2974                 }
2975
2976                 case SV_WAND_CONFUSE_MONSTER:
2977                 {
2978                         if (confuse_monster(dir, p_ptr->lev)) ident = TRUE;
2979                         break;
2980                 }
2981
2982                 case SV_WAND_FEAR_MONSTER:
2983                 {
2984                         if (fear_monster(dir, p_ptr->lev)) ident = TRUE;
2985                         break;
2986                 }
2987
2988                 case SV_WAND_DRAIN_LIFE:
2989                 {
2990                         if (drain_life(dir, 80 + p_ptr->lev)) ident = TRUE;
2991                         break;
2992                 }
2993
2994                 case SV_WAND_POLYMORPH:
2995                 {
2996                         if (poly_monster(dir)) ident = TRUE;
2997                         break;
2998                 }
2999
3000                 case SV_WAND_STINKING_CLOUD:
3001                 {
3002                         fire_ball(GF_POIS, dir, 12 + p_ptr->lev / 4, 2);
3003                         ident = TRUE;
3004                         break;
3005                 }
3006
3007                 case SV_WAND_MAGIC_MISSILE:
3008                 {
3009                         fire_bolt_or_beam(20, GF_MISSILE, dir, damroll(2 + p_ptr->lev / 10, 6));
3010                         ident = TRUE;
3011                         break;
3012                 }
3013
3014                 case SV_WAND_ACID_BOLT:
3015                 {
3016                         fire_bolt_or_beam(20, GF_ACID, dir, damroll(6 + p_ptr->lev / 7, 8));
3017                         ident = TRUE;
3018                         break;
3019                 }
3020
3021                 case SV_WAND_CHARM_MONSTER:
3022                 {
3023                         if (charm_monster(dir, MAX(20, p_ptr->lev)))
3024                         ident = TRUE;
3025                         break;
3026                 }
3027
3028                 case SV_WAND_FIRE_BOLT:
3029                 {
3030                         fire_bolt_or_beam(20, GF_FIRE, dir, damroll(7 + p_ptr->lev / 6, 8));
3031                         ident = TRUE;
3032                         break;
3033                 }
3034
3035                 case SV_WAND_COLD_BOLT:
3036                 {
3037                         fire_bolt_or_beam(20, GF_COLD, dir, damroll(5 + p_ptr->lev / 8, 8));
3038                         ident = TRUE;
3039                         break;
3040                 }
3041
3042                 case SV_WAND_ACID_BALL:
3043                 {
3044                         fire_ball(GF_ACID, dir, 60 + 3 * p_ptr->lev / 4, 2);
3045                         ident = TRUE;
3046                         break;
3047                 }
3048
3049                 case SV_WAND_ELEC_BALL:
3050                 {
3051                         fire_ball(GF_ELEC, dir, 40 + 3 * p_ptr->lev / 4, 2);
3052                         ident = TRUE;
3053                         break;
3054                 }
3055
3056                 case SV_WAND_FIRE_BALL:
3057                 {
3058                         fire_ball(GF_FIRE, dir, 70 + 3 * p_ptr->lev / 4, 2);
3059                         ident = TRUE;
3060                         break;
3061                 }
3062
3063                 case SV_WAND_COLD_BALL:
3064                 {
3065                         fire_ball(GF_COLD, dir, 50 + 3 * p_ptr->lev / 4, 2);
3066                         ident = TRUE;
3067                         break;
3068                 }
3069
3070                 case SV_WAND_WONDER:
3071                 {
3072 #ifdef JP
3073                         msg_print("¤ª¤Ã¤È¡¢Ææ¤ÎËâË¡ËÀ¤ò»ÏÆ°¤µ¤»¤¿¡£");
3074 #else
3075                         msg_print("Oops.  Wand of wonder activated.");
3076 #endif
3077
3078                         break;
3079                 }
3080
3081                 case SV_WAND_DRAGON_FIRE:
3082                 {
3083                         fire_ball(GF_FIRE, dir, 200, -3);
3084                         ident = TRUE;
3085                         break;
3086                 }
3087
3088                 case SV_WAND_DRAGON_COLD:
3089                 {
3090                         fire_ball(GF_COLD, dir, 180, -3);
3091                         ident = TRUE;
3092                         break;
3093                 }
3094
3095                 case SV_WAND_DRAGON_BREATH:
3096                 {
3097                         switch (randint1(5))
3098                         {
3099                                 case 1:
3100                                 {
3101                                         fire_ball(GF_ACID, dir, 240, -3);
3102                                         break;
3103                                 }
3104
3105                                 case 2:
3106                                 {
3107                                         fire_ball(GF_ELEC, dir, 210, -3);
3108                                         break;
3109                                 }
3110
3111                                 case 3:
3112                                 {
3113                                         fire_ball(GF_FIRE, dir, 240, -3);
3114                                         break;
3115                                 }
3116
3117                                 case 4:
3118                                 {
3119                                         fire_ball(GF_COLD, dir, 210, -3);
3120                                         break;
3121                                 }
3122
3123                                 default:
3124                                 {
3125                                         fire_ball(GF_POIS, dir, 180, -3);
3126                                         break;
3127                                 }
3128                         }
3129
3130                         ident = TRUE;
3131                         break;
3132                 }
3133
3134                 case SV_WAND_DISINTEGRATE:
3135                 {
3136                         fire_ball(GF_DISINTEGRATE, dir, 200 + randint1(p_ptr->lev * 2), 2);
3137                         ident = TRUE;
3138                         break;
3139                 }
3140
3141                 case SV_WAND_ROCKETS:
3142                 {
3143 #ifdef JP
3144 msg_print("¥í¥±¥Ã¥È¤òȯ¼Í¤·¤¿¡ª");
3145 #else
3146                         msg_print("You launch a rocket!");
3147 #endif
3148
3149                         fire_rocket(GF_ROCKET, dir, 250 + p_ptr->lev * 3, 2);
3150                         ident = TRUE;
3151                         break;
3152                 }
3153
3154                 case SV_WAND_STRIKING:
3155                 {
3156                         fire_bolt(GF_METEOR, dir, damroll(15 + p_ptr->lev / 3, 13));
3157                         ident = TRUE;
3158                         break;
3159                 }
3160
3161                 case SV_WAND_GENOCIDE:
3162                 {
3163                         fire_ball_hide(GF_GENOCIDE, dir, magic ? p_ptr->lev + 50 : 250, 0);
3164                         ident = TRUE;
3165                         break;
3166                 }
3167         }
3168         return ident;
3169 }
3170
3171
3172 /*
3173  * Aim a wand (from the pack or floor).
3174  *
3175  * Use a single charge from a single item.
3176  * Handle "unstacking" in a logical manner.
3177  *
3178  * For simplicity, you cannot use a stack of items from the
3179  * ground.  This would require too much nasty code.
3180  *
3181  * There are no wands which can "destroy" themselves, in the inventory
3182  * or on the ground, so we can ignore this possibility.  Note that this
3183  * required giving "wand of wonder" the ability to ignore destruction
3184  * by electric balls.
3185  *
3186  * All wands can be "cancelled" at the "Direction?" prompt for free.
3187  *
3188  * Note that the basic "bolt" wands do slightly less damage than the
3189  * basic "bolt" rods, but the basic "ball" wands do the same damage
3190  * as the basic "ball" rods.
3191  */
3192 static void do_cmd_aim_wand_aux(int item)
3193 {
3194         int         lev, ident, chance, dir;
3195         object_type *o_ptr;
3196         bool old_target_pet = target_pet;
3197
3198         /* Get the item (in the pack) */
3199         if (item >= 0)
3200         {
3201                 o_ptr = &inventory[item];
3202         }
3203
3204         /* Get the item (on the floor) */
3205         else
3206         {
3207                 o_ptr = &o_list[0 - item];
3208         }
3209
3210         /* Mega-Hack -- refuse to aim a pile from the ground */
3211         if ((item < 0) && (o_ptr->number > 1))
3212         {
3213 #ifdef JP
3214                 msg_print("¤Þ¤º¤ÏËâË¡ËÀ¤ò½¦¤ï¤Ê¤±¤ì¤Ð¡£");
3215 #else
3216                 msg_print("You must first pick up the wands.");
3217 #endif
3218
3219                 return;
3220         }
3221
3222
3223         /* Allow direction to be cancelled for free */
3224         if (object_is_aware(o_ptr) && (o_ptr->sval == SV_WAND_HEAL_MONSTER
3225                                       || o_ptr->sval == SV_WAND_HASTE_MONSTER))
3226                         target_pet = TRUE;
3227         if (!get_aim_dir(&dir))
3228         {
3229                 target_pet = old_target_pet;
3230                 return;
3231         }
3232         target_pet = old_target_pet;
3233
3234         /* Take a turn */
3235         energy_use = 100;
3236
3237         /* Get the level */
3238         lev = k_info[o_ptr->k_idx].level;
3239         if (lev > 50) lev = 50 + (lev - 50)/2;
3240
3241         /* Base chance of success */
3242         chance = p_ptr->skill_dev;
3243
3244         /* Confusion hurts skill */
3245         if (p_ptr->confused) chance = chance / 2;
3246
3247         /* Hight level objects are harder */
3248         chance = chance - lev;
3249
3250         /* Give everyone a (slight) chance */
3251         if ((chance < USE_DEVICE) && one_in_(USE_DEVICE - chance + 1))
3252         {
3253                 chance = USE_DEVICE;
3254         }
3255
3256         if (world_player)
3257         {
3258                 if (flush_failure) flush();
3259 #ifdef JP
3260                 msg_print("»ß¤Þ¤Ã¤¿»þ¤ÎÃæ¤Ç¤Ï¤¦¤Þ¤¯Æ¯¤«¤Ê¤¤¤è¤¦¤À¡£");
3261 #else
3262                 msg_print("Nothing happen. Maybe this wand is freezing too.");
3263 #endif
3264
3265                 sound(SOUND_FAIL);
3266                 return;
3267         }
3268
3269         /* Roll for usage */
3270         if ((chance < USE_DEVICE) || (randint1(chance) < USE_DEVICE) || (p_ptr->pclass == CLASS_BERSERKER))
3271         {
3272                 if (flush_failure) flush();
3273 #ifdef JP
3274                 msg_print("ËâË¡ËÀ¤ò¤¦¤Þ¤¯»È¤¨¤Ê¤«¤Ã¤¿¡£");
3275 #else
3276                 msg_print("You failed to use the wand properly.");
3277 #endif
3278
3279                 sound(SOUND_FAIL);
3280                 return;
3281         }
3282
3283         /* The wand is already empty! */
3284         if (o_ptr->pval <= 0)
3285         {
3286                 if (flush_failure) flush();
3287 #ifdef JP
3288                 msg_print("¤³¤ÎËâË¡ËÀ¤Ë¤Ï¤â¤¦ËâÎϤ¬»Ä¤Ã¤Æ¤¤¤Ê¤¤¡£");
3289 #else
3290                 msg_print("The wand has no charges left.");
3291 #endif
3292
3293                 o_ptr->ident |= (IDENT_EMPTY);
3294
3295                 /* Combine / Reorder the pack (later) */
3296                 p_ptr->notice |= (PN_COMBINE | PN_REORDER);
3297                 p_ptr->window |= (PW_INVEN);
3298
3299                 return;
3300         }
3301
3302         /* Sound */
3303         sound(SOUND_ZAP);
3304
3305         ident = wand_effect(o_ptr->sval, dir, FALSE);
3306
3307         /* Combine / Reorder the pack (later) */
3308         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
3309
3310         if (!(object_is_aware(o_ptr)))
3311         {
3312                 chg_virtue(V_PATIENCE, -1);
3313                 chg_virtue(V_CHANCE, 1);
3314                 chg_virtue(V_KNOWLEDGE, -1);
3315         }
3316
3317         /* Mark it as tried */
3318         object_tried(o_ptr);
3319
3320         /* Apply identification */
3321         if (ident && !object_is_aware(o_ptr))
3322         {
3323                 object_aware(o_ptr);
3324                 gain_exp((lev + (p_ptr->lev >> 1)) / p_ptr->lev);
3325         }
3326
3327         /* Window stuff */
3328         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
3329
3330
3331         /* Use a single charge */
3332         o_ptr->pval--;
3333
3334         /* Describe the charges in the pack */
3335         if (item >= 0)
3336         {
3337                 inven_item_charges(item);
3338         }
3339
3340         /* Describe the charges on the floor */
3341         else
3342         {
3343                 floor_item_charges(0 - item);
3344         }
3345 }
3346
3347
3348 void do_cmd_aim_wand(void)
3349 {
3350         int     item;
3351         cptr    q, s;
3352
3353         /* Restrict choices to wands */
3354         item_tester_tval = TV_WAND;
3355
3356         if (p_ptr->special_defense & (KATA_MUSOU | KATA_KOUKIJIN))
3357         {
3358                 set_action(ACTION_NONE);
3359         }
3360
3361         /* Get an item */
3362 #ifdef JP
3363         q = "¤É¤ÎËâË¡ËÀ¤ÇÁÀ¤¤¤Þ¤¹¤«? ";
3364         s = "»È¤¨¤ëËâË¡ËÀ¤¬¤Ê¤¤¡£";
3365 #else
3366         q = "Aim which wand? ";
3367         s = "You have no wand to aim.";
3368 #endif
3369
3370         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return;
3371
3372         /* Aim the wand */
3373         do_cmd_aim_wand_aux(item);
3374 }
3375
3376
3377 static int rod_effect(int sval, int dir, bool *use_charge, bool magic)
3378 {
3379         int ident = FALSE;
3380
3381         /* Unused */
3382         (void)magic;
3383
3384         /* Analyze the rod */
3385         switch (sval)
3386         {
3387                 case SV_ROD_DETECT_TRAP:
3388                 {
3389                         if (detect_traps(DETECT_RAD_DEFAULT, (bool)(dir ? FALSE : TRUE))) ident = TRUE;
3390                         break;
3391                 }
3392
3393                 case SV_ROD_DETECT_DOOR:
3394                 {
3395                         if (detect_doors(DETECT_RAD_DEFAULT)) ident = TRUE;
3396                         if (detect_stairs(DETECT_RAD_DEFAULT)) ident = TRUE;
3397                         break;
3398                 }
3399
3400                 case SV_ROD_IDENTIFY:
3401                 {
3402                         if (!ident_spell(FALSE)) *use_charge = FALSE;
3403                         ident = TRUE;
3404                         break;
3405                 }
3406
3407                 case SV_ROD_RECALL:
3408                 {
3409                         if (!word_of_recall()) *use_charge = FALSE;
3410                         ident = TRUE;
3411                         break;
3412                 }
3413
3414                 case SV_ROD_ILLUMINATION:
3415                 {
3416                         if (lite_area(damroll(2, 8), 2)) ident = TRUE;
3417                         break;
3418                 }
3419
3420                 case SV_ROD_MAPPING:
3421                 {
3422                         map_area(DETECT_RAD_MAP);
3423                         ident = TRUE;
3424                         break;
3425                 }
3426
3427                 case SV_ROD_DETECTION:
3428                 {
3429                         detect_all(DETECT_RAD_DEFAULT);
3430                         ident = TRUE;
3431                         break;
3432                 }
3433
3434                 case SV_ROD_PROBING:
3435                 {
3436                         probing();
3437                         ident = TRUE;
3438                         break;
3439                 }
3440
3441                 case SV_ROD_CURING:
3442                 {
3443                         if (set_blind(0)) ident = TRUE;
3444                         if (set_poisoned(0)) ident = TRUE;
3445                         if (set_confused(0)) ident = TRUE;
3446                         if (set_stun(0)) ident = TRUE;
3447                         if (set_cut(0)) ident = TRUE;
3448                         if (set_image(0)) ident = TRUE;
3449                         if (set_shero(0,TRUE)) ident = TRUE;
3450                         break;
3451                 }
3452
3453                 case SV_ROD_HEALING:
3454                 {
3455                         if (hp_player(500)) ident = TRUE;
3456                         if (set_stun(0)) ident = TRUE;
3457                         if (set_cut(0)) ident = TRUE;
3458                         if (set_shero(0,TRUE)) ident = TRUE;
3459                         break;
3460                 }
3461
3462                 case SV_ROD_RESTORATION:
3463                 {
3464                         if (restore_level()) ident = TRUE;
3465                         if (do_res_stat(A_STR)) ident = TRUE;
3466                         if (do_res_stat(A_INT)) ident = TRUE;
3467                         if (do_res_stat(A_WIS)) ident = TRUE;
3468                         if (do_res_stat(A_DEX)) ident = TRUE;
3469                         if (do_res_stat(A_CON)) ident = TRUE;
3470                         if (do_res_stat(A_CHR)) ident = TRUE;
3471                         break;
3472                 }
3473
3474                 case SV_ROD_SPEED:
3475                 {
3476                         if (set_fast(randint1(30) + 15, FALSE)) ident = TRUE;
3477                         break;
3478                 }
3479
3480                 case SV_ROD_PESTICIDE:
3481                 {
3482                         if (dispel_monsters(4)) ident = TRUE;
3483                         break;
3484                 }
3485
3486                 case SV_ROD_TELEPORT_AWAY:
3487                 {
3488                         if (teleport_monster(dir)) ident = TRUE;
3489                         break;
3490                 }
3491
3492                 case SV_ROD_DISARMING:
3493                 {
3494                         if (disarm_trap(dir)) ident = TRUE;
3495                         break;
3496                 }
3497
3498                 case SV_ROD_LITE:
3499                 {
3500 #ifdef JP
3501                         msg_print("ÀĤ¯µ±¤¯¸÷Àþ¤¬Êü¤¿¤ì¤¿¡£");
3502 #else
3503                         msg_print("A line of blue shimmering light appears.");
3504 #endif
3505
3506                         (void)lite_line(dir);
3507                         ident = TRUE;
3508                         break;
3509                 }
3510
3511                 case SV_ROD_SLEEP_MONSTER:
3512                 {
3513                         if (sleep_monster(dir)) ident = TRUE;
3514                         break;
3515                 }
3516
3517                 case SV_ROD_SLOW_MONSTER:
3518                 {
3519                         if (slow_monster(dir)) ident = TRUE;
3520                         break;
3521                 }
3522
3523                 case SV_ROD_DRAIN_LIFE:
3524                 {
3525                         if (drain_life(dir, 70 + 3 * p_ptr->lev / 2)) ident = TRUE;
3526                         break;
3527                 }
3528
3529                 case SV_ROD_POLYMORPH:
3530                 {
3531                         if (poly_monster(dir)) ident = TRUE;
3532                         break;
3533                 }
3534
3535                 case SV_ROD_ACID_BOLT:
3536                 {
3537                         fire_bolt_or_beam(10, GF_ACID, dir, damroll(6 + p_ptr->lev / 7, 8));
3538                         ident = TRUE;
3539                         break;
3540                 }
3541
3542                 case SV_ROD_ELEC_BOLT:
3543                 {
3544                         fire_bolt_or_beam(10, GF_ELEC, dir, damroll(4 + p_ptr->lev / 9, 8));
3545                         ident = TRUE;
3546                         break;
3547                 }
3548
3549                 case SV_ROD_FIRE_BOLT:
3550                 {
3551                         fire_bolt_or_beam(10, GF_FIRE, dir, damroll(7 + p_ptr->lev / 6, 8));
3552                         ident = TRUE;
3553                         break;
3554                 }
3555
3556                 case SV_ROD_COLD_BOLT:
3557                 {
3558                         fire_bolt_or_beam(10, GF_COLD, dir, damroll(5 + p_ptr->lev / 8, 8));
3559                         ident = TRUE;
3560                         break;
3561                 }
3562
3563                 case SV_ROD_ACID_BALL:
3564                 {
3565                         fire_ball(GF_ACID, dir, 60 + p_ptr->lev, 2);
3566                         ident = TRUE;
3567                         break;
3568                 }
3569
3570                 case SV_ROD_ELEC_BALL:
3571                 {
3572                         fire_ball(GF_ELEC, dir, 40 + p_ptr->lev, 2);
3573                         ident = TRUE;
3574                         break;
3575                 }
3576
3577                 case SV_ROD_FIRE_BALL:
3578                 {
3579                         fire_ball(GF_FIRE, dir, 70 + p_ptr->lev, 2);
3580                         ident = TRUE;
3581                         break;
3582                 }
3583
3584                 case SV_ROD_COLD_BALL:
3585                 {
3586                         fire_ball(GF_COLD, dir, 50 + p_ptr->lev, 2);
3587                         ident = TRUE;
3588                         break;
3589                 }
3590
3591                 case SV_ROD_HAVOC:
3592                 {
3593                         call_chaos();
3594                         ident = TRUE;
3595                         break;
3596                 }
3597
3598                 case SV_ROD_STONE_TO_MUD:
3599                 {
3600                         if (wall_to_mud(dir)) ident = TRUE;
3601                         break;
3602                 }
3603
3604                 case SV_ROD_AGGRAVATE:
3605                 {
3606                         aggravate_monsters(0);
3607                         ident = TRUE;
3608                         break;
3609                 }
3610         }
3611         return ident;
3612 }
3613
3614 /*
3615  * Activate (zap) a Rod
3616  *
3617  * Unstack fully charged rods as needed.
3618  *
3619  * Hack -- rods of perception/genocide can be "cancelled"
3620  * All rods can be cancelled at the "Direction?" prompt
3621  *
3622  * pvals are defined for each rod in k_info. -LM-
3623  */
3624 static void do_cmd_zap_rod_aux(int item)
3625 {
3626         int ident, chance, lev, fail;
3627         int dir = 0;
3628         object_type *o_ptr;
3629         bool success;
3630
3631         /* Hack -- let perception get aborted */
3632         bool use_charge = TRUE;
3633
3634         object_kind *k_ptr;
3635
3636         /* Get the item (in the pack) */
3637         if (item >= 0)
3638         {
3639                 o_ptr = &inventory[item];
3640         }
3641
3642         /* Get the item (on the floor) */
3643         else
3644         {
3645                 o_ptr = &o_list[0 - item];
3646         }
3647
3648
3649         /* Mega-Hack -- refuse to zap a pile from the ground */
3650         if ((item < 0) && (o_ptr->number > 1))
3651         {
3652 #ifdef JP
3653                 msg_print("¤Þ¤º¤Ï¥í¥Ã¥É¤ò½¦¤ï¤Ê¤±¤ì¤Ð¡£");
3654 #else
3655                 msg_print("You must first pick up the rods.");
3656 #endif
3657
3658                 return;
3659         }
3660
3661
3662         /* Get a direction (unless KNOWN not to need it) */
3663         if (((o_ptr->sval >= SV_ROD_MIN_DIRECTION) && (o_ptr->sval != SV_ROD_HAVOC) && (o_ptr->sval != SV_ROD_AGGRAVATE) && (o_ptr->sval != SV_ROD_PESTICIDE)) ||
3664              !object_is_aware(o_ptr))
3665         {
3666                 /* Get a direction, allow cancel */
3667                 if (!get_aim_dir(&dir)) return;
3668         }
3669
3670
3671         /* Take a turn */
3672         energy_use = 100;
3673
3674         /* Extract the item level */
3675         lev = k_info[o_ptr->k_idx].level;
3676
3677         /* Base chance of success */
3678         chance = p_ptr->skill_dev;
3679
3680         /* Confusion hurts skill */
3681         if (p_ptr->confused) chance = chance / 2;
3682
3683         fail = lev+5;
3684         if (chance > fail) fail -= (chance - fail)*2;
3685         else chance -= (fail - chance)*2;
3686         if (fail < USE_DEVICE) fail = USE_DEVICE;
3687         if (chance < USE_DEVICE) chance = USE_DEVICE;
3688
3689         if (world_player)
3690         {
3691                 if (flush_failure) flush();
3692 #ifdef JP
3693                 msg_print("»ß¤Þ¤Ã¤¿»þ¤ÎÃæ¤Ç¤Ï¤¦¤Þ¤¯Æ¯¤«¤Ê¤¤¤è¤¦¤À¡£");
3694 #else
3695                 msg_print("Nothing happen. Maybe this rod is freezing too.");
3696 #endif
3697
3698                 sound(SOUND_FAIL);
3699                 return;
3700         }
3701
3702         if (p_ptr->pclass == CLASS_BERSERKER) success = FALSE;
3703         else if (chance > fail)
3704         {
3705                 if (randint0(chance*2) < fail) success = FALSE;
3706                 else success = TRUE;
3707         }
3708         else
3709         {
3710                 if (randint0(fail*2) < chance) success = TRUE;
3711                 else success = FALSE;
3712         }
3713
3714         /* Roll for usage */
3715         if (!success)
3716         {
3717                 if (flush_failure) flush();
3718 #ifdef JP
3719                 msg_print("¤¦¤Þ¤¯¥í¥Ã¥É¤ò»È¤¨¤Ê¤«¤Ã¤¿¡£");
3720 #else
3721                 msg_print("You failed to use the rod properly.");
3722 #endif
3723
3724                 sound(SOUND_FAIL);
3725                 return;
3726         }
3727
3728         k_ptr = &k_info[o_ptr->k_idx];
3729
3730         /* A single rod is still charging */
3731         if ((o_ptr->number == 1) && (o_ptr->timeout))
3732         {
3733                 if (flush_failure) flush();
3734 #ifdef JP
3735                 msg_print("¤³¤Î¥í¥Ã¥É¤Ï¤Þ¤ÀËâÎϤò½¼Å¶¤·¤Æ¤¤¤ëºÇÃæ¤À¡£");
3736 #else
3737                 msg_print("The rod is still charging.");
3738 #endif
3739
3740                 return;
3741         }
3742         /* A stack of rods lacks enough energy. */
3743         else if ((o_ptr->number > 1) && (o_ptr->timeout > k_ptr->pval * (o_ptr->number - 1)))
3744         {
3745                 if (flush_failure) flush();
3746 #ifdef JP
3747 msg_print("¤½¤Î¥í¥Ã¥É¤Ï¤Þ¤À½¼Å¶Ãæ¤Ç¤¹¡£");
3748 #else
3749                 msg_print("The rods are all still charging.");
3750 #endif
3751
3752                 return;
3753         }
3754
3755         /* Sound */
3756         sound(SOUND_ZAP);
3757
3758         ident = rod_effect(o_ptr->sval, dir, &use_charge, FALSE);
3759
3760         /* Increase the timeout by the rod kind's pval. -LM- */
3761         if (use_charge) o_ptr->timeout += k_ptr->pval;
3762
3763         /* Combine / Reorder the pack (later) */
3764         p_ptr->notice |= (PN_COMBINE | PN_REORDER);
3765
3766         if (!(object_is_aware(o_ptr)))
3767         {
3768                 chg_virtue(V_PATIENCE, -1);
3769                 chg_virtue(V_CHANCE, 1);
3770                 chg_virtue(V_KNOWLEDGE, -1);
3771         }
3772
3773         /* Tried the object */
3774         object_tried(o_ptr);
3775
3776         /* Successfully determined the object function */
3777         if (ident && !object_is_aware(o_ptr))
3778         {
3779                 object_aware(o_ptr);
3780                 gain_exp((lev + (p_ptr->lev >> 1)) / p_ptr->lev);
3781         }
3782
3783         /* Window stuff */
3784         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
3785 }
3786
3787
3788 void do_cmd_zap_rod(void)
3789 {
3790         int item;
3791         cptr q, s;
3792
3793         if (p_ptr->special_defense & (KATA_MUSOU | KATA_KOUKIJIN))
3794         {
3795                 set_action(ACTION_NONE);
3796         }
3797
3798         /* Restrict choices to rods */
3799         item_tester_tval = TV_ROD;
3800
3801         /* Get an item */
3802 #ifdef JP
3803         q = "¤É¤Î¥í¥Ã¥É¤ò¿¶¤ê¤Þ¤¹¤«? ";
3804         s = "»È¤¨¤ë¥í¥Ã¥É¤¬¤Ê¤¤¡£";
3805 #else
3806         q = "Zap which rod? ";
3807         s = "You have no rod to zap.";
3808 #endif
3809
3810         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return;
3811
3812         /* Zap the rod */
3813         do_cmd_zap_rod_aux(item);
3814 }
3815
3816
3817 /*
3818  * Hook to determine if an object is activatable
3819  */
3820 static bool item_tester_hook_activate(object_type *o_ptr)
3821 {
3822         u32b flgs[TR_FLAG_SIZE];
3823
3824         /* Not known */
3825         if (!object_is_known(o_ptr)) return (FALSE);
3826
3827         /* Extract the flags */
3828         object_flags(o_ptr, flgs);
3829
3830         /* Check activation flag */
3831         if (have_flag(flgs, TR_ACTIVATE)) return (TRUE);
3832
3833         /* Assume not */
3834         return (FALSE);
3835 }
3836
3837
3838 /*
3839  * Hack -- activate the ring of power
3840  */
3841 void ring_of_power(int dir)
3842 {
3843         /* Pick a random effect */
3844         switch (randint1(10))
3845         {
3846                 case 1:
3847                 case 2:
3848                 {
3849                         /* Message */
3850 #ifdef JP
3851                         msg_print("¤¢¤Ê¤¿¤Ï°­À­¤Î¥ª¡¼¥é¤ËÊñ¤ß¹þ¤Þ¤ì¤¿¡£");
3852 #else
3853                         msg_print("You are surrounded by a malignant aura.");
3854 #endif
3855
3856                         sound(SOUND_EVIL);
3857
3858                         /* Decrease all stats (permanently) */
3859                         (void)dec_stat(A_STR, 50, TRUE);
3860                         (void)dec_stat(A_INT, 50, TRUE);
3861                         (void)dec_stat(A_WIS, 50, TRUE);
3862                         (void)dec_stat(A_DEX, 50, TRUE);
3863                         (void)dec_stat(A_CON, 50, TRUE);
3864                         (void)dec_stat(A_CHR, 50, TRUE);
3865
3866                         /* Lose some experience (permanently) */
3867                         p_ptr->exp -= (p_ptr->exp / 4);
3868                         p_ptr->max_exp -= (p_ptr->exp / 4);
3869                         check_experience();
3870
3871                         break;
3872                 }
3873
3874                 case 3:
3875                 {
3876                         /* Message */
3877 #ifdef JP
3878                         msg_print("¤¢¤Ê¤¿¤Ï¶¯ÎϤʥª¡¼¥é¤ËÊñ¤ß¹þ¤Þ¤ì¤¿¡£");
3879 #else
3880                         msg_print("You are surrounded by a powerful aura.");
3881 #endif
3882
3883
3884                         /* Dispel monsters */
3885                         dispel_monsters(1000);
3886
3887                         break;
3888                 }
3889
3890                 case 4:
3891                 case 5:
3892                 case 6:
3893                 {
3894                         /* Mana Ball */
3895                         fire_ball(GF_MANA, dir, 600, 3);
3896
3897                         break;
3898                 }
3899
3900                 case 7:
3901                 case 8:
3902                 case 9:
3903                 case 10:
3904                 {
3905                         /* Mana Bolt */
3906                         fire_bolt(GF_MANA, dir, 500);
3907
3908                         break;
3909                 }
3910         }
3911 }
3912
3913
3914 static bool ang_sort_comp_pet(vptr u, vptr v, int a, int b)
3915 {
3916         u16b *who = (u16b*)(u);
3917
3918         int w1 = who[a];
3919         int w2 = who[b];
3920
3921         monster_type *m_ptr1 = &m_list[w1];
3922         monster_type *m_ptr2 = &m_list[w2];
3923         monster_race *r_ptr1 = &r_info[m_ptr1->r_idx];
3924         monster_race *r_ptr2 = &r_info[m_ptr2->r_idx];
3925
3926         /* Unused */
3927         (void)v;
3928
3929         if (m_ptr1->nickname && !m_ptr2->nickname) return TRUE;
3930         if (m_ptr2->nickname && !m_ptr1->nickname) return FALSE;
3931
3932         if ((r_ptr1->flags1 & RF1_UNIQUE) && !(r_ptr2->flags1 & RF1_UNIQUE)) return TRUE;
3933         if ((r_ptr2->flags1 & RF1_UNIQUE) && !(r_ptr1->flags1 & RF1_UNIQUE)) return FALSE;
3934
3935         if (r_ptr1->level > r_ptr2->level) return TRUE;
3936         if (r_ptr2->level > r_ptr1->level) return FALSE;
3937
3938         if (m_ptr1->hp > m_ptr2->hp) return TRUE;
3939         if (m_ptr2->hp > m_ptr1->hp) return FALSE;
3940         
3941         return w1 <= w2;
3942 }
3943
3944 /*
3945  * Activate a wielded object.  Wielded objects never stack.
3946  * And even if they did, activatable objects never stack.
3947  *
3948  * Currently, only (some) artifacts, and Dragon Scale Mail, can be activated.
3949  * But one could, for example, easily make an activatable "Ring of Plasma".
3950  *
3951  * Note that it always takes a turn to activate an artifact, even if
3952  * the user hits "escape" at the "direction" prompt.
3953  */
3954 static void do_cmd_activate_aux(int item)
3955 {
3956         int         k, dir, lev, chance, fail;
3957         object_type *o_ptr;
3958         bool success;
3959
3960
3961         /* Get the item (in the pack) */
3962         if (item >= 0)
3963         {
3964                 o_ptr = &inventory[item];
3965         }
3966
3967         /* Get the item (on the floor) */
3968         else
3969         {
3970                 o_ptr = &o_list[0 - item];
3971         }
3972
3973         /* Take a turn */
3974         energy_use = 100;
3975
3976         /* Extract the item level */
3977         lev = k_info[o_ptr->k_idx].level;
3978
3979         /* Hack -- use artifact level instead */
3980         if (object_is_fixed_artifact(o_ptr)) lev = a_info[o_ptr->name1].level;
3981         else if (o_ptr->art_name)
3982         {
3983                 switch (o_ptr->xtra2)
3984                 {
3985                         case ACT_SUNLIGHT:
3986                         case ACT_BO_MISS_1:
3987                         case ACT_BA_POIS_1:
3988                         case ACT_CONFUSE:
3989                         case ACT_SLEEP:
3990                         case ACT_CURE_LW:
3991                         case ACT_CURE_POISON:
3992                         case ACT_BERSERK:
3993                         case ACT_LIGHT:
3994                         case ACT_DEST_DOOR:
3995                         case ACT_TELEPORT:
3996                                 lev = 10;
3997                                 break;
3998                         case ACT_BO_ELEC_1:
3999                         case ACT_BO_ACID_1:
4000                         case ACT_BO_COLD_1:
4001                         case ACT_BO_FIRE_1:
4002                         case ACT_MAP_LIGHT:
4003                         case ACT_STONE_MUD:
4004                         case ACT_CURE_MW:
4005                         case ACT_QUAKE:
4006                                 lev = 20;
4007                                 break;
4008                         case ACT_DRAIN_1:
4009                         case ACT_TELE_AWAY:
4010                         case ACT_ESP:
4011                         case ACT_RESIST_ALL:
4012                         case ACT_DETECT_ALL:
4013                         case ACT_RECALL:
4014                         case ACT_SATIATE:
4015                         case ACT_RECHARGE:
4016                                 lev = 30;
4017                                 break;
4018                         case ACT_BA_COLD_1:
4019                         case ACT_BA_FIRE_1:
4020                         case ACT_BA_FIRE_2:
4021                         case ACT_TERROR:
4022                         case ACT_PROT_EVIL:
4023                         case ACT_ID_PLAIN:
4024                         case ACT_REST_LIFE:
4025                         case ACT_SPEED:
4026                         case ACT_BANISH_EVIL:
4027                                 lev = 40;
4028                                 break;
4029                         case ACT_DRAIN_2:
4030                         case ACT_VAMPIRE_1:
4031                         case ACT_BO_MISS_2:
4032                         case ACT_BA_FIRE_3:
4033                         case ACT_WHIRLWIND:
4034                         case ACT_CHARM_ANIMAL:
4035                         case ACT_SUMMON_ANIMAL:
4036                         case ACT_DISP_EVIL:
4037                         case ACT_DISP_GOOD:
4038                         case ACT_XTRA_SPEED:
4039                         case ACT_DETECT_XTRA:
4040                         case ACT_ID_FULL:
4041                                 lev = 50;
4042                                 break;
4043                         case ACT_VAMPIRE_2:
4044                         case ACT_BA_COLD_3:
4045                         case ACT_BA_ELEC_3:
4046                         case ACT_GENOCIDE:
4047                         case ACT_CHARM_UNDEAD:
4048                         case ACT_CHARM_OTHER:
4049                         case ACT_SUMMON_PHANTOM:
4050                         case ACT_SUMMON_ELEMENTAL:
4051                         case ACT_RUNE_EXPLO:
4052                                 lev = 60;
4053                                 break;
4054                         case ACT_MASS_GENO:
4055                         case ACT_CHARM_ANIMALS:
4056                         case ACT_CHARM_OTHERS:
4057                         case ACT_CURE_700:
4058                         case ACT_RUNE_PROT:
4059                         case ACT_ALCHEMY:
4060                         case ACT_REST_ALL:
4061                                 lev = 70;
4062                                 break;
4063                         case ACT_CALL_CHAOS:
4064                         case ACT_ROCKET:
4065                         case ACT_BA_MISS_3:
4066                         case ACT_CURE_1000:
4067                         case ACT_DIM_DOOR:
4068                         case ACT_SUMMON_UNDEAD:
4069                         case ACT_SUMMON_DEMON:
4070                                 lev = 80;
4071                                 break;
4072                         case ACT_WRAITH:
4073                         case ACT_INVULN:
4074                                 lev = 100;
4075                                 break;
4076                         default:
4077                                 lev = 0;
4078                 }
4079         }
4080         else if (((o_ptr->tval == TV_RING) || (o_ptr->tval == TV_AMULET)) && o_ptr->name2) lev = e_info[o_ptr->name2].level;
4081
4082         /* Base chance of success */
4083         chance = p_ptr->skill_dev;
4084
4085         /* Confusion hurts skill */
4086         if (p_ptr->confused) chance = chance / 2;
4087
4088         fail = lev+5;
4089         if (chance > fail) fail -= (chance - fail)*2;
4090         else chance -= (fail - chance)*2;
4091         if (fail < USE_DEVICE) fail = USE_DEVICE;
4092         if (chance < USE_DEVICE) chance = USE_DEVICE;
4093
4094         if (world_player)
4095         {
4096                 if (flush_failure) flush();
4097 #ifdef JP
4098                 msg_print("»ß¤Þ¤Ã¤¿»þ¤ÎÃæ¤Ç¤Ï¤¦¤Þ¤¯Æ¯¤«¤Ê¤¤¤è¤¦¤À¡£");
4099 #else
4100                 msg_print("It shows no reaction.");
4101 #endif
4102
4103                 sound(SOUND_FAIL);
4104                 return;
4105         }
4106
4107         if (p_ptr->pclass == CLASS_BERSERKER) success = FALSE;
4108         else if (chance > fail)
4109         {
4110                 if (randint0(chance*2) < fail) success = FALSE;
4111                 else success = TRUE;
4112         }
4113         else
4114         {
4115                 if (randint0(fail*2) < chance) success = TRUE;
4116                 else success = FALSE;
4117         }
4118
4119         /* Roll for usage */
4120         if (!success)
4121         {
4122                 if (flush_failure) flush();
4123 #ifdef JP
4124                 msg_print("¤¦¤Þ¤¯»ÏÆ°¤µ¤»¤ë¤³¤È¤¬¤Ç¤­¤Ê¤«¤Ã¤¿¡£");
4125 #else
4126                 msg_print("You failed to activate it properly.");
4127 #endif
4128
4129                 sound(SOUND_FAIL);
4130                 return;
4131         }
4132
4133         /* Check the recharge */
4134         if (o_ptr->timeout)
4135         {
4136 #ifdef JP
4137                 msg_print("¤½¤ì¤ÏÈù¤«¤Ë²»¤òΩ¤Æ¡¢µ±¤­¡¢¾Ã¤¨¤¿...");
4138 #else
4139                 msg_print("It whines, glows and fades...");
4140 #endif
4141
4142                 return;
4143         }
4144
4145
4146         /* Activate the artifact */
4147 #ifdef JP
4148         msg_print("»ÏÆ°¤µ¤»¤¿...");
4149 #else
4150         msg_print("You activate it...");
4151 #endif
4152
4153
4154         /* Sound */
4155         sound(SOUND_ZAP);
4156
4157         if (o_ptr->name1)
4158         {
4159                 if (!o_ptr->xtra2) o_ptr->xtra2 = a_info[o_ptr->name1].act_idx;
4160         }
4161
4162         if (object_is_artifact(o_ptr) && o_ptr->xtra2)
4163         {
4164                 (void)activate_random_artifact(o_ptr);
4165
4166                 /* Window stuff */
4167                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
4168
4169                 /* Success */
4170                 return;
4171         }
4172
4173         /* Artifacts */
4174         else if (object_is_fixed_artifact(o_ptr))
4175         {
4176                 /* Choose effect */
4177                 switch (o_ptr->name1)
4178                 {
4179                         case ART_RAZORBACK:
4180                         {
4181                                 int num = damroll(5, 3);
4182                                 int y, x;
4183                                 int attempts;
4184 #ifdef JP
4185                                 msg_print("³»¤¬°ðºÊ¤Çʤ¤ï¤ì¤¿...");
4186 #else
4187                                 msg_print("Your armor is surrounded by lightning...");
4188 #endif
4189                                 for (k = 0; k < num; k++)
4190                                 {
4191                                         attempts = 1000;
4192
4193                                         while (attempts--)
4194                                         {
4195                                                 scatter(&y, &x, py, px, 4, 0);
4196
4197                                                 if (!cave_have_flag_bold(y, x, FF_PROJECT)) continue;
4198
4199                                                 if (!player_bold(y, x)) break;
4200                                         }
4201
4202                                         project(0, 3, y, x, 150, GF_ELEC,
4203                                                           (PROJECT_THRU | PROJECT_STOP | PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL), -1);
4204                                 }
4205
4206                                 o_ptr->timeout = 1000;
4207                                 break;
4208                         }
4209
4210                         case ART_BLADETURNER:
4211                         {
4212                                 if (!get_aim_dir(&dir)) return;
4213 #ifdef JP
4214                                 msg_print("¤¢¤Ê¤¿¤Ï¥¨¥ì¥á¥ó¥È¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£");
4215 #else
4216                                 msg_print("You breathe the elements.");
4217 #endif
4218
4219                                 fire_ball(GF_MISSILE, dir, 300, 4);
4220 #ifdef JP
4221                                 msg_print("³»¤¬ÍÍ¡¹¤Ê¿§¤Ëµ±¤¤¤¿...");
4222 #else
4223                                 msg_print("Your armor glows many colours...");
4224 #endif
4225
4226                                 (void)set_afraid(0);
4227                                 (void)set_hero(randint1(50) + 50, FALSE);
4228                                 (void)hp_player(10);
4229                                 (void)set_blessed(randint1(50) + 50, FALSE);
4230                                 (void)set_oppose_acid(randint1(50) + 50, FALSE);
4231                                 (void)set_oppose_elec(randint1(50) + 50, FALSE);
4232                                 (void)set_oppose_fire(randint1(50) + 50, FALSE);
4233                                 (void)set_oppose_cold(randint1(50) + 50, FALSE);
4234                                 (void)set_oppose_pois(randint1(50) + 50, FALSE);
4235                                 o_ptr->timeout = 400;
4236                                 break;
4237                         }
4238
4239                         case ART_KUSANAGI:
4240                         case ART_WEREWINDLE:
4241                         {
4242                                 switch (randint1(13))
4243                                 {
4244                                 case 1: case 2: case 3: case 4: case 5:
4245                                         teleport_player(10, 0L);
4246                                         break;
4247                                 case 6: case 7: case 8: case 9: case 10:
4248                                         teleport_player(222, 0L);
4249                                         break;
4250                                 case 11: case 12:
4251                                         (void)stair_creation();
4252                                         break;
4253                                 default:
4254 #ifdef JP
4255                                         if (get_check("¤³¤Î³¬¤òµî¤ê¤Þ¤¹¤«¡©"))
4256 #else
4257                                         if (get_check("Leave this level? "))
4258 #endif
4259                                         {
4260                                                 if (autosave_l) do_cmd_save_game(TRUE);
4261
4262                                                 /* Leaving */
4263                                                 p_ptr->leaving = TRUE;
4264                                         }
4265                                 }
4266                                 o_ptr->timeout = 35;
4267                                 break;
4268                         }
4269
4270                         case ART_DAWN:
4271                         {
4272 #ifdef JP
4273                                 msg_print("¶Ç¤Î»ÕÃĤò¾¤´­¤·¤¿¡£");
4274 #else
4275                                 msg_print("You summon the Legion of the Dawn.");
4276 #endif
4277                                 (void)summon_specific(-1, py, px, dun_level, SUMMON_DAWN, (PM_ALLOW_GROUP | PM_FORCE_PET));
4278                                 o_ptr->timeout = 500 + randint1(500);
4279                                 break;
4280                         }
4281
4282                         case ART_CRIMSON:
4283                         {
4284                                 int num = 1;
4285                                 int i;
4286                                 int flg = PROJECT_STOP | PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL;
4287                                 int tx, ty;
4288 #ifdef JP
4289                                 msg_print("¤»¤Ã¤«¤¯¤À¤«¤é¡Ø¥¯¥ê¥à¥¾¥ó¡Ù¤ò¤Ö¤Ã¤Ñ¤Ê¤¹¤¼¡ª");
4290 #else
4291                                 msg_print("I'll fire CRIMSON! SEKKAKUDAKARA!");
4292 #endif
4293
4294                                 if (!get_aim_dir(&dir)) return;
4295
4296                                 /* Use the given direction */
4297                                 tx = px + 99 * ddx[dir];
4298                                 ty = py + 99 * ddy[dir];
4299
4300                                 /* Hack -- Use an actual "target" */
4301                                 if ((dir == 5) && target_okay())
4302                                 {
4303                                         tx = target_col;
4304                                         ty = target_row;
4305                                 }
4306
4307                                 if (p_ptr->pclass == CLASS_ARCHER)
4308                                 {
4309                                         /* Extra shot at level 10 */
4310                                         if (p_ptr->lev >= 10) num++;
4311
4312                                         /* Extra shot at level 30 */
4313                                         if (p_ptr->lev >= 30) num++;
4314
4315                                         /* Extra shot at level 45 */
4316                                         if (p_ptr->lev >= 45) num++;
4317                                 }
4318
4319                                 for (i = 0; i < num; i++)
4320                                         project(0, p_ptr->lev/20+1, ty, tx, p_ptr->lev*p_ptr->lev*6/50, GF_ROCKET, flg, -1);
4321                                 o_ptr->timeout = 15;
4322                                 break;
4323                         }
4324                         case ART_STONE_LORE:
4325                         {
4326 #ifdef JP
4327                                 msg_print("ÀФ¬±£¤µ¤ì¤¿ÈëÌ©¤ò¼Ì¤·½Ð¤·¤¿¡¥¡¥¡¥");
4328 #else
4329                                 msg_print("The stone reveals hidden mysteries...");
4330 #endif
4331                                 if (!ident_spell(FALSE)) return;
4332
4333                                 if (mp_ptr->spell_book)
4334                                 {
4335                                         /* Sufficient mana */
4336                                         if (20 <= p_ptr->csp)
4337                                         {
4338                                                 /* Use some mana */
4339                                                 p_ptr->csp -= 20;
4340                                         }
4341
4342                                         /* Over-exert the player */
4343                                         else
4344                                         {
4345                                                 int oops = 20 - p_ptr->csp;
4346
4347                                                 /* No mana left */
4348                                                 p_ptr->csp = 0;
4349                                                 p_ptr->csp_frac = 0;
4350
4351                                                 /* Message */
4352 #ifdef JP
4353                                                 msg_print("ÀФòÀ©¸æ¤Ç¤­¤Ê¤¤¡ª");
4354 #else
4355                                                 msg_print("You are too weak to control the stone!");
4356 #endif
4357
4358                                                 /* Hack -- Bypass free action */
4359                                                 (void)set_paralyzed(p_ptr->paralyzed +
4360                                                         randint1(5 * oops + 1));
4361
4362                                                 /* Confusing. */
4363                                                 (void)set_confused(p_ptr->confused +
4364                                                         randint1(5 * oops + 1));
4365                                         }
4366
4367                                         /* Redraw mana */
4368                                         p_ptr->redraw |= (PR_MANA);
4369                                 }
4370
4371 #ifdef JP
4372                                 take_hit(DAMAGE_LOSELIFE, damroll(1, 12), "´í¸±¤ÊÈëÌ©", -1);
4373 #else
4374                                 take_hit(DAMAGE_LOSELIFE, damroll(1, 12), "perilous secrets", -1);
4375 #endif
4376
4377                                 /* Confusing. */
4378                                 if (one_in_(5)) (void)set_confused(p_ptr->confused +
4379                                         randint1(10));
4380
4381                                 /* Exercise a little care... */
4382                                 if (one_in_(20))
4383 #ifdef JP
4384                                         take_hit(DAMAGE_LOSELIFE, damroll(4, 10), "´í¸±¤ÊÈëÌ©", -1);
4385 #else
4386                                         take_hit(DAMAGE_LOSELIFE, damroll(4, 10), "perilous secrets", -1);
4387 #endif
4388                                 o_ptr->timeout = 0;
4389                                 break;
4390                         }
4391
4392                         case ART_BOROMIR:
4393                         {
4394                                 if (music_singing_any()) stop_singing();
4395                                 if (hex_spelling_any()) stop_hex_spell_all();
4396 #ifdef JP
4397                                 msg_print("¤¢¤Ê¤¿¤ÏÎ϶¯¤¤ÆÍÉ÷¤ò¿á¤­ÌĤ餷¤¿¡£¼þ°Ï¤ÎŨ¤¬¿Ì¤¨¾å¤Ã¤Æ¤¤¤ë!");
4398 #else
4399                                 msg_print("You wind a mighty blast; your enemies tremble!");
4400 #endif
4401                                 (void)turn_monsters((3 * p_ptr->lev / 2) + 10);
4402                                 o_ptr->timeout = randint0(40) + 40;
4403                                 break;
4404                         }
4405                         case ART_YENDOR:
4406                         {
4407 #ifdef JP
4408                                 msg_print("¥«¡¼¥É¤¬Çò¤¯µ±¤¤¤¿¡¥¡¥¡¥");
4409 #else
4410                                 msg_print("Your card gleams with blinding light...");
4411 #endif
4412                                 if (!recharge(1000)) return;
4413                                 o_ptr->timeout = 200;
4414                                 break;
4415                         }
4416                         case ART_MURAMASA:
4417                         {
4418 #ifdef JP
4419                                 if (get_check("ËÜÅö¤Ë»È¤¤¤Þ¤¹¤«¡©"))
4420 #else
4421                                 if (get_check("Are you sure?!"))
4422 #endif
4423                                 {
4424 #ifdef JP
4425                                         msg_print("¼Àµ¤¬¿Ì¤¨¤¿¡¥¡¥¡¥");
4426 #else
4427                                         msg_print("The Muramasa pulsates...");
4428 #endif
4429                                         do_inc_stat(A_STR);
4430                                         if (one_in_(2))
4431                                         {
4432 #ifdef JP
4433                                                 msg_print("¼Àµ¤Ï²õ¤ì¤¿¡ª");
4434 #else
4435                                                 msg_print("The Muramasa is destroyed!");
4436 #endif
4437                                                 curse_weapon(TRUE, item);
4438                                         }
4439                                 }
4440                                 break;
4441                         }
4442                         case ART_TAIKOBO:
4443                         {
4444                                 int x, y;
4445
4446                                 if (!get_rep_dir2(&dir)) return;
4447                                 y = py+ddy[dir];
4448                                 x = px+ddx[dir];
4449                                 tsuri_dir = dir;
4450                                 if (!cave_have_flag_bold(y, x, FF_WATER))
4451                                 {
4452 #ifdef JP
4453                                         msg_print("¤½¤³¤Ï¿åÊդǤϤʤ¤¡£");
4454 #else
4455                                         msg_print("There is no fishing place.");
4456 #endif
4457                                         return;
4458                                 }
4459                                 else if (cave[y][x].m_idx)
4460                                 {
4461                                         char m_name[80];
4462                                         monster_desc(m_name, &m_list[cave[y][x].m_idx], 0);
4463 #ifdef JP
4464                                         msg_format("%s¤¬¼ÙËâ¤À¡ª", m_name);
4465 #else
4466                                         msg_format("%^s is stand in your way.", m_name);
4467 #endif
4468                                         energy_use = 0;
4469                                         return;
4470                                 }
4471                                 set_action(ACTION_FISH);
4472                                 p_ptr->redraw |= (PR_STATE);
4473                                 break;
4474                         }
4475                         case ART_INROU:
4476                         {
4477                                 int count = 0, i;
4478                                 monster_type *m_ptr;
4479 #ifndef JP
4480                                 cptr kakusan = "";
4481 #endif
4482
4483                                 if (summon_named_creature(0, py, px, MON_SUKE, PM_FORCE_PET))
4484                                 {
4485 #ifdef JP
4486                                         msg_print("¡Ø½õ¤µ¤ó¡Ù¤¬¸½¤ì¤¿¡£");
4487 #else
4488                                         msg_print("Suke-san apperars.");
4489                                         kakusan = "Suke-san";
4490 #endif
4491                                         count++;
4492                                 }
4493                                 if (summon_named_creature(0, py, px, MON_KAKU, PM_FORCE_PET))
4494                                 {
4495 #ifdef JP
4496                                         msg_print("¡Ø³Ê¤µ¤ó¡Ù¤¬¸½¤ì¤¿¡£");
4497 #else
4498                                         msg_print("Kaku-san appears.");
4499                                         kakusan = "Kaku-san";
4500 #endif
4501                                         count++;
4502                                 }
4503                                 if (!count)
4504                                 {
4505                                         for (i = m_max - 1; i > 0; i--)
4506                                         {
4507                                                 m_ptr = &m_list[i];
4508                                                 if (!m_ptr->r_idx) continue;
4509                                                 if (!((m_ptr->r_idx == MON_SUKE) || (m_ptr->r_idx == MON_KAKU))) continue;
4510                                                 if (!los(m_ptr->fy, m_ptr->fx, py, px)) continue;
4511                                                 if (!projectable(m_ptr->fy, m_ptr->fx, py, px)) continue;
4512                                                 count++;
4513                                                 break;
4514                                         }
4515                                 }
4516
4517                                 if (count)
4518                                 {
4519 #ifdef JP
4520                                         msg_print("¡Ö¼Ô¤É¤â¡¢¤Ò¤«¤¨¤ª¤í¤¦¡ª¡ª¡ª¤³¤Î¤ªÊý¤ò¤É¤Ê¤¿¤È¤³¤³¤í¤¨¤ë¡£¡×");
4521 #else
4522                                         msg_format("%^s says 'WHO do you think this person is! Bow your head, down your knees!'", kakusan);
4523 #endif
4524
4525                                         sukekaku = TRUE;
4526                                         stun_monsters(120);
4527                                         confuse_monsters(120);
4528                                         turn_monsters(120);
4529                                         stasis_monsters(120);
4530                                         sukekaku = FALSE;
4531                                 }
4532                                 else
4533                                 {
4534 #ifdef JP
4535                                         msg_print("¤·¤«¤·¡¢²¿¤âµ¯¤­¤Ê¤«¤Ã¤¿¡£");
4536 #else
4537                                         msg_print("Nothing happen.");
4538 #endif
4539                                 }
4540                                 o_ptr->timeout = randint0(150) + 150;
4541                                 break;
4542                         }
4543
4544                         case ART_HYOUSIGI:
4545                         {
4546 #ifdef JP
4547                                 msg_print("Çï»ÒÌÚ¤òÂǤä¿¡£");
4548 #else
4549                                 msg_print("You beat Your wooden clappers.");
4550 #endif
4551                                 aggravate_monsters(0);
4552                                 break;
4553                         }
4554                         case ART_BLOOD:
4555                         {
4556 #ifdef JP
4557                                 msg_print("³ù¤¬ÌÀ¤ë¤¯µ±¤¤¤¿...");
4558 #else
4559                                 msg_print("Your scythe glows brightly!");
4560 #endif
4561                                 get_bloody_moon_flags(o_ptr);
4562                                 o_ptr->timeout = 3333;
4563                                 if (p_ptr->prace == RACE_ANDROID) calc_android_exp();
4564                                 p_ptr->update |= (PU_BONUS | PU_HP);
4565                                 break;
4566                         }
4567                         case ART_KESHO:
4568                         {
4569 #ifdef JP
4570                                 msg_print("Î϶¯¤¯»Í¸Ô¤òƧ¤ó¤À¡£");
4571 #else
4572                                 msg_print("You stamp. (as if you are in a ring.)");
4573 #endif
4574                                 (void)set_afraid(0);
4575                                 (void)set_hero(randint1(20) + 20, FALSE);
4576                                 dispel_evil(p_ptr->lev * 3);
4577                                 o_ptr->timeout = 100 + randint1(100);
4578                                 break;
4579                         }
4580                         case ART_JIZO:
4581                         {
4582                                 u32b mode = PM_ALLOW_GROUP;
4583                                 bool pet = !one_in_(5);
4584                                 if (pet) mode |= PM_FORCE_PET;
4585
4586                                 if (summon_named_creature(0, py, px, MON_JIZOTAKO, mode))
4587                                 {
4588                                         if (pet)
4589 #ifdef JP
4590                                                 msg_print("Âý¤¬¤¢¤Ê¤¿¤Î²¼ËͤȤ·¤Æ½Ð¸½¤·¤¿¡£");
4591 #else
4592                                                 msg_print("A group of octopuses appear as your servant.");
4593 #endif
4594                                         else
4595 #ifdef JP
4596                                                 msg_print("Âý¤Ï¤¢¤Ê¤¿¤òâˤó¤Ç¤¤¤ë¡ª");
4597 #else
4598                                                 msg_print("A group of octopuses appear as your enemy!");
4599 #endif
4600                                 }
4601
4602                                 o_ptr->timeout = 300 + randint1(150);
4603                                 break;
4604                         }
4605
4606                         case ART_SACRED_KNIGHTS:
4607                         {
4608 #ifdef JP
4609                                 msg_print("¼ó¾þ¤ê¤¬¿¿¼Â¤ò¾È¤é¤·½Ð¤¹...");
4610 #else
4611                                 msg_print("Your amulet exhibits the truth...");
4612 #endif
4613                                 if (remove_all_curse())
4614                                 {
4615 #ifdef JP
4616                                         msg_print("狼¤Ë¸«¼é¤é¤ì¤Æ¤¤¤ë¤è¤¦¤Êµ¤¤¬¤¹¤ë¡£");
4617 #else
4618                                         msg_print("You feel as if someone is watching over you.");
4619 #endif
4620                                 }
4621                                 (void)probing();
4622                                 break;
4623                         }
4624                 }
4625
4626                 /* Window stuff */
4627                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
4628
4629                 /* Done */
4630                 return;
4631         }
4632
4633         if (object_is_smith(o_ptr))
4634         {
4635                 switch (o_ptr->xtra3-1)
4636                 {
4637                 case ESSENCE_TMP_RES_ACID:
4638                         (void)set_oppose_acid(randint1(20) + 20, FALSE);
4639                         o_ptr->timeout = randint0(50) + 50;
4640                         return;
4641
4642                 case ESSENCE_TMP_RES_ELEC:
4643                         (void)set_oppose_elec(randint1(20) + 20, FALSE);
4644                         o_ptr->timeout = randint0(50) + 50;
4645                         return;
4646
4647                 case ESSENCE_TMP_RES_FIRE:
4648                         (void)set_oppose_fire(randint1(20) + 20, FALSE);
4649                         o_ptr->timeout = randint0(50) + 50;
4650                         return;
4651
4652                 case ESSENCE_TMP_RES_COLD:
4653                         (void)set_oppose_cold(randint1(20) + 20, FALSE);
4654                         o_ptr->timeout = randint0(50) + 50;
4655                         return;
4656
4657                 case TR_IMPACT:
4658                         earthquake(py, px, 5);
4659                         o_ptr->timeout = 100 + randint1(100);
4660                         
4661                         /* Window stuff */
4662                         p_ptr->window |= (PW_INVEN | PW_EQUIP);
4663
4664                         /* Done */
4665                         return;
4666                 }
4667         }
4668
4669
4670         if (o_ptr->name2 == EGO_TRUMP)
4671         {
4672                 teleport_player(100, 0L);
4673                 o_ptr->timeout = 50 + randint1(50);
4674
4675                 /* Window stuff */
4676                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
4677
4678                 /* Done */
4679                 return;
4680         }
4681
4682
4683         if (o_ptr->name2 == EGO_LITE_ILLUMINATION)
4684         {
4685                 if (!o_ptr->xtra4 && ((o_ptr->sval == SV_LITE_TORCH) || (o_ptr->sval == SV_LITE_LANTERN)))
4686                 {
4687 #ifdef JP
4688                         msg_print("dzÎÁ¤¬¤Ê¤¤¡£");
4689 #else
4690                         msg_print("It has no fuel.");
4691 #endif
4692                         energy_use = 0;
4693                         return;
4694                 }
4695                 lite_area(damroll(2, 15), 3);
4696                 o_ptr->timeout = randint0(10) + 10;
4697
4698                 /* Window stuff */
4699                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
4700
4701                 return;
4702         }
4703
4704
4705         if (o_ptr->name2 == EGO_EARTHQUAKES)
4706         {
4707                 earthquake(py, px, 5);
4708                 o_ptr->timeout = 100 + randint1(100);
4709
4710                 /* Window stuff */
4711                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
4712
4713                 /* Done */
4714                 return;
4715         }
4716
4717
4718         if (o_ptr->name2 == EGO_JUMP)
4719         {
4720                 teleport_player(10, 0L);
4721                 o_ptr->timeout = 10 + randint1(10);
4722
4723                 /* Window stuff */
4724                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
4725
4726                 /* Done */
4727                 return;
4728         }
4729
4730
4731         /* Hack -- Dragon Scale Mail can be activated as well */
4732         if (o_ptr->tval == TV_DRAG_ARMOR)
4733         {
4734                 /* Get a direction for breathing (or abort) */
4735                 if (!get_aim_dir(&dir)) return;
4736
4737                 if (music_singing_any()) stop_singing();
4738                 if (hex_spelling_any()) stop_hex_spell_all();
4739
4740                 /* Branch on the sub-type */
4741                 switch (o_ptr->sval)
4742                 {
4743                         case SV_DRAGON_BLUE:
4744                         {
4745 #ifdef JP
4746                                 msg_print("¤¢¤Ê¤¿¤Ï°ðºÊ¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£");
4747 #else
4748                                 msg_print("You breathe lightning.");
4749 #endif
4750
4751                                 fire_ball(GF_ELEC, dir, 100, -2);
4752                                 o_ptr->timeout = randint0(150) + 150;
4753                                 break;
4754                         }
4755
4756                         case SV_DRAGON_WHITE:
4757                         {
4758 #ifdef JP
4759                                 msg_print("¤¢¤Ê¤¿¤ÏÎ䵤¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£");
4760 #else
4761                                 msg_print("You breathe frost.");
4762 #endif
4763
4764                                 fire_ball(GF_COLD, dir, 110, -2);
4765                                 o_ptr->timeout = randint0(150) + 150;
4766                                 break;
4767                         }
4768
4769                         case SV_DRAGON_BLACK:
4770                         {
4771 #ifdef JP
4772                                 msg_print("¤¢¤Ê¤¿¤Ï»À¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£");
4773 #else
4774                                 msg_print("You breathe acid.");
4775 #endif
4776
4777                                 fire_ball(GF_ACID, dir, 130, -2);
4778                                 o_ptr->timeout = randint0(150) + 150;
4779                                 break;
4780                         }
4781
4782                         case SV_DRAGON_GREEN:
4783                         {
4784 #ifdef JP
4785                                 msg_print("¤¢¤Ê¤¿¤ÏÆÇ¥¬¥¹¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£");
4786 #else
4787                                 msg_print("You breathe poison gas.");
4788 #endif
4789
4790                                 fire_ball(GF_POIS, dir, 150, -2);
4791                                 o_ptr->timeout = randint0(180) + 180;
4792                                 break;
4793                         }
4794
4795                         case SV_DRAGON_RED:
4796                         {
4797 #ifdef JP
4798                                 msg_print("¤¢¤Ê¤¿¤Ï²Ð±ê¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£");
4799 #else
4800                                 msg_print("You breathe fire.");
4801 #endif
4802
4803                                 fire_ball(GF_FIRE, dir, 200, -2);
4804                                 o_ptr->timeout = randint0(200) + 200;
4805                                 break;
4806                         }
4807
4808                         case SV_DRAGON_MULTIHUED:
4809                         {
4810                                 chance = randint0(5);
4811 #ifdef JP
4812                                 msg_format("¤¢¤Ê¤¿¤Ï%s¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£",
4813                                            ((chance == 1) ? "°ðºÊ" :
4814                                             ((chance == 2) ? "Î䵤" :
4815                                              ((chance == 3) ? "»À" :
4816                                               ((chance == 4) ? "ÆÇ¥¬¥¹" : "²Ð±ê")))));
4817 #else
4818                                 msg_format("You breathe %s.",
4819                                            ((chance == 1) ? "lightning" :
4820                                             ((chance == 2) ? "frost" :
4821                                              ((chance == 3) ? "acid" :
4822                                               ((chance == 4) ? "poison gas" : "fire")))));
4823 #endif
4824
4825                                 fire_ball(((chance == 1) ? GF_ELEC :
4826                                            ((chance == 2) ? GF_COLD :
4827                                             ((chance == 3) ? GF_ACID :
4828                                              ((chance == 4) ? GF_POIS : GF_FIRE)))),
4829                                           dir, 250, -2);
4830                                 o_ptr->timeout = randint0(200) + 200;
4831                                 break;
4832                         }
4833
4834                         case SV_DRAGON_BRONZE:
4835                         {
4836 #ifdef JP
4837                                 msg_print("¤¢¤Ê¤¿¤Ïº®Íð¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£");
4838 #else
4839                                 msg_print("You breathe confusion.");
4840 #endif
4841
4842                                 fire_ball(GF_CONFUSION, dir, 120, -2);
4843                                 o_ptr->timeout = randint0(180) + 180;
4844                                 break;
4845                         }
4846
4847                         case SV_DRAGON_GOLD:
4848                         {
4849 #ifdef JP
4850                                 msg_print("¤¢¤Ê¤¿¤Ï¹ì²»¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£");
4851 #else
4852                                 msg_print("You breathe sound.");
4853 #endif
4854
4855                                 fire_ball(GF_SOUND, dir, 130, -2);
4856                                 o_ptr->timeout = randint0(180) + 180;
4857                                 break;
4858                         }
4859
4860                         case SV_DRAGON_CHAOS:
4861                         {
4862                                 chance = randint0(2);
4863 #ifdef JP
4864                                 msg_format("¤¢¤Ê¤¿¤Ï%s¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£",
4865                                            ((chance == 1 ? "¥«¥ª¥¹" : "Îô²½")));
4866 #else
4867                                 msg_format("You breathe %s.",
4868                                            ((chance == 1 ? "chaos" : "disenchantment")));
4869 #endif
4870
4871                                 fire_ball((chance == 1 ? GF_CHAOS : GF_DISENCHANT),
4872                                           dir, 220, -2);
4873                                 o_ptr->timeout = randint0(200) + 200;
4874                                 break;
4875                         }
4876
4877                         case SV_DRAGON_LAW:
4878                         {
4879                                 chance = randint0(2);
4880 #ifdef JP
4881                                 msg_format("¤¢¤Ê¤¿¤Ï%s¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£",
4882                                            ((chance == 1 ? "¹ì²»" : "ÇËÊÒ")));
4883 #else
4884                                 msg_format("You breathe %s.",
4885                                            ((chance == 1 ? "sound" : "shards")));
4886 #endif
4887
4888                                 fire_ball((chance == 1 ? GF_SOUND : GF_SHARDS),
4889                                           dir, 230, -2);
4890                                 o_ptr->timeout = randint0(200) + 200;
4891                                 break;
4892                         }
4893
4894                         case SV_DRAGON_BALANCE:
4895                         {
4896                                 chance = randint0(4);
4897 #ifdef JP
4898                                 msg_format("¤¢¤Ê¤¿¤Ï%s¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿",
4899                                            ((chance == 1) ? "¥«¥ª¥¹" :
4900                                             ((chance == 2) ? "Îô²½" :
4901                                              ((chance == 3) ? "¹ì²»" : "ÇËÊÒ"))));
4902 #else
4903                                 msg_format("You breathe %s.",
4904                                            ((chance == 1) ? "chaos" :
4905                                             ((chance == 2) ? "disenchantment" :
4906                                              ((chance == 3) ? "sound" : "shards"))));
4907 #endif
4908
4909                                 fire_ball(((chance == 1) ? GF_CHAOS :
4910                                            ((chance == 2) ? GF_DISENCHANT :
4911                                             ((chance == 3) ? GF_SOUND : GF_SHARDS))),
4912                                           dir, 250, -2);
4913                                 o_ptr->timeout = randint0(200) + 200;
4914                                 break;
4915                         }
4916
4917                         case SV_DRAGON_SHINING:
4918                         {
4919                                 chance = randint0(2);
4920 #ifdef JP
4921                                 msg_format("¤¢¤Ê¤¿¤Ï%s¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£",
4922                                            ((chance == 0 ? "Á®¸÷" : "°Å¹õ")));
4923 #else
4924                                 msg_format("You breathe %s.",
4925                                            ((chance == 0 ? "light" : "darkness")));
4926 #endif
4927
4928                                 fire_ball((chance == 0 ? GF_LITE : GF_DARK), dir, 200, -2);
4929                                 o_ptr->timeout = randint0(200) + 200;
4930                                 break;
4931                         }
4932
4933                         case SV_DRAGON_POWER:
4934                         {
4935 #ifdef JP
4936 msg_print("¤¢¤Ê¤¿¤Ï¥¨¥ì¥á¥ó¥È¤Î¥Ö¥ì¥¹¤òÅǤ¤¤¿¡£");
4937 #else
4938                                 msg_print("You breathe the elements.");
4939 #endif
4940
4941                                 fire_ball(GF_MISSILE, dir, 300, -3);
4942                                 o_ptr->timeout = randint0(200) + 200;
4943                                 break;
4944                         }
4945                 }
4946
4947                 /* Window stuff */
4948                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
4949
4950                 /* Success */
4951                 return;
4952         }
4953
4954         else if (o_ptr->tval == TV_RING)
4955         {
4956                 if (object_is_ego(o_ptr))
4957                 {
4958                         bool success = TRUE;
4959
4960                         switch (o_ptr->name2)
4961                         {
4962                         case EGO_RING_HERO:
4963                                 (void)set_afraid(0);
4964                                 (void)set_hero(randint1(25) + 25, FALSE);
4965                                 (void)hp_player(10);
4966                                 o_ptr->timeout = randint1(100)+100;
4967                                 break;
4968                         case EGO_RING_MAGIC_MIS:
4969                                 if (!get_aim_dir(&dir)) return;
4970                                 fire_bolt(GF_MISSILE, dir, damroll(2, 6));
4971                                 o_ptr->timeout = 2;
4972                                 break;
4973                         case EGO_RING_FIRE_BOLT:
4974                                 if (!get_aim_dir(&dir)) return;
4975                                 fire_bolt(GF_FIRE, dir, damroll(9, 8));
4976                                 o_ptr->timeout = randint0(8) + 8;
4977                                 break;
4978                         case EGO_RING_COLD_BOLT:
4979                                 if (!get_aim_dir(&dir)) return;
4980                                 fire_bolt(GF_COLD, dir, damroll(6, 8));
4981                                 o_ptr->timeout = randint0(7) + 7;
4982                                 break;
4983                         case EGO_RING_ELEC_BOLT:
4984                                 if (!get_aim_dir(&dir)) return;
4985                                 fire_bolt(GF_ELEC, dir, damroll(4, 8));
4986                                 o_ptr->timeout = randint0(5) + 5;
4987                                 break;
4988                         case EGO_RING_ACID_BOLT:
4989                                 if (!get_aim_dir(&dir)) return;
4990                                 fire_bolt(GF_ACID, dir, damroll(5, 8));
4991                                 o_ptr->timeout = randint0(6) + 6;
4992                                 break;
4993                         case EGO_RING_MANA_BOLT:
4994                                 if (!get_aim_dir(&dir)) return;
4995                                 fire_bolt(GF_MANA, dir, 120);
4996                                 o_ptr->timeout = randint0(120)+120;
4997                                 break;
4998                         case EGO_RING_FIRE_BALL:
4999                                 if (!get_aim_dir(&dir)) return;
5000                                 fire_ball(GF_FIRE, dir, 100, 2);
5001                                 o_ptr->timeout = randint0(80) + 80;
5002                                 break;
5003                         case EGO_RING_COLD_BALL:
5004                                 if (!get_aim_dir(&dir)) return;
5005                                 fire_ball(GF_COLD, dir, 100, 2);
5006                                 o_ptr->timeout = randint0(80) + 80;
5007                                 break;
5008                         case EGO_RING_ELEC_BALL:
5009                                 if (!get_aim_dir(&dir)) return;
5010                                 fire_ball(GF_ELEC, dir, 100, 2);
5011                                 o_ptr->timeout = randint0(80) + 80;
5012                                 break;
5013                         case EGO_RING_ACID_BALL:
5014                                 if (!get_aim_dir(&dir)) return;
5015                                 fire_ball(GF_ACID, dir, 100, 2);
5016                                 o_ptr->timeout = randint0(80) + 80;
5017                                 break;
5018                         case EGO_RING_MANA_BALL:
5019                                 if (!get_aim_dir(&dir)) return;
5020                                 fire_ball(GF_MANA, dir, 250, 2);
5021                                 o_ptr->timeout = 300;
5022                                 break;
5023                         case EGO_RING_DRAGON_F:
5024                                 if (!get_aim_dir(&dir)) return;
5025                                 fire_ball(GF_FIRE, dir, 200, -2);
5026                                 if (o_ptr->sval == SV_RING_FLAMES)
5027                                 {
5028                                         (void)set_oppose_fire(randint1(20) + 20, FALSE);
5029                                         o_ptr->timeout = 200;
5030                                 }
5031                                 else o_ptr->timeout = 250;
5032                                 break;
5033                         case EGO_RING_DRAGON_C:
5034                                 if (!get_aim_dir(&dir)) return;
5035                                 fire_ball(GF_COLD, dir, 200, -2);
5036                                 if (o_ptr->sval == SV_RING_ICE)
5037                                 {
5038                                         (void)set_oppose_cold(randint1(20) + 20, FALSE);
5039                                         o_ptr->timeout = 200;
5040                                 }
5041                                 else o_ptr->timeout = 250;
5042                                 break;
5043                         case EGO_RING_M_DETECT:
5044                                 (void)detect_monsters_invis(255);
5045                                 (void)detect_monsters_normal(255);
5046                                 o_ptr->timeout = 150;
5047                                 break;
5048                         case EGO_RING_D_SPEED:
5049                                 (void)set_fast(randint1(30) + 15, FALSE);
5050                                 o_ptr->timeout = 100;
5051                                 break;
5052                         case EGO_RING_BERSERKER:
5053                                 (void)set_afraid(0);
5054                                 (void)set_shero(randint1(25) + 25, FALSE);
5055                                 o_ptr->timeout = randint0(75)+75;
5056                                 break;
5057                         case EGO_RING_TELE_AWAY:
5058                                 if (!get_aim_dir(&dir)) return;
5059                                 teleport_monster(dir);
5060                                 o_ptr->timeout = 150;
5061                                 break;
5062                         case EGO_RING_TRUE:
5063                         {
5064                                 int v = randint1(25)+25;
5065                                 (void)set_afraid(0);
5066                                 (void)set_hero(v, FALSE);
5067                                 (void)hp_player(10);
5068                                 (void)set_blessed(v, FALSE);
5069                                 (void)set_oppose_acid(v, FALSE);
5070                                 (void)set_oppose_elec(v, FALSE);
5071                                 (void)set_oppose_fire(v, FALSE);
5072                                 (void)set_oppose_cold(v, FALSE);
5073                                 (void)set_oppose_pois(v, FALSE);
5074                                 (void)set_ultimate_res(v, FALSE);
5075                                 o_ptr->timeout = 777;
5076                                 break;
5077                         }
5078                         default:
5079                                 success = FALSE;
5080                                 break;
5081                         }
5082                         if (success) return;
5083                 }
5084
5085                 /* Get a direction for breathing (or abort) */
5086                 if (!get_aim_dir(&dir)) return;
5087
5088                 switch (o_ptr->sval)
5089                 {
5090                         case SV_RING_ACID:
5091                         {
5092                                 fire_ball(GF_ACID, dir, 100, 2);
5093                                 (void)set_oppose_acid(randint1(20) + 20, FALSE);
5094                                 o_ptr->timeout = randint0(50) + 50;
5095                                 break;
5096                         }
5097
5098                         case SV_RING_ICE:
5099                         {
5100                                 fire_ball(GF_COLD, dir, 100, 2);
5101                                 (void)set_oppose_cold(randint1(20) + 20, FALSE);
5102                                 o_ptr->timeout = randint0(50) + 50;
5103                                 break;
5104                         }
5105
5106                         case SV_RING_FLAMES:
5107                         {
5108                                 fire_ball(GF_FIRE, dir, 100, 2);
5109                                 (void)set_oppose_fire(randint1(20) + 20, FALSE);
5110                                 o_ptr->timeout = randint0(50) + 50;
5111                                 break;
5112                         }
5113
5114                         case SV_RING_ELEC:
5115                         {
5116                                 fire_ball(GF_ELEC, dir, 100, 2);
5117                                 (void)set_oppose_elec(randint1(20) + 20, FALSE);
5118                                 o_ptr->timeout = randint0(50) + 50;
5119                                 break;
5120                         }
5121                 }
5122
5123                 /* Window stuff */
5124                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
5125
5126                 /* Success */
5127                 return;
5128         }
5129
5130         else if (o_ptr->tval == TV_AMULET)
5131         {
5132                 if (object_is_ego(o_ptr))
5133                 {
5134                         switch (o_ptr->name2)
5135                         {
5136                         case EGO_AMU_IDENT:
5137                                 if (!ident_spell(FALSE)) return;
5138                                 o_ptr->timeout = 10;
5139                                 break;
5140                         case EGO_AMU_CHARM:
5141                                 if (!get_aim_dir(&dir)) return;
5142                                 charm_monster(dir, MAX(20, p_ptr->lev));
5143                                 o_ptr->timeout = 200;
5144                                 break;
5145                         case EGO_AMU_JUMP:
5146                                 teleport_player(10, 0L);
5147                                 o_ptr->timeout = randint0(10) + 10;
5148                                 break;
5149                         case EGO_AMU_TELEPORT:
5150                                 teleport_player(100, 0L);
5151                                 o_ptr->timeout = randint0(50) + 50;
5152                                 break;
5153                         case EGO_AMU_D_DOOR:
5154                                 (void)dimension_door();
5155                                 o_ptr->timeout = 200;
5156                                 break;
5157                         case EGO_AMU_RES_FIRE_:
5158                                 (void)set_oppose_fire(randint1(20) + 20, FALSE);
5159                                 o_ptr->timeout = randint0(50) + 50;
5160                                 break;
5161                         case EGO_AMU_RES_COLD_:
5162                                 (void)set_oppose_cold(randint1(20) + 20, FALSE);
5163                                 o_ptr->timeout = randint0(50) + 50;
5164                                 break;
5165                         case EGO_AMU_RES_ELEC_:
5166                                 (void)set_oppose_elec(randint1(20) + 20, FALSE);
5167                                 o_ptr->timeout = randint0(50) + 50;
5168                                 break;
5169                         case EGO_AMU_RES_ACID_:
5170                                 (void)set_oppose_acid(randint1(20) + 20, FALSE);
5171                                 o_ptr->timeout = randint0(50) + 50;
5172                                 break;
5173                         case EGO_AMU_DETECTION:
5174                                 detect_all(DETECT_RAD_DEFAULT);
5175                                 o_ptr->timeout = randint0(55)+55;
5176                                 break;
5177                         }
5178                 }
5179                 return;
5180         }
5181
5182         else if (o_ptr->tval == TV_WHISTLE)
5183         {
5184                 if (music_singing_any()) stop_singing();
5185                 if (hex_spelling_any()) stop_hex_spell_all();
5186
5187 #if 0
5188                 if (object_is_cursed(o_ptr))
5189                 {
5190 #ifdef JP
5191                         msg_print("¥«¥ó¹â¤¤²»¤¬¶Á¤­ÅϤä¿¡£");
5192 #else
5193                         msg_print("You produce a shrill whistling sound.");
5194 #endif
5195                         aggravate_monsters(0);
5196                 }
5197                 else
5198 #endif
5199                 {
5200                         int pet_ctr, i;
5201                         u16b *who;
5202                         int max_pet = 0;
5203                         u16b dummy_why;
5204
5205                         /* Allocate the "who" array */
5206                         C_MAKE(who, max_m_idx, u16b);
5207
5208                         /* Process the monsters (backwards) */
5209                         for (pet_ctr = m_max - 1; pet_ctr >= 1; pet_ctr--)
5210                         {
5211                                 if (is_pet(&m_list[pet_ctr]) && (p_ptr->riding != pet_ctr))
5212                                   who[max_pet++] = pet_ctr;
5213                         }
5214
5215                         /* Select the sort method */
5216                         ang_sort_comp = ang_sort_comp_pet;
5217                         ang_sort_swap = ang_sort_swap_hook;
5218
5219                         ang_sort(who, &dummy_why, max_pet);
5220
5221                         /* Process the monsters (backwards) */
5222                         for (i = 0; i < max_pet; i++)
5223                         {
5224                                 pet_ctr = who[i];
5225                                 teleport_monster_to(pet_ctr, py, px, 100, TELEPORT_PASSIVE);
5226                         }
5227
5228                         /* Free the "who" array */
5229                         C_KILL(who, max_m_idx, u16b);
5230                 }
5231                 o_ptr->timeout = 100+randint1(100);
5232                 return;
5233         }
5234         else if (o_ptr->tval == TV_CAPTURE)
5235         {
5236                 if(!o_ptr->pval)
5237                 {
5238                         bool old_target_pet = target_pet;
5239                         target_pet = TRUE;
5240                         if (!get_aim_dir(&dir))
5241                         {
5242                                 target_pet = old_target_pet;
5243                                 return;
5244                         }
5245                         target_pet = old_target_pet;
5246
5247                         if(fire_ball(GF_CAPTURE, dir, 0, 0))
5248                         {
5249                                 o_ptr->pval = cap_mon;
5250                                 o_ptr->xtra3 = cap_mspeed;
5251                                 o_ptr->xtra4 = cap_hp;
5252                                 o_ptr->xtra5 = cap_maxhp;
5253                                 if (cap_nickname)
5254                                 {
5255                                         cptr t;
5256                                         char *s;
5257                                         char buf[80] = "";
5258
5259                                         if (o_ptr->inscription)
5260                                                 strcpy(buf, quark_str(o_ptr->inscription));
5261                                         s = buf;
5262                                         for (s = buf;*s && (*s != '#'); s++)
5263                                         {
5264 #ifdef JP
5265                                                 if (iskanji(*s)) s++;
5266 #endif
5267                                         }
5268                                         *s = '#';
5269                                         s++;
5270 #ifdef JP
5271  /*nothing*/
5272 #else
5273                                         *s++ = '\'';
5274 #endif
5275                                         t = quark_str(cap_nickname);
5276                                         while (*t)
5277                                         {
5278                                                 *s = *t;
5279                                                 s++;
5280                                                 t++;
5281                                         }
5282 #ifdef JP
5283  /*nothing*/
5284 #else
5285                                         *s++ = '\'';
5286 #endif
5287                                         *s = '\0';
5288                                         o_ptr->inscription = quark_add(buf);
5289                                 }
5290                         }
5291                 }
5292                 else
5293                 {
5294                         bool success = FALSE;
5295                         if (!get_rep_dir2(&dir)) return;
5296                         if (monster_can_enter(py + ddy[dir], px + ddx[dir], &r_info[o_ptr->pval], 0))
5297                         {
5298                                 if (place_monster_aux(0, py + ddy[dir], px + ddx[dir], o_ptr->pval, (PM_FORCE_PET | PM_NO_KAGE)))
5299                                 {
5300                                         if (o_ptr->xtra3) m_list[hack_m_idx_ii].mspeed = o_ptr->xtra3;
5301                                         if (o_ptr->xtra5) m_list[hack_m_idx_ii].max_maxhp = o_ptr->xtra5;
5302                                         if (o_ptr->xtra4) m_list[hack_m_idx_ii].hp = o_ptr->xtra4;
5303                                         m_list[hack_m_idx_ii].maxhp = m_list[hack_m_idx_ii].max_maxhp;
5304                                         if (o_ptr->inscription)
5305                                         {
5306                                                 char buf[80];
5307                                                 cptr t;
5308 #ifndef JP
5309                                                 bool quote = FALSE;
5310 #endif
5311
5312                                                 t = quark_str(o_ptr->inscription);
5313                                                 for (t = quark_str(o_ptr->inscription);*t && (*t != '#'); t++)
5314                                                 {
5315 #ifdef JP
5316                                                         if (iskanji(*t)) t++;
5317 #endif
5318                                                 }
5319                                                 if (*t)
5320                                                 {
5321                                                         char *s = buf;
5322                                                         t++;
5323 #ifdef JP
5324                                                         /* nothing */
5325 #else
5326                                                         if (*t =='\'')
5327                                                         {
5328                                                                 t++;
5329                                                                 quote = TRUE;
5330                                                         }
5331 #endif
5332                                                         while(*t)
5333                                                         {
5334                                                                 *s = *t;
5335                                                                 t++;
5336                                                                 s++;
5337                                                         }
5338 #ifdef JP
5339                                                         /* nothing */
5340 #else
5341                                                         if (quote && *(s-1) =='\'')
5342                                                                 s--;
5343 #endif
5344                                                         *s = '\0';
5345                                                         m_list[hack_m_idx_ii].nickname = quark_add(buf);
5346                                                         t = quark_str(o_ptr->inscription);
5347                                                         s = buf;
5348                                                         while(*t && (*t != '#'))
5349                                                         {
5350                                                                 *s = *t;
5351                                                                 t++;
5352                                                                 s++;
5353                                                         }
5354                                                         *s = '\0';
5355                                                         o_ptr->inscription = quark_add(buf);
5356                                                 }
5357                                         }
5358                                         o_ptr->pval = 0;
5359                                         o_ptr->xtra3 = 0;
5360                                         o_ptr->xtra4 = 0;
5361                                         o_ptr->xtra5 = 0;
5362                                         success = TRUE;
5363                                 }
5364                         }
5365                         if (!success)
5366 #ifdef JP
5367                                 msg_print("¤ª¤Ã¤È¡¢²òÊü¤Ë¼ºÇÔ¤·¤¿¡£");
5368 #else
5369                                 msg_print("Oops.  You failed to release your pet.");
5370 #endif
5371                 }
5372                 return;
5373         }
5374
5375         /* Mistake */
5376 #ifdef JP
5377         msg_print("¤ª¤Ã¤È¡¢¤³¤Î¥¢¥¤¥Æ¥à¤Ï»ÏÆ°¤Ç¤­¤Ê¤¤¡£");
5378 #else
5379         msg_print("Oops.  That object cannot be activated.");
5380 #endif
5381
5382 }
5383
5384
5385 void do_cmd_activate(void)
5386 {
5387         int     item;
5388         cptr    q, s;
5389
5390
5391         if (p_ptr->special_defense & (KATA_MUSOU | KATA_KOUKIJIN))
5392         {
5393                 set_action(ACTION_NONE);
5394         }
5395
5396         item_tester_no_ryoute = TRUE;
5397         /* Prepare the hook */
5398         item_tester_hook = item_tester_hook_activate;
5399
5400         /* Get an item */
5401 #ifdef JP
5402         q = "¤É¤Î¥¢¥¤¥Æ¥à¤ò»ÏÆ°¤µ¤»¤Þ¤¹¤«? ";
5403         s = "»ÏÆ°¤Ç¤­¤ë¥¢¥¤¥Æ¥à¤òÁõÈ÷¤·¤Æ¤¤¤Ê¤¤¡£";
5404 #else
5405         q = "Activate which item? ";
5406         s = "You have nothing to activate.";
5407 #endif
5408
5409         if (!get_item(&item, q, s, (USE_EQUIP))) return;
5410
5411         /* Activate the item */
5412         do_cmd_activate_aux(item);
5413 }
5414
5415
5416 /*
5417  * Hook to determine if an object is useable
5418  */
5419 static bool item_tester_hook_use(object_type *o_ptr)
5420 {
5421         u32b flgs[TR_FLAG_SIZE];
5422
5423         /* Ammo */
5424         if (o_ptr->tval == p_ptr->tval_ammo)
5425                 return (TRUE);
5426
5427         /* Useable object */
5428         switch (o_ptr->tval)
5429         {
5430                 case TV_SPIKE:
5431                 case TV_STAFF:
5432                 case TV_WAND:
5433                 case TV_ROD:
5434                 case TV_SCROLL:
5435                 case TV_POTION:
5436                 case TV_FOOD:
5437                 {
5438                         return (TRUE);
5439                 }
5440
5441                 default:
5442                 {
5443                         int i;
5444
5445                         /* Not known */
5446                         if (!object_is_known(o_ptr)) return (FALSE);
5447
5448                         /* HACK - only items from the equipment can be activated */
5449                         for (i = INVEN_RARM; i < INVEN_TOTAL; i++)
5450                         {
5451                                 if (&inventory[i] == o_ptr)
5452                                 {
5453                                         /* Extract the flags */
5454                                         object_flags(o_ptr, flgs);
5455
5456                                         /* Check activation flag */
5457                                         if (have_flag(flgs, TR_ACTIVATE)) return (TRUE);
5458                                 }
5459                         }
5460                 }
5461         }
5462
5463         /* Assume not */
5464         return (FALSE);
5465 }
5466
5467
5468 /*
5469  * Use an item
5470  * XXX - Add actions for other item types
5471  */
5472 void do_cmd_use(void)
5473 {
5474         int         item;
5475         object_type *o_ptr;
5476         cptr        q, s;
5477
5478         if (p_ptr->special_defense & (KATA_MUSOU | KATA_KOUKIJIN))
5479         {
5480                 set_action(ACTION_NONE);
5481         }
5482
5483         item_tester_no_ryoute = TRUE;
5484         /* Prepare the hook */
5485         item_tester_hook = item_tester_hook_use;
5486
5487         /* Get an item */
5488 #ifdef JP
5489 q = "¤É¤ì¤ò»È¤¤¤Þ¤¹¤«¡©";
5490 s = "»È¤¨¤ë¤â¤Î¤¬¤¢¤ê¤Þ¤»¤ó¡£";
5491 #else
5492         q = "Use which item? ";
5493         s = "You have nothing to use.";
5494 #endif
5495
5496         if (!get_item(&item, q, s, (USE_INVEN | USE_EQUIP | USE_FLOOR))) return;
5497
5498         /* Get the item (in the pack) */
5499         if (item >= 0)
5500         {
5501                 o_ptr = &inventory[item];
5502         }
5503         /* Get the item (on the floor) */
5504         else
5505         {
5506                 o_ptr = &o_list[0 - item];
5507         }
5508
5509         switch (o_ptr->tval)
5510         {
5511                 /* Spike a door */
5512                 case TV_SPIKE:
5513                 {
5514                         do_cmd_spike();
5515                         break;
5516                 }
5517
5518                 /* Eat some food */
5519                 case TV_FOOD:
5520                 {
5521                         do_cmd_eat_food_aux(item);
5522                         break;
5523                 }
5524
5525                 /* Aim a wand */
5526                 case TV_WAND:
5527                 {
5528                         do_cmd_aim_wand_aux(item);
5529                         break;
5530                 }
5531
5532                 /* Use a staff */
5533                 case TV_STAFF:
5534                 {
5535                         do_cmd_use_staff_aux(item);
5536                         break;
5537                 }
5538
5539                 /* Zap a rod */
5540                 case TV_ROD:
5541                 {
5542                         do_cmd_zap_rod_aux(item);
5543                         break;
5544                 }
5545
5546                 /* Quaff a potion */
5547                 case TV_POTION:
5548                 {
5549                         do_cmd_quaff_potion_aux(item);
5550                         break;
5551                 }
5552
5553                 /* Read a scroll */
5554                 case TV_SCROLL:
5555                 {
5556                         /* Check some conditions */
5557                         if (p_ptr->blind)
5558                         {
5559 #ifdef JP
5560 msg_print("Ìܤ¬¸«¤¨¤Ê¤¤¡£");
5561 #else
5562                                 msg_print("You can't see anything.");
5563 #endif
5564
5565                                 return;
5566                         }
5567                         if (no_lite())
5568                         {
5569 #ifdef JP
5570 msg_print("ÌÀ¤«¤ê¤¬¤Ê¤¤¤Î¤Ç¡¢°Å¤¯¤ÆÆɤá¤Ê¤¤¡£");
5571 #else
5572                                 msg_print("You have no light to read by.");
5573 #endif
5574
5575                                 return;
5576                         }
5577                         if (p_ptr->confused)
5578                         {
5579 #ifdef JP
5580 msg_print("º®Í𤷤Ƥ¤¤ÆÆɤá¤Ê¤¤¡ª");
5581 #else
5582                                 msg_print("You are too confused!");
5583 #endif
5584
5585                                 return;
5586                         }
5587
5588                   do_cmd_read_scroll_aux(item, TRUE);
5589                   break;
5590                 }
5591
5592                 /* Fire ammo */
5593                 case TV_SHOT:
5594                 case TV_ARROW:
5595                 case TV_BOLT:
5596                 {
5597                         do_cmd_fire_aux(item, &inventory[INVEN_BOW]);
5598                         break;
5599                 }
5600
5601                 /* Activate an artifact */
5602                 default:
5603                 {
5604                         do_cmd_activate_aux(item);
5605                         break;
5606                 }
5607         }
5608 }
5609
5610 static int select_magic_eater(bool only_browse)
5611 {
5612         int ext=0;
5613         char choice;
5614         bool flag, request_list;
5615         int tval = 0;
5616         int             ask = TRUE, i = 0;
5617         char            out_val[160];
5618
5619         int menu_line = (use_menu ? 1 : 0);
5620
5621 #ifdef ALLOW_REPEAT
5622         int sn;
5623         if (repeat_pull(&sn))
5624         {
5625                 /* Verify the spell */
5626                 if (sn >= EATER_EXT*2 && !(p_ptr->magic_num1[sn] > k_info[lookup_kind(TV_ROD, sn-EATER_EXT*2)].pval * (p_ptr->magic_num2[sn] - 1) * EATER_ROD_CHARGE))
5627                         return sn;
5628                 else if (sn < EATER_EXT*2 && !(p_ptr->magic_num1[sn] < EATER_CHARGE))
5629                         return sn;
5630         }
5631         
5632 #endif /* ALLOW_REPEAT */
5633
5634         for (i = 0; i < 108; i++)
5635         {
5636                 if (p_ptr->magic_num2[i]) break;
5637         }
5638         if (i == 108)
5639         {
5640 #ifdef JP
5641                 msg_print("ËâË¡¤ò³Ð¤¨¤Æ¤¤¤Ê¤¤¡ª");
5642 #else
5643                 msg_print("You don't have any magic!");
5644 #endif
5645                 return -1;
5646         }
5647
5648         if (use_menu)
5649         {
5650                 screen_save();
5651
5652                 while(!tval)
5653                 {
5654 #ifdef JP
5655                         prt(format(" %s ¾ó", (menu_line == 1) ? "¡Õ" : "  "), 2, 14);
5656                         prt(format(" %s ËâË¡ËÀ", (menu_line == 2) ? "¡Õ" : "  "), 3, 14);
5657                         prt(format(" %s ¥í¥Ã¥É", (menu_line == 3) ? "¡Õ" : "  "), 4, 14);
5658                         prt("¤É¤Î¼ïÎà¤ÎËâË¡¤ò»È¤¤¤Þ¤¹¤«¡©", 0, 0);
5659 #else
5660                         prt(format(" %s staff", (menu_line == 1) ? "> " : "  "), 2, 14);
5661                         prt(format(" %s wand", (menu_line == 2) ? "> " : "  "), 3, 14);
5662                         prt(format(" %s rod", (menu_line == 3) ? "> " : "  "), 4, 14);
5663                         prt("Which type of magic do you use?", 0, 0);
5664 #endif
5665                         choice = inkey();
5666                         switch(choice)
5667                         {
5668                         case ESCAPE:
5669                         case 'z':
5670                         case 'Z':
5671                                 screen_load();
5672                                 return -1;
5673                         case '2':
5674                         case 'j':
5675                         case 'J':
5676                                 menu_line++;
5677                                 break;
5678                         case '8':
5679                         case 'k':
5680                         case 'K':
5681                                 menu_line+= 2;
5682                                 break;
5683                         case '\r':
5684                         case 'x':
5685                         case 'X':
5686                                 ext = (menu_line-1)*EATER_EXT;
5687                                 if (menu_line == 1) tval = TV_STAFF;
5688                                 else if (menu_line == 2) tval = TV_WAND;
5689                                 else tval = TV_ROD;
5690                                 break;
5691                         }
5692                         if (menu_line > 3) menu_line -= 3;
5693                 }
5694                 screen_load();
5695         }
5696         else
5697         {
5698         while (TRUE)
5699         {
5700 #ifdef JP
5701                 if (!get_com("[A] ¾ó, [B] ËâË¡ËÀ, [C] ¥í¥Ã¥É:", &choice, TRUE))
5702 #else
5703                 if (!get_com("[A] staff, [B] wand, [C] rod:", &choice, TRUE))
5704 #endif
5705                 {
5706                         return -1;
5707                 }
5708                 if (choice == 'A' || choice == 'a')
5709                 {
5710                         ext = 0;
5711                         tval = TV_STAFF;
5712                         break;
5713                 }
5714                 if (choice == 'B' || choice == 'b')
5715                 {
5716                         ext = EATER_EXT;
5717                         tval = TV_WAND;
5718                         break;
5719                 }
5720                 if (choice == 'C' || choice == 'c')
5721                 {
5722                         ext = EATER_EXT*2;
5723                         tval = TV_ROD;
5724                         break;
5725                 }
5726         }
5727         }
5728         for (i = ext; i < ext + EATER_EXT; i++)
5729         {
5730                 if (p_ptr->magic_num2[i])
5731                 {
5732                         if (use_menu) menu_line = i-ext+1;
5733                         break;
5734                 }
5735         }
5736         if (i == ext+EATER_EXT)
5737         {
5738 #ifdef JP
5739                 msg_print("¤½¤Î¼ïÎà¤ÎËâË¡¤Ï³Ð¤¨¤Æ¤¤¤Ê¤¤¡ª");
5740 #else
5741                 msg_print("You don't have that type of magic!");
5742 #endif
5743                 return -1;
5744         }
5745
5746         /* Nothing chosen yet */
5747         flag = FALSE;
5748
5749         /* Build a prompt */
5750 #ifdef JP
5751 (void) strnfmt(out_val, 78, "('*'¤Ç°ìÍ÷, ESC¤ÇÃæÃÇ) ¤É¤ÎËâÎϤò»È¤¤¤Þ¤¹¤«¡©");
5752 #else
5753         (void)strnfmt(out_val, 78, "(*=List, ESC=exit) Use which power? ");
5754 #endif
5755         
5756         /* Save the screen */
5757         screen_save();
5758
5759         request_list = always_show_list;
5760
5761         /* Get a spell from the user */
5762         while (!flag)
5763         {
5764                 /* Show the list */
5765                 if (request_list || use_menu)
5766                 {
5767                         byte y, x = 0;
5768                         int ctr, chance;
5769                         int k_idx;
5770                         char dummy[80];
5771                         int x1, y1, level;
5772                         byte col;
5773
5774                         strcpy(dummy, "");
5775
5776                         for (y = 1; y < 20; y++)
5777                                 prt("", y, x);
5778
5779                         y = 1;
5780
5781                         /* Print header(s) */
5782 #ifdef JP
5783                         prt(format("                           %s ¼ºÎ¨                           %s ¼ºÎ¨", (tval == TV_ROD ? "  ¾õÂÖ  " : "»ÈÍѲó¿ô"), (tval == TV_ROD ? "  ¾õÂÖ  " : "»ÈÍѲó¿ô")), y++, x);
5784 #else
5785                         prt(format("                           %s Fail                           %s Fail", (tval == TV_ROD ? "  Stat  " : " Charges"), (tval == TV_ROD ? "  Stat  " : " Charges")), y++, x);
5786 #endif
5787
5788                         /* Print list */
5789                         for (ctr = 0; ctr < EATER_EXT; ctr++)
5790                         {
5791                                 if (!p_ptr->magic_num2[ctr+ext]) continue;
5792
5793                                 k_idx = lookup_kind(tval, ctr);
5794
5795                                 if (use_menu)
5796                                 {
5797                                         if (ctr == (menu_line-1))
5798 #ifdef JP
5799                                                 strcpy(dummy, "¡Õ");
5800 #else
5801                                         strcpy(dummy, "> ");
5802 #endif
5803                                         else strcpy(dummy, "  ");
5804                                                 
5805                                 }
5806                                 /* letter/number for power selection */
5807                                 else
5808                                 {
5809                                         char letter;
5810                                         if (ctr < 26)
5811                                                 letter = I2A(ctr);
5812                                         else
5813                                                 letter = '0' + ctr - 26;
5814                                         sprintf(dummy, "%c)",letter);
5815                                 }
5816                                 x1 = ((ctr < EATER_EXT/2) ? x : x + 40);
5817                                 y1 = ((ctr < EATER_EXT/2) ? y + ctr : y + ctr - EATER_EXT/2);
5818                                 level = (tval == TV_ROD ? k_info[k_idx].level * 5 / 6 - 5 : k_info[k_idx].level);
5819                                 chance = level * 4 / 5 + 20;
5820                                 chance -= 3 * (adj_mag_stat[p_ptr->stat_ind[mp_ptr->spell_stat]] - 1);
5821                                 level /= 2;
5822                                 if (p_ptr->lev > level)
5823                                 {
5824                                         chance -= 3 * (p_ptr->lev - level);
5825                                 }
5826                                 chance = mod_spell_chance_1(chance);
5827                                 chance = MAX(chance, adj_mag_fail[p_ptr->stat_ind[mp_ptr->spell_stat]]);
5828                                 /* Stunning makes spells harder */
5829                                 if (p_ptr->stun > 50) chance += 25;
5830                                 else if (p_ptr->stun) chance += 15;
5831
5832                                 if (chance > 95) chance = 95;
5833
5834                                 chance = mod_spell_chance_2(chance);
5835
5836                                 col = TERM_WHITE;
5837
5838                                 if (k_idx)
5839                                 {
5840                                         if (tval == TV_ROD)
5841                                         {
5842                                                 strcat(dummy, format(
5843 #ifdef JP
5844                                                                " %-22.22s ½¼Å¶:%2d/%2d%3d%%",
5845 #else
5846                                                                " %-22.22s   (%2d/%2d) %3d%%",
5847 #endif
5848                                                                k_name + k_info[k_idx].name, 
5849                                                                p_ptr->magic_num1[ctr+ext] ? 
5850                                                                (p_ptr->magic_num1[ctr+ext] - 1) / (EATER_ROD_CHARGE * k_info[k_idx].pval) +1 : 0, 
5851                                                                p_ptr->magic_num2[ctr+ext], chance));
5852                                                 if (p_ptr->magic_num1[ctr+ext] > k_info[k_idx].pval * (p_ptr->magic_num2[ctr+ext]-1) * EATER_ROD_CHARGE) col = TERM_RED;
5853                                         }
5854                                         else
5855                                         {
5856                                                 strcat(dummy, format(" %-22.22s    %2d/%2d %3d%%", k_name + k_info[k_idx].name, (s16b)(p_ptr->magic_num1[ctr+ext]/EATER_CHARGE), p_ptr->magic_num2[ctr+ext], chance));
5857                                                 if (p_ptr->magic_num1[ctr+ext] < EATER_CHARGE) col = TERM_RED;
5858                                         }
5859                                 }
5860                                 else
5861                                         strcpy(dummy, "");
5862                                 c_prt(col, dummy, y1, x1);
5863                         }
5864                 }
5865
5866                 if (!get_com(out_val, &choice, FALSE)) break;
5867
5868                 if (use_menu && choice != ' ')
5869                 {
5870                         switch (choice)
5871                         {
5872                                 case '0':
5873                                 {
5874                                         screen_load();
5875                                         return 0;
5876                                 }
5877
5878                                 case '8':
5879                                 case 'k':
5880                                 case 'K':
5881                                 {
5882                                         do
5883                                         {
5884                                                 menu_line += EATER_EXT - 1;
5885                                                 if (menu_line > EATER_EXT) menu_line -= EATER_EXT;
5886                                         } while(!p_ptr->magic_num2[menu_line+ext-1]);
5887                                         break;
5888                                 }
5889
5890                                 case '2':
5891                                 case 'j':
5892                                 case 'J':
5893                                 {
5894                                         do
5895                                         {
5896                                                 menu_line++;
5897                                                 if (menu_line > EATER_EXT) menu_line -= EATER_EXT;
5898                                         } while(!p_ptr->magic_num2[menu_line+ext-1]);
5899                                         break;
5900                                 }
5901
5902                                 case '4':
5903                                 case 'h':
5904                                 case 'H':
5905                                 case '6':
5906                                 case 'l':
5907                                 case 'L':
5908                                 {
5909                                         bool reverse = FALSE;
5910                                         if ((choice == '4') || (choice == 'h') || (choice == 'H')) reverse = TRUE;
5911                                         if (menu_line > EATER_EXT/2)
5912                                         {
5913                                                 menu_line -= EATER_EXT/2;
5914                                                 reverse = TRUE;
5915                                         }
5916                                         else menu_line+=EATER_EXT/2;
5917                                         while(!p_ptr->magic_num2[menu_line+ext-1])
5918                                         {
5919                                                 if (reverse)
5920                                                 {
5921                                                         menu_line--;
5922                                                         if (menu_line < 2) reverse = FALSE;
5923                                                 }
5924                                                 else
5925                                                 {
5926                                                         menu_line++;
5927                                                         if (menu_line > EATER_EXT-1) reverse = TRUE;
5928                                                 }
5929                                         }
5930                                         break;
5931                                 }
5932
5933                                 case 'x':
5934                                 case 'X':
5935                                 case '\r':
5936                                 {
5937                                         i = menu_line - 1;
5938                                         ask = FALSE;
5939                                         break;
5940                                 }
5941                         }
5942                 }
5943
5944                 /* Request redraw */
5945                 if (use_menu && ask) continue;
5946
5947                 /* Request redraw */
5948                 if (!use_menu && ((choice == ' ') || (choice == '*') || (choice == '?')))
5949                 {
5950                         /* Hide the list */
5951                         if (request_list)
5952                         {
5953                                 /* Hide list */
5954                                 request_list = FALSE;
5955                                 
5956                                 /* Restore the screen */
5957                                 screen_load();
5958                                 screen_save();
5959                         }
5960                         else
5961                                 request_list = TRUE;
5962
5963                         /* Redo asking */
5964                         continue;
5965                 }
5966
5967                 if (!use_menu)
5968                 {
5969                         if (isalpha(choice))
5970                         {
5971                                 /* Note verify */
5972                                 ask = (isupper(choice));
5973
5974                                 /* Lowercase */
5975                                 if (ask) choice = tolower(choice);
5976
5977                                 /* Extract request */
5978                                 i = (islower(choice) ? A2I(choice) : -1);
5979                         }
5980                         else
5981                         {
5982                                 ask = FALSE; /* Can't uppercase digits */
5983
5984                                 i = choice - '0' + 26;
5985                         }
5986                 }
5987
5988                 /* Totally Illegal */
5989                 if ((i < 0) || (i > EATER_EXT) || !p_ptr->magic_num2[i+ext])
5990                 {
5991                         bell();
5992                         continue;
5993                 }
5994
5995                 if (!only_browse)
5996                 {
5997                         /* Verify it */
5998                         if (ask)
5999                         {
6000                                 char tmp_val[160];
6001
6002                                 /* Prompt */
6003 #ifdef JP
6004                                 (void) strnfmt(tmp_val, 78, "%s¤ò»È¤¤¤Þ¤¹¤«¡© ", k_name + k_info[lookup_kind(tval ,i)].name);
6005 #else
6006                                 (void) strnfmt(tmp_val, 78, "Use %s?", k_name + k_info[lookup_kind(tval ,i)].name);
6007 #endif
6008
6009                                 /* Belay that order */
6010                                 if (!get_check(tmp_val)) continue;
6011                         }
6012                         if (tval == TV_ROD)
6013                         {
6014                                 if (p_ptr->magic_num1[ext+i]  > k_info[lookup_kind(tval, i)].pval * (p_ptr->magic_num2[ext+i] - 1) * EATER_ROD_CHARGE)
6015                                 {
6016 #ifdef JP
6017                                         msg_print("¤½¤ÎËâË¡¤Ï¤Þ¤À½¼Å¶¤·¤Æ¤¤¤ëºÇÃæ¤À¡£");
6018 #else
6019                                         msg_print("The magic are still charging.");
6020 #endif
6021                                         msg_print(NULL);
6022                                         if (use_menu) ask = TRUE;
6023                                         continue;
6024                                 }
6025                         }
6026                         else
6027                         {
6028                                 if (p_ptr->magic_num1[ext+i] < EATER_CHARGE)
6029                                 {
6030 #ifdef JP
6031                                         msg_print("¤½¤ÎËâË¡¤Ï»ÈÍѲó¿ô¤¬ÀÚ¤ì¤Æ¤¤¤ë¡£");
6032 #else
6033                                         msg_print("The magic has no charges left.");
6034 #endif
6035                                         msg_print(NULL);
6036                                         if (use_menu) ask = TRUE;
6037                                         continue;
6038                                 }
6039                         }
6040                 }
6041
6042                 /* Browse */
6043                 else
6044                 {
6045                         int line, j;
6046                         char temp[70 * 20];
6047
6048                         /* Clear lines, position cursor  (really should use strlen here) */
6049                         Term_erase(7, 23, 255);
6050                         Term_erase(7, 22, 255);
6051                         Term_erase(7, 21, 255);
6052                         Term_erase(7, 20, 255);
6053
6054                         roff_to_buf(k_text + k_info[lookup_kind(tval, i)].text, 62, temp, sizeof(temp));
6055                         for (j = 0, line = 21; temp[j]; j += 1 + strlen(&temp[j]))
6056                         {
6057                                 prt(&temp[j], line, 10);
6058                                 line++;
6059                         }
6060         
6061 #ifdef JP
6062                         prt("²¿¤«¥­¡¼¤ò²¡¤·¤Æ²¼¤µ¤¤¡£",0,0);
6063 #else
6064                         prt("Hit any key.",0,0);
6065 #endif
6066                         (void)inkey();
6067                         continue;
6068                 }
6069
6070                 /* Stop the loop */
6071                 flag = TRUE;
6072         }
6073
6074         /* Restore the screen */
6075         screen_load();
6076
6077         if (!flag) return -1;
6078
6079 #ifdef ALLOW_REPEAT
6080         repeat_push(ext+i);
6081 #endif /* ALLOW_REPEAT */
6082         return ext+i;
6083 }
6084
6085
6086 /*
6087  *  Use eaten rod, wand or staff
6088  */
6089 void do_cmd_magic_eater(bool only_browse)
6090 {
6091         int item, chance, level, k_idx, tval, sval;
6092         bool use_charge = TRUE;
6093
6094         /* Not when confused */
6095         if (!only_browse && p_ptr->confused)
6096         {
6097 #ifdef JP
6098 msg_print("º®Í𤷤Ƥ¤¤Æ¾§¤¨¤é¤ì¤Ê¤¤¡ª");
6099 #else
6100                 msg_print("You are too confused!");
6101 #endif
6102
6103                 return;
6104         }
6105
6106         item = select_magic_eater(only_browse);
6107         if (item == -1)
6108         {
6109                 energy_use = 0;
6110                 return;
6111         }
6112         if (item >= EATER_EXT*2) {tval = TV_ROD;sval = item - EATER_EXT*2;}
6113         else if (item >= EATER_EXT) {tval = TV_WAND;sval = item - EATER_EXT;}
6114         else {tval = TV_STAFF;sval = item;}
6115         k_idx = lookup_kind(tval, sval);
6116
6117         level = (tval == TV_ROD ? k_info[k_idx].level * 5 / 6 - 5 : k_info[k_idx].level);
6118         chance = level * 4 / 5 + 20;
6119         chance -= 3 * (adj_mag_stat[p_ptr->stat_ind[mp_ptr->spell_stat]] - 1);
6120         level /= 2;
6121         if (p_ptr->lev > level)
6122         {
6123                 chance -= 3 * (p_ptr->lev - level);
6124         }
6125         chance = mod_spell_chance_1(chance);
6126         chance = MAX(chance, adj_mag_fail[p_ptr->stat_ind[mp_ptr->spell_stat]]);
6127         /* Stunning makes spells harder */
6128         if (p_ptr->stun > 50) chance += 25;
6129         else if (p_ptr->stun) chance += 15;
6130
6131         if (chance > 95) chance = 95;
6132
6133         chance = mod_spell_chance_2(chance);
6134
6135         if (randint0(100) < chance)
6136         {
6137                 if (flush_failure) flush();
6138
6139 #ifdef JP
6140 msg_print("¼öʸ¤ò¤¦¤Þ¤¯¾§¤¨¤é¤ì¤Ê¤«¤Ã¤¿¡ª");
6141 #else
6142                 msg_format("You failed to get the magic off!");
6143 #endif
6144
6145                 sound(SOUND_FAIL);
6146                 if (randint1(100) >= chance)
6147                         chg_virtue(V_CHANCE,-1);
6148                 energy_use = 100;
6149
6150                 return;
6151         }
6152         else
6153         {
6154                 int dir = 0;
6155
6156                 if (tval == TV_ROD)
6157                 {
6158                         if ((sval >= SV_ROD_MIN_DIRECTION) && (sval != SV_ROD_HAVOC) && (sval != SV_ROD_AGGRAVATE) && (sval != SV_ROD_PESTICIDE))
6159                                 if (!get_aim_dir(&dir)) return;
6160                         rod_effect(sval, dir, &use_charge, TRUE);
6161                         if (!use_charge) return;
6162                 }
6163                 else if (tval == TV_WAND)
6164                 {
6165                         if (!get_aim_dir(&dir)) return;
6166                         wand_effect(sval, dir, TRUE);
6167                 }
6168                 else
6169                 {
6170                         staff_effect(sval, &use_charge, TRUE, TRUE);
6171                         if (!use_charge) return;
6172                 }
6173                 if (randint1(100) < chance)
6174                         chg_virtue(V_CHANCE,1);
6175         }
6176         energy_use = 100;
6177         if (tval == TV_ROD) p_ptr->magic_num1[item] += k_info[k_idx].pval * EATER_ROD_CHARGE;
6178         else p_ptr->magic_num1[item] -= EATER_CHARGE;
6179 }