aboutsummaryrefslogtreecommitdiff
path: root/worldbuilding_guide/hidden_objects.md
diff options
context:
space:
mode:
Diffstat (limited to 'worldbuilding_guide/hidden_objects.md')
-rw-r--r--worldbuilding_guide/hidden_objects.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/worldbuilding_guide/hidden_objects.md b/worldbuilding_guide/hidden_objects.md
index 39030d8..24fd6bc 100644
--- a/worldbuilding_guide/hidden_objects.md
+++ b/worldbuilding_guide/hidden_objects.md
@@ -24,5 +24,17 @@ Room description hints at it:
description: "A dusty corridor. One of the wall stones looks slightly out of place."
```
+### Safespot Objects
+
+Safespot objects should always be `hidden: true`. They only become visible in `look` when the player's effective safespot tier meets the object's `safespot.tier` requirement. This creates a natural discovery mechanic: completing quests and achievements reveals new coverage opportunities.
+
+Players can discover safespots by:
+- Reading room descriptions for hints
+- Trying `hide <object_name>` (name matching works even for hidden objects)
+- Using `look <object>` once they know the name
+- Gaining tier through progression, which reveals safespots in `look`
+
+See [Safespots](objects.md#safespots) for the full YAML format.
+
---