2021-09-17 04:32:36 +02:00
|
|
|
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."""
|
2022-07-07 00:01:28 +02:00
|
|
|
display_name = "Item Pool"
|
2021-09-17 04:32:36 +02:00
|
|
|
option_standard = 0
|
|
|
|
|
option_valuable = 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
"item_pool": ItemPool
|
|
|
|
|
}
|