OSDN Git Service

Merge branch 'master' of git.osdn.net:/gitroot/hengband/hengband
[hengband/hengband.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 extern const activation_type activation_info[];