aboutsummaryrefslogtreecommitdiff
path: root/building_guide
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-05 20:06:53 -0400
committerhistoria <[not public]>2026-07-05 20:07:50 -0400
commit843fa6db681e494bf46e191655323a40577542b5 (patch)
treecf32ec18d50434c14a1152147ff6e5e8b3576998 /building_guide
parent7b5ed92e003d8a4bf9bdc69d43b7354eb2260dfa (diff)
downloadthehouseoficarus-843fa6db681e494bf46e191655323a40577542b5.tar.gz
feat: remove deprecated use/station interaction model
Diffstat (limited to 'building_guide')
-rw-r--r--building_guide/behaviors.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/building_guide/behaviors.md b/building_guide/behaviors.md
index ce266c1..8030d3d 100644
--- a/building_guide/behaviors.md
+++ b/building_guide/behaviors.md
@@ -553,29 +553,4 @@ use_interactions:
secret_passage_open: true
```
-### Use (crafting stations)
-
-Use configs go under the `use:` key on objects (e.g. furnaces, ranges):
-
-```yaml
-name: furnace
-color: "D0"
-use:
- message: "You place the ore in the furnace..."
- wait: 4
- consume:
- copper_ore: 1
- reward:
- item_id: copper_bar
- quantity: 1
- fail_message: "The ore crumbles to dust."
- success:
- base: 0.60
- per_level: 0.01
- cap: 0.95
- skill: smithing
- level: 1
- xp: 15
-```
-
---