mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-05 07:07:50 +02:00
update constants
* added OperationNames * added faction names * used citynames where appropriate
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import { FactionNames } from "../../Faction/data/FactionNames";
|
||||
|
||||
export const GangConstants: {
|
||||
GangRespectToReputationRatio: number;
|
||||
MaximumGangMembers: number;
|
||||
@@ -13,12 +15,12 @@ export const GangConstants: {
|
||||
AscensionMultiplierRatio: 0.15,
|
||||
// Names of possible Gangs
|
||||
Names: [
|
||||
"Slum Snakes",
|
||||
"Tetrads",
|
||||
"The Syndicate",
|
||||
"The Dark Army",
|
||||
"Speakers for the Dead",
|
||||
"NiteSec",
|
||||
"The Black Hand",
|
||||
FactionNames.SlumSnakes,
|
||||
FactionNames.Tetrads,
|
||||
FactionNames.TheSyndicate,
|
||||
FactionNames.TheDarkArmy,
|
||||
FactionNames.SpeakersForTheDead,
|
||||
FactionNames.NiteSec,
|
||||
FactionNames.TheBlackHand,
|
||||
],
|
||||
};
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
import { FactionNames } from '../../Faction/data/FactionNames';
|
||||
export const PowerMultiplier: {
|
||||
[key: string]: number | undefined;
|
||||
} = {
|
||||
"Slum Snakes": 1,
|
||||
Tetrads: 2,
|
||||
"The Syndicate": 2,
|
||||
"The Dark Army": 2,
|
||||
"Speakers for the Dead": 5,
|
||||
NiteSec: 2,
|
||||
"The Black Hand": 5,
|
||||
[FactionNames.SlumSnakes]: 1,
|
||||
[FactionNames.Tetrads]: 2,
|
||||
[FactionNames.TheSyndicate]: 2,
|
||||
[FactionNames.TheDarkArmy]: 2,
|
||||
[FactionNames.SpeakersForTheDead]: 5,
|
||||
[FactionNames.NiteSec]: 2,
|
||||
[FactionNames.TheBlackHand]: 5,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user