Added Setting that makes trainer-owned Pokémon give more Exp, other tweaks

This commit is contained in:
Maruno17
2022-07-03 17:39:44 +01:00
parent a2327c6280
commit 2976ee93ce
7 changed files with 24 additions and 2 deletions

View File

@@ -76,6 +76,9 @@ module Settings
# that much Exp (false). This also applies to Exp gained via the Exp Share
# (held item version) being distributed to all Exp Share holders.
SPLIT_EXP_BETWEEN_GAINERS = (MECHANICS_GENERATION <= 5)
# Whether the Exp gained from beating a Pokémon is multiplied by 1.5 if that
# Pokémon is owned by another trainer.
MORE_EXP_FROM_TRAINER_POKEMON = (MECHANICS_GENERATION <= 6)
# Whether a Pokémon holding a Power item gains 8 (true) or 4 (false) EVs in
# the relevant stat.
MORE_EVS_FROM_POWER_ITEMS = (MECHANICS_GENERATION >= 7)