added extra enemies

This commit is contained in:
2024-07-18 18:37:01 -04:00
parent 1a9c04ad5a
commit ea691a3bb1
11 changed files with 175 additions and 18 deletions

View File

@ -58,7 +58,7 @@ enum race : int {rshade = 0, rdrow, rvampire, rtroll,
static const char CHAR_REP[RACE_CNT] = {
's', 'd', 'v', 't', 'g', 'H', 'W', 'E', 'O', 'M', 'D', 'L',
't', 'g', 'm', 'b', 'a',
'V', 'S', 'l', 'W', 'h', 'B'
'V', 'S', 'l', 'Z', 'h', 'B'
};
static const int MAX_HP[RACE_CNT] = {
@ -68,13 +68,13 @@ static const int MAX_HP[RACE_CNT] = {
};
static const int STARTING_HP[RACE_CNT] = {
125, 150, 50, 120, 110, 140, 100, 140, 180, 30, 150, 100,
800, 130, 150, 120, 100,
800, 130, 100, 120, 100,
150, 100, 60, 100, 90, 140
};
static const int STARTING_ATK[RACE_CNT] = {
25, 25, 25, 25, 15, 20, 20, 30, 30, 70, 20, 15,
40, 25, 80, 15, 30,
30, 25, 10, 20, 15, 25
40, 25, 70, 15, 30,
30, 25, 10, 20, 15, 20
};
static const int STARTING_DEF[RACE_CNT] = {
25, 15, 25, 15, 20, 20, 30, 10, 25, 5, 20, 20,