diff options
| author | Kumar Priyansh <[email protected]> | 2017-12-19 02:08:58 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-12-19 02:08:58 +0530 |
| commit | 0999d01d3605126221a7c05c83401f11b17982e9 (patch) | |
| tree | b3cb8dfaf3a238bb73620de3d860ef0e256f168a /cards.js | |
| parent | 0b1b56af9c0ea44f4e3a2632a5b6d6bf0bf4e6c7 (diff) | |
| download | hacker-cards-game-0999d01d3605126221a7c05c83401f11b17982e9.tar.xz hacker-cards-game-0999d01d3605126221a7c05c83401f11b17982e9.zip | |
Add files via upload
Diffstat (limited to 'cards.js')
| -rw-r--r-- | cards.js | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/cards.js b/cards.js new file mode 100644 index 0000000..409647a --- /dev/null +++ b/cards.js @@ -0,0 +1,106 @@ +// You can add new scenarios, but make sure that there is exactly... +// * 1 hackerCard per scenario +// * 3 playerCards per scenario + +var scenarios = [ + { + hackerCard : { + description : "I set up a fake Wi-Fi station to steal people’s email and track them online.", + power : 4, + }, + 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 figured out where you live from all the personal information you share on social media.", + power : 3, + }, + playerCards : [ + { + description : "I never share personal information on my social media accounts.", + power : 5, + }, + { + description : "I keep my accounts private so only my friends can see them.", + power : 4, + }, + { + description : "I tag everything so my friends always know what I’m doing.", + power : 1, + } + ] + }, + { + hackerCard : { + description : "I watched you type your password and hacked your account.", + power : 2, + }, + playerCards : [ + { + description : "I use different passwords for all of my other accounts.", + power : 4, + }, + { + description : "I changed my password on all of my accounts because they are the same.", + power : 2, + }, + { + description : "I deleted that account and started a new one. ", + power : 1, + } + ] + }, + { + hackerCard : { + description : "I looked at your browsing history on your phone to see what you do online.", + power : 2, + }, + playerCards : [ + { + description : "I always use a private browser that never keeps my history.", + power : 4, + }, + { + description : "I set my browser to delete my history every time I quit. ", + power : 3, + }, + { + description : "I never clear my browser history because I don’t like typing in big web addresses.", + power : 1, + } + ] + } +];
\ No newline at end of file |
