-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverbs.py
26 lines (21 loc) · 784 Bytes
/
verbs.py
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
verbs = {}
verbs["LOOK"] = "l,look,scan"
verbs["TAKE"] = "take,get,pick up,steal,gather,collect"
verbs["DROP"] = "drop,lose,discard,let go,put down,set down,release"
verbs["EXAMINE"] = "x,examine,look at,describe,study,inspect,investigate,appraise"
verbs["INV"] = "i,inv,inventory,carrying"
verbs["SWIM"] = "swim"
verbs["CROSS"] = "cross,traverse,go across,pass over,travel"
verbs["ON"] = "turn on,ignite,switch on,light"
verbs["OFF"] = "turn off,snuff,switch off,extinguish"
verbs["NORTH"] = "north,n"
verbs["EAST"] = "east,e"
verbs["SOUTH"] = "south,s"
verbs["WEST"] = "west,w"
verbs["UP"] = "up,u,climb,ascend"
verbs["DOWN"] = "d,down,descend"
verbs["INSIDE"] = "in,inside"
verbs["OUTSIDE"] = "out,outside"
verbs["LOAD"] = "load"
verbs["SAVE"] = "save"
verbs["QUIT"] = "quit"