Set Max Weights back to 100

Increasing max weight to 500 for fine tuning was overkill.
Max Locations still set to 500
Max Revives still set to 10% of Max Locations
This commit is contained in:
Mathx2 2022-01-23 16:13:07 -08:00 committed by GitHub
parent 9b5a1bedc0
commit b2ebb65c26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 10 deletions

View File

@ -42,7 +42,7 @@ class GreenScrap(Range):
"""Weight of Green Scraps in the item pool.""" """Weight of Green Scraps in the item pool."""
displayname = "Green Scraps" displayname = "Green Scraps"
range_start = 0 range_start = 0
range_end = 500 range_end = 100
default = 16 default = 16
@ -50,7 +50,7 @@ class RedScrap(Range):
"""Weight of Red Scraps in the item pool.""" """Weight of Red Scraps in the item pool."""
displayname = "Red Scraps" displayname = "Red Scraps"
range_start = 0 range_start = 0
range_end = 500 range_end = 100
default = 4 default = 4
@ -58,7 +58,7 @@ class YellowScrap(Range):
"""Weight of yellow scraps in the item pool.""" """Weight of yellow scraps in the item pool."""
displayname = "Yellow Scraps" displayname = "Yellow Scraps"
range_start = 0 range_start = 0
range_end = 500 range_end = 100
default = 1 default = 1
@ -66,7 +66,7 @@ class WhiteScrap(Range):
"""Weight of white scraps in the item pool.""" """Weight of white scraps in the item pool."""
displayname = "White Scraps" displayname = "White Scraps"
range_start = 0 range_start = 0
range_end = 500 range_end = 100
default = 32 default = 32
@ -74,7 +74,7 @@ class CommonItem(Range):
"""Weight of common items in the item pool.""" """Weight of common items in the item pool."""
displayname = "Common Items" displayname = "Common Items"
range_start = 0 range_start = 0
range_end = 500 range_end = 100
default = 64 default = 64
@ -82,7 +82,7 @@ class UncommonItem(Range):
"""Weight of uncommon items in the item pool.""" """Weight of uncommon items in the item pool."""
displayname = "Uncommon Items" displayname = "Uncommon Items"
range_start = 0 range_start = 0
range_end = 500 range_end = 100
default = 32 default = 32
@ -90,7 +90,7 @@ class LegendaryItem(Range):
"""Weight of legendary items in the item pool.""" """Weight of legendary items in the item pool."""
displayname = "Legendary Items" displayname = "Legendary Items"
range_start = 0 range_start = 0
range_end = 500 range_end = 100
default = 8 default = 8
@ -98,7 +98,7 @@ class BossItem(Range):
"""Weight of boss items in the item pool.""" """Weight of boss items in the item pool."""
displayname = "Boss Items" displayname = "Boss Items"
range_start = 0 range_start = 0
range_end = 500 range_end = 100
default = 4 default = 4
@ -106,7 +106,7 @@ class LunarItem(Range):
"""Weight of lunar items in the item pool.""" """Weight of lunar items in the item pool."""
displayname = "Lunar Items" displayname = "Lunar Items"
range_start = 0 range_start = 0
range_end = 500 range_end = 100
default = 16 default = 16
@ -114,7 +114,7 @@ class Equipment(Range):
"""Weight of equipment items in the item pool.""" """Weight of equipment items in the item pool."""
displayname = "Equipment" displayname = "Equipment"
range_start = 0 range_start = 0
range_end = 500 range_end = 100
default = 32 default = 32