Fix crazy faction XP rates

This commit is contained in:
omuretsu 2023-01-03 02:40:06 -05:00
parent f8af04e5b3
commit c9920f35ac

@ -23,21 +23,21 @@ import { checkEnum } from "../utils/helpers/enum";
const gameCPS = 1000 / CONSTANTS._idleSpeed; // 5 cycles per second const gameCPS = 1000 / CONSTANTS._idleSpeed; // 5 cycles per second
export const FactionWorkStats: Record<FactionWorkType, WorkStats> = { export const FactionWorkStats: Record<FactionWorkType, WorkStats> = {
[FactionWorkType.hacking]: newWorkStats({ hackExp: 15 }), [FactionWorkType.hacking]: newWorkStats({ hackExp: 2 }),
[FactionWorkType.field]: newWorkStats({ [FactionWorkType.field]: newWorkStats({
hackExp: 10, hackExp: 1,
strExp: 10, strExp: 1,
defExp: 10, defExp: 1,
dexExp: 10, dexExp: 1,
agiExp: 10, agiExp: 1,
chaExp: 10, chaExp: 1,
}), }),
[FactionWorkType.security]: newWorkStats({ [FactionWorkType.security]: newWorkStats({
hackExp: 5, hackExp: 0.5,
strExp: 15, strExp: 1.5,
defExp: 15, defExp: 1.5,
dexExp: 15, dexExp: 1.5,
agiExp: 15, agiExp: 1.5,
}), }),
}; };