mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-18 21:53:50 +01:00
CORP: Industry descriptions shows what each division uses and makes (#272)
This commit is contained in:
parent
7d98c680e5
commit
e90224c63d
@ -284,7 +284,14 @@ export const IndustryDescriptions = (industry: IndustryType, corp: Corporation)
|
||||
const data = IndustriesData[industry];
|
||||
return (
|
||||
<>
|
||||
${data.description}
|
||||
{data.description}
|
||||
<br />
|
||||
<br />
|
||||
Required Materials: {Object.keys(data.requiredMaterials).toString().replace(/,/gi, ", ")}
|
||||
<br />
|
||||
Produces Materials: {data.producedMaterials ? data.producedMaterials.toString().replace(/,/gi, ", ") : "NONE"}
|
||||
<br />
|
||||
Produces products: {data.product ? "YES" : "NO"}
|
||||
<br />
|
||||
<br />
|
||||
Starting cost: <MoneyCost money={data.startingCost} corp={corp} />
|
||||
|
Loading…
Reference in New Issue
Block a user