OSDN Git Service

Reworded English message for a monk's successful MA_SLOW attack.
[hengband/hengband.git] / src / mspell / monster-power-table.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 /* Imitator */
6 typedef struct monster_power {
7     PLAYER_LEVEL level;
8     MANA_POINT smana;
9     PERCENTAGE fail;
10     int manedam;
11     int manefail;
12     int use_stat;
13     concptr name;
14 } monster_power;
15
16 #define MAX_MONSPELLS 96
17
18 extern const monster_power monster_powers[MAX_MONSPELLS];
19 extern const concptr monster_powers_short[MAX_MONSPELLS];