00001 /* 00002 * File: wiz-you.h 00003 * Summary: Player related wizard functions. 00004 * Written by: Linley Henzell and Jesse Jones 00005 */ 00006 00007 #ifndef WIZYOU_H 00008 #define WIZYOU_H 00009 00010 #include "enum.h" 00011 00012 void wizard_cast_spec_spell(void); 00013 void wizard_cast_spec_spell_name(void); 00014 void wizard_heal(bool super_heal); 00015 void wizard_set_hunger_state(); 00016 void wizard_set_piety(); 00017 void wizard_exercise_skill(void); 00018 void wizard_set_skill_level(skill_type skill = SK_NONE); 00019 void wizard_set_all_skills(void); 00020 void wizard_change_species(void); 00021 void wizard_set_xl(); 00022 bool wizard_add_mutation(); 00023 void wizard_get_religion(void); 00024 void wizard_set_stats(void); 00025 void wizard_edit_durations(void); 00026 void wizard_get_god_gift (); 00027 void wizard_toggle_xray_vision(); 00028 void wizard_god_wrath(); 00029 00030 #endif