working on clean up script, got saves and ability mods to display as int, add save_special fields
parent
c0cd513290
commit
a256da0568
|
@ -0,0 +1,46 @@
|
||||||
|
import yaml
|
||||||
|
|
||||||
|
def main():
|
||||||
|
|
||||||
|
with open("monsters.yaml", 'r') as content_file:
|
||||||
|
data = yaml.full_load(content_file)
|
||||||
|
|
||||||
|
print(data[0]['ability_mods'])
|
||||||
|
|
||||||
|
for i in data:
|
||||||
|
i['saves_special'] = {}
|
||||||
|
for k, v in i['ability_mods'].items():
|
||||||
|
i['ability_mods'][k] = int(v)
|
||||||
|
# print(k, i['ability_mods'][k])
|
||||||
|
for k, v in i['saves'].items():
|
||||||
|
# print(k, v)
|
||||||
|
i['saves_special'][k] = None
|
||||||
|
if ',' in v:
|
||||||
|
# print("WE GOT A COMMA")
|
||||||
|
i['saves'][k] = v.replace(',', '')
|
||||||
|
if ';' in v:
|
||||||
|
# print("WE GOT A SPECIAL")
|
||||||
|
a = v.split('; ')
|
||||||
|
# print(a)
|
||||||
|
i['saves_special'][k] = a[1]
|
||||||
|
i['saves'][k] = a[0]
|
||||||
|
elif '(' in v:
|
||||||
|
print("we got a parentheses")
|
||||||
|
print(v)
|
||||||
|
a = v.split(' (')
|
||||||
|
# print(a)
|
||||||
|
i['saves_special'][k] = a[1]
|
||||||
|
i['saves'][k] = a[0]
|
||||||
|
i['saves'][k] = int(i['saves'][k])
|
||||||
|
# print(k, i['saves'][k])
|
||||||
|
|
||||||
|
final = yaml.safe_dump(data, allow_unicode=True)
|
||||||
|
|
||||||
|
|
||||||
|
with open("tmp-monsters.yaml", 'w') as f:
|
||||||
|
f.write(final)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
|
||||||
|
|
|
@ -37503,7 +37503,7 @@
|
||||||
name: "Sabosan"
|
name: "Sabosan"
|
||||||
type: "Creature"
|
type: "Creature"
|
||||||
level: "5"
|
level: "5"
|
||||||
description: "Sabosans are evil, intelligent, bat-like humanoids who live in warm forests and drink the blood of other creatures, particularly people. They have thin, emaciated torsos and broad, leathery wings that can reach a span of almost 20 feet. Sabosans’ heads, necks, shoulders, and upper chests are covered with red or dark-brown fur that barely obscures their stretched.thin flesh. Their ears are large and pointed like a batfs, and indeed they can echolocate to locate prey much like bats can, though their eyes are also capable of seeing in low light."
|
description: "Sabosans are evil, intelligent, bat-like humanoids who live in warm forests and drink the blood of other creatures, particularly people. They have thin, emaciated torsos and broad, leathery wings that can reach a span of almost 20 feet. Sabosans’ heads, necks, shoulders, and upper chests are covered with red or dark-brown fur that barely obscures their stretched.thin flesh. Their ears are large and pointed like a bat's, and indeed they can echolocate to locate prey much like bats can, though their eyes are also capable of seeing in low light."
|
||||||
speed:
|
speed:
|
||||||
land: "25 feet"
|
land: "25 feet"
|
||||||
fly: "25 feet"
|
fly: "25 feet"
|
||||||
|
|
Loading…
Reference in New Issue