Reverted EVs to be capped at 255, to maintain easier compat. with original games

This commit is contained in:
resetes12
2025-10-03 08:51:30 +02:00
parent 0a037a92a0
commit a31d0a8b22

View File

@@ -203,9 +203,9 @@
#define MAX_PER_STAT_IVS 31
#define MAX_IV_MASK 31
#define USE_RANDOM_IVS (MAX_PER_STAT_IVS + 1)
#define MAX_PER_STAT_EVS 252
#define MAX_PER_STAT_EVS 255
#define MAX_TOTAL_EVS 510
#define EV_ITEM_RAISE_LIMIT 252
#define EV_ITEM_RAISE_LIMIT 255
// Battle move flags
#define FLAG_MAKES_CONTACT (1 << 0)