-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCommandList.json
More file actions
65 lines (65 loc) · 1.52 KB
/
CommandList.json
File metadata and controls
65 lines (65 loc) · 1.52 KB
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
{
"commands": [
{
"command": "north",
"event": "CMD_north",
"helpText": "Move to the north, if that is possible."
},
{
"command": "south",
"event": "CMD_south",
"helpText": "Move to the south, if that is possible."
},
{
"command": "east",
"event": "CMD_east",
"helpText": "Move to the east, if that is possible."
},
{
"command": "west",
"event": "CMD_west",
"helpText": "Move to the west, if that is possible."
},
{
"command": "look",
"event": "CMD_look",
"helpText": "Look around the current location for interesting things."
},
{
"command": "take",
"event": "CMD_take",
"helpText": "Pick up, retrieve, snag, snatch, grab, or otherwise obtain an item."
},
{
"command": "drop",
"event": "CMD_drop",
"helpText": "Drop an item. Obviously, you can't drop something you're not carrying.",
"params": [
"itemTitle"
]
},
{
"command": "carrying",
"event": "CMD_carrying",
"helpText": "Show a list of everything you are carrying."
},
{
"command": "exits",
"event": "CMD_exits",
"helpText": "Unspecified"
},
{
"command": "map",
"event": "CMD_map",
"helpText": "Unspecified"
},
{
"command": "kill",
"event": "CMD_kill",
"helpText": "Engage in combat with a specified creature and attempt to kill it.",
"params": [
"monsterTitle"
]
}
]
}