From 390ed769e9125d28bb4c2fe6de4413d44f0f95d2 Mon Sep 17 00:00:00 2001 From: DragonTrance Date: Wed, 8 Jun 2022 19:22:56 -0400 Subject: [PATCH] more balancing --- code/__DEFINES/economy.dm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/code/__DEFINES/economy.dm b/code/__DEFINES/economy.dm index eb2055e06..3d62609a1 100644 --- a/code/__DEFINES/economy.dm +++ b/code/__DEFINES/economy.dm @@ -5,8 +5,9 @@ #define BASEPAY_CAPTAIN 1.65 -#define PRICE_BASE (BASEPAY_ASSISTANT * 16) -#define PRICE_LOW (PRICE_BASE * 0.75) -#define PRICE_HIGH (PRICE_BASE * 2) -#define PRICE_EROTICA (PRICE_HIGH * 1.15) +#define PRICE_BASE (BASEPAY_ASSISTANT * 32) +#define PRICE_DEFAULT (PRICE_BASE * 0.5) +#define PRICE_LOW (PRICE_DEFAULT * 0.75) +#define PRICE_HIGH (PRICE_DEFAULT * 2) +#define PRICE_EROTICA (PRICE_DEFAULT * 1.75) #define PRICE_EXPENSIVE (PRICE_HIGH * 1.5)