15 lines
300 B
Python
15 lines
300 B
Python
|
from typing import Dict, List
|
||
|
|
||
|
inscryption_regions_all: Dict[str, List[str]] = {
|
||
|
"Menu": ["Act 1", "Act 2", "Act 3", "Epilogue"],
|
||
|
"Act 1": [],
|
||
|
"Act 2": [],
|
||
|
"Act 3": [],
|
||
|
"Epilogue": []
|
||
|
}
|
||
|
|
||
|
inscryption_regions_act_1: Dict[str, List[str]] = {
|
||
|
"Menu": ["Act 1"],
|
||
|
"Act 1": []
|
||
|
}
|