mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-18 07:18:38 +02:00
API: Add a way to get the list of all factions (#1457)
This commit is contained in:
45
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
45
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@@ -8350,6 +8350,50 @@ declare enum CompanyName {
|
||||
NoodleBar = "Noodle Bar",
|
||||
}
|
||||
|
||||
/**
|
||||
* Names of all factions.
|
||||
*
|
||||
* Warning: Spoiler ahead. This enum contains names of **all** factions. If you do not want to know what all the
|
||||
* factions are, you should not check this enum. Some factions are only accessible in the endgame.
|
||||
*
|
||||
* @public */
|
||||
declare enum FactionName {
|
||||
Illuminati = "Illuminati",
|
||||
Daedalus = "Daedalus",
|
||||
TheCovenant = "The Covenant",
|
||||
ECorp = "ECorp",
|
||||
MegaCorp = "MegaCorp",
|
||||
BachmanAssociates = "Bachman & Associates",
|
||||
BladeIndustries = "Blade Industries",
|
||||
NWO = "NWO",
|
||||
ClarkeIncorporated = "Clarke Incorporated",
|
||||
OmniTekIncorporated = "OmniTek Incorporated",
|
||||
FourSigma = "Four Sigma",
|
||||
KuaiGongInternational = "KuaiGong International",
|
||||
FulcrumSecretTechnologies = "Fulcrum Secret Technologies",
|
||||
BitRunners = "BitRunners",
|
||||
TheBlackHand = "The Black Hand",
|
||||
NiteSec = "NiteSec",
|
||||
Aevum = "Aevum",
|
||||
Chongqing = "Chongqing",
|
||||
Ishima = "Ishima",
|
||||
NewTokyo = "New Tokyo",
|
||||
Sector12 = "Sector-12",
|
||||
Volhaven = "Volhaven",
|
||||
SpeakersForTheDead = "Speakers for the Dead",
|
||||
TheDarkArmy = "The Dark Army",
|
||||
TheSyndicate = "The Syndicate",
|
||||
Silhouette = "Silhouette",
|
||||
Tetrads = "Tetrads",
|
||||
SlumSnakes = "Slum Snakes",
|
||||
Netburners = "Netburners",
|
||||
TianDiHui = "Tian Di Hui",
|
||||
CyberSec = "CyberSec",
|
||||
Bladeburners = "Bladeburners",
|
||||
ChurchOfTheMachineGod = "Church of the Machine God",
|
||||
ShadowsOfAnarchy = "Shadows of Anarchy",
|
||||
}
|
||||
|
||||
declare enum CodingContractName {
|
||||
FindLargestPrimeFactor = "Find Largest Prime Factor",
|
||||
SubarrayWithMaximumSum = "Subarray with Maximum Sum",
|
||||
@@ -8441,6 +8485,7 @@ export type NSEnums = {
|
||||
ToastVariant: typeof ToastVariant;
|
||||
UniversityClassType: typeof UniversityClassType;
|
||||
CompanyName: typeof CompanyName;
|
||||
FactionName: typeof FactionName;
|
||||
CodingContractName: typeof CodingContractName;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user