OSDN Git Service

Reworded English description of the sniper's SP_PIERCE ability.
[hengband/hengband.git] / src / mspell / mspell-damage-calculator.h
1 #pragma once
2
3 #include "mspell/mspell-type.h"
4 #include "system/angband.h"
5
6 typedef enum spell_flag_type {
7         DAM_ROLL = 1,
8     DAM_MAX = 2,
9     DAM_MIN = 3,
10     DICE_NUM = 4,
11     DICE_SIDE = 5,
12     DICE_MULT = 6,
13     DICE_DIV = 7,
14     BASE_DAM = 8,
15 } spell_flag_type;
16
17 HIT_POINT monspell_damage(player_type* target_ptr, monster_spell_type ms_type, MONSTER_IDX m_idx, int TYPE);
18 HIT_POINT monspell_race_damage(player_type* target_ptr, monster_spell_type ms_type, MONRACE_IDX r_idx, int TYPE);
19 HIT_POINT monspell_bluemage_damage(player_type* target_ptr, monster_spell_type ms_type, PLAYER_LEVEL plev, int TYPE);