reworked potion priority (5 -> 3) (5 is too much)

This commit is contained in:
2024-07-18 19:10:58 -04:00
parent 145e094684
commit b750081a1b
7 changed files with 35 additions and 23 deletions

View File

@ -97,11 +97,9 @@ enum potion_type : int {restore_health = 0, boost_atk, boost_def,
};
// Calculation priorities
static const int CALC_ADD_BASE = 0;
static const int CALC_MUL_BASE = 1;
static const int CALC_ADD_LATER = 2;
static const int CALC_MUL_LATER = 3;
static const int CALC_ADD_FIXED = 4;
static const int CALC_BASE = 0;
static const int CALC_MID = 1;
static const int CALC_LAST = 2;
static const int DIRECTION_CNT = 8;