Apply the new ground_level method.
[crawl.git] / crawl-ref / source / spl-zap.h
blob8f85743b5e9219bb2857180711c6461fac19fe2e
1 #ifndef SPELL_ZAP_H
2 #define SPELL_ZAP_H
4 zap_type spell_to_zap(spell_type spell);
6 // Translate from spell to zap power (usually identical).
7 int spell_zap_power(spell_type spell, int powc);
9 // Zaps have their own cap -- translate to spell power.
10 int spell_zap_power_cap(spell_type spell);
12 #endif