diff options
| author | historia <[not public]> | 2026-06-16 04:17:43 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-16 04:17:43 -0400 |
| commit | 085e728d22a3369bd110b77409914cfbe9ebe611 (patch) | |
| tree | eeb88cb1ceb91cc9ea2b5a1877c3c66328fab503 /internal/game/action_state.go | |
| parent | 43f21aabae8924f35c12c8485e690aeefe0089fb (diff) | |
| download | thehouseoficarus-085e728d22a3369bd110b77409914cfbe9ebe611.tar.gz | |
feat: recipe system, combining items, cooking skill
Diffstat (limited to 'internal/game/action_state.go')
| -rw-r--r-- | internal/game/action_state.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/game/action_state.go b/internal/game/action_state.go index 280dd56..c5d086e 100644 --- a/internal/game/action_state.go +++ b/internal/game/action_state.go @@ -19,6 +19,8 @@ const ( ActionSearching ActionType = "searching" ActionResting ActionType = "resting" ActionWalking ActionType = "walking" + ActionCooking ActionType = "cooking" + ActionEating ActionType = "eating" ) type ActionState struct { @@ -64,6 +66,10 @@ func (a *ActionState) Description() string { return "resting" case ActionWalking: return "walking somewhere with a purpose!" + case ActionCooking: + return "cooking some " + a.TargetName + case ActionEating: + return "eating " + a.TargetName } return "" } |
