import * as React from "react"; import { BlackOpList } from "./BlackOpList"; import { IBladeburner } from "../IBladeburner"; import Typography from "@mui/material/Typography"; import { FactionNames } from "../../Faction/data/FactionNames"; import { Router } from "../../ui/GameRoot"; import { BlackOperationNames } from "../data/BlackOperationNames"; import { Button } from "@mui/material"; import { CorruptableText } from "../../ui/React/CorruptableText"; interface IProps { bladeburner: IBladeburner; } export function BlackOpPage(props: IProps): React.ReactElement { return ( <> Black Operations (Black Ops) are special, one-time covert operations. Each Black Op must be unlocked successively by completing the one before it.

Your ultimate goal to climb through the ranks of {FactionNames.Bladeburners} is to complete all of the Black Ops.

Like normal operations, you may use a team for Black Ops. Failing a black op will incur heavy HP and rank losses.
{props.bladeburner.blackops[BlackOperationNames.OperationDaedalus] ? ( ) : ( )} ); }