diff --git a/src/Infiltration/ui/BribeGame.tsx b/src/Infiltration/ui/BribeGame.tsx index ea6ac5773..f8e02cfdd 100644 --- a/src/Infiltration/ui/BribeGame.tsx +++ b/src/Infiltration/ui/BribeGame.tsx @@ -152,6 +152,7 @@ const positive = [ "patient", "dynamic", "loyal", + "based", ]; const negative = [ @@ -175,4 +176,5 @@ const negative = [ "picky", "tactless", "thoughtless", + "cringe", ]; diff --git a/src/Infiltration/ui/Game.tsx b/src/Infiltration/ui/Game.tsx index 22eb08049..f11e2e632 100644 --- a/src/Infiltration/ui/Game.tsx +++ b/src/Infiltration/ui/Game.tsx @@ -1,5 +1,6 @@ import { Button, Container, Paper, Typography } from "@mui/material"; import React, { useState } from "react"; +import { Location } from "../../Locations/Location"; import { AugmentationNames } from "../../Augmentation/data/AugmentationNames"; import { use } from "../../ui/Context"; import { BackwardGame } from "./BackwardGame"; @@ -139,9 +140,11 @@ export function Game(props: IProps): React.ReactElement { return ( - + {stage !== Stage.Sell && ( + + )} Level {level} / {props.MaxLevel} diff --git a/src/Infiltration/ui/Victory.tsx b/src/Infiltration/ui/Victory.tsx index 2a90351a0..aec8b3bdb 100644 --- a/src/Infiltration/ui/Victory.tsx +++ b/src/Infiltration/ui/Victory.tsx @@ -1,13 +1,8 @@ import { Factions } from "../../Faction/Factions"; import React, { useState } from "react"; -import Grid from "@mui/material/Grid"; import { Money } from "../../ui/React/Money"; import { Reputation } from "../../ui/React/Reputation"; import { use } from "../../ui/Context"; -import Typography from "@mui/material/Typography"; -import Button from "@mui/material/Button"; -import MenuItem from "@mui/material/MenuItem"; -import Select, { SelectChangeEvent } from "@mui/material/Select"; import { FactionNames } from "../../Faction/data/FactionNames"; import { formatNumber } from "../../utils/StringHelperFunctions"; import { @@ -16,6 +11,8 @@ import { calculateTradeInformationRepReward, } from "../formulas/victory"; import { inviteToFaction } from "../../Faction/FactionHelpers"; +import { Button, MenuItem, Select, SelectChangeEvent, Paper, Typography, Box } from "@mui/material"; +import { Location } from "../../Locations/Location"; interface IProps { StartingDifficulty: number; @@ -66,24 +63,22 @@ export function Victory(props: IProps): React.ReactElement { } return ( - <> - - - Infiltration successful! - - - - You{" "} - {isMemberOfInfiltrators ? ( - <> - have gained {formatNumber(infiltrationRepGain, 2)} rep for {FactionNames.ShadowsOfAnarchy} and{" "} - - ) : ( - <> - )} - can trade the confidential information you found for money or reputation. - - {"none"} @@ -98,17 +93,15 @@ export function Victory(props: IProps): React.ReactElement { - - - - - - - - - + + + + + ); }