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

23 lines
916 B
TypeScript
Raw Normal View History

2021-06-18 22:22:12 +02:00
import * as React from "react";
import { ContractList } from "./ContractList";
import { IBladeburner } from "../IBladeburner";
2021-08-16 07:35:05 +02:00
import { IPlayer } from "../../PersonObjects/IPlayer";
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 ContractPage(props: IProps): React.ReactElement {
return (<>
<p style={{display: 'block', margin: '4px', padding: '4px'}}>
Complete contracts in order to increase your Bladeburner rank and earn money.
Failing a contract will cause you to lose HP, which can lead to hospitalization.
<br />
<br />
You can unlock higher-level contracts by successfully completing them.
Higher-level contracts are more difficult, but grant more rank, experience, and money.
</p>
2021-08-16 07:35:05 +02:00
<ContractList bladeburner={props.bladeburner} player={props.player} />
2021-06-18 22:22:12 +02:00
</>);
}