/** * React component for general information about the faction. This includes the * factions "motto", reputation, favor, and gameplay instructions */ import React from "react"; import { Faction } from "../Faction"; import { FactionInfo } from "../FactionInfo"; import { Reputation } from "../../ui/React/Reputation"; import { Favor } from "../../ui/React/Favor"; import { MathJax } from "better-react-mathjax"; import makeStyles from "@mui/styles/makeStyles"; import createStyles from "@mui/styles/createStyles"; import Typography from "@mui/material/Typography"; import Tooltip from "@mui/material/Tooltip"; import Box from "@mui/material/Box"; import { useRerender } from "../../ui/React/hooks"; type IProps = { faction: Faction; factionInfo: FactionInfo; }; const useStyles = makeStyles(() => createStyles({ noformat: { whiteSpace: "pre-wrap", lineHeight: "1em", }, }), ); function DefaultAssignment(): React.ReactElement { return ( Perform work/carry out assignments for your faction to help further its cause! By doing so you will earn reputation for your faction. You will also gain reputation passively over time, although at a very slow rate. Earning reputation will allow you to purchase Augmentations through this faction, which are powerful upgrades that enhance your abilities. ); } export function Info(props: IProps): React.ReactElement { useRerender(200); const classes = useStyles(); const Assignment = props.factionInfo.assignment ?? DefaultAssignment; const favorGain = props.faction.getFavorGain(); return ( <> {props.factionInfo.infoText} ------------------------- You will have faction favor after installing an Augmentation. {"\\(\\huge{r = \\text{total faction reputation}}\\)"} {"\\(\\huge{favor=1+\\left\\lfloor\\log_{1.02}\\left(\\frac{r+25000}{25500}\\right)\\right\\rfloor}\\)"} } > Reputation: ------------------------- Faction favor increases the rate at which you earn reputation for this faction by 1% per favor. Faction favor is gained whenever you install an Augmentation. The amount of favor you gain depends on the total amount of reputation you earned with this faction. Across all resets. {"\\(\\huge{r = reputation}\\)"} {"\\(\\huge{\\Delta r = \\Delta r \\times \\frac{100+favor}{100}}\\)"} } > Faction Favor: ------------------------- ); }