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
export const FactionWorkStats: Record<FactionWorkType, WorkStats> = {
[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,
}),
};