bitburner-src/src/Bladeburner/ui/BlackOpPage.tsx

29 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-06-18 22:22:12 +02:00
import * as React from "react";
import { BlackOpList } from "./BlackOpList";
import { IBladeburner } from "../IBladeburner";
2021-08-16 07:35:05 +02:00
import { IPlayer } from "../../PersonObjects/IPlayer";
2021-08-23 17:42:14 +02:00
import { CopyableText } from "../../ui/React/CopyableText";
2021-06-18 22:22:12 +02:00
interface IProps {
bladeburner: IBladeburner;
2021-08-16 07:35:05 +02:00
player: IPlayer;
2021-06-18 22:22:12 +02:00
}
export function BlackOpPage(props: IProps): React.ReactElement {
return (<>
<p style={{display: 'block', margin: '4px', padding: '4px'}}>
Black Operations (Black Ops) are special, one-time covert operations.
Each Black Op must be unlocked successively by completing
the one before it.
<br />
<br />
<b>Your ultimate goal to climb through the ranks of Bladeburners is to complete
all of the Black Ops.</b>
<br />
<br />
Like normal operations, you may use a team for Black Ops. Failing
a black op will incur heavy HP and rank losses.
</p>
2021-08-16 07:35:05 +02:00
<BlackOpList bladeburner={props.bladeburner} player={props.player} />
2021-06-18 22:22:12 +02:00
</>);
}