-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.game.js
57 lines (57 loc) · 1.08 KB
/
global.game.js
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
'use strict';
(global || window).game = {};
global.game = {};
game.evidence = [
{
name: "Attorney's Badge",
description: (
"Type: Other."
+ "\nOne of my possessions."
+ "\n"
+ "\nNo one would believe I was a defense"
+ " attorney if I didn't carry this."
),
},
{
name: "Cindy's Autopsy Report",
description: (
"Type: Reports."
+ "\nReceived from Mia Fey."
+ "\n"
+ "\nTime of death: 7/31, 4PM-5PM."
+ "\nCause of death: loss of blood due to blunt trauma."
),
},
];
game.profiles = [
{
name: "Mia Fey",
description: (
"Age: 27."
+ "\nGender: Female."
+ "\n"
+ "\nChief Attorney at Fey & Co.."
+ "\nMy boss, and a very good defense attorney."
),
},
{
name: "Larry Butz",
description: (
"Age: 23."
+ "\nGender: Male."
+ "\n"
+ "\nThe defendant in this case."
+ "\nA likeable guy who was my friend in grade school."
),
},
{
name: "Cindy Stone",
description: (
"Age: 22."
+ "\nGender: Female."
+ "\n"
+ "\nThe victim in this case."
+ "\nA model, she lived in an apartment by herself."
),
},
];