diff options
author | David Gay <david@davidgay.org> | 2021-06-09 21:10:48 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-09 21:10:48 -0400 |
commit | a068f2a59cd7070ec7a59b32908bde5ede4a1fb7 (patch) | |
tree | b682e519324fa1c1d65786c4bf30bc9b9703478f | |
parent | 1ae9860698a33b47eb2d77acbcb7ad28a8edc7c6 (diff) |
Reduce base duration of smelt activities
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | data/activities.yml | 8 |
2 files changed, 11 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 679e781..e721dd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,13 @@ All notable changes to this project will be documented in this file. ### Items - New item: balgoloth claw. Requires beastslay 15 and has a damage base of 1-6 bash damage and 1-6 pierce damage. + +### Activities +- Smelt activities base duration changes + - Crude iron ingot 70 -> 50 + - Iron ingot 80 -> 60 + - Pure iron ingot 90 -> 70 + - Arcanite ingot 100 -> 80 ### Fixed - Leviathans that had item drops with a less than 100% chance could fail to check all their items due to the awarding diff --git a/data/activities.yml b/data/activities.yml index ee5ac76..d48c9b0 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -474,7 +474,7 @@ craft_crude_iron_ingot: gid: "forge" level: 1 duration: - base: 70 + base: 50 minimum: 35 scaling: - type: "skill" @@ -502,7 +502,7 @@ craft_iron_ingot: gid: "forge" level: 1 duration: - base: 80 + base: 60 minimum: 35 scaling: - type: "skill" @@ -533,7 +533,7 @@ craft_pure_iron_ingot: gid: "otherforge" level: 5 duration: - base: 90 + base: 70 minimum: 35 scaling: - type: "skill" @@ -564,7 +564,7 @@ craft_arcanite_ingot: gid: "otherforge" level: 10 duration: - base: 100 + base: 80 minimum: 35 scaling: - type: "skill" |