OSDN Git Service

Add monster race parsing for reinforcement data.
[hengband/hengband.git] / src / types.h
index d71a076..4e84cc8 100644 (file)
@@ -329,6 +329,9 @@ struct monster_race
        u32b flagsr;                    /* Flags R (resistances info) */
 
        monster_blow blow[4];   /* Up to four blows per round */
+       u16b reinforce_id[6];
+       u16b reinforce_dd[6];
+       u16b reinforce_ds[6];
 
        s16b next_r_idx;
        u32b next_exp;
@@ -591,7 +594,7 @@ struct monster_type
        s16b hp;                /* Current Hit points */
        s16b maxhp;             /* Max Hit points */
        s16b max_maxhp;         /* Max Max Hit points */
-       s16b dealt_damage;              /* Sum of damages dealt by player */
+       u32b dealt_damage;              /* Sum of damages dealt by player */
 
        s16b mtimed[MAX_MTIMED];        /* Timed status counter */
 
@@ -705,6 +708,7 @@ struct quest_type
        byte dungeon;           /* quest dungeon */
 
        byte complev;           /* player level (complete) */
+       u32b comptime;          /* quest clear time*/
 };