ES2 MUD LIB :: 東方故事二(ES2) 天朝帝國 mudlib 瀏覽展示

/include/combat.h

HOME :: include :: combat.h
// combat.h

#ifndef COMBAT_H
#define COMBAT_H

class damage_parameter
{
    int multipler;
    int range;
    int bonus;
    int roll;
}

#define PHASE_PHYSICAL 1
#define PHASE_MENTAL 2
#define PHASE_ELEMENTAL 3
#define PHASE_ILLUSION 4

#endif /* COMBAT_H */
HOME :: include :: combat.h