From 707e18903436ce35a9fc1b22ff5f3f4fa7158e8f Mon Sep 17 00:00:00 2001 From: Avi Weinstock Date: Wed, 1 Feb 2023 15:50:07 -0500 Subject: [PATCH] Nerf non-potion drinks. --- CHANGELOG.md | 1 + assets/common/items/food/cactus_colada.ron | 2 +- assets/common/items/food/pumpkin_spice_brew.ron | 4 ++-- assets/common/items/food/sunflower_icetea.ron | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90584bf384..9a8ed6d0e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Potion quaffing no longer makes characters practically immortal. - Stat diff now displays correctly for armor - Lamps, embers and campfires use glowing indices +- Non-potion drinks no longer heal as much as potions. ## [0.14.0] - 2023-01-07 diff --git a/assets/common/items/food/cactus_colada.ron b/assets/common/items/food/cactus_colada.ron index 9cd659fdc0..08ccfa97ac 100644 --- a/assets/common/items/food/cactus_colada.ron +++ b/assets/common/items/food/cactus_colada.ron @@ -7,7 +7,7 @@ ItemDef( Buff(( kind: Saturation, data: ( - strength: 5.0, + strength: 2.0, duration: Some(( secs: 5, nanos: 0, diff --git a/assets/common/items/food/pumpkin_spice_brew.ron b/assets/common/items/food/pumpkin_spice_brew.ron index 1d928e84c0..b06f848634 100644 --- a/assets/common/items/food/pumpkin_spice_brew.ron +++ b/assets/common/items/food/pumpkin_spice_brew.ron @@ -7,9 +7,9 @@ ItemDef( Buff(( kind: Saturation, data: ( - strength: 10.0, + strength: 2.0, duration: Some(( - secs: 5, + secs: 10, nanos: 0, )), ), diff --git a/assets/common/items/food/sunflower_icetea.ron b/assets/common/items/food/sunflower_icetea.ron index 1190c15f89..9be0ec35c3 100644 --- a/assets/common/items/food/sunflower_icetea.ron +++ b/assets/common/items/food/sunflower_icetea.ron @@ -7,9 +7,9 @@ ItemDef( Buff(( kind: Saturation, data: ( - strength: 10.0, + strength: 2.0, duration: Some(( - secs: 5, + secs: 10, nanos: 0, )), ),