import React from "react"; import { FactionName, CompanyName, CityName, LiteratureName, MessageFilename, LocationName } from "@enums"; import { currentNodeMults } from "../BitNode/BitNodeMultipliers"; import { Router } from "../ui/GameRoot"; import { Page } from "../ui/Router"; import { Option } from "./ui/Option"; import { Typography } from "@mui/material"; import { PlayerCondition, CompoundPlayerCondition, haveBackdooredServer, employedBy, haveCompanyRep, executiveEmployee, notEmployedBy, haveAugmentations, haveMoney, haveSkill, haveCombatSkills, haveKarma, haveKilledPeople, locatedInCity, locatedInSomeCity, totalHacknetRam, totalHacknetCores, totalHacknetLevels, haveBladeburnerRank, haveSourceFile, haveSomeSourceFile, haveFile, someCondition, everyCondition, delayedCondition, unsatisfiable, } from "./FactionJoinCondition"; import { SpecialServers } from "../Server/data/SpecialServers"; import { CONSTANTS } from "../Constants"; import { BladeburnerConstants } from "../Bladeburner/data/Constants"; import type { PlayerObject } from "../PersonObjects/Player/PlayerObject"; interface FactionInfoParams { infoText?: JSX.Element; rumorText?: JSX.Element; inviteReqs?: PlayerCondition[]; rumorReqs?: PlayerCondition[]; enemies?: FactionName[]; offerHackingWork?: boolean; offerFieldWork?: boolean; offerSecurityWork?: boolean; special?: boolean; keepOnInstall?: boolean; assignment?: () => React.ReactElement; } /** Contains the "information" property for all the Factions, which is just a description of each faction */ export class FactionInfo { /** The names of all other factions considered to be enemies to this faction. */ enemies: FactionName[]; /** The descriptive text to show on the faction's page. */ infoText: JSX.Element; /** The hint to show about how to get invited to this faction. */ rumorText: JSX.Element; /** Conditions for being automatically inivited to this facton. */ inviteReqs: CompoundPlayerCondition; /** Conditions for automatically hearing a rumor about this facton. */ rumorReqs: CompoundPlayerCondition; /** A flag indicating if the faction supports field work to earn reputation. */ offerFieldWork: boolean; /** A flag indicating if the faction supports hacking work to earn reputation. */ offerHackingWork: boolean; /** A flag indicating if the faction supports security work to earn reputation. */ offerSecurityWork: boolean; /** Keep faction on install. */ keep: boolean; /** Special faction */ special: boolean; /** The data to display on the faction screen. */ assignment?: () => React.ReactElement; constructor(params: FactionInfoParams) { this.infoText = params.infoText ?? <>; this.rumorText = params.rumorText ?? <>; this.inviteReqs = everyCondition(params.inviteReqs ?? [unsatisfiable]); this.rumorReqs = everyCondition(params.rumorReqs ?? [unsatisfiable]); this.enemies = params.enemies ?? []; this.offerHackingWork = params.offerHackingWork ?? false; this.offerFieldWork = params.offerFieldWork ?? false; this.offerSecurityWork = params.offerSecurityWork ?? false; this.keep = params.keepOnInstall ?? false; this.special = params.special ?? false; this.assignment = params.assignment; } offersWork(): boolean { return this.offerFieldWork || this.offerHackingWork || this.offerSecurityWork; } } /** A map of all factions and associated info to them. */ export const FactionInfos: Record = { // Endgame [FactionName.Illuminati]: new FactionInfo({ infoText: ( <> Humanity never changes. No matter how civilized society becomes, it will eventually fall back into chaos. And from this chaos, we are the invisible hand that guides them to order.{" "} ), rumorText: ( <> “...the ancient secret society that controls the entire world from the shadows with their invisible hand. With their personal wealth and skills they have penetrated every major government, financial agency, and corporation...” ), inviteReqs: [haveAugmentations(30), haveMoney(150e9), haveSkill("hacking", 1500), haveCombatSkills(1200)], rumorReqs: [haveFile(LiteratureName.TheHiddenWorld)], offerHackingWork: true, offerFieldWork: true, }), [FactionName.Daedalus]: new FactionInfo({ infoText: <>Yesterday we obeyed kings and bent our necks to emperors. Today we kneel only to truth., rumorText: <>Follow the thread. Take fl1ght., inviteReqs: [ delayedCondition(() => haveAugmentations(currentNodeMults.DaedalusAugsRequirement)), haveMoney(100e9), someCondition([haveSkill("hacking", 2500), haveCombatSkills(1500)]), ], rumorReqs: [haveFile(MessageFilename.TruthGazer)], offerHackingWork: true, offerFieldWork: true, }), [FactionName.TheCovenant]: new FactionInfo({ infoText: ( <> Surrender yourself. Give up your empty individuality to become part of something great, something eternal. Become a slave. Submit your mind, body, and soul. Only then can you set yourself free.

Only then can you discover immortality. ), rumorText: ( <> {FactionName.TheCovenant} offers an exclusive service to those who have reached the limits of individual fitness and wish to go further. ), inviteReqs: [haveAugmentations(20), haveMoney(75e9), haveSkill("hacking", 850), haveCombatSkills(850)], rumorReqs: [haveSourceFile(10)], offerHackingWork: true, offerFieldWork: true, }), // Megacorporations, each forms its own faction [FactionName.ECorp]: new FactionInfo({ infoText: ( <> {FactionName.ECorp}'s mission is simple: to connect the world of today with the technology of tomorrow. With our wide range of Internet-related software and commercial hardware, {FactionName.ECorp} makes the world's information universally accessible. ), rumorText: <>High-ranking employees of {CompanyName.ECorp} can gain access to proprietary hacking augmentations., inviteReqs: [employedBy(CompanyName.ECorp), haveCompanyRep(CompanyName.ECorp, CONSTANTS.CorpFactionRepRequirement)], rumorReqs: [employedBy(CompanyName.ECorp)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, keepOnInstall: true, }), [FactionName.MegaCorp]: new FactionInfo({ infoText: ( <> {FactionName.MegaCorp} does what no other dares to do. We imagine. We create. We invent. We create what others have never even dreamed of. Our work fills the world's needs for food, water, power, and transportation on an unprecedented scale, in ways that no other company can.

In our labs and factories and on the ground with customers, {FactionName.MegaCorp} is ushering in a new era for the world. ), rumorText: ( <>High-ranking employees of {CompanyName.MegaCorp} can gain access to proprietary biotech augmentations. ), inviteReqs: [ employedBy(CompanyName.MegaCorp), haveCompanyRep(CompanyName.MegaCorp, CONSTANTS.CorpFactionRepRequirement), ], rumorReqs: [employedBy(CompanyName.MegaCorp)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, keepOnInstall: true, }), [FactionName.BachmanAssociates]: new FactionInfo({ infoText: ( <> Where Law and Business meet - that's where we are.

Legal Insight - Business Instinct - Innovative Experience. ), rumorText: ( <> High-ranking employees of {CompanyName.BachmanAndAssociates} can gain access to proprietary negotiation augmentations. ), inviteReqs: [ employedBy(CompanyName.BachmanAndAssociates), haveCompanyRep(CompanyName.BachmanAndAssociates, CONSTANTS.CorpFactionRepRequirement), ], rumorReqs: [employedBy(CompanyName.BachmanAndAssociates)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, keepOnInstall: true, }), [FactionName.BladeIndustries]: new FactionInfo({ infoText: <>Augmentation is Salvation., rumorText: ( <>High-ranking employees of {CompanyName.BladeIndustries} can gain access to proprietary bionic augmentations. ), inviteReqs: [ employedBy(CompanyName.BladeIndustries), haveCompanyRep(CompanyName.BladeIndustries, CONSTANTS.CorpFactionRepRequirement), ], rumorReqs: [employedBy(CompanyName.BladeIndustries)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, keepOnInstall: true, }), [FactionName.NWO]: new FactionInfo({ infoText: ( <> Humans don't truly desire freedom. They want to be observed, understood, and judged. They want to be given purpose and direction in life. That is why they created God. And that is why they created civilization - not because of willingness, but because of a need to be incorporated into higher orders of structure and meaning. ), rumorText: <>High-ranking employees of {CompanyName.NWO} can gain access to proprietary nanotech augmentations., inviteReqs: [employedBy(CompanyName.NWO), haveCompanyRep(CompanyName.NWO, CONSTANTS.CorpFactionRepRequirement)], rumorReqs: [employedBy(CompanyName.NWO)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, keepOnInstall: true, }), [FactionName.ClarkeIncorporated]: new FactionInfo({ infoText: <>The Power of the Genome - Unlocked., rumorText: ( <> High-ranking employees of {CompanyName.ClarkeIncorporated} can gain access to proprietary neurotech augmentations. ), inviteReqs: [ employedBy(CompanyName.ClarkeIncorporated), haveCompanyRep(CompanyName.ClarkeIncorporated, CONSTANTS.CorpFactionRepRequirement), ], rumorReqs: [employedBy(CompanyName.ClarkeIncorporated)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, keepOnInstall: true, }), [FactionName.OmniTekIncorporated]: new FactionInfo({ infoText: <>Simply put, our mission is to design and build robots that make a difference., rumorText: ( <> High-ranking employees of {CompanyName.OmniTekIncorporated} can gain access to proprietary data-processing augmentations. ), inviteReqs: [ employedBy(CompanyName.OmniTekIncorporated), haveCompanyRep(CompanyName.OmniTekIncorporated, CONSTANTS.CorpFactionRepRequirement), ], rumorReqs: [employedBy(CompanyName.OmniTekIncorporated)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, keepOnInstall: true, }), [FactionName.FourSigma]: new FactionInfo({ infoText: ( <> The scientific method is the best way to approach investing. Big strategies backed up with big data. Driven by deep learning and innovative ideas. And improved by iteration. That's {FactionName.FourSigma}. ), rumorText: ( <>High-ranking employees of {CompanyName.FourSigma} can gain access to a range of versatile augmentations. ), inviteReqs: [ employedBy(CompanyName.FourSigma), haveCompanyRep(CompanyName.FourSigma, CONSTANTS.CorpFactionRepRequirement), ], rumorReqs: [employedBy(CompanyName.FourSigma)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, keepOnInstall: true, }), [FactionName.KuaiGongInternational]: new FactionInfo({ infoText: <>Dream big. Work hard. Make history., rumorText: ( <> High-ranking employees of {CompanyName.KuaiGongInternational} can gain access to proprietary dermatech augmentations. ), inviteReqs: [ employedBy(CompanyName.KuaiGongInternational), haveCompanyRep(CompanyName.KuaiGongInternational, CONSTANTS.CorpFactionRepRequirement), ], rumorReqs: [employedBy(CompanyName.KuaiGongInternational)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, keepOnInstall: true, }), // Other Corporations [FactionName.FulcrumSecretTechnologies]: new FactionInfo({ infoText: ( <> The human organism has an innate desire to worship. That is why they created gods. If there were no gods, it would be necessary to create them. And now we can. ), rumorText: ( <> High-ranking employees of {CompanyName.FulcrumTechnologies} may discover a company system with access to proprietary neural network augmentations. ), inviteReqs: [ employedBy(CompanyName.FulcrumTechnologies), haveCompanyRep(CompanyName.FulcrumTechnologies, CONSTANTS.CorpFactionRepRequirement), haveBackdooredServer(SpecialServers.FulcrumSecretTechnologies), ], rumorReqs: [employedBy(CompanyName.FulcrumTechnologies)], offerHackingWork: true, offerSecurityWork: true, keepOnInstall: true, }), // Hacker groups [FactionName.BitRunners]: new FactionInfo({ infoText: ( <> Our entire lives are controlled by bits. All of our actions, our thoughts, our personal information. It's all transformed into bits, stored in bits, communicated through bits. It’s impossible for any person to move, to live, to operate at any level without the use of bits. And when a person moves, lives, and operates, they leave behind their bits, mere traces of seemingly meaningless fragments of information. But these bits can be reconstructed. Transformed. Used.

Those who run the bits, run the world. ), rumorText: <>Run for the hills., inviteReqs: [haveBackdooredServer(SpecialServers.BitRunnersServer)], rumorReqs: [haveFile(MessageFilename.BitRunnersTest)], offerHackingWork: true, }), [FactionName.TheBlackHand]: new FactionInfo({ infoText: ( <> The world, so afraid of strong government, now has no government. Only power - Digital power. Financial power. Technological power. And those at the top rule with an invisible hand. They built a society where the rich get richer, and everyone else suffers.

So much pain. So many lives. Their darkness must end. ), rumorText: <>I.I.I.I, inviteReqs: [haveBackdooredServer(SpecialServers.TheBlackHandServer)], rumorReqs: [haveFile(MessageFilename.Jumper3)], offerHackingWork: true, offerFieldWork: true, }), // prettier-ignore [FactionName.NiteSec]: new FactionInfo({ infoText:(<> {" __..__ "}
{" _.nITESECNIt. "}
{" .-'NITESECNITESEc. "}
{" .' NITESECNITESECn "}
{" / NITESECNITESEC; "}
{" : :NITESECNITESEC; "}
{" ; $ NITESECNITESECN "}
{" : _, ,N'ITESECNITESEC "}
{" : .+^^`, : `NITESECNIT "}
{" ) /), `-,-=,NITESECNI "}
{" / ^ ,-;|NITESECN; "}
{" / _.' '-';NITESECN "}
{" ( , ,-''`^NITE' "}
{" )` :`. .' "}
{" )-- ; `- / "}
{" ' _.-' : "}
{" ( _.-' . "}
{" ------. "}
{" . "}
{" _.nIt "}
{" _.nITESECNi "}
{" nITESECNIT^' "}
{" NITE^' ___ "}
{" / .gP''''Tp. "}
{" : d' . `b "}
{" ; d' o `b ; "}
{" / d; `b| "}
{" /, $; @ `: "}
{" /' $/ ; "}
{" .' $/b o | "}
{" .' d$/$; : "}
{" / .d/$/$; , ; "}
{" d .dNITESEC $ | "}
{" :bp.__.gNITESEC/$ :$ ; "}
{" NITESECNITESECNIT /$b : "}
), rumorText: <>A hacking group known as {FactionName.NiteSec} may recruit you if you impress them with your hacking skills., inviteReqs: [ haveBackdooredServer(SpecialServers.NiteSecServer) ], rumorReqs: [haveFile(MessageFilename.NiteSecTest)], offerHackingWork: true, offerFieldWork: false, offerSecurityWork: false, special: false, keepOnInstall: false, }), [FactionName.CyberSec]: new FactionInfo({ infoText: ( <> The Internet is the first thing that was built that we don't fully understand, the largest experiment in anarchy that we have ever had. And as the world becomes increasingly dominated by it, society approaches the brink of total chaos. We serve only to protect society, to protect humanity, to protect the world from imminent collapse. ), rumorText: ( <> A hacking group known as {FactionName.CyberSec} will invite you to join them if you demonstrate your hacking skills on their server. ), inviteReqs: [haveBackdooredServer(SpecialServers.CyberSecServer)], rumorReqs: [haveFile(MessageFilename.CyberSecTest)], offerHackingWork: true, }), // City factions, essentially governments [FactionName.Aevum]: new FactionInfo({ infoText: <>The Silicon City., rumorText: <>Wealthy residents of {CityName.Aevum} may be invited to work for the Silicon City., enemies: [FactionName.Chongqing, FactionName.NewTokyo, FactionName.Ishima, FactionName.Volhaven], inviteReqs: [locatedInCity(CityName.Aevum), haveMoney(40e6)], rumorReqs: [locatedInCity(CityName.Aevum), haveMoney(20e6)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, }), [FactionName.Chongqing]: new FactionInfo({ infoText: <>Serve the People., rumorText: <>Wealthy residents of {CityName.Chongqing} may be invited to serve the people., enemies: [FactionName.Sector12, FactionName.Aevum, FactionName.Volhaven], inviteReqs: [locatedInCity(CityName.Chongqing), haveMoney(20e6)], rumorReqs: [locatedInCity(CityName.Chongqing), haveMoney(10e6)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, }), [FactionName.Ishima]: new FactionInfo({ infoText: <>The East Asian Order of the Future., rumorText: ( <>Wealthy residents of {CityName.Ishima} may be invited to work for the East Asian Order of the Future. ), enemies: [FactionName.Sector12, FactionName.Aevum, FactionName.Volhaven], inviteReqs: [locatedInCity(CityName.Ishima), haveMoney(30e6)], rumorReqs: [locatedInCity(CityName.Ishima), haveMoney(15e6)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, }), [FactionName.NewTokyo]: new FactionInfo({ infoText: <>Asia's World City., rumorText: <>Wealthy residents of {CityName.NewTokyo} may be invited to work for Asia's World City., enemies: [FactionName.Sector12, FactionName.Aevum, FactionName.Volhaven], inviteReqs: [locatedInCity(CityName.NewTokyo), haveMoney(20e6)], rumorReqs: [locatedInCity(CityName.NewTokyo), haveMoney(10e6)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, }), [FactionName.Sector12]: new FactionInfo({ infoText: <>The City of the Future., rumorText: <>Wealthy residents of {CityName.Sector12} may be invited to work for the City of the Future., enemies: [FactionName.Chongqing, FactionName.NewTokyo, FactionName.Ishima, FactionName.Volhaven], inviteReqs: [locatedInCity(CityName.Sector12), haveMoney(15e6)], rumorReqs: [locatedInCity(CityName.Sector12), haveMoney(7.5e6)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, }), [FactionName.Volhaven]: new FactionInfo({ infoText: <>Benefit, Honor, and Glory., rumorText: ( <>Wealthy residents of {CityName.Volhaven} may be invited to work for the city's Benefit, Honor, and Glory. ), enemies: [FactionName.Chongqing, FactionName.Sector12, FactionName.NewTokyo, FactionName.Aevum, FactionName.Ishima], inviteReqs: [locatedInCity(CityName.Volhaven), haveMoney(50e6)], rumorReqs: [locatedInCity(CityName.Volhaven), haveMoney(25e6)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, }), // Criminal Organizations/Gangs [FactionName.SpeakersForTheDead]: new FactionInfo({ infoText: <>It is better to reign in Hell than to serve in Heaven., rumorText: <>“We know.”, inviteReqs: [ notEmployedBy(CompanyName.CIA), notEmployedBy(CompanyName.NSA), haveSkill("hacking", 100), haveCombatSkills(300), haveKilledPeople(30), haveKarma(-45), ], rumorReqs: [haveKarma(-45), haveSkill("hacking", 50), haveCombatSkills(150), haveKilledPeople(5)], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, }), [FactionName.TheDarkArmy]: new FactionInfo({ infoText: <>The World doesn't care about right or wrong. It only cares about power., rumorText: <>A ruthless criminal organization based in {CityName.Chongqing}, inviteReqs: [ locatedInCity(CityName.Chongqing), notEmployedBy(CompanyName.CIA), notEmployedBy(CompanyName.NSA), haveSkill("hacking", 300), haveCombatSkills(300), haveKilledPeople(5), haveKarma(-45), ], rumorReqs: [ locatedInCity(CityName.Chongqing), haveSkill("hacking", 150), haveCombatSkills(150), haveKilledPeople(1), haveKarma(-45), ], offerHackingWork: true, offerFieldWork: true, }), [FactionName.TheSyndicate]: new FactionInfo({ infoText: <>Honor holds you back., rumorText: <>An elite criminal organization that operates in the western hemisphere, inviteReqs: [ locatedInSomeCity(CityName.Aevum, CityName.Sector12), notEmployedBy(CompanyName.CIA), notEmployedBy(CompanyName.NSA), haveMoney(10e6), haveSkill("hacking", 200), haveCombatSkills(200), haveKarma(-90), ], rumorReqs: [ locatedInSomeCity(CityName.Aevum, CityName.Sector12), haveCombatSkills(100), someCondition([haveKarma(-90), haveFile(LiteratureName.Sector12Crime)]), ], offerHackingWork: true, offerFieldWork: true, offerSecurityWork: true, }), [FactionName.Silhouette]: new FactionInfo({ infoText: ( <> Corporations have filled the void of power left behind by the collapse of Western government. The issue is they've become so big that you don't know who they're working for. And if you're employed at one of these corporations, you don't even know who you're working for.

That's terror. Terror, fear, and corruption. All born into the system, all propagated by the system. ), rumorText: ( <> Corporate executives with the right moral flexiblity may be invited to find out who they are truly working for. ), inviteReqs: [executiveEmployee(), haveMoney(15e6), haveKarma(-22)], rumorReqs: [executiveEmployee()], offerHackingWork: true, offerFieldWork: true, }), [FactionName.Tetrads]: new FactionInfo({ infoText: <>Following the mandate of Heaven and carrying out the way., rumorText: <>A notorious East Asian criminal organization, inviteReqs: [ locatedInSomeCity(CityName.Chongqing, CityName.NewTokyo, CityName.Ishima), haveCombatSkills(75), haveKarma(-18), ], rumorReqs: [ locatedInSomeCity(CityName.Chongqing, CityName.NewTokyo, CityName.Ishima), haveCombatSkills(50), someCondition([haveKarma(-18), haveFile(LiteratureName.NewTriads)]), ], offerFieldWork: true, offerSecurityWork: true, }), [FactionName.SlumSnakes]: new FactionInfo({ infoText: <>{FactionName.SlumSnakes} rule!, rumorText: <>Graffiti seen in the slums: “{FactionName.SlumSnakes} rule!”, inviteReqs: [haveCombatSkills(30), haveMoney(1e6), haveKarma(-9)], rumorReqs: [haveCombatSkills(10), someCondition([haveKarma(-1), haveFile(LiteratureName.Sector12Crime)])], offerFieldWork: true, offerSecurityWork: true, }), // Early game factions - factions the player will prestige with early on that don't belong in other categories. [FactionName.Netburners]: new FactionInfo({ infoText: <>{"~~//*>H4CK|\\|3T 8URN3R5**>?>\\~~"}, rumorText: <>{"~~//*>H4CK|\\|3T 8URN3R5**>?>\\~~"}, inviteReqs: [haveSkill("hacking", 80), totalHacknetRam(8), totalHacknetCores(4), totalHacknetLevels(100)], rumorReqs: [totalHacknetLevels(50)], offerHackingWork: true, }), [FactionName.TianDiHui]: new FactionInfo({ infoText: <>Obey Heaven and work righteously., rumorText: <>A Chinese honor society with the motto: “Obey Heaven and work righteously.”, inviteReqs: [ locatedInSomeCity(CityName.Chongqing, CityName.NewTokyo, CityName.Ishima), haveSkill("hacking", 50), haveMoney(1e6), ], rumorReqs: [ locatedInSomeCity(CityName.Chongqing, CityName.NewTokyo, CityName.Ishima), haveSkill("hacking", 25), haveMoney(0.5e6), ], offerHackingWork: true, offerSecurityWork: true, }), // Special Factions [FactionName.Bladeburners]: new FactionInfo({ infoText: ( <> It's too bad they won't live. But then again, who does?

Note that for this faction, reputation can only be gained through {FactionName.Bladeburners} actions. Completing{" "} {FactionName.Bladeburners} contracts/operations will increase your reputation. ), rumorText: <>The {CompanyName.NSA} would like to have a word with you once you're ready., inviteReqs: [haveSomeSourceFile(6, 7), haveBladeburnerRank(BladeburnerConstants.RankNeededForFaction)], rumorReqs: [haveSomeSourceFile(6, 7)], special: true, assignment: (): React.ReactElement => { return (