forked from ankur12-1610/Polyglot_JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scenario.js
51 lines (47 loc) · 1.75 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
// 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,
}
]
},
];