Forfeit legs earn no scolding; the pane sees your boots
Picking up an object ends the turn's actions AND movement — yet the end-turn caution still tallied the unspendable points as regret. The unspent-movement reason now stays quiet once actions have ended: those points cannot be spent, only mourned. And the raycaster has no downward pitch, so whatever lay in your own square — a treasure, a dropped blade — was invisible from inside the cockpit. An "at your feet" tray now rides the pane's bottom edge on your turn: your square's floor treasures and objects as clickable icons, each a one-tap pickup through the same commands the board's buttons send. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_015RCWSTnb1KYTPyL4GmhGnF
This commit is contained in:
co-authored by
Claude Fable 5
parent
3d2bf17585
commit
19752e55e1
@@ -971,8 +971,10 @@
|
||||
if (view && me) {
|
||||
const left = view.turn.movementAllowance - view.turn.movementUsed;
|
||||
// Unspent legs are no regret when the walk ended ON someone's gold —
|
||||
// stopping there was the point.
|
||||
if (left > 0 && !treasuresHere.some((t) => t.owner !== view.you)) {
|
||||
// stopping there was the point — nor when a pickup or drop already
|
||||
// forfeited them: those points cannot be spent, only mourned.
|
||||
if (left > 0 && !view.turn.actionsEnded &&
|
||||
!treasuresHere.some((t) => t.owner !== view.you)) {
|
||||
reasons.push(`${left} movement point${left === 1 ? "" : "s"} unspent`);
|
||||
}
|
||||
const limit = me.displayed.some((c) => c.cardId === "brainstone") ? 9 : 7;
|
||||
@@ -1901,7 +1903,10 @@
|
||||
{#if prefs.liveFp && view.you && !net.spectating}
|
||||
<LiveFirstPerson {view} batch={fpBatch} onhide={() => setPref("liveFp", false)}
|
||||
onstride={(side) => tryMove(side)} canStride={yourMoment}
|
||||
ontarget={fpvTarget} onfacing={(s) => (fpvFacing = s)} {litCells} />
|
||||
ontarget={fpvTarget} onfacing={(s) => (fpvFacing = s)} {litCells}
|
||||
onpickup={(w) => dispatch(w.kind === "treasure"
|
||||
? { type: "pickUpTreasure", treasureId: w.id }
|
||||
: { type: "pickUpObject", instanceId: w.id })} />
|
||||
{/if}
|
||||
<Board
|
||||
{view}
|
||||
|
||||
Reference in New Issue
Block a user