changes the price of everything to scale w/ pay

This commit is contained in:
DragonTrance
2022-06-08 18:38:41 -04:00
parent eed83f9e8c
commit a256ef54c0
38 changed files with 88 additions and 74 deletions
+12
View File
@@ -0,0 +1,12 @@
#define BASEPAY_ASSISTANT 1
#define BASEPAY_ROOKIE 1
#define BASEPAY_DEFAULT 1.1
#define BASEPAY_COMMAND 1.25
#define BASEPAY_CAPTAIN 1.5
#define PRICE_BASE (FLOOR(BASEPAY_ASSISTANT * 16, 1))
#define PRICE_LOW (FLOOR(PRICE_BASE * 0.5, 1))
#define PRICE_HIGH (FLOOR(PRICE_BASE * 2, 1))
#define PRICE_EROTICA (FLOOR(PRICE_HIGH * 1.15, 1))
#define PRICE_EXPENSIVE (FLOOR(PRICE_HIGH * 1.5), 1)