blob: e20f12f2361482901d049408ee6e318a5e198f18 (
plain)
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
|
id: netrunner_talk
type: talk
nodes:
start:
message: "The Netrunner looks up. \"You want in on the network? I can give you some pointers.\""
options:
- text: "\"What is hacking?\""
goto: what_is
- text: "\"Where can I find terminals?\""
goto: terminals
- text: "\"Any tips for the basic terminal?\""
goto: tips_basic
- text: "\"What about the advanced terminal?\""
goto: tips_advanced
condition:
player_flag: hacking_asked_basic
value: true
- text: "\"Tell me about the secure terminal.\""
goto: tips_secure
condition:
player_flag: hacking_asked_advanced
value: true
- text: "\"Goodbye.\""
end: true
what_is:
message: "\"Hacking's about jacking into terminals and running their gauntlets. Each terminal runs a different challenge -- puzzles, hunts, pattern games. Crack 'em and you get better at it. Simple as that.\""
options:
- text: "\"Where can I find terminals?\""
goto: terminals
- text: "\"Goodbye.\""
end: true
terminals:
message: "\"There's a basic terminal right here in this lab -- good for beginners. The station down east has an advanced one if you've got the chops. And if you're really good, there's a secure terminal deep in the compound. You'll need the skills to match though.\""
options:
- text: "\"Any tips?\""
goto: tips_basic
- text: "\"Thanks.\""
end: true
tips_basic:
message: "\"The basic terminal runs an old rogue AI hunt. Twenty nodes in a network. You've got probes to flush it out. Listen for the warnings -- corrupted data means it's close, voids mean a trap, static means ICE. Shoot into adjacent nodes, don't walk into danger.\""
action:
set_player_flags:
hacking_asked_basic: true
options:
- text: "\"What about the advanced terminal?\""
goto: tips_advanced
- text: "\"Thanks.\""
end: true
tips_advanced:
message: "\"Advanced terminal runs a cipher crack. Four symbols, no repeats. You get feedback after each guess -- locked means right spot, found means right symbol wrong spot. Process of elimination. Ten tries.\""
action:
set_player_flags:
hacking_asked_advanced: true
options:
- text: "\"Tell me about the secure terminal.\""
goto: tips_secure
- text: "\"Thanks.\""
end: true
tips_secure:
message: "\"Secure terminal? Signal Bluff. It's a bluffing game -- you and the system each roll hidden dice and take turns making claims about the total. Ones are wild. Call the bluff or raise the stakes. Read the probabilities, play the odds, and don't let it psych you out.\""
options:
- text: "\"Thanks.\""
end: true
|