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

33 lines
668 B
YAML
Raw Normal View History

2024-05-05 22:45:18 +00:00
rules:
- match:
type: actor
hygiene: clean
chance: 0.1
2024-05-05 22:45:18 +00:00
set:
hygiene: dirty
- match:
type: actor
hygiene: dirty
chance: 0.1
2024-05-05 22:45:18 +00:00
set:
hygiene: filthy
# initialize hygiene
- rule: |
"hygiene" not in attributes
set:
hygiene: clean
2024-05-05 22:45:18 +00:00
labels:
hygiene:
clean:
backstory: You are clean and smell fresh.
description: They look freshly washed and smell clean.
dirty:
backstory: You are dirty and smell bad.
description: They look dirty and smell bad.
filthy:
backstory: You are filthy and smell terrible.
description: They look filthy and smell terrible.