aboutsummaryrefslogtreecommitdiff
path: root/data/rooms
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-06 23:05:04 -0400
committerhistoria <[not public]>2026-07-06 23:05:04 -0400
commit9292634f2f8d71a53879ff07e1330c671b207d51 (patch)
treedcffadf7f697e8ad0705d787d8f599bdeeedb812 /data/rooms
parent911aae15f4e869c93239ef7c630c61e1d9d4ef3f (diff)
downloadthehouseoficarus-9292634f2f8d71a53879ff07e1330c671b207d51.tar.gz
feat: split the concept of hidden and impassable exits. add player_flag for discovered hidden exits.
Diffstat (limited to 'data/rooms')
-rw-r--r--data/rooms/intro/1005.yaml4
-rw-r--r--data/rooms/intro/1006.yaml12
-rw-r--r--data/rooms/intro/2001.yaml27
3 files changed, 29 insertions, 14 deletions
diff --git a/data/rooms/intro/1005.yaml b/data/rooms/intro/1005.yaml
index 4f31b7f..faf82e3 100644
--- a/data/rooms/intro/1005.yaml
+++ b/data/rooms/intro/1005.yaml
@@ -2,9 +2,7 @@ id: 1005
name: 'Room #1005'
color: ""
description: []
-exits:
- south:
- room: 2001
+exits: {}
objects: []
item_spawns: []
mobs: []
diff --git a/data/rooms/intro/1006.yaml b/data/rooms/intro/1006.yaml
new file mode 100644
index 0000000..5a87adb
--- /dev/null
+++ b/data/rooms/intro/1006.yaml
@@ -0,0 +1,12 @@
+id: 1006
+name: 'Room #1006'
+color: ""
+description: []
+exits: {}
+objects: []
+item_spawns: []
+mobs: []
+on_enter: []
+hazard: ""
+block_transport: false
+triggers: []
diff --git a/data/rooms/intro/2001.yaml b/data/rooms/intro/2001.yaml
index 0387c3e..a9570f6 100644
--- a/data/rooms/intro/2001.yaml
+++ b/data/rooms/intro/2001.yaml
@@ -1,5 +1,4 @@
-id: 2001
-name: Test Room
+block_transport: false
color: ""
description:
- text: It's a test room
@@ -7,17 +6,18 @@ exits:
east:
room: 2002
north:
- room: 1005
+ blocked_message: ""
+ condition: null
+ always_blocked: true
+ room: 1006
+ set_flags: null
+ set_player_flags: null
south:
room: 2006
southeast:
room: 2005
-objects:
- - name: hidden guy
- hidden: true
- description:
- - text: YOU FOUND HIM
- - id: tree
+hazard: ""
+id: 2001
item_spawns:
- id: bronze_axe
quantity: 1
@@ -31,7 +31,12 @@ item_spawns:
mobs:
- id: man
- id: flight_attendant_copy
+name: Test Room
+objects:
+ - description:
+ - text: YOU FOUND HIM
+ hidden: true
+ name: hidden guy
+ - id: tree
on_enter: []
-hazard: ""
-block_transport: false
triggers: []