From 708985e62a7593b24cf4e9649a837dc996b68bbe Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Sat, 14 Feb 2026 17:48:30 -0500 Subject: [PATCH] Add decorative furniture and crafting material templates --- content/things/bookshelf.toml | 4 ++++ content/things/chair.toml | 3 +++ content/things/lamp.toml | 4 ++++ content/things/nail.toml | 3 +++ content/things/painting.toml | 4 ++++ content/things/plank.toml | 4 ++++ content/things/rug.toml | 3 +++ content/things/table.toml | 3 +++ 8 files changed, 28 insertions(+) create mode 100644 content/things/bookshelf.toml create mode 100644 content/things/chair.toml create mode 100644 content/things/lamp.toml create mode 100644 content/things/nail.toml create mode 100644 content/things/painting.toml create mode 100644 content/things/plank.toml create mode 100644 content/things/rug.toml create mode 100644 content/things/table.toml diff --git a/content/things/bookshelf.toml b/content/things/bookshelf.toml new file mode 100644 index 0000000..d354e05 --- /dev/null +++ b/content/things/bookshelf.toml @@ -0,0 +1,4 @@ +name = "bookshelf" +description = "a tall wooden bookshelf lined with dusty volumes" +portable = true +aliases = ["shelf"] diff --git a/content/things/chair.toml b/content/things/chair.toml new file mode 100644 index 0000000..5d84c8d --- /dev/null +++ b/content/things/chair.toml @@ -0,0 +1,3 @@ +name = "chair" +description = "a simple wooden chair with a woven seat" +portable = true diff --git a/content/things/lamp.toml b/content/things/lamp.toml new file mode 100644 index 0000000..d1f6339 --- /dev/null +++ b/content/things/lamp.toml @@ -0,0 +1,4 @@ +name = "lamp" +description = "a brass oil lamp with a glass chimney" +portable = true +aliases = ["lantern"] diff --git a/content/things/nail.toml b/content/things/nail.toml new file mode 100644 index 0000000..a3d046c --- /dev/null +++ b/content/things/nail.toml @@ -0,0 +1,3 @@ +name = "nail" +description = "a small iron nail" +portable = true diff --git a/content/things/painting.toml b/content/things/painting.toml new file mode 100644 index 0000000..0621a69 --- /dev/null +++ b/content/things/painting.toml @@ -0,0 +1,4 @@ +name = "painting" +description = "a framed painting of rolling hills under a twilight sky" +portable = true +aliases = ["picture"] diff --git a/content/things/plank.toml b/content/things/plank.toml new file mode 100644 index 0000000..36d4eda --- /dev/null +++ b/content/things/plank.toml @@ -0,0 +1,4 @@ +name = "plank" +description = "a rough-hewn wooden plank" +portable = true +aliases = ["board", "wood"] diff --git a/content/things/rug.toml b/content/things/rug.toml new file mode 100644 index 0000000..0023c89 --- /dev/null +++ b/content/things/rug.toml @@ -0,0 +1,3 @@ +name = "rug" +description = "a colorful woven rug with geometric patterns" +portable = true diff --git a/content/things/table.toml b/content/things/table.toml new file mode 100644 index 0000000..120ef37 --- /dev/null +++ b/content/things/table.toml @@ -0,0 +1,3 @@ +name = "table" +description = "a sturdy wooden table with thick oak legs" +portable = true