1
0
Fork 0
taleweave-ai/adventure/systems/sim/sleeping_logic.yaml

27 lines
478 B
YAML
Raw Normal View History

2024-05-05 22:45:18 +00:00
rules:
# sleeping logic
- match:
type: character
2024-05-05 22:45:18 +00:00
sleep: rested
chance: 0.1
2024-05-05 22:45:18 +00:00
set:
sleep: tired
# sleeping initialization
- rule: |
"sleep" not in attributes
set:
sleep: tired
labels:
2024-05-19 21:49:02 +00:00
- match:
type: character
2024-05-19 21:49:02 +00:00
sleep: rested
backstory: You are well-rested.
description: They look well-rested.
- match:
type: character
2024-05-19 21:49:02 +00:00
sleep: tired
backstory: You are tired.
description: They look tired.