-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscenario.js
More file actions
91 lines (87 loc) · 2.71 KB
/
Copy pathscenario.js
File metadata and controls
91 lines (87 loc) · 2.71 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
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
// Add here all the scenarios you can think of!
// The only condition being : add 3 playerCard description for 1 hackerCard Situation. We've already added a few as an example.
// P.S.: Keep in mind the Power of the number so the witty players don't end up losing :p
// How 'power' works : write a power for the hacker's card and while you write powers for the player's cards, keep in mind that the power of the correct counters should be greater than the hacker's card's power.
var scenarios = [
{ // add the text you'd want should appear on the hacker's card
hackerCard : {
description : "I set up a fake Wi-Fi station to steal people’s email and track them online.",
power : 4,
},
// add 3 card descriptions you'd want should appear on the player's card. Keeping in mind that at least ONE of them should be an apt counter!
playerCards : [
{
description : "I never use public wifi networks.",
power : 5,
},
{
description : "I browse the web, but I never do any personal business on a public wifi network.",
power : 3,
},
{
description : "I connect to any wifi network I can use in public.",
power : 1,
}
]
},
{
hackerCard : {
description : "I sent a fake email from your bank asking for your account details.",
power : 3,
},
playerCards : [
{
description : "I checked the email address - the message didn’t come from my bank.",
power : 5,
},
{
description : "I never give out personal information in response to an email.",
power : 4,
},
{
description : "I sent the details you asked for so you could check on my account.",
power : 1,
}
]
},
{
hackerCard : {
description : "I watched you type your password and hacked your account",
power : 2,
},
playerCards : [
{
description : "I deleted the account and started a new one",
power : 1,
},
{
description : "I changed my password on all of the accounts because they are all the same.",
power : 4,
},
{
description : "I use different password for all of my different accounts.",
power : 5,
}
]
},
{
hackerCard : {
description : "I hacked Your system and all your data is deleted now.",
power : 2,
},
playerCards : [
{
description : "I have my data backed up in local and external hard drive",
power : 3,
},
{
description : "I never backed up my data in any way.",
power : 1,
},
{
description : "I follow the 3-2-1 backup rule",
power : 5,
}
]
},
];