diff --git a/components/HiddenCostGame.tsx b/components/HiddenCostGame.tsx index c199e22..8154995 100644 --- a/components/HiddenCostGame.tsx +++ b/components/HiddenCostGame.tsx @@ -366,6 +366,9 @@ function EventPanel({ event, healthPoints }: { event: MedicalEvent; healthPoints

A care decision is needed this round. Compare the point cost, the income added this round, and the health outcome before choosing.

+

+ Lower health can reduce the points earned in later rounds. +

Base round income: +{formatPoints(ROUND_INCOME_POINTS)} pts Health-adjusted income: +{formatPoints(healthAdjustedIncome)} pts @@ -484,7 +487,7 @@ function ChoiceButton({ } function ResultPanel({ result, mode, onContinue }: { result: RoundResult; mode: "primary" | "replay"; onContinue: () => void }) { - const continueLabel = result.isComplete ? (mode === "replay" ? "Return to results" : "Continue to visible results") : "Continue to next round"; + const continueLabel = result.isComplete ? (mode === "replay" ? "Return to results" : "Continue to score table") : "Continue to next round"; return (
@@ -504,6 +507,10 @@ function ResultPanel({ result, mode, onContinue }: { result: RoundResult; mode:
+

+ This round added +{formatPoints(result.round.roundIncome ?? ROUND_INCOME_POINTS)} health-adjusted income before subtracting -{formatPoints(result.round.paidCost)} treatment cost. +

+