mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -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."""
|
"""Modifier for EXP gained. When specifying a number, exp is multiplied by this amount and divided by 16."""
|
||||||
display_name = "Exp Modifier"
|
display_name = "Exp Modifier"
|
||||||
default = 16
|
default = 16
|
||||||
range_start = default / 4
|
range_start = default // 4
|
||||||
range_end = 255
|
range_end = 255
|
||||||
special_range_names = {
|
special_range_names = {
|
||||||
"half": default / 2,
|
"half": default // 2,
|
||||||
"normal": default,
|
"normal": default,
|
||||||
"double": default * 2,
|
"double": default * 2,
|
||||||
"triple": default * 3,
|
"triple": default * 3,
|
||||||
|
Reference in New Issue
Block a user