mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
14 lines
304 B
Python
14 lines
304 B
Python
![]() |
from Options import Choice
|
||
|
|
||
|
|
||
|
class ItemPool(Choice):
|
||
|
"""Valuable item pool moves all not progression relevant items to starting inventory and
|
||
|
creates random duplicates of important items in their place."""
|
||
|
option_standard = 0
|
||
|
option_valuable = 1
|
||
|
|
||
|
|
||
|
options = {
|
||
|
"item_pool": ItemPool
|
||
|
}
|