From e25c68047f9ac7de61b3562ad758c2f12a2163e7 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 18 May 2023 12:01:00 -0400 Subject: [PATCH] v2.1.0: reduced the ACC penalty on the sickle and war scythe --- .../shatteredpixeldungeon/items/weapon/melee/Sickle.java | 2 +- .../shatteredpixeldungeon/items/weapon/melee/WarScythe.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Sickle.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Sickle.java index fd8b7e87e..8ef9e7b14 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Sickle.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Sickle.java @@ -44,7 +44,7 @@ public class Sickle extends MeleeWeapon { hitSoundPitch = 1f; tier = 2; - ACC = 0.68f; //32% penalty to accuracy + ACC = 0.76f; //24% penalty to accuracy } @Override diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/WarScythe.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/WarScythe.java index fd363c147..690c68989 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/WarScythe.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/WarScythe.java @@ -34,7 +34,7 @@ public class WarScythe extends MeleeWeapon { hitSoundPitch = 0.9f; tier = 5; - ACC = 0.8f; //20% penalty to accuracy + ACC = 0.85f; //15% penalty to accuracy } @Override