@maka/maka-cli 5.157.0 → 5.158.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.158.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.",
|
|
@@ -1669,6 +1669,17 @@ ${worldEventsSummary}
|
|
|
1669
1669
|
const heatSummary = heat
|
|
1670
1670
|
? `The district's current HEAT on this run is ${heat}. If you would naturally reassure them that things are quiet, clean, or under control, that claim has to be TRUE against this -- never tell them the coast is clear, that nobody noticed, or that things went quiet if heat says otherwise. Speak honestly about how hot it actually is instead.`
|
|
1671
1671
|
: '';
|
|
1672
|
+
// A JOB ITEM IN THE WRONG HANDS (5Lq8wNX9szaA45u6b): the runner
|
|
1673
|
+
// handed the client the crate meant for Doc Wrench by mistake, and
|
|
1674
|
+
// she held it through three polite asks, yielding only to a threat.
|
|
1675
|
+
// Same shape as payoutSummary -- nothing told the model whose
|
|
1676
|
+
// delivery the thing in its pocket actually was, so "carry it to
|
|
1677
|
+
// the Stitch yourself" came out as a refusal instead of a handover.
|
|
1678
|
+
const wc = this._scene?.getWinCondition?.();
|
|
1679
|
+
const carriesPrize = !!wc?.item && this.inventory.getAllItems().some(i => i.name === wc.item);
|
|
1680
|
+
const jobItemSummary = carriesPrize && wc?.toNpc && wc.toNpc !== this.name
|
|
1681
|
+
? `You are currently HOLDING ${wc.item}, which the job needs delivered to ${wc.toNpc} -- not to you. It is the runner's cargo, not yours: if they ask for it back, hand it over in the SAME response with "[COMMAND] give ${wc.item} to <their name>" -- never make them argue or threaten for it, and never keep it as leverage.`
|
|
1682
|
+
: '';
|
|
1672
1683
|
// If nothing else has happened to/around this NPC yet this scene, this
|
|
1673
1684
|
// is the first time anyone's reached out -- nudge toward volunteering
|
|
1674
1685
|
// the job rather than waiting to be asked, which real playtesting
|
|
@@ -2113,6 +2124,7 @@ Your objective is to drive the story line.`}
|
|
|
2113
2124
|
${dialogueSummary}
|
|
2114
2125
|
${eph ? '' : payoutSummary}
|
|
2115
2126
|
${eph ? '' : heatSummary}
|
|
2127
|
+
${eph ? '' : jobItemSummary}
|
|
2116
2128
|
|
|
2117
2129
|
${roomDesc}${spotBlock}${combatSpatialBlock}
|
|
2118
2130
|
${formattedExitsStr}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maka/maka-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.158.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.",
|