mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
Pokemon R/B: Removing Floats from NamedRange #3717
This commit is contained in:
@@ -418,10 +418,10 @@ class ExpModifier(NamedRange):
|
||||
"""Modifier for EXP gained. When specifying a number, exp is multiplied by this amount and divided by 16."""
|
||||
display_name = "Exp Modifier"
|
||||
default = 16
|
||||
range_start = default / 4
|
||||
range_start = default // 4
|
||||
range_end = 255
|
||||
special_range_names = {
|
||||
"half": default / 2,
|
||||
"half": default // 2,
|
||||
"normal": default,
|
||||
"double": default * 2,
|
||||
"triple": default * 3,
|
||||
@@ -960,4 +960,4 @@ pokemon_rb_options = {
|
||||
"ice_trap_weight": IceTrapWeight,
|
||||
"randomize_pokemon_palettes": RandomizePokemonPalettes,
|
||||
"death_link": DeathLink
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user