From 085e728d22a3369bd110b77409914cfbe9ebe611 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Tue, 16 Jun 2026 04:17:43 -0400 Subject: feat: recipe system, combining items, cooking skill --- internal/game/action_state.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'internal/game/action_state.go') 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 "" } -- cgit v1.2.3