OSDN Git Service

Merge pull request #769 from iks3/feature-add-item-abilities-a18
[hengbandforosx/hengbandosx.git] / src / object-enchant / activation-info-table.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 typedef struct activation_type {
6     concptr flag;
7     byte index;
8     byte level;
9     s32b value;
10     struct {
11         int constant;
12         DICE_NUMBER dice;
13     } timeout;
14     concptr desc;
15 } activation_type;
16
17 #define MAX_ACTIVATION_TYPE 137
18 extern const activation_type activation_info[MAX_ACTIVATION_TYPE];