@maka/maka-cli 5.223.0 → 5.224.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maka/maka-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.224.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"summary": "A command line tool for scaffolding Meteor 3.x applications using either React.",
|
|
6
6
|
"description": "A command line tool for scaffolding Meteor 3.x applications using React.",
|
|
@@ -110,17 +110,25 @@ export function enterMatrix(scene, actor, mode) {
|
|
|
110
110
|
actor.performAction('jacks in', `slumping where they stand, eyes flickering (${mode}-sim)`, { quiet: scene.isHumanControlled?.(actor) ?? false });
|
|
111
111
|
scene.addWorldEvent(`${actor.name} jacked into the Matrix in ${actor.bodyRoom.name}.`);
|
|
112
112
|
Logger.getInstance().write(`${actor.name} entered the Matrix (${mode}-sim, ${actor.activeDeck?.name ?? (actor.isTechnomancer() ? 'living persona' : 'no deck?!')}) from ${actor.bodyRoom.name}.`);
|
|
113
|
+
// WHAT YOU ARE ACTUALLY RIDING (9d9kJJW3WANoA2MvA). A commlink is a
|
|
114
|
+
// way onto the Matrix (p.222) and activeDeck is only ever a CYBERDECK,
|
|
115
|
+
// so for the ordinary runner who just jacked in on their Meta Link
|
|
116
|
+
// both lines below used to say "deck" about a thing that is not one.
|
|
117
|
+
// Naming the rig is the whole of the fix: nothing else here changes,
|
|
118
|
+
// and a runner with a real deck reads exactly what they read before.
|
|
119
|
+
const rig = actor.activeDeck ?? actor.getPanMaster();
|
|
120
|
+
const rigName = rig?.name ?? 'deck';
|
|
113
121
|
const hotWarning = mode === 'hot'
|
|
114
122
|
? ` Hot-sim: everything is faster and hits harder -- including what hits YOU. Ice biofeedback bleeds into your real stun track.`
|
|
115
123
|
: actor.isTechnomancer()
|
|
116
124
|
? ` There is no deck between you and the ice -- every hit out here is YOUR mind taking it.`
|
|
117
|
-
: ` Cold-sim: the ice can only chew on your
|
|
125
|
+
: ` Cold-sim: the ice can only chew on your ${rigName}, not your brain.`;
|
|
118
126
|
const deckNote = actor.activeDeck && actor.activeDeck.deckDamage > 0
|
|
119
127
|
? ` Your ${actor.activeDeck.name} is already scarred: ${actor.activeDeck.deckSummary()}.`
|
|
120
128
|
: '';
|
|
121
129
|
const entry = actor.isTechnomancer()
|
|
122
130
|
? `You close your eyes and the Matrix is simply THERE -- no deck, no interface, just the resonance singing. Your body slumps where you stood in ${actor.bodyRoom.name}, empty.`
|
|
123
|
-
: `Your ${
|
|
131
|
+
: `Your ${rigName} spins up and the room dissolves into geometry -- you're in. Your body slumps where you stood in ${actor.bodyRoom.name}, empty.`;
|
|
124
132
|
return [
|
|
125
133
|
`${entry}${hotWarning}${deckNote} You come up on ${actor.currentGrid?.name ?? 'the grid'}.${actor.currentGrid?.userPenalty ? ' Public grid: -2 on everything you do out here.' : ''}`,
|
|
126
134
|
hint(`No streets out here: "map" lights the hosts overhead and names them, "hack <host>" slips a mark in quiet (p.240) and "force <host>" smashes one in (p.238), one mark lets "enter <host>" walk you inside from anywhere, "mark" shows who holds what, "jack out" to return.`),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maka/maka-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.224.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"summary": "A command line tool for scaffolding Meteor 3.x applications using either React.",
|
|
6
6
|
"description": "A command line tool for scaffolding Meteor 3.x applications using React.",
|