mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-19 20:55:44 +01:00
24 lines
986 B
TypeScript
24 lines
986 B
TypeScript
import { Company } from "./Company";
|
|
import { CompanyPosition } from "./CompanyPosition";
|
|
|
|
import { PlayerCondition, haveSkill, haveCompanyRep } from "../Faction/FactionJoinCondition";
|
|
import type { Skills } from "../PersonObjects/Skills";
|
|
|
|
export function getJobRequirements(company: Company, pos: CompanyPosition): PlayerCondition[] {
|
|
const reqSkills = pos.requiredSkills(company.jobStatReqOffset);
|
|
const reqs = [];
|
|
for (const [skillName, value] of Object.entries(reqSkills)) {
|
|
if (value > 0) reqs.push(haveSkill(skillName as keyof Skills, value));
|
|
}
|
|
if (pos.requiredReputation > 0) {
|
|
reqs.push(haveCompanyRep(company.name, pos.requiredReputation));
|
|
}
|
|
return reqs;
|
|
}
|
|
|
|
/** Returns a string with the given CompanyPosition's stat requirements */
|
|
export function getJobRequirementText(company: Company, pos: CompanyPosition): string {
|
|
const reqs = getJobRequirements(company, pos);
|
|
return `(${pos.name} requires: ${reqs.map((s) => s.toString()).join(", ")})`;
|
|
}
|