From f7ac016658ed66db48efeed81c5e6555d1075232 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Sun, 31 Jul 2022 22:08:27 -0700 Subject: [PATCH 1/3] Another minor bomb points nerf --- 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 013d038f3a..b8b9b78bf3 100644 --- a/code/__DEFINES/research.dm +++ b/code/__DEFINES/research.dm @@ -76,6 +76,6 @@ #define LARGEST_BOMB "bomb" #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 (world.system_type == MS_WINDOWS ? 240 : 50000) // The shockwave radius required for a bomb to get TECHWEB_BOMB_MIDPOINT points. +#define BOMB_TARGET_SIZE 300 // The shockwave radius required for a bomb to get TECHWEB_BOMB_MIDPOINT points. // Linux still has old trit fires, so #define BOMB_SUB_TARGET_EXPONENT 3 // The power of the points curve below the target size. Higher = less points for worse bombs, below target. From d5141d57e94357969d9740070f8a5d08dc7d2c77 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Sun, 31 Jul 2022 22:10:49 -0700 Subject: [PATCH 2/3] best not to shake things up too hard --- 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 b8b9b78bf3..76d9469947 100644 --- a/code/__DEFINES/research.dm +++ b/code/__DEFINES/research.dm @@ -76,6 +76,6 @@ #define LARGEST_BOMB "bomb" #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 300 // The shockwave radius required for a bomb to get TECHWEB_BOMB_MIDPOINT points. +#define BOMB_TARGET_SIZE (world.system_type == MS_WINDOWS ? 300 : 5000) // The shockwave radius required for a bomb to get TECHWEB_BOMB_MIDPOINT points. // Linux still has old trit fires, so #define BOMB_SUB_TARGET_EXPONENT 3 // The power of the points curve below the target size. Higher = less points for worse bombs, below target. From 91f61cc89b8e75e3097381ff61f2e724297d8b9a Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Sun, 31 Jul 2022 22:11:15 -0700 Subject: [PATCH 3/3] if you don't squash this i will be mad --- 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 76d9469947..b8b9b78bf3 100644 --- a/code/__DEFINES/research.dm +++ b/code/__DEFINES/research.dm @@ -76,6 +76,6 @@ #define LARGEST_BOMB "bomb" #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 (world.system_type == MS_WINDOWS ? 300 : 5000) // The shockwave radius required for a bomb to get TECHWEB_BOMB_MIDPOINT points. +#define BOMB_TARGET_SIZE 300 // The shockwave radius required for a bomb to get TECHWEB_BOMB_MIDPOINT points. // Linux still has old trit fires, so #define BOMB_SUB_TARGET_EXPONENT 3 // The power of the points curve below the target size. Higher = less points for worse bombs, below target.