From a19e6b6ab01670a5932308c7bd0e0e5eed8cbcad Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 12 Jun 2026 23:52:06 -0400 Subject: feat: firemaking skill implemented. overhauled how ground items and despawn are handled. --- internal/object/object.go | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'internal/object/object.go') diff --git a/internal/object/object.go b/internal/object/object.go index 9e06804..2810e07 100644 --- a/internal/object/object.go +++ b/internal/object/object.go @@ -1,9 +1,11 @@ package object type ObjectDef struct { - ID string `yaml:"id"` - Name string `yaml:"name"` - BehaviorID string `yaml:"behavior"` - Hidden bool `yaml:"hidden"` - Props map[string]any `yaml:"props"` + ID string `yaml:"id"` + Name string `yaml:"name"` + BehaviorID string `yaml:"behavior"` + Hidden bool `yaml:"hidden"` + InRoomDescription string `yaml:"inroom_description"` + RemovalItem string `yaml:"removal_item"` + Props map[string]any `yaml:"props"` } -- cgit v1.2.3