@maka/maka-cli 5.1.26 → 5.1.28
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/commands/look.js +3 -17
- package/bundle/typescript/src/commands/game/sideQuest/commands/look.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/say.js +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/say.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/commands/solve.js +2 -0
- package/bundle/typescript/src/commands/game/sideQuest/commands/solve.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/roomsF.d.ts +2 -4
- package/bundle/typescript/src/commands/game/sideQuest/factories/roomsF.js +2 -51
- package/bundle/typescript/src/commands/game/sideQuest/factories/roomsF.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/factories/sceneSynthesizer.js +18 -6
- package/bundle/typescript/src/commands/game/sideQuest/factories/sceneSynthesizer.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/door.d.ts +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/door.js +3 -2
- package/bundle/typescript/src/commands/game/sideQuest/models/door.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/item.d.ts +5 -4
- package/bundle/typescript/src/commands/game/sideQuest/models/item.js +13 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/item.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/npc.d.ts +3 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/npc.js +7 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/npc.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/player.js +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/player.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/puzzle.d.ts +4 -2
- package/bundle/typescript/src/commands/game/sideQuest/models/puzzle.js +12 -2
- package/bundle/typescript/src/commands/game/sideQuest/models/puzzle.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/room.d.ts +2 -2
- package/bundle/typescript/src/commands/game/sideQuest/models/room.js +2 -2
- package/bundle/typescript/src/commands/game/sideQuest/models/room.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/models/scene.d.ts +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/scene.js +12 -0
- package/bundle/typescript/src/commands/game/sideQuest/models/scene.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/scenes/_index.js +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/scenes/_index.js.map +1 -0
- package/bundle/typescript/src/commands/game/sideQuest/scenes/scene1.json +69 -24
- package/bundle/typescript/src/commands/game/sideQuest/scenes/scene2.json +211 -0
- package/bundle/typescript/src/commands/game/sideQuest/scenes/scene3.json +380 -0
- package/bundle/typescript/src/commands/game/sideQuest/types/abstracts.d.ts +7 -7
- package/bundle/typescript/src/commands/game/sideQuest/types/abstracts.js +0 -1
- package/bundle/typescript/src/commands/game/sideQuest/types/abstracts.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/types/enums.d.ts +4 -43
- package/bundle/typescript/src/commands/game/sideQuest/types/enums.js +2 -45
- package/bundle/typescript/src/commands/game/sideQuest/types/enums.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/types/interfaces.d.ts +18 -11
- package/bundle/typescript/src/commands/game/sideQuest/ui.js +6 -12
- package/bundle/typescript/src/commands/game/sideQuest/ui.js.map +1 -1
- package/bundle/typescript/src/commands/game/sideQuest.sub.cmd.js +6 -2
- package/bundle/typescript/src/commands/game/sideQuest.sub.cmd.js.map +1 -1
- package/package.json +1 -1
- package/bundle/typescript/src/commands/game/sideQuest/scenes/items.d.ts +0 -59
- package/bundle/typescript/src/commands/game/sideQuest/scenes/items.js +0 -271
- package/bundle/typescript/src/commands/game/sideQuest/scenes/items.js.map +0 -1
- package/bundle/typescript/src/commands/game/sideQuest/scenes/puzzles.js +0 -1
- package/bundle/typescript/src/commands/game/sideQuest/scenes/puzzles.js.map +0 -1
- package/bundle/typescript/src/commands/game/sideQuest/scenes/rooms.d.ts +0 -4
- package/bundle/typescript/src/commands/game/sideQuest/scenes/rooms.js +0 -350
- package/bundle/typescript/src/commands/game/sideQuest/scenes/rooms.js.map +0 -1
- /package/bundle/typescript/src/commands/game/sideQuest/scenes/{puzzles.d.ts → _index.d.ts} +0 -0
|
@@ -1,350 +0,0 @@
|
|
|
1
|
-
export const rooms = [
|
|
2
|
-
{
|
|
3
|
-
name: 'Library',
|
|
4
|
-
description: 'A vast library filled with ancient books. [START]',
|
|
5
|
-
isStartRoom: true,
|
|
6
|
-
items: [
|
|
7
|
-
{
|
|
8
|
-
type: 'key',
|
|
9
|
-
name: 'Golden Key',
|
|
10
|
-
description: 'A shiny golden key with intricate engravings.'
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
type: 'book',
|
|
14
|
-
name: "Guard's Log Book",
|
|
15
|
-
description: 'A thin log book',
|
|
16
|
-
content: 'Chad the stupid guard'
|
|
17
|
-
}
|
|
18
|
-
],
|
|
19
|
-
exits: [
|
|
20
|
-
{
|
|
21
|
-
direction: 'EAST',
|
|
22
|
-
targetRoom: 'Secret Passage'
|
|
23
|
-
}
|
|
24
|
-
]
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
name: 'Secret Passage',
|
|
28
|
-
description: 'A dimly lit passage with walls made of stone.',
|
|
29
|
-
exits: [
|
|
30
|
-
{
|
|
31
|
-
direction: 'NORTH',
|
|
32
|
-
targetRoom: 'Treasure Room',
|
|
33
|
-
keyRequired: 'Golden Key'
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
direction: 'SOUTH',
|
|
37
|
-
targetRoom: 'Courtyard'
|
|
38
|
-
}
|
|
39
|
-
]
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
name: 'Treasure Room',
|
|
43
|
-
description: 'A room glittering with gold and jewels.',
|
|
44
|
-
items: [
|
|
45
|
-
{
|
|
46
|
-
type: 'holyGrail',
|
|
47
|
-
name: 'Holy Grail',
|
|
48
|
-
description: 'The legendary Holy Grail.'
|
|
49
|
-
}
|
|
50
|
-
]
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
name: 'Courtyard',
|
|
54
|
-
description: 'A serene courtyard with a gentle fountain. There are birds bathing.',
|
|
55
|
-
roomType: 'OUTSIDE',
|
|
56
|
-
exits: [
|
|
57
|
-
{
|
|
58
|
-
direction: 'UP',
|
|
59
|
-
targetRoom: 'Watch Tower'
|
|
60
|
-
}
|
|
61
|
-
]
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
name: 'Watch Tower',
|
|
65
|
-
description: 'A towering structure giving a bird’s-eye view of the surroundings.',
|
|
66
|
-
roomType: 'OUTSIDE',
|
|
67
|
-
puzzle: {
|
|
68
|
-
requiredPhrase: 'secret123',
|
|
69
|
-
riddle: 'A locked glass gun cabinet stands here, with a keypad awaiting a password.',
|
|
70
|
-
rewardItem: {
|
|
71
|
-
type: 'rifle',
|
|
72
|
-
name: 'Sniper Rifle',
|
|
73
|
-
description: 'A long-range weapon.'
|
|
74
|
-
},
|
|
75
|
-
successMessage: 'You pull the sniper rifle from the gun cabinet. Just as you do, you hear a guy from the Courtyard yell "HEY! WHAT\'S YA NAME?!"',
|
|
76
|
-
failureMessage: 'That passcode is incorrect'
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
];
|
|
80
|
-
export const dungeonConfig = [
|
|
81
|
-
{
|
|
82
|
-
name: "Entrance Hall",
|
|
83
|
-
description: "A grand entrance with huge wooden doors behind and a dimly lit corridor ahead.",
|
|
84
|
-
isStartRoom: true,
|
|
85
|
-
roomType: "inside",
|
|
86
|
-
puzzle: {
|
|
87
|
-
requiredPhrase: "open sesame",
|
|
88
|
-
riddle: "Speak the ancient phrase to unlock the Central Chamber.",
|
|
89
|
-
rewardItem: {
|
|
90
|
-
type: "key",
|
|
91
|
-
name: "Central Chamber Key",
|
|
92
|
-
description: "A key with an emblem of the dungeon."
|
|
93
|
-
},
|
|
94
|
-
successMessage: "The gate slowly opens revealing the path to the Central Chamber.",
|
|
95
|
-
failureMessage: "Nothing happens."
|
|
96
|
-
},
|
|
97
|
-
exits: [
|
|
98
|
-
{ direction: "north", targetRoom: "Study" },
|
|
99
|
-
{ direction: "east", targetRoom: "Central Chamber", keyRequired: "Central Chamber Key" }
|
|
100
|
-
]
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: "Study",
|
|
104
|
-
description: "A quiet room filled with bookshelves, a large desk, and scattered papers.",
|
|
105
|
-
roomType: "inside",
|
|
106
|
-
items: [
|
|
107
|
-
{
|
|
108
|
-
type: "book",
|
|
109
|
-
name: "Riddle Book",
|
|
110
|
-
description: "A book containing a mysterious riddle.",
|
|
111
|
-
content: "When is a door not a door? When it's ajar!"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
type: "key",
|
|
115
|
-
name: "Central Chamber Key",
|
|
116
|
-
description: "A key with an emblem of the dungeon."
|
|
117
|
-
}
|
|
118
|
-
],
|
|
119
|
-
exits: [
|
|
120
|
-
{ direction: "south", targetRoom: "Entrance Hall" },
|
|
121
|
-
{ direction: "east", targetRoom: "Alchemy Lab" }
|
|
122
|
-
]
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
name: "Alchemy Lab",
|
|
126
|
-
description: "A room filled with potions, beakers, and an enchantment circle.",
|
|
127
|
-
roomType: "inside",
|
|
128
|
-
items: [
|
|
129
|
-
{
|
|
130
|
-
type: "basic",
|
|
131
|
-
name: "Empty vial",
|
|
132
|
-
description: "A clear glass vial."
|
|
133
|
-
}
|
|
134
|
-
],
|
|
135
|
-
exits: [
|
|
136
|
-
{ direction: "west", targetRoom: "Study" },
|
|
137
|
-
{ direction: "north", targetRoom: "Armory" }
|
|
138
|
-
]
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
name: "Armory",
|
|
142
|
-
description: "Rows of ancient weapons and armors.",
|
|
143
|
-
roomType: "inside",
|
|
144
|
-
items: [
|
|
145
|
-
{
|
|
146
|
-
type: "shield",
|
|
147
|
-
name: "Emblem Shield",
|
|
148
|
-
description: "A shield with the emblem of the dungeon."
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
type: "sword",
|
|
152
|
-
name: "Rusted Sword",
|
|
153
|
-
description: "An old and rusted sword."
|
|
154
|
-
}
|
|
155
|
-
],
|
|
156
|
-
exits: [
|
|
157
|
-
{ direction: "south", targetRoom: "Alchemy Lab" },
|
|
158
|
-
{ direction: "east", targetRoom: "Central Chamber" }
|
|
159
|
-
]
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: "Central Chamber",
|
|
163
|
-
description: "A large circular room with four doors.",
|
|
164
|
-
roomType: "inside",
|
|
165
|
-
exits: [
|
|
166
|
-
{ direction: "west", targetRoom: "Armory" },
|
|
167
|
-
{ direction: "south", targetRoom: "Entrance Hall" },
|
|
168
|
-
{ direction: "north", targetRoom: "Torture Chamber" },
|
|
169
|
-
{ direction: "east", targetRoom: "Treasure Room" }
|
|
170
|
-
]
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
name: "Torture Chamber",
|
|
174
|
-
description: "Dark, grim with chains on walls and an eerie silence.",
|
|
175
|
-
roomType: "inside",
|
|
176
|
-
items: [
|
|
177
|
-
{
|
|
178
|
-
type: "key",
|
|
179
|
-
name: "Blood-stained Key",
|
|
180
|
-
description: "A key stained with old blood."
|
|
181
|
-
}
|
|
182
|
-
],
|
|
183
|
-
puzzle: {
|
|
184
|
-
requiredPhrase: "release",
|
|
185
|
-
riddle: "Speak the word to free the ghost.",
|
|
186
|
-
rewardItem: {
|
|
187
|
-
type: "gem",
|
|
188
|
-
name: "Ancient Gem",
|
|
189
|
-
description: "A gem radiating a mysterious aura."
|
|
190
|
-
},
|
|
191
|
-
successMessage: "The ghost thanks you and disappears, leaving behind the gem.",
|
|
192
|
-
failureMessage: "The chains rattle ominously, but nothing else happens."
|
|
193
|
-
},
|
|
194
|
-
exits: [
|
|
195
|
-
{ direction: "south", targetRoom: "Central Chamber" }
|
|
196
|
-
]
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
name: "Treasure Room",
|
|
200
|
-
description: "Glittering treasures from floor to ceiling.",
|
|
201
|
-
roomType: "inside",
|
|
202
|
-
puzzle: {
|
|
203
|
-
requiredPhrase: "insert gem",
|
|
204
|
-
riddle: "The chest has a gem-shaped socket.",
|
|
205
|
-
rewardItem: {
|
|
206
|
-
type: "cup",
|
|
207
|
-
name: "Golden Chalice",
|
|
208
|
-
description: "A chalice made of pure gold."
|
|
209
|
-
},
|
|
210
|
-
successMessage: "The chest unlocks revealing the chalice.",
|
|
211
|
-
failureMessage: "The chest remains firmly shut."
|
|
212
|
-
},
|
|
213
|
-
exits: [
|
|
214
|
-
{ direction: "west", targetRoom: "Central Chamber" }
|
|
215
|
-
]
|
|
216
|
-
}
|
|
217
|
-
];
|
|
218
|
-
export const shadowrunConfig = [
|
|
219
|
-
{
|
|
220
|
-
name: "Jackpoint Login",
|
|
221
|
-
description: "A virtual portal in the Matrix. Glowing neon lights everywhere, with digital sprites zipping by.",
|
|
222
|
-
isStartRoom: true,
|
|
223
|
-
roomType: "inside",
|
|
224
|
-
exits: [
|
|
225
|
-
{ direction: "north", targetRoom: "Downtown Seattle" },
|
|
226
|
-
{ direction: "up", targetRoom: "Matrix Data Haven" }
|
|
227
|
-
]
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
name: "Matrix Data Haven",
|
|
231
|
-
description: "A digital realm with information streams flowing like rivers.",
|
|
232
|
-
roomType: "inside",
|
|
233
|
-
puzzle: {
|
|
234
|
-
requiredPhrase: "decrypt",
|
|
235
|
-
riddle: "Unlock the encrypted data to receive your next mission.",
|
|
236
|
-
rewardItem: {
|
|
237
|
-
type: "key",
|
|
238
|
-
name: "Encrypted Data Key",
|
|
239
|
-
description: "A key made of pure digital energy."
|
|
240
|
-
},
|
|
241
|
-
successMessage: "The data stream reveals a location: Downtown Seattle.",
|
|
242
|
-
failureMessage: "The data remains encrypted."
|
|
243
|
-
},
|
|
244
|
-
exits: [
|
|
245
|
-
{ direction: "down", targetRoom: "Jackpoint Login" }
|
|
246
|
-
]
|
|
247
|
-
},
|
|
248
|
-
{
|
|
249
|
-
name: "Downtown Seattle",
|
|
250
|
-
description: "The rain-soaked streets of Seattle with neon lights reflecting off wet pavement. The distant sound of corporate security drones can be heard.",
|
|
251
|
-
roomType: "outside",
|
|
252
|
-
exits: [
|
|
253
|
-
{ direction: "south", targetRoom: "Jackpoint Login" },
|
|
254
|
-
{ direction: "east", targetRoom: "Barrens Entrance" },
|
|
255
|
-
{ direction: "west", targetRoom: "Corp Enclave" }
|
|
256
|
-
]
|
|
257
|
-
},
|
|
258
|
-
{
|
|
259
|
-
name: "Barrens Entrance",
|
|
260
|
-
description: "The outskirts of the lawless Redmond Barrens. Gang graffiti is everywhere.",
|
|
261
|
-
roomType: "outside",
|
|
262
|
-
puzzle: {
|
|
263
|
-
requiredPhrase: "show loyalty",
|
|
264
|
-
riddle: "To enter deeper into the Barrens, you must show allegiance to one of the gangs.",
|
|
265
|
-
rewardItem: {
|
|
266
|
-
type: "key",
|
|
267
|
-
name: "Gang Insignia",
|
|
268
|
-
description: "A badge proving your loyalty to one of the Barrens' gangs."
|
|
269
|
-
},
|
|
270
|
-
successMessage: "The gang members nod and let you pass deeper into the Barrens.",
|
|
271
|
-
failureMessage: "The gang members block your way, suspicious of your motives."
|
|
272
|
-
},
|
|
273
|
-
exits: [
|
|
274
|
-
{ direction: "west", targetRoom: "Downtown Seattle" },
|
|
275
|
-
{ direction: "north", targetRoom: "Barrens Hideout" }
|
|
276
|
-
]
|
|
277
|
-
},
|
|
278
|
-
{
|
|
279
|
-
name: "Corp Enclave",
|
|
280
|
-
description: "The high-security corporate zone, complete with looming skyscrapers and security checkpoints.",
|
|
281
|
-
roomType: "inside",
|
|
282
|
-
items: [
|
|
283
|
-
{
|
|
284
|
-
type: "creditstick",
|
|
285
|
-
name: "Corporate Creditstick",
|
|
286
|
-
description: "A creditstick loaded with nuyen."
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
type: "document",
|
|
290
|
-
name: "CorpSec Plans",
|
|
291
|
-
description: "Detailed security plans for a corporate building."
|
|
292
|
-
}
|
|
293
|
-
],
|
|
294
|
-
exits: [
|
|
295
|
-
{ direction: "east", targetRoom: "Downtown Seattle" }
|
|
296
|
-
]
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
name: "Barrens Hideout",
|
|
300
|
-
description: "A hidden alley in the Barrens where shadowrunners meet up for covert jobs.",
|
|
301
|
-
roomType: "outside",
|
|
302
|
-
items: [
|
|
303
|
-
{
|
|
304
|
-
type: "pistol",
|
|
305
|
-
name: "Ares Predator",
|
|
306
|
-
description: "A popular heavy pistol among shadowrunners."
|
|
307
|
-
}
|
|
308
|
-
],
|
|
309
|
-
exits: [
|
|
310
|
-
{ direction: "south", targetRoom: "Barrens Entrance" },
|
|
311
|
-
{ direction: "north", targetRoom: "Mage's Lair" },
|
|
312
|
-
{ direction: "east", targetRoom: "Rigger's Workshop" }
|
|
313
|
-
]
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
name: "Mage's Lair",
|
|
317
|
-
description: "A hideout filled with magical artifacts, wards, and a few summoned spirits guarding the place.",
|
|
318
|
-
roomType: "inside",
|
|
319
|
-
puzzle: {
|
|
320
|
-
requiredPhrase: "disenchant",
|
|
321
|
-
riddle: "Break the ward to reveal the hidden magical artifact.",
|
|
322
|
-
rewardItem: {
|
|
323
|
-
type: "amulet",
|
|
324
|
-
name: "Amulet of Awakening",
|
|
325
|
-
description: "A powerful amulet said to wake spirits from slumber."
|
|
326
|
-
},
|
|
327
|
-
successMessage: "The ward shatters, revealing the amulet.",
|
|
328
|
-
failureMessage: "The magic in the room grows more oppressive, resisting your efforts."
|
|
329
|
-
},
|
|
330
|
-
exits: [
|
|
331
|
-
{ direction: "south", targetRoom: "Barrens Hideout" }
|
|
332
|
-
]
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
name: "Rigger's Workshop",
|
|
336
|
-
description: "Drones and vehicles being modified, tools everywhere, and a rigger jacked in to a command console.",
|
|
337
|
-
roomType: "inside",
|
|
338
|
-
items: [
|
|
339
|
-
{
|
|
340
|
-
type: "drone",
|
|
341
|
-
name: "MCT Fly-Spy",
|
|
342
|
-
description: "A small surveillance drone."
|
|
343
|
-
}
|
|
344
|
-
],
|
|
345
|
-
exits: [
|
|
346
|
-
{ direction: "west", targetRoom: "Barrens Hideout" }
|
|
347
|
-
]
|
|
348
|
-
}
|
|
349
|
-
];
|
|
350
|
-
//# sourceMappingURL=rooms.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"rooms.js","sourceRoot":"","sources":["../../../../../../../src/commands/game/sideQuest/scenes/rooms.ts"],"names":[],"mappings":"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"}
|
|
File without changes
|