状態異常の判別
#define NORMAL 0 #define POISON 1 #define SLEEP 2 #define PARALYSIS 3
ステータスの構造体
typedef struct{ double hp = 150; double attack; double defense; double skill; double hitp; double speed; int state; char weapon; char protector; double money; }
最終更新日:2014/01/09 18:02:18