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, }), };