forked from ankur12-1610/Polyglot_JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscenario.js
175 lines (169 loc) · 4.55 KB
/
scenario.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// 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 : "Hello hello ,your bank account will be closed if you dont tell your OTP!!! ",
power : 3,
},
playerCards : [
{
description : "I will not tell OTP to strangers.",
power : 5,
},
{
description : "Wait a little,You are from which bank?",
power : 4,
},
{
description : "Yes my OTP is 620936.",
power : 1,
}
]
},
{ // add the text you'd want should appear on the hacker's card
hackerCard : {
description : "Hey,I am leaking your facebook photo",
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 : " Please dont public it.",
power : 1,
},
{
description : "I am deactivating my account.",
power : 3,
},
{
description : "Haha!My account is private",
power : 5,
}
]
},
{
hackerCard : {
description : "I sent a fraud link in message.",
power : 4,
},
playerCards : [
{
description : "I opened the link but only checked it.",
power : 3,
},
{
description : "I ignored the message as we should not click random link.",
power : 5,
},
{
description : "I filled the form in link.",
power : 1,
}
]
},
{ // 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 : "8th.",
power : 3,
},
playerCards : [
{
description : "I checked .",
power : 5,
},
{
description : "I give .",
power : 4,
},
{
description : "I sent ",
power : 1,
}
]
},
{
hackerCard : {
description : "9th.",
power : 3,
},
playerCards : [
{
description : " bank.",
power : 5,
},
{
description : "email.",
power : 4,
},
{
description : " account.",
power : 1,
}
]
},
];