mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-29 12:27:07 +02:00
44ea479043
* added OperationNames * added faction names * used citynames where appropriate
27 lines
777 B
TypeScript
27 lines
777 B
TypeScript
import { FactionNames } from "../../Faction/data/FactionNames";
|
|
|
|
export const GangConstants: {
|
|
GangRespectToReputationRatio: number;
|
|
MaximumGangMembers: number;
|
|
CyclesPerTerritoryAndPowerUpdate: number;
|
|
AscensionMultiplierRatio: number;
|
|
Names: string[];
|
|
} = {
|
|
// Respect is divided by this to get rep gain
|
|
GangRespectToReputationRatio: 75,
|
|
MaximumGangMembers: 12,
|
|
CyclesPerTerritoryAndPowerUpdate: 100,
|
|
// Portion of upgrade multiplier that is kept after ascending
|
|
AscensionMultiplierRatio: 0.15,
|
|
// Names of possible Gangs
|
|
Names: [
|
|
FactionNames.SlumSnakes,
|
|
FactionNames.Tetrads,
|
|
FactionNames.TheSyndicate,
|
|
FactionNames.TheDarkArmy,
|
|
FactionNames.SpeakersForTheDead,
|
|
FactionNames.NiteSec,
|
|
FactionNames.TheBlackHand,
|
|
],
|
|
};
|