From c9920f35ac47a7c73e25bdd776881dd7434e5e41 Mon Sep 17 00:00:00 2001 From: omuretsu <84951833+Snarling@users.noreply.github.com> Date: Tue, 3 Jan 2023 02:40:06 -0500 Subject: [PATCH] Fix crazy faction XP rates --- src/Work/Formulas.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/Work/Formulas.ts b/src/Work/Formulas.ts index 1ec3cb516..c355d8f1a 100644 --- a/src/Work/Formulas.ts +++ b/src/Work/Formulas.ts @@ -23,21 +23,21 @@ import { checkEnum } from "../utils/helpers/enum"; const gameCPS = 1000 / CONSTANTS._idleSpeed; // 5 cycles per second export const FactionWorkStats: Record = { - [FactionWorkType.hacking]: newWorkStats({ hackExp: 15 }), + [FactionWorkType.hacking]: newWorkStats({ hackExp: 2 }), [FactionWorkType.field]: newWorkStats({ - hackExp: 10, - strExp: 10, - defExp: 10, - dexExp: 10, - agiExp: 10, - chaExp: 10, + hackExp: 1, + strExp: 1, + defExp: 1, + dexExp: 1, + agiExp: 1, + chaExp: 1, }), [FactionWorkType.security]: newWorkStats({ - hackExp: 5, - strExp: 15, - defExp: 15, - dexExp: 15, - agiExp: 15, + hackExp: 0.5, + strExp: 1.5, + defExp: 1.5, + dexExp: 1.5, + agiExp: 1.5, }), };