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
|
[
{
"type": "npc",
"id": "thug",
"name_suffix": "Thug",
"class": "NC_THUG",
"attitude": 0,
"mission": 8,
"chat": "TALK_DONE",
"faction": "hells_raiders"
},
{
"type": "npc",
"id": "bandit",
"name_suffix": "Bandit",
"class": "NC_SCAVENGER",
"attitude": 0,
"mission": 8,
"chat": "TALK_DONE",
"faction": "hells_raiders"
},
{
"type": "npc",
"id": "raider",
"name_suffix": "Raider",
"class": "NC_SOLDIER",
"attitude": 0,
"mission": 8,
"chat": "TALK_DONE",
"faction": "hells_raiders"
},
{
"type": "npc",
"id": "wandering_thug",
"//": "Mission set to null, so they walk around.",
"name_suffix": "Thug",
"class": "NC_THUG",
"attitude": 0,
"mission": 0,
"chat": "TALK_DONE",
"faction": "hells_raiders"
},
{
"type": "npc",
"id": "wandering_bandit",
"name_suffix": "Bandit",
"class": "NC_SCAVENGER",
"attitude": 0,
"mission": 0,
"chat": "TALK_DONE",
"faction": "hells_raiders"
},
{
"type": "npc",
"id": "wandering_raider",
"name_suffix": "Raider",
"class": "NC_SOLDIER",
"attitude": 0,
"mission": 0,
"chat": "TALK_DONE",
"faction": "hells_raiders"
}
]
|