diff options
author | David Gay <david@davidgay.org> | 2021-05-29 17:19:56 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-29 17:19:56 -0400 |
commit | aac7563767c5fbc5ef67f4d615833e7523a46df7 (patch) | |
tree | 807e708c32d6d8710bcc1b6f96862ed34b320072 /data | |
parent | 8f9dcbf33d5cd3222e4d8e0cfa6f72b1596b917c (diff) |
Conditions and states (boons & banes), with `quarrying_draught`
Diffstat (limited to 'data')
-rw-r--r-- | data/conditions.yml | 9 | ||||
-rw-r--r-- | data/items.yml | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/data/conditions.yml b/data/conditions.yml new file mode 100644 index 0000000..99aacc4 --- /dev/null +++ b/data/conditions.yml @@ -0,0 +1,9 @@ +quarrying_draught: + name: "quarrying draught" + description: "Increases the speed of planequarrying for some time." + whatnot: + effects: + - type: "stat_change" + level: 2 + gid: "planequarry_speed" + modifier: 5 diff --git a/data/items.yml b/data/items.yml index f5be768..70dbc48 100644 --- a/data/items.yml +++ b/data/items.yml @@ -343,3 +343,12 @@ aethermesh: whatnot: equip_slots: - "mainhand" +quarrying_draught: + name: "quarrying draught" + description: "Increases the speed of planequarrying for an hour." + whatnot: + use_effects: + - type: "condition" + gid: "quarrying_draught" + duration: 3600 # 1 Hour + message: "The draught increases your planequarry speed." |