OSDN Git Service

Reworded English message for a monk's successful MA_SLOW attack.
[hengband/hengband.git] / src / mspell / smart-mspell-util.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 // Monster Spell Remover.
6 typedef struct monster_race monster_race;
7 typedef struct msr_type {
8     monster_race *r_ptr;
9     u32b f4;
10     u32b f5;
11     u32b f6;
12     u32b smart;
13 } msr_type;
14
15 msr_type *initialize_msr_type(player_type *target_ptr, msr_type *msr_ptr, MONSTER_IDX m_idx, const u32b f4p, const u32b f5p, const u32b f6p);
16 bool int_outof(monster_race *r_ptr, PERCENTAGE prob);