summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-zap.h
blob: 8f85743b5e9219bb2857180711c6461fac19fe2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SPELL_ZAP_H
#define SPELL_ZAP_H

zap_type spell_to_zap(spell_type spell);

// Translate from spell to zap power (usually identical).
int spell_zap_power(spell_type spell, int powc);

// Zaps have their own cap -- translate to spell power.
int spell_zap_power_cap(spell_type spell);

#endif