From 87e4f9353f67713821455e67b37b921ed32671a6 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Mon, 21 Feb 2022 20:57:56 -0800 Subject: [PATCH 1/2] Change BOMB_TARGET_SIZE to match new trit fire I am SO GLAD I WROTE THIS CODE THIS WAY. --- code/__DEFINES/research.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/research.dm b/code/__DEFINES/research.dm index 4b8b2c797e..129ec8fd5a 100644 --- a/code/__DEFINES/research.dm +++ b/code/__DEFINES/research.dm @@ -74,5 +74,5 @@ ) #define BOMB_TARGET_POINTS 50000 //Adjust as needed. Actual hard cap is double this, but will never be reached due to hyperbolic curve. -#define BOMB_TARGET_SIZE 200 // The shockwave radius required for a bomb to get TECHWEB_BOMB_MIDPOINT points. +#define BOMB_TARGET_SIZE 175 // The shockwave radius required for a bomb to get TECHWEB_BOMB_MIDPOINT points. #define BOMB_SUB_TARGET_EXPONENT 2 // The power of the points curve below the target size. Higher = less points for worse bombs, below target. From 6fb26a5afc7cce0e67e7cd1c01be46ce433718c8 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Mon, 21 Feb 2022 21:05:11 -0800 Subject: [PATCH 2/2] Raised sub target exponent too Needs to be this way so plasma bombs aren't way stronger --- code/__DEFINES/research.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/research.dm b/code/__DEFINES/research.dm index 129ec8fd5a..55c3ac8772 100644 --- a/code/__DEFINES/research.dm +++ b/code/__DEFINES/research.dm @@ -75,4 +75,4 @@ #define BOMB_TARGET_POINTS 50000 //Adjust as needed. Actual hard cap is double this, but will never be reached due to hyperbolic curve. #define BOMB_TARGET_SIZE 175 // The shockwave radius required for a bomb to get TECHWEB_BOMB_MIDPOINT points. -#define BOMB_SUB_TARGET_EXPONENT 2 // The power of the points curve below the target size. Higher = less points for worse bombs, below target. +#define BOMB_SUB_TARGET_EXPONENT 3 // The power of the points curve below the target size. Higher = less points for worse bombs, below target.