mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-06 07:37:56 +02:00
BITNODE: IPvGO territory control strategy game (#934)
This commit is contained in:
committed by
GitHub
parent
c6141f2adf
commit
7ef12a0323
@@ -184,7 +184,7 @@ export const LocationsMetadata: IConstructorParams[] = [
|
||||
startingSecurityLevel: 7.18,
|
||||
},
|
||||
name: LocationName.NewTokyoDefComm,
|
||||
types: [LocationType.Company],
|
||||
types: [LocationType.Company, LocationType.Special],
|
||||
},
|
||||
{
|
||||
city: CityName.NewTokyo,
|
||||
@@ -241,7 +241,7 @@ export const LocationsMetadata: IConstructorParams[] = [
|
||||
{
|
||||
city: CityName.Sector12,
|
||||
name: LocationName.Sector12CIA,
|
||||
types: [LocationType.Company],
|
||||
types: [LocationType.Company, LocationType.Special],
|
||||
},
|
||||
{
|
||||
city: CityName.Sector12,
|
||||
|
||||
@@ -331,6 +331,17 @@ export function SpecialLocation(props: SpecialLocationProps): React.ReactElement
|
||||
case LocationName.NewTokyoArcade: {
|
||||
return <ArcadeRoot />;
|
||||
}
|
||||
case LocationName.Sector12CIA:
|
||||
case LocationName.NewTokyoDefComm: {
|
||||
return (
|
||||
<>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<Button onClick={() => Router.toPage(Page.Go)}>IPvGO Subnet Takeover</Button>
|
||||
</>
|
||||
);
|
||||
}
|
||||
default:
|
||||
console.error(`Location ${props.loc.name} doesn't have any special properties`);
|
||||
return <></>;
|
||||
|
||||
Reference in New Issue
Block a user