OSDN Git Service

[Refactor] #37353 MAX_SHORT, MAX_UCHAR, MAX_NLEN を h-type.h へ移動.
[hengband/hengband.git] / src / defines.h
1 #pragma once
2
3 /*!
4  *  @file defines.h
5  *  @brief 主要なマクロ定義ヘッダ / Purpose: global constants and macro definitions
6  *  @date 2014/01/02
7  *  @author
8  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke\n
9  *\n
10  * This software may be copied and distributed for educational, research,\n
11  * and not for profit purposes provided that this copyright and statement\n
12  * are included in all such copies.  Other copyrights may also apply.\n
13  *  @details
14  * Do not edit this file unless you know *exactly* what you are doing.\n
15  *\n
16  * Some of the values in this file were chosen to preserve game balance,\n
17  * while others are hard-coded based on the format of old save-files, the\n
18  * definition of arrays in various places, mathematical properties, fast\n
19  * computation, storage limits, or the format of external text files.\n
20  *\n
21  * Changing some of these values will induce crashes or memory errors or\n
22  * savefile mis-reads.  Most of the comments in this file are meant as\n
23  * reminders, not complete descriptions, and even a complete knowledge\n
24  * of the source may not be sufficient to fully understand the effects\n
25  * of changing certain definitions.\n
26  *\n
27  * Lastly, note that the code does not always use the symbolic constants\n
28  * below, and sometimes uses various hard-coded values that may not even\n
29  * be defined in this file, but which may be related to definitions here.\n
30  * This is of course bad programming practice, but nobody is perfect...\n
31  *\n
32  * For example, there are MANY things that depend on the screen being\n
33  * 80x24, with the top line used for messages, the bottom line being\n
34  * used for status, and exactly 22 lines used to show the dungeon.\n
35  * Just because your screen can hold 46 lines does not mean that the\n
36  * game will work if you try to use 44 lines to show the dungeon.\n
37  *\n
38  * You have been warned.\n
39  */
40
41
42 /*!
43  * @brief 表示上の基本的なパネル単位(垂直方向、BLOCK_HGTの倍数で設定すること)
44  * Number of grids in each panel (vertically) Must be a multiple of BLOCK_HGT
45  */
46 #define PANEL_HGT 11
47
48 /*!
49  * @brief 表示上の基本的なパネル単位(水平方向、BLOCK_WIDの倍数で設定すること)
50  * Number of grids in each panel (horizontally) Must be a multiple of BLOCK_WID
51  */
52 #define PANEL_WID 33
53
54 /*!
55  * @brief 表示上の基本的なブロック単位(垂直方向、PANEL_HGTの倍数で設定すること)
56  * Number of grids used to display the dungeon (vertically). Must be a multiple of 11, probably hard-coded to 22.
57  */
58 #define SCREEN_HGT 22
59
60 /*!
61  * @brief 表示上の基本的なブロック単位(水平方向、PANEL_WIDの倍数で設定すること)
62  * Number of grids used to display the dungeon (horizontally). Must be a multiple of 33, probably hard-coded to 66.
63  */
64 #define SCREEN_WID 66
65
66 /*!
67  * @brief 表示上のダンジョンの最大垂直サイズ(SCREEN_HGTの3倍が望ましい)
68  * Maximum dungeon height in grids, must be a multiple of SCREEN_HGT, probably hard-coded to SCREEN_HGT * 3.
69  */
70 #define MAX_HGT 66
71
72 /*!
73  * @brief 表示上のダンジョンの最大水平サイズ(SCREEN_WIDの3倍が望ましい)
74  * Maximum dungeon width in grids, must be a multiple of SCREEN_WID, probably hard-coded to SCREEN_WID * 3.
75  */
76 #define MAX_WID 198
77
78 /*
79  * Arena constants
80  */
81 #define ARENA_DEFEATED_OLD_VER (-(MAX_SHORT)) /*<! 旧バージョンの闘技場敗北定義 */
82
83 #define MAX_SEXES        2 /*!< 性別の定義最大数 / Maximum number of player "sex" types (see "table.c", etc) */
84 #define MAX_CLASS       28 /*!< 職業の最大定義数 Maximum number of player "class" types (see "table.c", etc) */
85 #define MAX_SEIKAKU     13 /*!< 性格の最大定義数 */
86
87 #define MAX_MIND_POWERS  21 /*!< 超能力の数 / Mindcraft */
88
89 /*
90  * Size of memory reserved for initialization of some arrays
91  */
92 #define FAKE_NAME_SIZE  40 * 1024L /*!< ゲーム情報の種別毎に用意される名前用バッファの容量 */
93 #define FAKE_TEXT_SIZE 150 * 1024L /*!< ゲーム情報の種別毎に用意されるテキスト用バッファの容量 */
94 #define FAKE_TAG_SIZE   10 * 1024L /*!< ゲーム情報の種別毎に用意されるタグ用バッファの容量 */
95
96 #define MAX_HISCORES    999 /*!< スコア情報保存の最大数 / Maximum number of high scores in the high score file */
97
98 /*!
99  * @brief プレイヤー用光源処理配列サイズ / Maximum size of the "lite" array (see "current_floor_ptr->grid_array.c")
100  * @details Note that the "lite radius" will NEVER exceed 14, and we would
101  * never require more than 581 entries in the array for circular "lite".
102  */
103 #define LITE_MAX 600
104
105 /*!
106  * @brief モンスター用光源処理配列サイズ / Maximum size of the "mon_lite" array (see "current_floor_ptr->grid_array.c")
107  * @details Note that the "view radius" will NEVER exceed 20, monster illumination
108  * flags are dependent on CAVE_VIEW, and even if the "view" was octagonal,
109  * we would never require more than 1520 entries in the array.
110  */
111 #define MON_LITE_MAX 1536
112
113 /*!
114  * @brief 視界処理配列サイズ / Maximum size of the "view" array (see "current_floor_ptr->grid_array.c")
115  * @details Note that the "view radius" will NEVER exceed 20, and even if the "view"
116  * was octagonal, we would never require more than 1520 entries in the array.
117  */
118 #define VIEW_MAX 1536
119
120 /*!
121  * @brief 視界及び光源の過渡処理配列サイズ / Maximum size of the "temp" array (see "current_floor_ptr->grid_array.c")
122  * @details We must be as large as "VIEW_MAX" and "LITE_MAX" for proper functioning
123  * of "update_view()" and "update_lite()".  We must also be as large as the
124  * largest illuminatable room, but no room is larger than 800 grids.  We
125  * must also be large enough to allow "good enough" use as a circular queue,
126  * to calculate monster flow, but note that the flow code is "paranoid".
127  */
128 #define TEMP_MAX 2298
129
130 /*!
131  * @brief 再描画処理用配列サイズ / Maximum size of the "redraw" array (see "current_floor_ptr->grid_array.c")
132  * @details We must be large for proper functioning of delayed redrawing.
133  * We must also be as large as two times of the largest view area.
134  * Note that maximum view grids are 1149 entries.
135  */
136 #define REDRAW_MAX 2298
137
138
139 /*!
140  * @brief マクロ登録の最大数 / Maximum number of macros (see "io.c")
141  * @note Default: assume at most 256 macros are used
142  */
143 #define MACRO_MAX       256
144
145 /*!
146  * @brief 銘情報の最大数 / Maximum number of "quarks" (see "io.c")
147  * @note 
148  * Default: assume at most 512 different inscriptions are used<br>
149  * Was 512... 256 quarks added for random artifacts<br>
150  */
151 #define QUARK_MAX       768
152
153 /*
154  * OPTION: Maximum number of messages to remember (see "io.c")
155  * Default: assume maximal memorization of 2048 total messages
156  */
157 #define MESSAGE_MAX  81920
158
159 /*
160  * OPTION: Maximum space for the message text buffer (see "io.c")
161  * Default: assume that each of the 2048 messages is repeated an
162  * average of three times, and has an average length of 48
163  */
164 #define MESSAGE_BUF 655360
165
166
167 /*
168  * Misc constants
169  */
170 #define TOWN_DAWN         10000   /*!< 1日分のターン / Number of ticks from dawn to dawn XXX */
171 #define TURNS_PER_TICK    10L     /*!< 時間経過処理を行うターン数の刻み / Number of energy-gain-turns per ticks */
172 #define INN_DUNGEON_TURN_ADJ 10   /*!< 宿屋で時間をつぶした場合に増えるcurrent_world_ptr->dungeon_turnの倍率 */
173 #define MAX_DAYS          20000   /*!< 内部処理中で保持される最大日数 / Maximum days */
174 #define BREAK_GLYPH       550     /*!< 守りのルーンの強靭度 / Rune of protection resistance */
175 #define BREAK_MINOR_GLYPH 299     /*!< 爆発のルーンの発動しやすさ / For explosive runes */
176 #define BTH_PLUS_ADJ      3       /*!< 武器経験値及びプレイヤーの打撃/射撃能力に応じた修正値倍率 / Adjust BTH per plus-to-hit */
177 #define MON_MULT_ADJ      8       /*!< モンスターの増殖しにくさの基本倍率 / High value slows multiplication */
178 #define MON_SUMMON_ADJ    2       /*!< 現在未使用 Adjust level of summoned creatures */
179 #define MON_DRAIN_LIFE    2       /*!< モンスターの打撃によるプレイヤーの経験値吸収基本倍率(%) / Percent of player exp drained per hit */
180 #define USE_DEVICE        3       /*!< 魔道具の最低失敗基準値 x> Harder devices x< Easier devices     */
181
182 /*
183  * Magic-books for the realms
184  */
185 #define REALM1_BOOK     (p_ptr->realm1 + TV_LIFE_BOOK - 1)
186 #define REALM2_BOOK     (p_ptr->realm2 + TV_LIFE_BOOK - 1)
187
188 /*
189  * Maximum number of "normal" pack slots, and the index of the "overflow"
190  * slot, which can hold an item, but only temporarily, since it causes the
191  * pack to "overflow", dropping the "last" item onto the ground.  Since this
192  * value is used as an actual slot, it must be less than "INVEN_RARM" (below).
193  * Note that "INVEN_PACK" is probably hard-coded by its use in savefiles, and
194  * by the fact that the screen can only show 23 items plus a one-line prompt.
195  */
196 #define INVEN_PACK      23 /*!< アイテムスロット…所持品(0~) */
197
198 /*
199  * Player sex constants (hard-coded by save-files, arrays, etc)
200  */
201 #define SEX_FEMALE              0
202 #define SEX_MALE                1
203
204 /*
205  * Player race constants (hard-coded by save-files, arrays, etc)
206  */
207 #define RACE_HUMAN               0
208 #define RACE_HALF_ELF            1
209 #define RACE_ELF                 2
210 #define RACE_HOBBIT              3
211 #define RACE_GNOME               4
212 #define RACE_DWARF               5
213 #define RACE_HALF_ORC            6
214 #define RACE_HALF_TROLL          7
215 #define RACE_AMBERITE            8
216 #define RACE_HIGH_ELF            9
217 #define RACE_BARBARIAN          10
218 #define RACE_HALF_OGRE          11
219 #define RACE_HALF_GIANT         12
220 #define RACE_HALF_TITAN         13
221 #define RACE_CYCLOPS            14
222 #define RACE_YEEK               15
223 #define RACE_KLACKON            16
224 #define RACE_KOBOLD             17
225 #define RACE_NIBELUNG           18
226 #define RACE_DARK_ELF           19
227 #define RACE_DRACONIAN          20
228 #define RACE_MIND_FLAYER        21
229 #define RACE_IMP                22
230 #define RACE_GOLEM              23
231 #define RACE_SKELETON           24
232 #define RACE_ZOMBIE             25
233 #define RACE_VAMPIRE            26
234 #define RACE_SPECTRE            27
235 #define RACE_SPRITE             28
236 #define RACE_BEASTMAN           29
237 #define RACE_ENT                30
238 #define RACE_ANGEL              31
239 #define RACE_DEMON              32
240 #define RACE_DUNADAN            33
241 #define RACE_S_FAIRY            34
242 #define RACE_KUTAR              35
243 #define RACE_ANDROID            36
244 #define RACE_MERFOLK            37
245
246 /*
247  * Maximum number of player "race" types (see "table.c", etc)
248  */
249 #define MAX_RACES               38
250
251
252 /*
253  * Player class constants (hard-coded by save-files, arrays, etc)
254  */
255 #define CLASS_WARRIOR            0
256 #define CLASS_MAGE               1
257 #define CLASS_PRIEST             2
258 #define CLASS_ROGUE              3
259 #define CLASS_RANGER             4
260 #define CLASS_PALADIN            5
261 #define CLASS_WARRIOR_MAGE       6
262 #define CLASS_CHAOS_WARRIOR      7
263 #define CLASS_MONK               8
264 #define CLASS_MINDCRAFTER        9
265 #define CLASS_HIGH_MAGE         10
266 #define CLASS_TOURIST           11
267 #define CLASS_IMITATOR          12
268 #define CLASS_BEASTMASTER       13
269 #define CLASS_SORCERER          14
270 #define CLASS_ARCHER            15
271 #define CLASS_MAGIC_EATER       16
272 #define CLASS_BARD              17
273 #define CLASS_RED_MAGE          18
274 #define CLASS_SAMURAI           19
275 #define CLASS_FORCETRAINER      20
276 #define CLASS_BLUE_MAGE         21
277 #define CLASS_CAVALRY           22
278 #define CLASS_BERSERKER         23
279 #define CLASS_SMITH             24
280 #define CLASS_MIRROR_MASTER     25
281 #define CLASS_NINJA             26
282 #define CLASS_SNIPER            27
283
284 #define SEIKAKU_FUTUU    0
285 #define SEIKAKU_CHIKARA  1
286 #define SEIKAKU_KIREMONO 2
287 #define SEIKAKU_SHIAWASE 3
288 #define SEIKAKU_SUBASI   4
289 #define SEIKAKU_INOCHI   5
290 #define SEIKAKU_COMBAT   6
291 #define SEIKAKU_NAMAKE   7
292 #define SEIKAKU_SEXY     8
293 #define SEIKAKU_LUCKY    9
294 #define SEIKAKU_GAMAN    10
295 #define SEIKAKU_MUNCHKIN 11
296 #define SEIKAKU_CHARGEMAN 12
297
298 /*** Screen Locations ***/
299
300 #define VER_INFO_ROW 3   //!< タイトル表記(行)
301
302
303 #define ROW_MAP                 0
304 #define COL_MAP                 12
305
306
307 /* Which features are dynamic */
308 #define have_dynamic_flags(ARRAY) \
309         (!!((ARRAY)[(FF_INSTANT / 32)] & \
310             ((1UL << (FF_INSTANT % 32)) | \
311              (1UL << (FF_EXPLODE % 32)) | \
312              (1UL << (FF_TIMED % 32)) | \
313              (1UL << (FF_ERUPT % 32)) | \
314              (1UL << (FF_STRIKE % 32)) | \
315              (1UL << (FF_SPREAD % 32)))))
316
317
318 /*
319  * Feature action flags
320  */
321 #define FAF_DESTROY     0x01
322 #define FAF_NO_DROP     0x02
323 #define FAF_CRASH_GLASS 0x04
324
325 /* Types of doors */
326 #define DOOR_DEFAULT    -1
327 #define DOOR_DOOR        0
328 #define DOOR_GLASS_DOOR  1
329 #define DOOR_CURTAIN     2
330
331 #define MAX_DOOR_TYPES   3
332
333 #define feat_locked_door_random(DOOR_TYPE) \
334         (feat_door[(DOOR_TYPE)].num_locked ? \
335          feat_door[(DOOR_TYPE)].locked[randint0(feat_door[(DOOR_TYPE)].num_locked)] : feat_none)
336
337 #define feat_jammed_door_random(DOOR_TYPE) \
338         (feat_door[(DOOR_TYPE)].num_jammed ? \
339          feat_door[(DOOR_TYPE)].jammed[randint0(feat_door[(DOOR_TYPE)].num_jammed)] : feat_none)
340
341
342
343 /* Types of conversions */
344 #define CONVERT_TYPE_FLOOR   0
345 #define CONVERT_TYPE_WALL    1
346 #define CONVERT_TYPE_INNER   2
347 #define CONVERT_TYPE_OUTER   3
348 #define CONVERT_TYPE_SOLID   4
349 #define CONVERT_TYPE_STREAM1 5
350 #define CONVERT_TYPE_STREAM2 6
351
352
353 /*
354  * Bit flags for the *_can_enter() and monster_can_cross_terrain()
355  */
356 #define CEM_RIDING              0x0001
357 #define CEM_P_CAN_ENTER_PATTERN 0x0002
358
359
360 /* Lighting levels of features' attr and char */
361
362 #define F_LIT_STANDARD 0 /* Standard */
363 #define F_LIT_LITE     1 /* Brightly lit */
364 #define F_LIT_DARK     2 /* Darkened */
365
366 #define F_LIT_NS_BEGIN 1 /* Nonstandard */
367 #define F_LIT_MAX      3
368
369
370
371 /*** Object "tval" and "sval" codes ***/
372
373
374 /*
375  * The values for the "tval" field of various objects.
376  *
377  * This value is the primary means by which items are sorted in the
378  * player p_ptr->inventory_list, followed by "sval" and "cost".
379  *
380  * Note that a "BOW" with tval = 19 and sval S = 10*N+P takes a missile
381  * weapon with tval = 16+N, and does (xP) damage when so combined.  This
382  * fact is not actually used in the source, but it kind of interesting.
383  *
384  * Note that as of 2.7.8, the "item flags" apply to all items, though
385  * only armor and weapons and a few other items use any of these flags.
386  */
387
388 #define TV_SKELETON      1      /* Skeletons ('s'), not specified */
389 #define TV_BOTTLE        2      /* Empty bottles ('!') */
390 #define TV_JUNK          3      /* Sticks, Pottery, etc ('~') */
391 #define TV_WHISTLE       4      /* Whistle ('~') */
392 #define TV_SPIKE         5      /* Spikes ('~') */
393 #define TV_CHEST         7      /* Chests ('&') */
394 #define TV_FIGURINE      8      /* Magical figurines */
395 #define TV_STATUE        9      /* Statue, what a silly object... */
396 #define TV_CORPSE       10      /* Corpses and Skeletons, specific */
397 #define TV_CAPTURE      11      /* Monster ball */
398 #define TV_NO_AMMO      15      /* Ammo for crimson */
399 #define TV_SHOT         16      /* Ammo for slings */
400 #define TV_ARROW        17      /* Ammo for bows */
401 #define TV_BOLT         18      /* Ammo for x-bows */
402 #define TV_BOW          19      /* Slings/Bows/Xbows */
403 #define TV_DIGGING      20      /* Shovels/Picks */
404 #define TV_HAFTED       21      /* Priest Weapons */
405 #define TV_POLEARM      22      /* Axes and Pikes */
406 #define TV_SWORD        23      /* Edged Weapons */
407 #define TV_BOOTS        30      /* Boots */
408 #define TV_GLOVES       31      /* Gloves */
409 #define TV_HELM         32      /* Helms */
410 #define TV_CROWN        33      /* Crowns */
411 #define TV_SHIELD       34      /* Shields */
412 #define TV_CLOAK        35      /* Cloaks */
413 #define TV_SOFT_ARMOR   36      /* Soft Armor */
414 #define TV_HARD_ARMOR   37      /* Hard Armor */
415 #define TV_DRAG_ARMOR   38      /* Dragon Scale Mail */
416 #define TV_LITE         39      /* Lites (including Specials) */
417 #define TV_AMULET       40      /* Amulets (including Specials) */
418 #define TV_RING         45      /* Rings (including Specials) */
419 #define TV_CARD         50
420 #define TV_STAFF        55
421 #define TV_WAND         65
422 #define TV_ROD          66
423 #define TV_PARCHMENT    69
424 #define TV_SCROLL       70
425 #define TV_POTION       75
426 #define TV_FLASK        77
427 #define TV_FOOD         80
428 #define TV_LIFE_BOOK    90
429 #define TV_SORCERY_BOOK 91
430 #define TV_NATURE_BOOK  92
431 #define TV_CHAOS_BOOK   93
432 #define TV_DEATH_BOOK   94
433 #define TV_TRUMP_BOOK   95
434 #define TV_ARCANE_BOOK  96
435 #define TV_CRAFT_BOOK 97
436 #define TV_DAEMON_BOOK  98
437 #define TV_CRUSADE_BOOK 99
438 #define TV_MUSIC_BOOK   105
439 #define TV_HISSATSU_BOOK 106
440 #define TV_HEX_BOOK     107
441 #define TV_GOLD         127     /* Gold can only be picked up by players */
442
443 #define TV_EQUIP_BEGIN    TV_SHOT
444 #define TV_EQUIP_END      TV_CARD
445 #define TV_MISSILE_BEGIN  TV_SHOT
446 #define TV_MISSILE_END    TV_BOLT
447 #define TV_WEARABLE_BEGIN TV_BOW
448 #define TV_WEARABLE_END   TV_CARD
449 #define TV_WEAPON_BEGIN   TV_BOW
450 #define TV_WEAPON_END     TV_SWORD
451 #define TV_ARMOR_BEGIN    TV_BOOTS
452 #define TV_ARMOR_END      TV_DRAG_ARMOR
453
454 /* Any subvalue */
455 #define SV_ANY                                  255
456
457 /* The "sval" codes for TV_FIGURINE */
458 #define SV_FIGURINE_NORMAL              0
459
460 #define SV_CAPTURE_NONE         0
461
462 /* The "sval" codes for TV_STATUE */
463 #define SV_WOODEN_STATUE                0
464 #define SV_CLAY_STATUE                  1
465 #define SV_STONE_STATUE                 2
466 #define SV_IRON_STATUE                  3
467 #define SV_COPPER_STATUE                4
468 #define SV_SILVER_STATUE                5
469 #define SV_GOLDEN_STATUE                6
470 #define SV_IVORY_STATUE                 7
471 #define SV_MITHRIL_STATUE               8
472 #define SV_ORNATE_STATUE                9
473 #define SV_PHOTO                        50
474
475 /* The "sval" codes for TV_CORPSE */
476 #define SV_SKELETON                     0
477 #define SV_CORPSE                       1
478
479 /* The "sval" codes for TV_SHOT/TV_ARROW/TV_BOLT */
480 #define SV_AMMO_LIGHT                    0      /* pebbles */
481 #define SV_AMMO_NORMAL                   1      /* shots, arrows, bolts */
482 #define SV_AMMO_HEAVY                    2      /* seeker arrows and bolts, mithril shots */
483
484 /* The "sval" codes for TV_BOW (note information in "sval") */
485 #define SV_SLING                         2      /* (x2) */
486 #define SV_SHORT_BOW                    12      /* (x2) */
487 #define SV_LONG_BOW                     13      /* (x3) */
488 #define SV_LIGHT_XBOW                   23      /* (x3) */
489 #define SV_HEAVY_XBOW                   24      /* (x4) */
490 #define SV_CRIMSON                      50      /* (x0) */
491 #define SV_HARP                         51      /* (x0) */
492 #define SV_NAMAKE_BOW                   63      /* (x3) */
493
494 /* The "sval" codes for TV_DIGGING */
495 #define SV_SHOVEL                        1
496 #define SV_GNOMISH_SHOVEL                2
497 #define SV_DWARVEN_SHOVEL                3
498 #define SV_PICK                          4
499 #define SV_ORCISH_PICK                   5
500 #define SV_DWARVEN_PICK                  6
501 #define SV_MATTOCK                       7
502
503 /* The "sval" values for TV_HAFTED */
504 #define SV_CLUB                          1      /* 1d4  */
505 #define SV_WHIP                          2      /* 1d6  */
506 #define SV_QUARTERSTAFF                  3      /* 1d9  */
507 #define SV_NUNCHAKU                      4      /* 2d3  */
508 #define SV_MACE                          5      /* 2d4  */
509 #define SV_BALL_AND_CHAIN                6      /* 2d4  */
510 #define SV_JO_STAFF                      7      /* 1d7  */
511 #define SV_WAR_HAMMER                    8      /* 3d3  */
512 #define SV_THREE_PIECE_ROD              11      /* 3d3  */
513 #define SV_MORNING_STAR                 12      /* 2d6  */
514 #define SV_FLAIL                        13      /* 2d6  */
515 #define SV_BO_STAFF                     14      /* 1d11 */
516 #define SV_LEAD_FILLED_MACE             15      /* 3d4  */
517 #define SV_TETSUBO                      16      /* 2d7  */
518 #define SV_TWO_HANDED_FLAIL             18      /* 3d6  */
519 #define SV_GREAT_HAMMER                 19      /* 4d6  */
520 #define SV_MACE_OF_DISRUPTION           20      /* 5d8  */
521 #define SV_WIZSTAFF                     21      /* 1d2  */
522 #define SV_GROND                        50      /* 3d9  */
523 #define SV_NAMAKE_HAMMER                63      /* 1d77 */
524
525 /* The "sval" values for TV_POLEARM */
526 #define SV_HATCHET                       1      /* 1d5 */
527 #define SV_SPEAR                         2      /* 1d6 */
528 #define SV_SICKLE                        3      /* 2d3 */
529 #define SV_AWL_PIKE                      4      /* 1d8 */
530 #define SV_TRIDENT                       5      /* 1d9 */
531 #define SV_FAUCHARD                      6  /* 1d10 */
532 #define SV_BROAD_SPEAR                   7      /* 1d9 */
533 #define SV_PIKE                          8      /* 2d5 */
534 #define SV_NAGINATA                      9  /* 2d6 */
535 #define SV_BEAKED_AXE                   10      /* 2d6 */
536 #define SV_BROAD_AXE                    11      /* 2d6 */
537 #define SV_LUCERNE_HAMMER               12      /* 2d5  */
538 #define SV_GLAIVE                       13      /* 2d6 */
539 #define SV_LAJATANG                     14      /* 2d7 */
540 #define SV_HALBERD                      15      /* 3d4 */
541 #define SV_GUISARME                     16  /* 2d5 */
542 #define SV_SCYTHE                       17      /* 5d3 */
543 #define SV_LANCE                        20      /* 2d8 */
544 #define SV_BATTLE_AXE                   22      /* 2d8 */
545 #define SV_GREAT_AXE                    25      /* 4d4 */
546 #define SV_TRIFURCATE_SPEAR             26      /* 2d9 */
547 #define SV_LOCHABER_AXE                 28      /* 3d8 */
548 #define SV_HEAVY_LANCE                  29  /* 4d8 */
549 #define SV_SCYTHE_OF_SLICING            30      /* 8d4 */
550 #define SV_TSURIZAO                     40      /* 1d1 */
551 #define SV_DEATH_SCYTHE                 50      /* 10d10 */
552
553 /* The "sval" codes for TV_SWORD */
554 #define SV_BROKEN_DAGGER                 1  /* 1d1 */
555 #define SV_BROKEN_SWORD                  2  /* 1d2 */
556 #define SV_DAGGER                        4  /* 1d4 */
557 #define SV_MAIN_GAUCHE                   5  /* 1d5 */
558 #define SV_TANTO                         6  /* 1d5 */
559 #define SV_RAPIER                        7  /* 1d6 */
560 #define SV_SMALL_SWORD                   8  /* 1d6 */
561 #define SV_BASILLARD                     9  /* 1d8 */
562 #define SV_SHORT_SWORD                  10  /* 1d7 */
563 #define SV_SABRE                        11  /* 1d7 */
564 #define SV_CUTLASS                      12  /* 1d7 */
565 #define SV_WAKIZASHI                    13  /* 2d4 */
566 #define SV_KHOPESH                      14  /* 2d4 */
567 #define SV_TULWAR                       15  /* 2d4 */
568 #define SV_BROAD_SWORD                  16  /* 2d5 */
569 #define SV_LONG_SWORD                   17  /* 2d5 */
570 #define SV_SCIMITAR                     18  /* 2d5 */
571 #define SV_NINJATO                      19  /* 1d9 */
572 #define SV_KATANA                       20  /* 3d4 */
573 #define SV_BASTARD_SWORD                21  /* 3d4 */
574 #define SV_GREAT_SCIMITAR               22  /* 4d5 */
575 #define SV_CLAYMORE                     23  /* 2d8 */
576 #define SV_ESPADON                      24  /* 2d9 */
577 #define SV_TWO_HANDED_SWORD             25  /* 3d6 */
578 #define SV_FLAMBERGE                    26  /* 3d7 */
579 #define SV_NO_DACHI                     27  /* 5d4 */
580 #define SV_EXECUTIONERS_SWORD           28  /* 4d5 */
581 #define SV_ZWEIHANDER                   29  /* 4d6 */
582 #define SV_BLADE_OF_CHAOS               30  /* 6d5 */
583 #define SV_DIAMOND_EDGE                 31  /* 7d5 */
584 #define SV_DOKUBARI                     32  /* 1d1 */
585 #define SV_HAYABUSA                     33  /* 1d6 */
586
587 /* The "sval" codes for TV_SHIELD */
588 #define SV_SMALL_LEATHER_SHIELD          2
589 #define SV_SMALL_METAL_SHIELD            3
590 #define SV_LARGE_LEATHER_SHIELD          4
591 #define SV_LARGE_METAL_SHIELD            5
592 #define SV_DRAGON_SHIELD                 6
593 #define SV_KNIGHT_SHIELD                 7
594 #define SV_MIRROR_SHIELD                10
595 #define SV_YATA_MIRROR                  50
596
597 /* The "sval" codes for TV_HELM */
598 #define SV_HARD_LEATHER_CAP              2
599 #define SV_METAL_CAP                     3
600 #define SV_JINGASA                       4  /* 4 */
601 #define SV_IRON_HELM                     5
602 #define SV_STEEL_HELM                    6
603 #define SV_DRAGON_HELM                   7
604 #define SV_KABUTO                        8  /* 7 */
605
606 /* The "sval" codes for TV_CROWN */
607 #define SV_IRON_CROWN                   10
608 #define SV_GOLDEN_CROWN                 11
609 #define SV_JEWELED_CROWN                12
610 #define SV_CHAOS                        50
611
612 /* The "sval" codes for TV_BOOTS */
613 #define SV_PAIR_OF_SOFT_LEATHER_BOOTS    2
614 #define SV_PAIR_OF_HARD_LEATHER_BOOTS    3
615 #define SV_PAIR_OF_DRAGON_GREAVE         4
616 #define SV_PAIR_OF_METAL_SHOD_BOOTS      6
617
618 /* The "sval" codes for TV_CLOAK */
619 #define SV_CLOAK                         1
620 #define SV_ELVEN_CLOAK                   2
621 #define SV_FUR_CLOAK                     3
622 #define SV_ETHEREAL_CLOAK                5
623 #define SV_SHADOW_CLOAK                  6
624
625 /* The "sval" codes for TV_GLOVES */
626 #define SV_SET_OF_LEATHER_GLOVES         1
627 #define SV_SET_OF_GAUNTLETS              2
628 #define SV_SET_OF_DRAGON_GLOVES          3
629 #define SV_SET_OF_CESTI                  5
630
631 /* The "sval" codes for TV_SOFT_ARMOR */
632 #define SV_T_SHIRT                       0
633 #define SV_FILTHY_RAG                    1
634 #define SV_ROBE                          2
635 #define SV_PAPER_ARMOR                   3  /* 4 */
636 #define SV_SOFT_LEATHER_ARMOR            4
637 #define SV_SOFT_STUDDED_LEATHER          5
638 #define SV_HARD_LEATHER_ARMOR            6
639 #define SV_HARD_STUDDED_LEATHER          7
640 #define SV_RHINO_HIDE_ARMOR              8
641 #define SV_CORD_ARMOR                    9  /*  6 */
642 #define SV_PADDED_ARMOR                 10  /*  4 */
643 #define SV_LEATHER_SCALE_MAIL           11
644 #define SV_LEATHER_JACK                 12
645 #define SV_KUROSHOUZOKU                 13
646 #define SV_STONE_AND_HIDE_ARMOR         15  /* 15 */
647 #define SV_ABUNAI_MIZUGI                50
648 #define SV_YOIYAMI_ROBE                 60
649 #define SV_NAMAKE_ARMOR                 63
650
651 /* The "sval" codes for TV_HARD_ARMOR */
652 #define SV_RUSTY_CHAIN_MAIL              1  /* 14- */
653 #define SV_RING_MAIL                     2  /* 12  */
654 #define SV_METAL_SCALE_MAIL              3  /* 13  */
655 #define SV_CHAIN_MAIL                    4  /* 14  */
656 #define SV_DOUBLE_RING_MAIL              5  /* 15  */
657 #define SV_AUGMENTED_CHAIN_MAIL          6  /* 16  */
658 #define SV_DOUBLE_CHAIN_MAIL             7  /* 16  */
659 #define SV_BAR_CHAIN_MAIL                8  /* 18  */
660 #define SV_METAL_BRIGANDINE_ARMOUR       9  /* 19  */
661 #define SV_SPLINT_MAIL                  10  /* 19  */
662 #define SV_DO_MARU                      11  /* 20  */
663 #define SV_PARTIAL_PLATE_ARMOUR         12  /* 22  */
664 #define SV_METAL_LAMELLAR_ARMOUR        13  /* 23  */
665 #define SV_HARAMAKIDO                   14  /* 17  */
666 #define SV_FULL_PLATE_ARMOUR            15  /* 25  */
667 #define SV_O_YOROI                      16  /* 24  */
668 #define SV_RIBBED_PLATE_ARMOUR          18  /* 28  */
669 #define SV_MITHRIL_CHAIN_MAIL           20  /* 28+ */
670 #define SV_MITHRIL_PLATE_MAIL           25  /* 35+ */
671 #define SV_ADAMANTITE_PLATE_MAIL        30  /* 40+ */
672
673 /* The "sval" codes for TV_DRAG_ARMOR */
674 #define SV_DRAGON_BLACK                  1
675 #define SV_DRAGON_BLUE                   2
676 #define SV_DRAGON_WHITE                  3
677 #define SV_DRAGON_RED                    4
678 #define SV_DRAGON_GREEN                  5
679 #define SV_DRAGON_MULTIHUED              6
680 #define SV_DRAGON_SHINING               10
681 #define SV_DRAGON_LAW                   12
682 #define SV_DRAGON_BRONZE                14
683 #define SV_DRAGON_GOLD                  16
684 #define SV_DRAGON_CHAOS                 18
685 #define SV_DRAGON_BALANCE               20
686 #define SV_DRAGON_POWER                 30
687
688 /* The sval codes for TV_LITE */
689 #define SV_LITE_TORCH                    0
690 #define SV_LITE_LANTERN                  1
691 #define SV_LITE_FEANOR                   2
692 #define SV_LITE_EDISON                   3
693 #define SV_LITE_GALADRIEL                4
694 #define SV_LITE_ELENDIL                  5
695 #define SV_LITE_JUDGE                    6
696 #define SV_LITE_LORE                     7
697 #define SV_LITE_PALANTIR                 8
698 #define SV_LITE_FLY_STONE                9
699
700 /* The "sval" codes for TV_AMULET */
701 #define SV_AMULET_DOOM                   0
702 #define SV_AMULET_TELEPORT               1
703 #define SV_AMULET_ADORNMENT              2
704 #define SV_AMULET_SLOW_DIGEST            3
705 #define SV_AMULET_RESIST_ACID            4
706 #define SV_AMULET_SEARCHING              5
707 #define SV_AMULET_BRILLIANCE             6
708 #define SV_AMULET_CHARISMA               7
709 #define SV_AMULET_THE_MAGI               8
710 #define SV_AMULET_REFLECTION             9
711 #define SV_AMULET_CARLAMMAS             10
712 #define SV_AMULET_INGWE                 11
713 #define SV_AMULET_DWARVES               12
714 #define SV_AMULET_NO_MAGIC              13
715 #define SV_AMULET_NO_TELE               14
716 #define SV_AMULET_RESISTANCE            15
717 #define SV_AMULET_TELEPATHY             16
718 #define SV_AMULET_FARAMIR               17
719 #define SV_AMULET_BOROMIR               18
720 #define SV_AMULET_MAGATAMA              19
721 #define SV_AMULET_INROU                 20
722 #define SV_AMULET_INTELLIGENCE          21
723 #define SV_AMULET_WISDOM                22
724 #define SV_AMULET_MAGIC_MASTERY         23
725 #define SV_AMULET_NIGHT                 24
726
727 /* The sval codes for TV_RING */
728 #define SV_RING_WOE                      0
729 #define SV_RING_AGGRAVATION              1
730 #define SV_RING_WEAKNESS                 2
731 #define SV_RING_STUPIDITY                3
732 #define SV_RING_TELEPORTATION            4
733 #define SV_RING_SLOW_DIGESTION           6
734 #define SV_RING_LEVITATION_FALL             7
735 #define SV_RING_RESIST_FIRE              8
736 #define SV_RING_RESIST_COLD              9
737 #define SV_RING_SUSTAIN_STR             10
738 #define SV_RING_SUSTAIN_INT             11
739 #define SV_RING_SUSTAIN_WIS             12
740 #define SV_RING_SUSTAIN_CON             13
741 #define SV_RING_SUSTAIN_DEX             14
742 #define SV_RING_SUSTAIN_CHR             15
743 #define SV_RING_PROTECTION              16
744 #define SV_RING_ACID                    17
745 #define SV_RING_FLAMES                  18
746 #define SV_RING_ICE                     19
747 #define SV_RING_RESIST_POIS             20
748 #define SV_RING_FREE_ACTION             21
749 #define SV_RING_SEE_INVIS               22
750 #define SV_RING_SEARCHING               23
751 #define SV_RING_STR                     24
752 #define SV_RING_ELEC                    25
753 #define SV_RING_DEX                     26
754 #define SV_RING_CON                     27
755 #define SV_RING_ACCURACY                28
756 #define SV_RING_DAMAGE                  29
757 #define SV_RING_SLAYING                 30
758 #define SV_RING_SPEED                   31
759 #define SV_RING_FRAKIR                  32
760 #define SV_RING_TULKAS                  33
761 #define SV_RING_NARYA                   34
762 #define SV_RING_NENYA                   35
763 #define SV_RING_VILYA                   36
764 #define SV_RING_POWER                   37
765 #define SV_RING_RES_FEAR                38
766 #define SV_RING_RES_LD                  39
767 #define SV_RING_RES_NETHER              40
768 #define SV_RING_RES_NEXUS               41
769 #define SV_RING_RES_SOUND               42
770 #define SV_RING_RES_CONFUSION           43
771 #define SV_RING_RES_SHARDS              44
772 #define SV_RING_RES_DISENCHANT          45
773 #define SV_RING_RES_CHAOS               46
774 #define SV_RING_RES_BLINDNESS           47
775 #define SV_RING_LORDLY                  48
776 #define SV_RING_ATTACKS                 49
777 #define SV_RING_AHO                     50
778 #define SV_RING_SHOTS                   51
779 #define SV_RING_SUSTAIN                 52
780 #define SV_RING_DEC_MANA                53
781 #define SV_RING_WARNING                 54
782 #define SV_RING_MUSCLE                  55
783
784 #define SV_EXPRESS_CARD                  0
785
786 /* The "sval" codes for TV_STAFF */
787 #define SV_STAFF_DARKNESS                0
788 #define SV_STAFF_SLOWNESS                1
789 #define SV_STAFF_HASTE_MONSTERS          2
790 #define SV_STAFF_SUMMONING               3
791 #define SV_STAFF_TELEPORTATION           4
792 #define SV_STAFF_IDENTIFY                5
793 #define SV_STAFF_REMOVE_CURSE            6
794 #define SV_STAFF_STARLITE                7
795 #define SV_STAFF_LITE                    8
796 #define SV_STAFF_MAPPING                 9
797 #define SV_STAFF_DETECT_GOLD            10
798 #define SV_STAFF_DETECT_ITEM            11
799 #define SV_STAFF_DETECT_TRAP            12
800 #define SV_STAFF_DETECT_DOOR            13
801 #define SV_STAFF_DETECT_INVIS           14
802 #define SV_STAFF_DETECT_EVIL            15
803 #define SV_STAFF_CURE_LIGHT             16
804 #define SV_STAFF_CURING                 17
805 #define SV_STAFF_HEALING                18
806 #define SV_STAFF_THE_MAGI               19
807 #define SV_STAFF_SLEEP_MONSTERS         20
808 #define SV_STAFF_SLOW_MONSTERS          21
809 #define SV_STAFF_SPEED                  22
810 #define SV_STAFF_PROBING                23
811 #define SV_STAFF_DISPEL_EVIL            24
812 #define SV_STAFF_POWER                  25
813 #define SV_STAFF_HOLINESS               26
814 #define SV_STAFF_GENOCIDE               27
815 #define SV_STAFF_EARTHQUAKES            28
816 #define SV_STAFF_DESTRUCTION            29
817 #define SV_STAFF_ANIMATE_DEAD           30
818 #define SV_STAFF_MSTORM                 31
819 #define SV_STAFF_NOTHING                32
820
821
822 /* The "sval" codes for TV_WAND */
823 #define SV_WAND_HEAL_MONSTER             0
824 #define SV_WAND_HASTE_MONSTER            1
825 #define SV_WAND_CLONE_MONSTER            2
826 #define SV_WAND_TELEPORT_AWAY            3
827 #define SV_WAND_DISARMING                4
828 #define SV_WAND_TRAP_DOOR_DEST           5
829 #define SV_WAND_STONE_TO_MUD             6
830 #define SV_WAND_LITE                     7
831 #define SV_WAND_SLEEP_MONSTER            8
832 #define SV_WAND_SLOW_MONSTER             9
833 #define SV_WAND_CONFUSE_MONSTER         10
834 #define SV_WAND_FEAR_MONSTER            11
835 #define SV_WAND_HYPODYNAMIA              12
836 #define SV_WAND_POLYMORPH               13
837 #define SV_WAND_STINKING_CLOUD          14
838 #define SV_WAND_MAGIC_MISSILE           15
839 #define SV_WAND_ACID_BOLT               16
840 #define SV_WAND_CHARM_MONSTER           17
841 #define SV_WAND_FIRE_BOLT               18
842 #define SV_WAND_COLD_BOLT               19
843 #define SV_WAND_ACID_BALL               20
844 #define SV_WAND_ELEC_BALL               21
845 #define SV_WAND_FIRE_BALL               22
846 #define SV_WAND_COLD_BALL               23
847 #define SV_WAND_WONDER                  24
848 #define SV_WAND_DISINTEGRATE            25
849 #define SV_WAND_DRAGON_FIRE             26
850 #define SV_WAND_DRAGON_COLD             27
851 #define SV_WAND_DRAGON_BREATH           28
852 #define SV_WAND_ROCKETS                 29
853 #define SV_WAND_STRIKING                30
854 #define SV_WAND_GENOCIDE                31
855
856 /* The "sval" codes for TV_ROD */
857 #define SV_ROD_DETECT_TRAP               0
858 #define SV_ROD_DETECT_DOOR               1
859 #define SV_ROD_IDENTIFY                  2
860 #define SV_ROD_RECALL                    3
861 #define SV_ROD_ILLUMINATION              4
862 #define SV_ROD_MAPPING                   5
863 #define SV_ROD_DETECTION                 6
864 #define SV_ROD_PROBING                   7
865 #define SV_ROD_CURING                    8
866 #define SV_ROD_HEALING                   9
867 #define SV_ROD_RESTORATION              10
868 #define SV_ROD_SPEED                    11
869 #define SV_ROD_PESTICIDE                12
870 #define SV_ROD_TELEPORT_AWAY            13
871 #define SV_ROD_DISARMING                14
872 #define SV_ROD_LITE                     15
873 #define SV_ROD_SLEEP_MONSTER            16
874 #define SV_ROD_SLOW_MONSTER             17
875 #define SV_ROD_HYPODYNAMIA               18
876 #define SV_ROD_POLYMORPH                19
877 #define SV_ROD_ACID_BOLT                20
878 #define SV_ROD_ELEC_BOLT                21
879 #define SV_ROD_FIRE_BOLT                22
880 #define SV_ROD_COLD_BOLT                23
881 #define SV_ROD_ACID_BALL                24
882 #define SV_ROD_ELEC_BALL                25
883 #define SV_ROD_FIRE_BALL                26
884 #define SV_ROD_COLD_BALL                27
885 #define SV_ROD_HAVOC                    28
886 #define SV_ROD_STONE_TO_MUD             29
887 #define SV_ROD_AGGRAVATE                30
888
889
890 /* The "sval" codes for TV_SCROLL */
891
892 #define SV_SCROLL_DARKNESS               0
893 #define SV_SCROLL_AGGRAVATE_MONSTER      1
894 #define SV_SCROLL_CURSE_ARMOR            2
895 #define SV_SCROLL_CURSE_WEAPON           3
896 #define SV_SCROLL_SUMMON_MONSTER         4
897 #define SV_SCROLL_SUMMON_UNDEAD          5
898 #define SV_SCROLL_SUMMON_PET             6
899 #define SV_SCROLL_TRAP_CREATION          7
900 #define SV_SCROLL_PHASE_DOOR             8
901 #define SV_SCROLL_TELEPORT               9
902 #define SV_SCROLL_TELEPORT_LEVEL        10
903 #define SV_SCROLL_WORD_OF_RECALL        11
904 #define SV_SCROLL_IDENTIFY              12
905 #define SV_SCROLL_STAR_IDENTIFY         13
906 #define SV_SCROLL_REMOVE_CURSE          14
907 #define SV_SCROLL_STAR_REMOVE_CURSE     15
908 #define SV_SCROLL_ENCHANT_ARMOR         16
909 #define SV_SCROLL_ENCHANT_WEAPON_TO_HIT 17
910 #define SV_SCROLL_ENCHANT_WEAPON_TO_DAM 18
911 /* xxx enchant missile? */
912 #define SV_SCROLL_STAR_ENCHANT_ARMOR    20
913 #define SV_SCROLL_STAR_ENCHANT_WEAPON   21
914 #define SV_SCROLL_RECHARGING            22
915 #define SV_SCROLL_MUNDANITY             23
916 #define SV_SCROLL_LIGHT                 24
917 #define SV_SCROLL_MAPPING               25
918 #define SV_SCROLL_DETECT_GOLD           26
919 #define SV_SCROLL_DETECT_ITEM           27
920 #define SV_SCROLL_DETECT_TRAP           28
921 #define SV_SCROLL_DETECT_DOOR           29
922 #define SV_SCROLL_DETECT_INVIS          30
923 /* xxx (detect evil?) */
924 #define SV_SCROLL_SATISFY_HUNGER        32
925 #define SV_SCROLL_BLESSING              33
926 #define SV_SCROLL_HOLY_CHANT            34
927 #define SV_SCROLL_HOLY_PRAYER           35
928 #define SV_SCROLL_MONSTER_CONFUSION     36
929 #define SV_SCROLL_PROTECTION_FROM_EVIL  37
930 #define SV_SCROLL_RUNE_OF_PROTECTION    38
931 #define SV_SCROLL_TRAP_DOOR_DESTRUCTION 39
932 /* xxx */
933 #define SV_SCROLL_STAR_DESTRUCTION      41
934 #define SV_SCROLL_DISPEL_UNDEAD         42
935 #define SV_SCROLL_SPELL                 43
936 #define SV_SCROLL_GENOCIDE              44
937 #define SV_SCROLL_MASS_GENOCIDE         45
938 #define SV_SCROLL_ACQUIREMENT           46
939 #define SV_SCROLL_STAR_ACQUIREMENT      47
940 #define SV_SCROLL_FIRE                  48
941 #define SV_SCROLL_ICE                   49
942 #define SV_SCROLL_CHAOS                 50
943 #define SV_SCROLL_RUMOR                 51
944 #define SV_SCROLL_ARTIFACT              52
945 #define SV_SCROLL_RESET_RECALL          53
946 #define SV_SCROLL_SUMMON_KIN            54
947 #define SV_SCROLL_AMUSEMENT             55
948 #define SV_SCROLL_STAR_AMUSEMENT        56
949
950 /* The "sval" codes for TV_POTION */
951 #define SV_POTION_WATER                  0
952 #define SV_POTION_APPLE_JUICE            1
953 #define SV_POTION_SLIME_MOLD             2
954 /* xxx (fixed color) */
955 #define SV_POTION_SLOWNESS               4
956 #define SV_POTION_SALT_WATER             5
957 #define SV_POTION_POISON                 6
958 #define SV_POTION_BLINDNESS              7
959 /* xxx */
960 #define SV_POTION_BOOZE              9
961 /* xxx */
962 #define SV_POTION_SLEEP                 11
963 /* xxx */
964 #define SV_POTION_LOSE_MEMORIES         13
965 /* xxx */
966 #define SV_POTION_RUINATION             15
967 #define SV_POTION_DEC_STR               16
968 #define SV_POTION_DEC_INT               17
969 #define SV_POTION_DEC_WIS               18
970 #define SV_POTION_DEC_DEX               19
971 #define SV_POTION_DEC_CON               20
972 #define SV_POTION_DEC_CHR               21
973 #define SV_POTION_DETONATIONS           22
974 #define SV_POTION_DEATH                 23
975 #define SV_POTION_INFRAVISION           24
976 #define SV_POTION_DETECT_INVIS          25
977 #define SV_POTION_SLOW_POISON           26
978 #define SV_POTION_CURE_POISON           27
979 #define SV_POTION_BOLDNESS              28
980 #define SV_POTION_SPEED                 29
981 #define SV_POTION_RESIST_HEAT           30
982 #define SV_POTION_RESIST_COLD           31
983 #define SV_POTION_HEROISM               32
984 #define SV_POTION_BESERK_STRENGTH       33
985 #define SV_POTION_CURE_LIGHT            34
986 #define SV_POTION_CURE_SERIOUS          35
987 #define SV_POTION_CURE_CRITICAL         36
988 #define SV_POTION_HEALING               37
989 #define SV_POTION_STAR_HEALING          38
990 #define SV_POTION_LIFE                  39
991 #define SV_POTION_RESTORE_MANA          40
992 #define SV_POTION_RESTORE_EXP           41
993 #define SV_POTION_RES_STR               42
994 #define SV_POTION_RES_INT               43
995 #define SV_POTION_RES_WIS               44
996 #define SV_POTION_RES_DEX               45
997 #define SV_POTION_RES_CON               46
998 #define SV_POTION_RES_CHR               47
999 #define SV_POTION_INC_STR               48
1000 #define SV_POTION_INC_INT               49
1001 #define SV_POTION_INC_WIS               50
1002 #define SV_POTION_INC_DEX               51
1003 #define SV_POTION_INC_CON               52
1004 #define SV_POTION_INC_CHR               53
1005 /* xxx */
1006 #define SV_POTION_AUGMENTATION          55
1007 #define SV_POTION_ENLIGHTENMENT         56
1008 #define SV_POTION_STAR_ENLIGHTENMENT    57
1009 #define SV_POTION_SELF_KNOWLEDGE        58
1010 #define SV_POTION_EXPERIENCE            59
1011 #define SV_POTION_RESISTANCE            60
1012 #define SV_POTION_CURING                61
1013 #define SV_POTION_INVULNERABILITY       62
1014 #define SV_POTION_NEW_LIFE              63
1015 #define SV_POTION_NEO_TSUYOSHI          64
1016 #define SV_POTION_TSUYOSHI              65
1017 #define SV_POTION_POLYMORPH             66
1018
1019 /* The "sval" codes for TV_FLASK */
1020 #define SV_FLASK_OIL                   0
1021
1022 /* The "sval" codes for TV_FOOD */
1023 #define SV_FOOD_POISON                   0
1024 #define SV_FOOD_BLINDNESS                1
1025 #define SV_FOOD_PARANOIA                 2
1026 #define SV_FOOD_CONFUSION                3
1027 #define SV_FOOD_HALLUCINATION            4
1028 #define SV_FOOD_PARALYSIS                5
1029 #define SV_FOOD_WEAKNESS                 6
1030 #define SV_FOOD_SICKNESS                 7
1031 #define SV_FOOD_STUPIDITY                8
1032 #define SV_FOOD_NAIVETY                  9
1033 #define SV_FOOD_UNHEALTH                10
1034 #define SV_FOOD_DISEASE                 11
1035 #define SV_FOOD_CURE_POISON             12
1036 #define SV_FOOD_CURE_BLINDNESS          13
1037 #define SV_FOOD_CURE_PARANOIA           14
1038 #define SV_FOOD_CURE_CONFUSION          15
1039 #define SV_FOOD_CURE_SERIOUS            16
1040 #define SV_FOOD_RESTORE_STR             17
1041 #define SV_FOOD_RESTORE_CON             18
1042 #define SV_FOOD_RESTORING               19
1043 /* many missing mushrooms */
1044 #define SV_FOOD_BISCUIT                 32
1045 #define SV_FOOD_JERKY                   33
1046 #define SV_FOOD_RATION                  35
1047 #define SV_FOOD_SLIME_MOLD              36
1048 #define SV_FOOD_WAYBREAD                37
1049 #define SV_FOOD_PINT_OF_ALE             38
1050 #define SV_FOOD_PINT_OF_WINE            39
1051
1052
1053 #define SV_ROD_MIN_DIRECTION    12 /*!< この値以降の小項目IDを持ったロッドは使用時にターゲットを要求する / Special "sval" limit -- first "aimed" rod */
1054
1055 #define SV_CHEST_MIN_LARGE      4  /*!< この値以降の小項目IDを持った箱は大型の箱としてドロップ数を増やす / Special "sval" limit -- first "large" chest */
1056 #define SV_CHEST_KANDUME        50 /*!< 箱アイテムの小項目ID: おもちゃのカンヅメ */
1057
1058 /*
1059  * Special "sval" limit -- first "good" magic/prayer book
1060  */
1061 #define SV_BOOK_MIN_GOOD    2
1062
1063
1064 #define OBJ_GOLD_LIST   480     /* First "gold" entry */
1065 #define MAX_GOLD        18      /* Number of "gold" entries */
1066
1067 /*** General flag values ***/
1068
1069 /*
1070  * Special caster ID for project()
1071  */
1072 #define PROJECT_WHO_UNCTRL_POWER -1 /*!< 魔法効果の自然発生要因: 名状し難い力の解放 */
1073 #define PROJECT_WHO_GLASS_SHARDS -2 /*!< 魔法効果の自然発生要因: 破壊されたガラス地形の破片 */
1074
1075
1076 /*
1077  * Bit flags for the "p_ptr->window" variable (etc)
1078  */
1079 #define PW_INVEN        0x00000001L     /*!<サブウィンドウ描画フラグ: 所持品-装備品 / Display inven/equip */
1080 #define PW_EQUIP        0x00000002L     /*!<サブウィンドウ描画フラグ: 装備品-所持品 / Display equip/inven */
1081 #define PW_SPELL        0x00000004L     /*!<サブウィンドウ描画フラグ: 魔法一覧 / Display spell list */
1082 #define PW_PLAYER       0x00000008L     /*!<サブウィンドウ描画フラグ: プレイヤーのステータス / Display character */
1083 #define PW_MONSTER_LIST 0x00000010L     /*!<サブウィンドウ描画フラグ: 視界内モンスターの一覧 / Display monster list */
1084 /* xxx */
1085 /* xxx */
1086 #define PW_MESSAGE      0x00000040L     /*!<サブウィンドウ描画フラグ: メッセージログ / Display messages */
1087 #define PW_OVERHEAD     0x00000080L     /*!<サブウィンドウ描画フラグ: 周辺の光景 / Display overhead view */
1088 #define PW_MONSTER      0x00000100L     /*!<サブウィンドウ描画フラグ: モンスターの思い出 / Display monster recall */
1089 #define PW_OBJECT       0x00000200L     /*!<サブウィンドウ描画フラグ: アイテムの知識 / Display object recall */
1090 #define PW_DUNGEON      0x00000400L     /*!<サブウィンドウ描画フラグ: ダンジョンの地形 / Display dungeon view */
1091 #define PW_SNAPSHOT     0x00000800L     /*!<サブウィンドウ描画フラグ: 記念写真 / Display snap-shot */
1092 /* xxx */
1093 /* xxx */
1094 #define PW_BORG_1       0x00004000L     /*!<サブウィンドウ描画フラグ: ボーグメッセージ / Display borg messages */
1095 #define PW_BORG_2       0x00008000L     /*!<サブウィンドウ描画フラグ: ボーグステータス / Display borg status */
1096
1097 /* Empty hand status */
1098 #define EMPTY_HAND_NONE 0x0000 /* Both hands are used */
1099 #define EMPTY_HAND_LARM 0x0001 /* Left hand is empty */
1100 #define EMPTY_HAND_RARM 0x0002 /* Right hand is empty */
1101
1102 /*** General index values ***/
1103
1104
1105
1106 /*** Object flag values ***/
1107
1108
1109 /*
1110  * Object flags
1111  *
1112  * Old variables for object flags such as flags1, flags2, and flags3
1113  * are obsolated.  Now single array flgs[TR_FLAG_SIZE] contains all
1114  * object flags.  And each flag is refered by single index number
1115  * instead of a bit mask.
1116  *
1117  * Therefore it's very easy to add a lot of new flags; no one need to
1118  * worry about in which variable a new flag should be put, nor to
1119  * modify a huge number of files all over the source directory at once
1120  * to add new flag variables such as flags4, a_ability_flags1, etc...
1121  *
1122  * All management of flags is now treated using a set of macros
1123  * instead of bit operations.
1124  * Note: These macros are using division, modulo, and bit shift
1125  * operations, and it seems that these operations are rather slower
1126  * than original bit operation.  But since index numbers are almost
1127  * always given as constant, such slow operations are performed in the
1128  * compile time.  So there is no problem on the speed.
1129  *
1130  * Exceptions of new flag management is a set of flags to control
1131  * object generation and the curse flags.  These are not yet rewritten
1132  * in new index form; maybe these have no merit of rewriting.
1133  */
1134
1135 #define have_flag(ARRAY, INDEX) !!((ARRAY)[(INDEX)/32] & (1L << ((INDEX)%32)))
1136 #define add_flag(ARRAY, INDEX) ((ARRAY)[(INDEX)/32] |= (1L << ((INDEX)%32)))
1137 #define remove_flag(ARRAY, INDEX) ((ARRAY)[(INDEX)/32] &= ~(1L << ((INDEX)%32)))
1138 #define is_pval_flag(INDEX) ((TR_STR <= (INDEX) && (INDEX) <= TR_MAGIC_MASTERY) || (TR_STEALTH <= (INDEX) && (INDEX) <= TR_BLOWS))
1139 #define have_pval_flags(ARRAY) !!((ARRAY)[0] & (0x00003f7f))
1140
1141
1142
1143
1144 #define TRG_INSTA_ART           0x00000001L     /* Item must be an artifact */
1145 #define TRG_QUESTITEM           0x00000002L     /* quest level item -KMW- */
1146 #define TRG_XTRA_POWER          0x00000004L     /* Extra power */
1147 #define TRG_ONE_SUSTAIN         0x00000008L     /* One sustain */
1148 #define TRG_XTRA_RES_OR_POWER   0x00000010L     /* Extra resistance or power */
1149 #define TRG_XTRA_H_RES          0x00000020L     /* Extra high resistance */
1150 #define TRG_XTRA_E_RES          0x00000040L     /* Extra element resistance */
1151 #define TRG_XTRA_L_RES          0x00000080L     /* Extra lordly resistance */
1152 #define TRG_XTRA_D_RES          0x00000100L     /* Extra dragon resistance */
1153 #define TRG_XTRA_RES            0x00000200L     /* Extra resistance */
1154 #define TRG_CURSED              0x00000400L     /* Item is Cursed */
1155 #define TRG_HEAVY_CURSE         0x00000800L     /* Item is Heavily Cursed */
1156 #define TRG_PERMA_CURSE         0x00001000L     /* Item is Perma Cursed */
1157 #define TRG_RANDOM_CURSE0       0x00002000L     /* Item is Random Cursed */
1158 #define TRG_RANDOM_CURSE1       0x00004000L     /* Item is Random Cursed */
1159 #define TRG_RANDOM_CURSE2       0x00008000L     /* Item is Random Cursed */
1160 #define TRG_XTRA_DICE           0x00010000L     /* Extra dice */
1161 #define TRG_POWERFUL            0x00020000L     /* Item has good value even if Cursed */
1162
1163
1164 #define MAX_CURSE 18
1165
1166 #define TRC_CURSED              0x00000001L
1167 #define TRC_HEAVY_CURSE         0x00000002L
1168 #define TRC_PERMA_CURSE         0x00000004L
1169 #define TRC_XXX1                0x00000008L
1170 #define TRC_TY_CURSE            0x00000010L
1171 #define TRC_AGGRAVATE           0x00000020L
1172 #define TRC_DRAIN_EXP           0x00000040L
1173 #define TRC_SLOW_REGEN          0x00000080L
1174 #define TRC_ADD_L_CURSE         0x00000100L
1175 #define TRC_ADD_H_CURSE         0x00000200L
1176 #define TRC_CALL_ANIMAL         0x00000400L
1177 #define TRC_CALL_DEMON          0x00000800L
1178 #define TRC_CALL_DRAGON         0x00001000L
1179 #define TRC_COWARDICE           0x00002000L
1180 #define TRC_TELEPORT            0x00004000L
1181 #define TRC_LOW_MELEE           0x00008000L
1182 #define TRC_LOW_AC              0x00010000L
1183 #define TRC_LOW_MAGIC           0x00020000L
1184 #define TRC_FAST_DIGEST         0x00040000L
1185 #define TRC_DRAIN_HP            0x00080000L
1186 #define TRC_DRAIN_MANA          0x00100000L
1187 #define TRC_CALL_UNDEAD         0x00200000L
1188
1189 #define TRC_TELEPORT_SELF       0x00000001L
1190 #define TRC_CHAINSWORD          0x00000002L
1191
1192 #define TRC_SPECIAL_MASK \
1193         (TRC_TY_CURSE | TRC_AGGRAVATE)
1194
1195 #define TRC_HEAVY_MASK   \
1196         (TRC_TY_CURSE | TRC_AGGRAVATE | TRC_DRAIN_EXP | TRC_ADD_H_CURSE | \
1197          TRC_CALL_DEMON | TRC_CALL_DRAGON | TRC_CALL_UNDEAD | TRC_TELEPORT)
1198
1199 #define TRC_P_FLAG_MASK  \
1200         (TRC_TELEPORT_SELF | TRC_CHAINSWORD | \
1201          TRC_TY_CURSE | TRC_DRAIN_EXP | TRC_ADD_L_CURSE | TRC_ADD_H_CURSE | \
1202          TRC_CALL_ANIMAL | TRC_CALL_DEMON | TRC_CALL_DRAGON | TRC_COWARDICE | \
1203          TRC_TELEPORT | TRC_DRAIN_HP | TRC_DRAIN_MANA | TRC_CALL_UNDEAD)
1204
1205
1206
1207  /*
1208   * Hack -- "torch" masks
1209   */
1210 #define RF7_LITE_MASK \
1211         (RF7_HAS_LITE_1 | RF7_SELF_LITE_1 | RF7_HAS_LITE_2 | RF7_SELF_LITE_2)
1212
1213 #define RF7_DARK_MASK \
1214         (RF7_HAS_DARK_1 | RF7_SELF_DARK_1 | RF7_HAS_DARK_2 | RF7_SELF_DARK_2)
1215
1216 #define RF7_HAS_LD_MASK \
1217         (RF7_HAS_LITE_1 | RF7_HAS_LITE_2 | RF7_HAS_DARK_1 | RF7_HAS_DARK_2)
1218
1219 #define RF7_SELF_LD_MASK \
1220         (RF7_SELF_LITE_1 | RF7_SELF_LITE_2 | RF7_SELF_DARK_1 | RF7_SELF_DARK_2)
1221
1222   /*
1223    * Hack -- effective elemental and poison immunity mask
1224    */
1225 #define RFR_EFF_IM_ACID_MASK  (RFR_IM_ACID | RFR_RES_ALL)
1226 #define RFR_EFF_IM_ELEC_MASK  (RFR_IM_ELEC | RFR_RES_ALL)
1227 #define RFR_EFF_IM_FIRE_MASK  (RFR_IM_FIRE | RFR_RES_ALL)
1228 #define RFR_EFF_IM_COLD_MASK  (RFR_IM_COLD | RFR_RES_ALL)
1229 #define RFR_EFF_IM_POIS_MASK  (RFR_IM_POIS | RFR_RES_ALL)
1230 #define RFR_EFF_RES_SHAR_MASK (RFR_RES_SHAR | RFR_RES_ALL)
1231 #define RFR_EFF_RES_CHAO_MASK (RFR_RES_CHAO | RFR_RES_ALL)
1232 #define RFR_EFF_RES_NEXU_MASK (RFR_RES_NEXU | RFR_RES_ALL)
1233
1234
1235 #define MR1_SINKA 0x01
1236
1237
1238 /*
1239  * Is the monster seen by the player?
1240  */
1241 #define is_seen(A) \
1242         ((bool)((A)->ml && (!ignore_unview || p_ptr->inside_battle || \
1243          (player_can_see_bold((A)->fy, (A)->fx) && projectable(p_ptr->y, p_ptr->x, (A)->fy, (A)->fx)))))
1244
1245
1246 /*** Macro Definitions ***/
1247 /*
1248  * Convert an "attr"/"char" pair into a "pict" (P)
1249  */
1250 #define PICT(A,C) \
1251         ((((u16b)(A)) << 8) | ((byte)(C)))
1252
1253 /*
1254  * Convert a "pict" (P) into an "attr" (A)
1255  */
1256 #define PICT_A(P) \
1257         ((byte)((P) >> 8))
1258
1259 /*
1260  * Convert a "pict" (P) into an "char" (C)
1261  */
1262 #define PICT_C(P) \
1263         ((char)((byte)(P)))
1264
1265
1266 /*
1267  * Hack -- Prepare to use the "Secure" routines
1268  */
1269 #if defined(SET_UID) && defined(SECURE)
1270 extern int PlayerUID;
1271 # define getuid() PlayerUID
1272 # define geteuid() PlayerUID
1273 #endif
1274
1275
1276
1277 /*** Color constants ***/
1278
1279 /*
1280  * Not using graphical tiles for this feature?
1281  */
1282 #define is_ascii_graphics(A) (!((A) & 0x80))
1283
1284
1285 /*** Hack ***/
1286
1287
1288 /*
1289  * Hack -- attempt to reduce various values
1290  */
1291 #ifdef ANGBAND_LITE
1292 # undef MACRO_MAX
1293 # define MACRO_MAX      128
1294 # undef QUARK_MAX
1295 # define QUARK_MAX      128
1296 # undef MESSAGE_MAX
1297 # define MESSAGE_MAX    128
1298 # undef MESSAGE_BUF
1299 # define MESSAGE_BUF    4096
1300 #endif
1301
1302
1303
1304
1305
1306 /*
1307  * Available graphic modes
1308  */
1309 #define GRAPHICS_NONE       0
1310 #define GRAPHICS_ORIGINAL   1
1311 #define GRAPHICS_ADAM_BOLT  2
1312 #define GRAPHICS_HENGBAND   3
1313
1314
1315 #ifdef JP
1316 #define JVERB_AND 1
1317 #define JVERB_TO  2
1318 #define JVERB_OR  3
1319 #endif
1320
1321 /*
1322  * Modes for the tokenizer
1323  */
1324 #define TOKENIZE_CHECKQUOTE 0x01  /* Special handling of single quotes */
1325
1326 #define GINOU_MAX      10
1327
1328 #define NO_TOWN 6
1329 #define SECRET_TOWN 5
1330
1331
1332 #define MAX_MANE 16
1333 #define MAX_MONSPELLS 96
1334 #define MONSPELL_TYPE_BOLT 1
1335 #define MONSPELL_TYPE_BALL 2
1336 #define MONSPELL_TYPE_BREATH 3
1337 #define MONSPELL_TYPE_SUMMON 4
1338 #define MONSPELL_TYPE_OTHER 5
1339
1340 #define EATER_EXT 36
1341 #define EATER_CHARGE 0x10000L
1342 #define EATER_ROD_CHARGE 0x10L
1343
1344
1345 #define DETECT_RAD_DEFAULT 30
1346 #define DETECT_RAD_MAP     30
1347 #define DETECT_RAD_ALL     255
1348
1349 /* Maximum "Nazguls" number */
1350 #define MAX_NAZGUL_NUM 5
1351
1352 #define DO_AUTOPICK       0x01
1353 #define DO_AUTODESTROY    0x02
1354 #define DO_DISPLAY        0x04
1355 #define DONT_AUTOPICK     0x08
1356 #define ITEM_DISPLAY      0x10
1357 #define DO_QUERY_AUTOPICK 0x20
1358
1359 #define VIRTUE_LARGE 1
1360 #define VIRTUE_SMALL 2
1361
1362 #define SPELL_DD_S 27
1363 #define SPELL_DD_T 13
1364 #define SPELL_SW   22
1365 #define SPELL_KABE 20
1366
1367 #define KNOW_STAT   0x01
1368 #define KNOW_HPRATE 0x02
1369
1370
1371
1372 #define DUNGEON_FEAT_PROB_NUM 3
1373
1374 /*
1375  * Flags for save/load temporal saved floor file
1376  */
1377 #define SLF_SECOND       0x0001  /* Called from another save/load function */
1378 #define SLF_NO_KILL      0x0002  /* Don't kill temporal files */
1379
1380
1381 #define prace_is_(A) (!p_ptr->mimic_form && (p_ptr->prace == A))
1382
1383 /* Sub-alignment flags for neutral monsters */
1384 #define SUB_ALIGN_NEUTRAL 0x0000
1385 #define SUB_ALIGN_EVIL    0x0001
1386 #define SUB_ALIGN_GOOD    0x0002
1387
1388 /* Multishadow effects is determined by current_world_ptr->game_turn */
1389 #define CHECK_MULTISHADOW() (p_ptr->multishadow && (current_world_ptr->game_turn & 1))
1390
1391 /* Is "teleport level" ineffective to this target? */
1392 #define TELE_LEVEL_IS_INEFF(TARGET) \
1393         (p_ptr->inside_arena || p_ptr->inside_battle || \
1394          (p_ptr->inside_quest && !random_quest_number(current_floor_ptr->dun_level)) || \
1395          (((TARGET) <= 0) && (quest_number(current_floor_ptr->dun_level) || (current_floor_ptr->dun_level >= d_info[p_ptr->dungeon_idx].maxdepth)) && \
1396           (current_floor_ptr->dun_level >= 1) && ironman_downward))
1397
1398
1399 /*
1400  * Max numbers of macro trigger names
1401  */
1402 #define MAX_MACRO_MOD 12
1403 #define MAX_MACRO_TRIG 200 /*!< 登録を許すマクロ(トリガー)の最大数 */
1404
1405 /* Max size of screen dump buffer */
1406 #define SCREEN_BUF_MAX_SIZE (4 * 65536)
1407
1408 #define MTIMED_CSLEEP   0 /* Monster is sleeping */
1409 #define MTIMED_FAST     1 /* Monster is temporarily fast */
1410 #define MTIMED_SLOW     2 /* Monster is temporarily slow */
1411 #define MTIMED_STUNNED  3 /* Monster is stunned */
1412 #define MTIMED_CONFUSED 4 /* Monster is confused */
1413 #define MTIMED_MONFEAR  5 /* Monster is afraid */
1414 #define MTIMED_INVULNER 6 /* Monster is temporarily invulnerable */
1415
1416 #define MAX_MTIMED      7
1417
1418 #define MON_CSLEEP(M_PTR)   ((M_PTR)->mtimed[MTIMED_CSLEEP])
1419 #define MON_FAST(M_PTR)     ((M_PTR)->mtimed[MTIMED_FAST])
1420 #define MON_SLOW(M_PTR)     ((M_PTR)->mtimed[MTIMED_SLOW])
1421 #define MON_STUNNED(M_PTR)  ((M_PTR)->mtimed[MTIMED_STUNNED])
1422 #define MON_CONFUSED(M_PTR) ((M_PTR)->mtimed[MTIMED_CONFUSED])
1423 #define MON_MONFEAR(M_PTR)  ((M_PTR)->mtimed[MTIMED_MONFEAR])
1424 #define MON_INVULNER(M_PTR) ((M_PTR)->mtimed[MTIMED_INVULNER])
1425
1426 /*
1427  * Bit flags for screen_object()
1428  */
1429 #define SCROBJ_FAKE_OBJECT  0x00000001
1430 #define SCROBJ_FORCE_DETAIL 0x00000002
1431
1432 /*
1433  * For travel command (auto run)
1434  */
1435 #define TRAVEL
1436
1437 #define CONCENT_RADAR_THRESHOLD 2
1438 #define CONCENT_TELE_THRESHOLD  5
1439
1440 /* Hex */
1441 #define hex_spelling_any() \
1442         ((p_ptr->realm1 == REALM_HEX) && (p_ptr->magic_num1[0]))
1443 #define hex_spelling(X) \
1444         ((p_ptr->realm1 == REALM_HEX) && (p_ptr->magic_num1[0] & (1L << (X))))
1445 #define CASTING_HEX_FLAGS(P_PTR) ((P_PTR)->magic_num1[0])
1446 #define CASTING_HEX_NUM(P_PTR) ((P_PTR)->magic_num2[0])
1447 #define HEX_REVENGE_POWER(P_PTR) ((P_PTR)->magic_num1[2])
1448 #define HEX_REVENGE_TURN(P_PTR) ((P_PTR)->magic_num2[2])
1449 #define HEX_REVENGE_TYPE(P_PTR) ((P_PTR)->magic_num2[1])
1450
1451 /*
1452   Language selection macro
1453 */
1454 #ifdef JP
1455 #define _(JAPANESE,ENGLISH) (JAPANESE)
1456 #else
1457 #define _(JAPANESE,ENGLISH) (ENGLISH)
1458 #endif
1459
1460 /* Lite flag macro */
1461 #define have_lite_flag(ARRAY) \
1462         (have_flag(ARRAY, TR_LITE_1) || have_flag(ARRAY, TR_LITE_2) || have_flag(ARRAY, TR_LITE_3))
1463
1464 #define have_dark_flag(ARRAY) \
1465         (have_flag(ARRAY, TR_LITE_M1) || have_flag(ARRAY, TR_LITE_M2) || have_flag(ARRAY, TR_LITE_M3))
1466
1467 /* Spell Type flag */
1468 #define MONSTER_TO_PLAYER     0x01
1469 #define MONSTER_TO_MONSTER    0x02
1470
1471 /* summoning number */
1472 #define S_NUM_6     (easy_band ? 2 : 6)
1473 #define S_NUM_4     (easy_band ? 1 : 4)
1474
1475 /* monster spell number */
1476 #define RF4_SPELL_START 32 * 3
1477 #define RF5_SPELL_START 32 * 4
1478 #define RF6_SPELL_START 32 * 5
1479
1480 #define RF4_SPELL_SIZE 32
1481 #define RF5_SPELL_SIZE 32
1482 #define RF6_SPELL_SIZE 32
1483
1484 /* Spell Damage Calc Flag*/
1485 #define DAM_ROLL 1
1486 #define DAM_MAX 2
1487 #define DAM_MIN 3
1488 #define DICE_NUM 4
1489 #define DICE_SIDE 5
1490 #define DICE_MULT 6
1491 #define DICE_DIV 7
1492 #define BASE_DAM 8
1493
1494 /* Cheat Info Type */
1495 #define CHEAT_OBJECT 0
1496 #define CHEAT_MONSTER 1
1497 #define CHEAT_DUNGEON 2
1498 #define CHEAT_MISC 3
1499
1500 #define COMMAND_ARG_REST_UNTIL_DONE -2   /*!<休憩コマンド引数 … 必要な分だけ回復 */
1501 #define COMMAND_ARG_REST_FULL_HEALING -1 /*!<休憩コマンド引数 … HPとMPが全回復するまで */
1502
1503 /*!
1504  * チートオプションの最大数 / Number of cheating options
1505  */
1506 #define CHEAT_MAX 10