From ec2e94e3463654a6288464a4c070b48ef9bf7368 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Wed, 17 Jun 2026 21:13:07 -0400 Subject: feat: smithing added, item/object interaction reworked. recipes and menus refactored. --- internal/action/recipe.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'internal/action') diff --git a/internal/action/recipe.go b/internal/action/recipe.go index 18c08c5..2e93c06 100644 --- a/internal/action/recipe.go +++ b/internal/action/recipe.go @@ -9,8 +9,9 @@ import ( ) type ConsumeEntry struct { - Items []string `yaml:"items"` - Qty int `yaml:"qty"` + Items []string `yaml:"items"` + Qty int `yaml:"qty"` + Byproducts []string `yaml:"byproducts"` } type RecipeDef struct { @@ -22,6 +23,7 @@ type RecipeDef struct { Station []string `yaml:"station"` Consume []ConsumeEntry `yaml:"consume"` Output string `yaml:"output"` + OutputQty int `yaml:"output_qty"` Fail string `yaml:"fail"` Message string `yaml:"message"` FailMessage string `yaml:"fail_message"` -- cgit v1.2.3