@maka/maka-cli 5.3.17 → 5.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundle/typescript/package.json +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/archetypes.d.ts +62 -0
- package/bundle/typescript/src/commands/game/sideQuest/archetypes.js +196 -0
- package/bundle/typescript/src/commands/game/sideQuest/archetypes.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/advance.d.ts +16 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/advance.js +65 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/advance.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/assense.d.ts +16 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/assense.js +122 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/assense.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/attack.d.ts +42 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/attack.js +243 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/attack.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/bluff.d.ts +16 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/bluff.js +39 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/bluff.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/brandish.d.ts +21 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/brandish.js +82 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/brandish.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/bypass-command.d.ts +28 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/bypass-command.js +101 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/bypass-command.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/call.d.ts +19 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/call.js +219 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/call.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/cast.d.ts +58 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/cast.js +397 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/cast.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/command-registry.d.ts +11 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/command-registry.js +8 -3
- package/bundle/typescript/src/commands/game/sideQuest/commands/command-registry.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/command.d.ts +6 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/command.js +4 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/command.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/drone.d.ts +15 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/drone.js +72 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/drone.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/drop.js +3 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/drop.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/edge.d.ts +13 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/edge.js +31 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/edge.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/end-call.d.ts +6 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/end-call.js +27 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/end-call.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/equip.d.ts +4 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/equip.js +59 -2
- package/bundle/typescript/src/commands/game/sideQuest/commands/equip.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/equipment.d.ts +13 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/equipment.js +50 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/equipment.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/give.js +7 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/give.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/go.d.ts +13 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/go.js +147 -4
- package/bundle/typescript/src/commands/game/sideQuest/commands/go.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/hack.d.ts +25 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/hack.js +199 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/hack.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/haggle.d.ts +15 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/haggle.js +75 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/haggle.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/inv.d.ts +12 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/inv.js +43 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/inv.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/jack.d.ts +17 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/jack.js +64 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/jack.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/kill.d.ts +10 -3
- package/bundle/typescript/src/commands/game/sideQuest/commands/kill.js +11 -33
- package/bundle/typescript/src/commands/game/sideQuest/commands/kill.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/look.js +47 -4
- package/bundle/typescript/src/commands/game/sideQuest/commands/look.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/map.d.ts +12 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/map.js +46 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/map.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/pan.d.ts +12 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/pan.js +55 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/pan.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/persuade.d.ts +18 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/persuade.js +100 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/persuade.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/pick.d.ts +10 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/pick.js +33 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/pick.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/project.d.ts +19 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/project.js +54 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/project.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/read.js +6 -5
- package/bundle/typescript/src/commands/game/sideQuest/commands/read.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/reboot.d.ts +12 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/reboot.js +52 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/reboot.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/reload.d.ts +14 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/reload.js +40 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/reload.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/rest.d.ts +15 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/rest.js +59 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/rest.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/say.js +31 -2
- package/bundle/typescript/src/commands/game/sideQuest/commands/say.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/search.js +71 -7
- package/bundle/typescript/src/commands/game/sideQuest/commands/search.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/sheet.d.ts +12 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/sheet.js +58 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/sheet.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/silent.d.ts +13 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/silent.js +50 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/silent.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/sneak.d.ts +15 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/sneak.js +35 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/sneak.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/solve.js +32 -11
- package/bundle/typescript/src/commands/game/sideQuest/commands/solve.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/spells.d.ts +14 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/spells.js +86 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/spells.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/stance.d.ts +12 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/stance.js +41 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/stance.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/subdue.d.ts +21 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/subdue.js +43 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/subdue.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/surrender.d.ts +20 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/surrender.js +45 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/surrender.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/take.d.ts +8 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/take.js +138 -2
- package/bundle/typescript/src/commands/game/sideQuest/commands/take.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/talk.js +8 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/talk.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/unequip.js +6 -3
- package/bundle/typescript/src/commands/game/sideQuest/commands/unequip.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/unlock.js +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/unlock.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/use.d.ts +24 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/use.js +102 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/use.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/item-factory.js +2 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/item-factory.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/npc-factory.js +7 -2
- package/bundle/typescript/src/commands/game/sideQuest/factories/npc-factory.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/puzzle-factory.js +2 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/puzzle-factory.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/room-factory.js +3 -0
- package/bundle/typescript/src/commands/game/sideQuest/factories/room-factory.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/scene-chunks.d.ts +175 -0
- package/bundle/typescript/src/commands/game/sideQuest/factories/scene-chunks.js +673 -0
- package/bundle/typescript/src/commands/game/sideQuest/factories/scene-chunks.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/factories/scene-factory.d.ts +8 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/scene-factory.js +139 -21
- package/bundle/typescript/src/commands/game/sideQuest/factories/scene-factory.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/scene-seed-generator.d.ts +174 -0
- package/bundle/typescript/src/commands/game/sideQuest/factories/scene-seed-generator.js +647 -0
- package/bundle/typescript/src/commands/game/sideQuest/factories/scene-seed-generator.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/game.d.ts +138 -9
- package/bundle/typescript/src/commands/game/sideQuest/game.js +757 -197
- package/bundle/typescript/src/commands/game/sideQuest/game.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/minigames/hack-minigame.d.ts +16 -0
- package/bundle/typescript/src/commands/game/sideQuest/minigames/hack-minigame.js +101 -0
- package/bundle/typescript/src/commands/game/sideQuest/minigames/hack-minigame.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/minigames/lockpick-minigame.d.ts +15 -0
- package/bundle/typescript/src/commands/game/sideQuest/minigames/lockpick-minigame.js +95 -0
- package/bundle/typescript/src/commands/game/sideQuest/minigames/lockpick-minigame.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/door.d.ts +10 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/door.js +15 -2
- package/bundle/typescript/src/commands/game/sideQuest/models/door.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/inventory.d.ts +10 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/inventory.js +54 -4
- package/bundle/typescript/src/commands/game/sideQuest/models/inventory.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/item.d.ts +41 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/item.js +106 -3
- package/bundle/typescript/src/commands/game/sideQuest/models/item.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/npc.d.ts +27 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/npc.js +312 -50
- package/bundle/typescript/src/commands/game/sideQuest/models/npc.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/player.d.ts +278 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/player.js +661 -9
- package/bundle/typescript/src/commands/game/sideQuest/models/player.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/puzzle.d.ts +75 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/puzzle.js +199 -6
- package/bundle/typescript/src/commands/game/sideQuest/models/puzzle.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/room.d.ts +24 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/room.js +53 -18
- package/bundle/typescript/src/commands/game/sideQuest/models/room.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/scene.d.ts +73 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/scene.js +208 -3
- package/bundle/typescript/src/commands/game/sideQuest/models/scene.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/scenes/scene1.json +319 -70
- package/bundle/typescript/src/commands/game/sideQuest/scenes/scene2.json +661 -227
- package/bundle/typescript/src/commands/game/sideQuest/types/player-equipment.d.ts +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/exit-seed.d.ts +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/item-seed.d.ts +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/npc-seed.d.ts +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/player-seed.d.ts +42 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/puzzle-seed.d.ts +15 -1
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/room-seed.d.ts +4 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/scene-seed.d.ts +8 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/win-condition-seed.d.ts +15 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/win-condition-seed.js +2 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/win-condition-seed.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/shared/abstracts.d.ts +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/shared/abstracts.js +5 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/shared/abstracts.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/types/shared/item-enum.d.ts +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/shared/item-enum.js +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/shared/item-enum.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/ui.d.ts +3 -0
- package/bundle/typescript/src/commands/game/sideQuest/ui.js +95 -6
- package/bundle/typescript/src/commands/game/sideQuest/ui.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/utilities/auto-fight.d.ts +60 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/auto-fight.js +138 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/auto-fight.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/combat-exchange.d.ts +145 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/combat-exchange.js +354 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/combat-exchange.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/comm-style.d.ts +2 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/comm-style.js +12 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/comm-style.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/dice.d.ts +22 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/dice.js +34 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/dice.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/fuzzy-match.d.ts +36 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/fuzzy-match.js +92 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/fuzzy-match.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/planes.d.ts +77 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/planes.js +265 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/planes.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/pursuit.d.ts +16 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/pursuit.js +36 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/pursuit.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest.sub.cmd.js +78 -7
- package/bundle/typescript/src/commands/game/sideQuest.sub.cmd.js.map +1 -1
- package/bundle/typescript/src/commands/set/global.sub.cmd.js +59 -5
- package/bundle/typescript/src/commands/set/global.sub.cmd.js.map +1 -1
- package/bundle/typescript/src/tools/ai/ai.class.d.ts +42 -0
- package/bundle/typescript/src/tools/ai/ai.class.js +117 -0
- package/bundle/typescript/src/tools/ai/ai.class.js.map +1 -0
- package/bundle/typescript/src/tools/fsi/fsi.interfaces.d.ts +1 -0
- package/bundle/typescript/src/tools/fsi/fsi.interfaces.js.map +1 -1
- package/bundle/typescript/src/tools/https/https.class.d.ts +3 -2
- package/bundle/typescript/src/tools/https/https.class.js +51 -2
- package/bundle/typescript/src/tools/https/https.class.js.map +1 -1
- package/bundle/typescript/src/tools/https/https.interface.d.ts +10 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "Seattle Underground",
|
|
3
|
-
"story": "
|
|
3
|
+
"story": "A quick job in the Redmond Barrens: Mr. Krow is sitting on a datachip that keys the Lucky Chummer casino, and every kind of runner has an angle on getting it -- muscle, magic, wires, or words.",
|
|
4
4
|
"residenceTiers": [
|
|
5
5
|
"Street",
|
|
6
6
|
"Squatter",
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
],
|
|
12
12
|
"currency": {
|
|
13
13
|
"type": "nuyen",
|
|
14
|
-
"carrier": "credstick",
|
|
15
14
|
"authorityRoomTags": ["Bank"]
|
|
16
15
|
},
|
|
17
16
|
"player": {
|
|
@@ -97,14 +96,13 @@
|
|
|
97
96
|
]
|
|
98
97
|
},
|
|
99
98
|
|
|
100
|
-
|
|
101
99
|
"rooms": [
|
|
102
100
|
{
|
|
103
101
|
"name": "Barrens Apartment",
|
|
104
|
-
"description": "A grimy studio in the heart of the Redmond Barrens. The synth-leather couch sags, and the flickering AR ads outside the window never stop.",
|
|
102
|
+
"description": "A grimy studio in the heart of the Redmond Barrens. The synth-leather couch sags, and the flickering AR ads outside the window never stop. A dead mage's bookshelf still holds a few things worth having.",
|
|
105
103
|
"tags": ["residence"],
|
|
106
104
|
"supportedLifestyles": {
|
|
107
|
-
"
|
|
105
|
+
"residenceTypes": ["Street", "Squatter"]
|
|
108
106
|
},
|
|
109
107
|
"exits": [
|
|
110
108
|
{
|
|
@@ -114,37 +112,40 @@
|
|
|
114
112
|
],
|
|
115
113
|
"isStartRoom": true
|
|
116
114
|
},
|
|
117
|
-
|
|
118
115
|
{
|
|
119
116
|
"name": "Redmond Safehouse",
|
|
120
|
-
"description": "A hidden bolthole
|
|
117
|
+
"description": "A hidden bolthole where four tunnels meet -- gear cache on one wall, a card sharp's abandoned bunk on the other. Every direction out of here leads somewhere that will test a different part of you.",
|
|
121
118
|
"tags": ["residence"],
|
|
122
119
|
"supportedLifestyles": {
|
|
123
|
-
"
|
|
120
|
+
"residenceTypes": ["Low"]
|
|
124
121
|
},
|
|
125
122
|
"exits": [
|
|
123
|
+
{
|
|
124
|
+
"direction": "south",
|
|
125
|
+
"targetRoom": "Barrens Apartment"
|
|
126
|
+
},
|
|
126
127
|
{
|
|
127
128
|
"direction": "north",
|
|
128
|
-
"targetRoom": "Krow
|
|
129
|
+
"targetRoom": "Krow's Den"
|
|
129
130
|
},
|
|
130
131
|
{
|
|
131
|
-
"direction": "
|
|
132
|
-
"targetRoom": "
|
|
132
|
+
"direction": "east",
|
|
133
|
+
"targetRoom": "Grid Vault"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"direction": "west",
|
|
137
|
+
"targetRoom": "Chapel Alcove"
|
|
133
138
|
}
|
|
134
139
|
]
|
|
135
140
|
},
|
|
136
141
|
{
|
|
137
|
-
"name": "Krow
|
|
138
|
-
"description": "The fixer
|
|
142
|
+
"name": "Krow's Den",
|
|
143
|
+
"description": "The fixer's office. Smells like cigars and secrets. Mr. Krow watches every entrance from behind a scarred steel desk, one hand always below the desktop.",
|
|
139
144
|
"owner": "Mr. Krow",
|
|
140
145
|
"supportedLifestyles": {
|
|
141
146
|
"employmentRoles": ["Fixer"]
|
|
142
147
|
},
|
|
143
148
|
"exits": [
|
|
144
|
-
{
|
|
145
|
-
"direction": "south",
|
|
146
|
-
"targetRoom": "Redmond Safehouse"
|
|
147
|
-
},
|
|
148
149
|
{
|
|
149
150
|
"direction": "east",
|
|
150
151
|
"targetRoom": "Lucky Chummer",
|
|
@@ -154,62 +155,146 @@
|
|
|
154
155
|
},
|
|
155
156
|
{
|
|
156
157
|
"name": "Lucky Chummer",
|
|
157
|
-
"description": "A neon casino buzzing with illicit energy.",
|
|
158
|
+
"description": "A neon casino buzzing with illicit energy. Cards snap, chips clatter, and a velvet rope guards the way deeper in.",
|
|
158
159
|
"supportedLifestyles": {
|
|
159
160
|
"habitTags": ["Gambling"]
|
|
160
|
-
}
|
|
161
|
+
},
|
|
162
|
+
"exits": [
|
|
163
|
+
{
|
|
164
|
+
"direction": "north",
|
|
165
|
+
"targetRoom": "Chummer Backroom",
|
|
166
|
+
"puzzle": "Velvet Rope"
|
|
167
|
+
}
|
|
168
|
+
]
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "Chummer Backroom",
|
|
172
|
+
"description": "The counting room behind the casino floor: a battered floor safe, ledgers nobody audits, and the smell of old money."
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "Grid Vault",
|
|
176
|
+
"description": "A humming server room jury-rigged into the Barrens power grid. Thick cables run into a matte-black host with no antenna in sight -- whatever lives in there doesn't talk to the wireless world.",
|
|
177
|
+
"hasNode": true,
|
|
178
|
+
"nodeAccess": "wired"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "Chapel Alcove",
|
|
182
|
+
"description": "A burned-out chapel annex, its scorched altar still ringed by chalk sigils that never quite wash out. The air hums against the back of your teeth.",
|
|
183
|
+
"warded": true
|
|
161
184
|
}
|
|
162
185
|
],
|
|
163
186
|
"npcs": [
|
|
164
187
|
{
|
|
165
|
-
"description": "Mr. Krow
|
|
188
|
+
"description": "Mr. Krow is a territorial fixer -- dangerous if attacked, and he will chase stolen property, but he respects nerve: a good pitch, a real payment, or an honest win at his own table can all move him. He is guarding the datachip that keys the Lucky Chummer.",
|
|
166
189
|
"dialogue": [
|
|
167
|
-
"I've got what you need
|
|
168
|
-
"
|
|
190
|
+
"I've got what you need -- if you can pay, or if you can impress me.",
|
|
191
|
+
"The chip stays with me until somebody gives me a reason.",
|
|
169
192
|
"The shadows don't lie, chummer."
|
|
170
193
|
],
|
|
171
194
|
"player": {
|
|
172
195
|
"name": "Mr. Krow",
|
|
173
196
|
"startLocation": "Krow's Den",
|
|
174
197
|
"lifestyleChoices": [
|
|
175
|
-
{
|
|
176
|
-
"type": "residence",
|
|
177
|
-
"metadata": {
|
|
178
|
-
"tier": "Medium",
|
|
179
|
-
"location": "Redmond Safehouse"
|
|
180
|
-
}
|
|
181
|
-
},
|
|
182
198
|
{
|
|
183
199
|
"type": "employment",
|
|
184
200
|
"metadata": {
|
|
185
201
|
"jobTitle": "Fixer"
|
|
186
202
|
}
|
|
187
|
-
},
|
|
188
|
-
{
|
|
189
|
-
"type": "vice",
|
|
190
|
-
"metadata": {
|
|
191
|
-
"addictions": ["Cigars"]
|
|
192
|
-
}
|
|
193
203
|
}
|
|
194
|
-
]
|
|
204
|
+
],
|
|
205
|
+
"combat": {
|
|
206
|
+
"body": 5,
|
|
207
|
+
"agility": 5,
|
|
208
|
+
"reaction": 4,
|
|
209
|
+
"combatSkill": 4,
|
|
210
|
+
"strength": 4,
|
|
211
|
+
"willpower": 3,
|
|
212
|
+
"logic": 3,
|
|
213
|
+
"intuition": 3,
|
|
214
|
+
"charisma": 3,
|
|
215
|
+
"skills": {
|
|
216
|
+
"firearms": 5,
|
|
217
|
+
"unarmed": 4,
|
|
218
|
+
"perception": 3,
|
|
219
|
+
"negotiation": 3,
|
|
220
|
+
"intimidation": 4
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"description": "Salli Vex tends bar at the Lucky Chummer and hears everything. She won't cross Krow for free, but she likes a good talker and knows the doorman's phrase, the safe's history, and what really sits in the Grid Vault.",
|
|
227
|
+
"dialogue": [
|
|
228
|
+
"First drink's watered down. So is the second.",
|
|
229
|
+
"The rope? Toro only moves for the right words.",
|
|
230
|
+
"Everything in this place is rigged, sugar. Including me."
|
|
231
|
+
],
|
|
232
|
+
"player": {
|
|
233
|
+
"name": "Salli Vex",
|
|
234
|
+
"startLocation": "Lucky Chummer",
|
|
235
|
+
"lifestyleChoices": [],
|
|
236
|
+
"combat": {
|
|
237
|
+
"body": 3,
|
|
238
|
+
"agility": 3,
|
|
239
|
+
"reaction": 3,
|
|
240
|
+
"combatSkill": 2,
|
|
241
|
+
"charisma": 5,
|
|
242
|
+
"intuition": 4,
|
|
243
|
+
"skills": {
|
|
244
|
+
"negotiation": 4,
|
|
245
|
+
"con": 4,
|
|
246
|
+
"perception": 4
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"plane": "matrix",
|
|
253
|
+
"description": "Static Howler is the Grid Vault's custom ice: a shrieking countermeasure that treats every persona in its host as prey. It cannot leave the host and cannot be reasoned with.",
|
|
254
|
+
"dialogue": [
|
|
255
|
+
"UNREGISTERED PERSONA. PURGE CYCLE INITIATED.",
|
|
256
|
+
"static. static. STATIC."
|
|
257
|
+
],
|
|
258
|
+
"player": {
|
|
259
|
+
"name": "Static Howler",
|
|
260
|
+
"startLocation": "Grid Vault",
|
|
261
|
+
"lifestyleChoices": [],
|
|
262
|
+
"combat": {
|
|
263
|
+
"body": 3,
|
|
264
|
+
"agility": 3,
|
|
265
|
+
"reaction": 4,
|
|
266
|
+
"combatSkill": 4,
|
|
267
|
+
"willpower": 4,
|
|
268
|
+
"logic": 5,
|
|
269
|
+
"intuition": 4
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"plane": "astral",
|
|
275
|
+
"description": "The Ash Sister is a mournful fire spirit bound to the burned chapel. She speaks in embers to anyone who can reach the astral, trades riddles for company, and burns anything that threatens her altar.",
|
|
276
|
+
"dialogue": [
|
|
277
|
+
"You walk in two worlds. Sit. The living so rarely visit.",
|
|
278
|
+
"The ward was mine before the fire. It will be mine after you.",
|
|
279
|
+
"Ash remembers everything it used to be."
|
|
280
|
+
],
|
|
281
|
+
"player": {
|
|
282
|
+
"name": "Ash Sister",
|
|
283
|
+
"startLocation": "Chapel Alcove",
|
|
284
|
+
"lifestyleChoices": [],
|
|
285
|
+
"combat": {
|
|
286
|
+
"body": 4,
|
|
287
|
+
"agility": 3,
|
|
288
|
+
"reaction": 4,
|
|
289
|
+
"combatSkill": 3,
|
|
290
|
+
"willpower": 5,
|
|
291
|
+
"intuition": 4,
|
|
292
|
+
"magic": 5
|
|
293
|
+
}
|
|
195
294
|
}
|
|
196
295
|
}
|
|
197
296
|
],
|
|
198
297
|
"items": [
|
|
199
|
-
{
|
|
200
|
-
"name": "Certified Credstick",
|
|
201
|
-
"description": "Black-market certified nuyen chip.",
|
|
202
|
-
"size": "Small",
|
|
203
|
-
"category": "CurrencyContainer",
|
|
204
|
-
"shape": "Rectangle",
|
|
205
|
-
"color": "Silver",
|
|
206
|
-
"texture": "Smooth",
|
|
207
|
-
"rating": "Standard",
|
|
208
|
-
"weight": 0.2,
|
|
209
|
-
"currencyAmount": 500,
|
|
210
|
-
"room": "Krow's Den",
|
|
211
|
-
"owner": "Mr. Krow"
|
|
212
|
-
},
|
|
213
298
|
{
|
|
214
299
|
"name": "Krow's Datachip",
|
|
215
300
|
"description": "An encrypted datachip that grants access to the Lucky Chummer. Its casing is etched with the Krow Industries logo.",
|
|
@@ -224,17 +309,18 @@
|
|
|
224
309
|
"owner": "Mr. Krow"
|
|
225
310
|
},
|
|
226
311
|
{
|
|
227
|
-
"name": "
|
|
228
|
-
"description": "
|
|
229
|
-
"size": "
|
|
230
|
-
"category": "
|
|
312
|
+
"name": "Certified Credstick",
|
|
313
|
+
"description": "Black-market certified nuyen chip.",
|
|
314
|
+
"size": "Small",
|
|
315
|
+
"category": "CurrencyContainer",
|
|
231
316
|
"shape": "Rectangle",
|
|
232
|
-
"color": "
|
|
317
|
+
"color": "Silver",
|
|
233
318
|
"texture": "Smooth",
|
|
234
|
-
"rating": "
|
|
235
|
-
"weight": 0.
|
|
236
|
-
"currencyAmount":
|
|
237
|
-
"room": "
|
|
319
|
+
"rating": "Standard",
|
|
320
|
+
"weight": 0.2,
|
|
321
|
+
"currencyAmount": 500,
|
|
322
|
+
"room": "Krow's Den",
|
|
323
|
+
"owner": "Mr. Krow"
|
|
238
324
|
},
|
|
239
325
|
{
|
|
240
326
|
"name": "Ares Light Fire 75",
|
|
@@ -252,7 +338,7 @@
|
|
|
252
338
|
},
|
|
253
339
|
{
|
|
254
340
|
"name": "Armored Jacket",
|
|
255
|
-
"description": "A rugged armored jacket with built-in smartweave.
|
|
341
|
+
"description": "A rugged armored jacket with built-in smartweave.",
|
|
256
342
|
"size": "Large",
|
|
257
343
|
"category": "Armor",
|
|
258
344
|
"shape": "Jacket",
|
|
@@ -263,19 +349,182 @@
|
|
|
263
349
|
"heldBy": "Mr. Krow",
|
|
264
350
|
"owner": "Mr. Krow",
|
|
265
351
|
"transferable": false
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "Battered Grimoire",
|
|
355
|
+
"description": "A water-stained spellbook, its margins crowded with a dead mage's handwriting. The formulas for Manabolt, Heal, and Armor are still legible.",
|
|
356
|
+
"details": "The legible formulas: Manabolt (hurl raw mana at a target -- armor won't save them), Heal (knit your own wounds closed), Armor (a sustained protective weave). Every casting exacts drain from the caster.",
|
|
357
|
+
"size": "Small",
|
|
358
|
+
"category": "Grimoire",
|
|
359
|
+
"shape": "Book",
|
|
360
|
+
"color": "Faded Black",
|
|
361
|
+
"texture": "Water-Stained Leather",
|
|
362
|
+
"rating": "Common",
|
|
363
|
+
"weight": 1.5,
|
|
364
|
+
"room": "Barrens Apartment"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"name": "Jade Focus",
|
|
368
|
+
"description": "A worn jade pendant on a leather cord. It hums faintly against the skin, hungry to channel something.",
|
|
369
|
+
"size": "Tiny",
|
|
370
|
+
"category": "Focus",
|
|
371
|
+
"shape": "Pendant",
|
|
372
|
+
"color": "Jade Green",
|
|
373
|
+
"texture": "Polished Stone",
|
|
374
|
+
"rating": "Standard",
|
|
375
|
+
"weight": 0.1,
|
|
376
|
+
"room": "Barrens Apartment"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"name": "Street Doc's Medkit",
|
|
380
|
+
"description": "A scuffed hard-shell first aid kit, restocked by someone who knows what gunshot wounds actually need.",
|
|
381
|
+
"size": "Small",
|
|
382
|
+
"category": "Medical",
|
|
383
|
+
"shape": "Rectangle",
|
|
384
|
+
"color": "White",
|
|
385
|
+
"texture": "Scuffed",
|
|
386
|
+
"rating": "Standard",
|
|
387
|
+
"weight": 1,
|
|
388
|
+
"room": "Barrens Apartment"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"name": "Dragon Door Etiquette",
|
|
392
|
+
"description": "A slim etiquette pamphlet for the Lucky Chummer's high-roller room, dog-eared at the section on the door.",
|
|
393
|
+
"details": "The dog-eared page reads: 'Toro moves the rope for members only. Members announce themselves properly: the silver dragon says. Say it like you belong.'",
|
|
394
|
+
"size": "Small",
|
|
395
|
+
"category": "Book",
|
|
396
|
+
"shape": "Pamphlet",
|
|
397
|
+
"color": "Purple",
|
|
398
|
+
"texture": "Glossy Paper",
|
|
399
|
+
"rating": "Common",
|
|
400
|
+
"weight": 0.2,
|
|
401
|
+
"room": "Barrens Apartment"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"name": "Spare Clip",
|
|
405
|
+
"description": "A boxy magazine of 10 rounds, factory-wrapped. Fits most street-caliber sidearms.",
|
|
406
|
+
"size": "Tiny",
|
|
407
|
+
"category": "Ammunition",
|
|
408
|
+
"shape": "Rectangle",
|
|
409
|
+
"color": "Gunmetal",
|
|
410
|
+
"texture": "Oiled Steel",
|
|
411
|
+
"rating": "Common",
|
|
412
|
+
"weight": 0.3,
|
|
413
|
+
"room": "Redmond Safehouse"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"name": "Kamikaze Stim Patch",
|
|
417
|
+
"description": "A dermal patch in crinkled foil, the chem cocktail inside promising clarity now and a bill later.",
|
|
418
|
+
"size": "Tiny",
|
|
419
|
+
"category": "StimPatch",
|
|
420
|
+
"shape": "Square",
|
|
421
|
+
"color": "Warning Orange",
|
|
422
|
+
"texture": "Foil",
|
|
423
|
+
"rating": "Standard",
|
|
424
|
+
"weight": 0.05,
|
|
425
|
+
"room": "Redmond Safehouse"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"name": "Rusty Machete",
|
|
429
|
+
"description": "A working blade with an honest edge under the rust. It has opened doors, crates, and arguments.",
|
|
430
|
+
"size": "Medium",
|
|
431
|
+
"category": "MeleeWeapon",
|
|
432
|
+
"shape": "Blade",
|
|
433
|
+
"color": "Rust Brown",
|
|
434
|
+
"texture": "Pitted Steel",
|
|
435
|
+
"rating": "Common",
|
|
436
|
+
"weight": 1.8,
|
|
437
|
+
"room": "Redmond Safehouse"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"name": "Card Sharp's Notebook",
|
|
441
|
+
"description": "A battered notebook, pages soft with handling, filled with a card sharp's private notes on the Lucky Chummer's back rooms.",
|
|
442
|
+
"details": "One page is circled twice: 'The counting-room safe still runs the house code from the old management: double or nothing. They never changed it. They never change anything.'",
|
|
443
|
+
"size": "Small",
|
|
444
|
+
"category": "Book",
|
|
445
|
+
"shape": "Rectangle",
|
|
446
|
+
"color": "Brown",
|
|
447
|
+
"texture": "Worn Leather",
|
|
448
|
+
"rating": "Common",
|
|
449
|
+
"weight": 0.3,
|
|
450
|
+
"room": "Redmond Safehouse"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "Cuban Cigar",
|
|
454
|
+
"description": "Hard to find, but delicious.",
|
|
455
|
+
"size": "Tiny",
|
|
456
|
+
"category": "Vice",
|
|
457
|
+
"shape": "Rectangle",
|
|
458
|
+
"color": "Brown",
|
|
459
|
+
"texture": "Smooth",
|
|
460
|
+
"rating": "Rare",
|
|
461
|
+
"weight": 0.1,
|
|
462
|
+
"room": "Lucky Chummer"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"name": "Casino Ledger Paydata",
|
|
466
|
+
"description": "The Lucky Chummer's real books -- every skimmed percentage and bribed inspector, flickering in green digital static.",
|
|
467
|
+
"details": "Decrypted, this ledger would end careers. Certain people would pay heavily for it -- or to make it disappear.",
|
|
468
|
+
"size": "Tiny",
|
|
469
|
+
"category": "Datachip",
|
|
470
|
+
"shape": "Virtual Folder",
|
|
471
|
+
"color": "Flickering Green",
|
|
472
|
+
"texture": "Digital Static",
|
|
473
|
+
"rating": "Rare",
|
|
474
|
+
"weight": 0,
|
|
475
|
+
"plane": "matrix",
|
|
476
|
+
"room": "Grid Vault"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"name": "Spirit-Touched Talisman",
|
|
480
|
+
"description": "A fused knot of chapel glass and ash that never quite cools. Something of the Ash Sister lingers in it.",
|
|
481
|
+
"size": "Tiny",
|
|
482
|
+
"category": "Focus",
|
|
483
|
+
"shape": "Talisman",
|
|
484
|
+
"color": "Ember Orange",
|
|
485
|
+
"texture": "Fused Glass",
|
|
486
|
+
"rating": "Rare",
|
|
487
|
+
"weight": 0.2,
|
|
488
|
+
"room": "Chapel Alcove"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"name": "House Take Credstick",
|
|
492
|
+
"description": "A certified credstick straight out of the counting-room safe -- the house's own skim, still warm.",
|
|
493
|
+
"size": "Small",
|
|
494
|
+
"category": "CurrencyContainer",
|
|
495
|
+
"shape": "Rectangle",
|
|
496
|
+
"color": "Matte Black",
|
|
497
|
+
"texture": "Smooth",
|
|
498
|
+
"rating": "Standard",
|
|
499
|
+
"weight": 0.2,
|
|
500
|
+
"currencyAmount": 800
|
|
266
501
|
}
|
|
267
502
|
],
|
|
268
503
|
"puzzles": [
|
|
269
504
|
{
|
|
270
|
-
"name": "
|
|
271
|
-
"
|
|
272
|
-
"requiredPhrase": "
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
"
|
|
276
|
-
|
|
277
|
-
|
|
505
|
+
"name": "Velvet Rope",
|
|
506
|
+
"riddle": "You see a velvet rope across the backroom stair, and Toro behind it -- two and a half meters of troll in a tailored suit. He looks through you, waiting for the members' phrase.",
|
|
507
|
+
"requiredPhrase": "the silver dragon says",
|
|
508
|
+
"successMessage": "Toro unhooks the rope without a word and looks back at nothing. You belong now.",
|
|
509
|
+
"failureMessage": "Toro's eyes narrow a millimeter. The rope stays. Somewhere a pit boss glances over.",
|
|
510
|
+
"bypassType": "con"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "Backroom Safe",
|
|
514
|
+
"room": "Chummer Backroom",
|
|
515
|
+
"riddle": "You see a battered floor safe behind the counting table, its mechanical dial worn shiny. It wants the house code.",
|
|
516
|
+
"requiredPhrase": "double or nothing",
|
|
517
|
+
"rewardItem": "House Take Credstick",
|
|
518
|
+
"requiresPuzzle": "Velvet Rope",
|
|
519
|
+
"lockedMessage": "You'd need to actually be inside the counting room's circle of trust before anyone lets you kneel at the safe.",
|
|
520
|
+
"successMessage": "The dial lands, tumblers surrender, and the house's own skim slides into your hand.",
|
|
521
|
+
"failureMessage": "The dial jams. Somewhere above, a camera swivels toward the counting room.",
|
|
522
|
+
"bypassType": "lockpick"
|
|
278
523
|
}
|
|
279
|
-
]
|
|
524
|
+
],
|
|
525
|
+
"winCondition": {
|
|
526
|
+
"type": "possess",
|
|
527
|
+
"item": "Krow's Datachip",
|
|
528
|
+
"completionMessage": "The datachip is yours. Krow's grip on the Lucky Chummer just loosened -- whatever you do with it next, chummer, it's your move now."
|
|
529
|
+
}
|
|
280
530
|
}
|
|
281
|
-
|