File size: 1,200 Bytes
aa35052
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93

vowels = list("aeiou")
constants = list("bcdfghjklmnpqrstvwxyz")
seperators=list("-'")

races="""Dwarf

Elf

Halfling

Human

Dragonborn

Gnome

Half-elf

Half-orc

Tiefling

Aarakocra

Genasi

Goliath""".split("\n")

races=[x.strip() for x in races]




classes="""Barbarian

Bard

Cleric

Druid

Fighter

Monk

Paladin

Ranger

Rogue

Sorcerer

Warlock

Wizard""".split("\n")
classes=[x.strip() for x in classes]

colors="""red

blue

green

yellow

orange

purple

pink

brown

black

white""".split("\n")
colors=[x.strip() for x in colors]

outfits="""shirt

pair of pants

pair of shoes

hat

pair of glasses

backpack

belt

tie

cloak

robe

chain mail vest

suit of plate armor

suit of leather armor

suit of studded leather armor

suit of scale armor

suit of chain mail armor

suit of ring mail armor

""".split("\n")
outfits=[x.strip() for x in outfits]

weapons="""sword

dagger

mace

axe

polearm

bow

crossbow

sling

club

flail

warhammer

morningstar

halberd

war pick

war sickle

war hammer""".split("\n")
weapons=[x.strip() for x in weapons]

objects="""shield

lantern

sack

severed head

crystal""".split("\n")
objects=[x.strip() for x in objects]