@maka/maka-cli 5.4.0 → 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 +20 -1
- package/bundle/typescript/src/commands/game/sideQuest/archetypes.js +76 -11
- package/bundle/typescript/src/commands/game/sideQuest/archetypes.js.map +1 -1
- 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 +2 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/assense.js +72 -29
- package/bundle/typescript/src/commands/game/sideQuest/commands/assense.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/attack.js +21 -2
- package/bundle/typescript/src/commands/game/sideQuest/commands/attack.js.map +1 -1
- 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.js +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/bypass-command.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/call.js +71 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/call.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/cast.js +21 -2
- package/bundle/typescript/src/commands/game/sideQuest/commands/cast.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/drone.js +13 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/drone.js.map +1 -1
- 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/equip.js +19 -2
- package/bundle/typescript/src/commands/game/sideQuest/commands/equip.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/equipment.js +9 -2
- package/bundle/typescript/src/commands/game/sideQuest/commands/equipment.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/go.d.ts +2 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/go.js +33 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/go.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/hack.js +43 -20
- package/bundle/typescript/src/commands/game/sideQuest/commands/hack.js.map +1 -1
- 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.js +5 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/inv.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/look.js +16 -4
- package/bundle/typescript/src/commands/game/sideQuest/commands/look.js.map +1 -1
- 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 +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/pick.js +22 -7
- package/bundle/typescript/src/commands/game/sideQuest/commands/pick.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/say.js +8 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/say.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/search.js +55 -8
- package/bundle/typescript/src/commands/game/sideQuest/commands/search.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/sheet.js +11 -2
- package/bundle/typescript/src/commands/game/sideQuest/commands/sheet.js.map +1 -1
- 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/spells.js +21 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/spells.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/subdue.js +4 -4
- package/bundle/typescript/src/commands/game/sideQuest/commands/subdue.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/take.js +70 -13
- 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/use.js +5 -4
- package/bundle/typescript/src/commands/game/sideQuest/commands/use.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/room-factory.js +1 -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.js +1 -0
- 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 +64 -9
- package/bundle/typescript/src/commands/game/sideQuest/factories/scene-seed-generator.js +265 -434
- package/bundle/typescript/src/commands/game/sideQuest/factories/scene-seed-generator.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/game.d.ts +69 -1
- package/bundle/typescript/src/commands/game/sideQuest/game.js +388 -67
- package/bundle/typescript/src/commands/game/sideQuest/game.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/npc.d.ts +2 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/npc.js +92 -3
- package/bundle/typescript/src/commands/game/sideQuest/models/npc.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/player.d.ts +66 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/player.js +151 -15
- package/bundle/typescript/src/commands/game/sideQuest/models/player.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/puzzle.js +29 -4
- package/bundle/typescript/src/commands/game/sideQuest/models/puzzle.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/room.d.ts +4 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/room.js +14 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/room.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/scene.d.ts +4 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/scene.js +35 -3
- package/bundle/typescript/src/commands/game/sideQuest/models/scene.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/scenes/scene1.json +275 -105
- package/bundle/typescript/src/commands/game/sideQuest/scenes/scene2.json +662 -233
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/player-seed.d.ts +8 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/puzzle-seed.d.ts +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/room-seed.d.ts +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/seed/scene-seed.d.ts +6 -3
- package/bundle/typescript/src/commands/game/sideQuest/ui.js +19 -20
- package/bundle/typescript/src/commands/game/sideQuest/ui.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/utilities/combat-exchange.d.ts +6 -4
- package/bundle/typescript/src/commands/game/sideQuest/utilities/combat-exchange.js +31 -5
- package/bundle/typescript/src/commands/game/sideQuest/utilities/combat-exchange.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/utilities/planes.d.ts +34 -1
- package/bundle/typescript/src/commands/game/sideQuest/utilities/planes.js +72 -0
- package/bundle/typescript/src/commands/game/sideQuest/utilities/planes.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest.sub.cmd.js +27 -3
- package/bundle/typescript/src/commands/game/sideQuest.sub.cmd.js.map +1 -1
- package/bundle/typescript/src/tools/ai/ai.class.d.ts +8 -1
- package/bundle/typescript/src/tools/ai/ai.class.js +8 -3
- package/bundle/typescript/src/tools/ai/ai.class.js.map +1 -1
- package/bundle/typescript/src/tools/https/https.class.d.ts +2 -2
- package/bundle/typescript/src/tools/https/https.class.js +10 -4
- package/bundle/typescript/src/tools/https/https.class.js.map +1 -1
- package/bundle/typescript/src/tools/https/https.interface.d.ts +2 -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,48 +155,159 @@
|
|
|
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": [
|
|
298
|
+
{
|
|
299
|
+
"name": "Krow's Datachip",
|
|
300
|
+
"description": "An encrypted datachip that grants access to the Lucky Chummer. Its casing is etched with the Krow Industries logo.",
|
|
301
|
+
"size": "Tiny",
|
|
302
|
+
"category": "Key",
|
|
303
|
+
"shape": "Square",
|
|
304
|
+
"color": "Black",
|
|
305
|
+
"texture": "Glossy",
|
|
306
|
+
"rating": "Common",
|
|
307
|
+
"weight": 0.05,
|
|
308
|
+
"heldBy": "Mr. Krow",
|
|
309
|
+
"owner": "Mr. Krow"
|
|
310
|
+
},
|
|
199
311
|
{
|
|
200
312
|
"name": "Certified Credstick",
|
|
201
313
|
"description": "Black-market certified nuyen chip.",
|
|
@@ -211,29 +323,56 @@
|
|
|
211
323
|
"owner": "Mr. Krow"
|
|
212
324
|
},
|
|
213
325
|
{
|
|
214
|
-
"name": "
|
|
215
|
-
"description": "
|
|
216
|
-
"size": "
|
|
217
|
-
"category": "
|
|
218
|
-
"shape": "
|
|
326
|
+
"name": "Ares Light Fire 75",
|
|
327
|
+
"description": "A small, concealable pistol favored by shadowrunners on a budget.",
|
|
328
|
+
"size": "Small",
|
|
329
|
+
"category": "RangedWeapon",
|
|
330
|
+
"shape": "Pistol",
|
|
219
331
|
"color": "Black",
|
|
220
|
-
"texture": "
|
|
332
|
+
"texture": "Matte",
|
|
221
333
|
"rating": "Common",
|
|
222
|
-
"weight":
|
|
334
|
+
"weight": 1.2,
|
|
223
335
|
"heldBy": "Mr. Krow",
|
|
224
|
-
"owner": "Mr. Krow"
|
|
336
|
+
"owner": "Mr. Krow",
|
|
337
|
+
"transferable": false
|
|
225
338
|
},
|
|
226
339
|
{
|
|
227
|
-
"name": "
|
|
228
|
-
"description": "
|
|
340
|
+
"name": "Armored Jacket",
|
|
341
|
+
"description": "A rugged armored jacket with built-in smartweave.",
|
|
342
|
+
"size": "Large",
|
|
343
|
+
"category": "Armor",
|
|
344
|
+
"shape": "Jacket",
|
|
345
|
+
"color": "Dark Green",
|
|
346
|
+
"texture": "Kevlar",
|
|
347
|
+
"rating": "Standard",
|
|
348
|
+
"weight": 3.5,
|
|
349
|
+
"heldBy": "Mr. Krow",
|
|
350
|
+
"owner": "Mr. Krow",
|
|
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.",
|
|
229
369
|
"size": "Tiny",
|
|
230
|
-
"category": "
|
|
231
|
-
"shape": "
|
|
232
|
-
"color": "
|
|
233
|
-
"texture": "
|
|
234
|
-
"rating": "
|
|
370
|
+
"category": "Focus",
|
|
371
|
+
"shape": "Pendant",
|
|
372
|
+
"color": "Jade Green",
|
|
373
|
+
"texture": "Polished Stone",
|
|
374
|
+
"rating": "Standard",
|
|
235
375
|
"weight": 0.1,
|
|
236
|
-
"currencyAmount": 0,
|
|
237
376
|
"room": "Barrens Apartment"
|
|
238
377
|
},
|
|
239
378
|
{
|
|
@@ -246,19 +385,19 @@
|
|
|
246
385
|
"texture": "Scuffed",
|
|
247
386
|
"rating": "Standard",
|
|
248
387
|
"weight": 1,
|
|
249
|
-
"room": "
|
|
388
|
+
"room": "Barrens Apartment"
|
|
250
389
|
},
|
|
251
390
|
{
|
|
252
|
-
"name": "
|
|
253
|
-
"description": "A
|
|
254
|
-
"details": "The
|
|
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.'",
|
|
255
394
|
"size": "Small",
|
|
256
|
-
"category": "
|
|
257
|
-
"shape": "
|
|
258
|
-
"color": "
|
|
259
|
-
"texture": "
|
|
395
|
+
"category": "Book",
|
|
396
|
+
"shape": "Pamphlet",
|
|
397
|
+
"color": "Purple",
|
|
398
|
+
"texture": "Glossy Paper",
|
|
260
399
|
"rating": "Common",
|
|
261
|
-
"weight":
|
|
400
|
+
"weight": 0.2,
|
|
262
401
|
"room": "Barrens Apartment"
|
|
263
402
|
},
|
|
264
403
|
{
|
|
@@ -286,20 +425,21 @@
|
|
|
286
425
|
"room": "Redmond Safehouse"
|
|
287
426
|
},
|
|
288
427
|
{
|
|
289
|
-
"name": "
|
|
290
|
-
"description": "A
|
|
291
|
-
"size": "
|
|
292
|
-
"category": "
|
|
293
|
-
"shape": "
|
|
294
|
-
"color": "
|
|
295
|
-
"texture": "
|
|
296
|
-
"rating": "
|
|
297
|
-
"weight":
|
|
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,
|
|
298
437
|
"room": "Redmond Safehouse"
|
|
299
438
|
},
|
|
300
439
|
{
|
|
301
440
|
"name": "Card Sharp's Notebook",
|
|
302
|
-
"description": "A battered notebook, pages soft with handling, filled with a card sharp's private notes on the Lucky Chummer's
|
|
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.'",
|
|
303
443
|
"size": "Small",
|
|
304
444
|
"category": "Book",
|
|
305
445
|
"shape": "Rectangle",
|
|
@@ -307,48 +447,79 @@
|
|
|
307
447
|
"texture": "Worn Leather",
|
|
308
448
|
"rating": "Common",
|
|
309
449
|
"weight": 0.3,
|
|
310
|
-
"room": "Redmond Safehouse"
|
|
311
|
-
"details": "A recurring line is underlined twice: 'When the house won't give you an edge, you make your own -- stack the deck, and let them think it's luck.'"
|
|
450
|
+
"room": "Redmond Safehouse"
|
|
312
451
|
},
|
|
313
452
|
{
|
|
314
|
-
"name": "
|
|
315
|
-
"description": "
|
|
316
|
-
"size": "
|
|
317
|
-
"category": "
|
|
318
|
-
"shape": "
|
|
319
|
-
"color": "
|
|
320
|
-
"texture": "
|
|
321
|
-
"rating": "
|
|
322
|
-
"weight": 1
|
|
323
|
-
"
|
|
324
|
-
"owner": "Mr. Krow",
|
|
325
|
-
"transferable": false
|
|
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"
|
|
326
463
|
},
|
|
327
464
|
{
|
|
328
|
-
"name": "
|
|
329
|
-
"description": "
|
|
330
|
-
"
|
|
331
|
-
"
|
|
332
|
-
"
|
|
333
|
-
"
|
|
334
|
-
"
|
|
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",
|
|
335
498
|
"rating": "Standard",
|
|
336
|
-
"weight":
|
|
337
|
-
"
|
|
338
|
-
"owner": "Mr. Krow",
|
|
339
|
-
"transferable": false
|
|
499
|
+
"weight": 0.2,
|
|
500
|
+
"currencyAmount": 800
|
|
340
501
|
}
|
|
341
502
|
],
|
|
342
503
|
"puzzles": [
|
|
343
504
|
{
|
|
344
|
-
"name": "
|
|
345
|
-
"
|
|
346
|
-
"requiredPhrase": "
|
|
347
|
-
"
|
|
348
|
-
"
|
|
349
|
-
"
|
|
350
|
-
|
|
351
|
-
|
|
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"
|
|
352
523
|
}
|
|
353
524
|
],
|
|
354
525
|
"winCondition": {
|
|
@@ -357,4 +528,3 @@
|
|
|
357
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."
|
|
358
529
|
}
|
|
359
530
|
}
|
|
360
|
-
|