pyevermizer
Python wrapper for Secret of Evermore Randomizer from
https://github.com/black-sliver/evermizer
This is used in Archipelago cross-game multiworld randomizer.
Import from package
Import from source
API
main(src: Path, dst: Path, placement: Path, apseed: str, apslot: str, seed: int, flags: str,
money: int, exp: int, switches: list[str])
get_locations() -> List[Location]
get_sniff_locations() -> List[Location]
get_items() -> List[Item]
get_sniff_items() -> List[Item]
get_extra_items() -> List[Item]
get_traps() -> List[Item]
get_logic() -> List[Location]
P_...
class Location:
name: str
type: int
index: int
difficulty: int
requires: List[Tuple[int, int]]
provides: List[Tuple[int, int]]
class Item:
name: str
progression: bool
useful: bool
type: int
index: int
provides: List[Tuple[int, int]]
See Archipelago/worlds/soe for a complete example.