Support MORPH fields in monster data
This commit is contained in:
parent
6a0ad9c7ea
commit
53c958f087
1 changed files with 7 additions and 0 deletions
7
main.py
7
main.py
|
@ -72,6 +72,13 @@ class Parser:
|
|||
info["special"] = {special_name: special_desc}
|
||||
else:
|
||||
info["special"] = {}
|
||||
# Morph results, with a percent chance in each one
|
||||
elif line.startswith("MORPH"):
|
||||
_, chance, items = line.split(" ", 2)
|
||||
chance = int(chance[1:-3])
|
||||
items = items.split(", ")
|
||||
if "morph" not in info:
|
||||
info["morph"] = {"percent_chance": chance, "items": items}
|
||||
# Everything else is a simple k: v list where v is comma-delimited
|
||||
else:
|
||||
for k in ["immune", "auto", "skills", "steal", "drops", "location"]:
|
||||
|
|
Loading…
Add table
Reference in a new issue