mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-23 22:52:29 +01:00
28 lines
929 B
JavaScript
28 lines
929 B
JavaScript
/* Holds IP of Special Servers */
|
|
SpecialServerNames = {
|
|
FulcrumSecretTechnologies: "Fulcrum Secret Technologies Server",
|
|
CyberSecServer: "CyberSec Server",
|
|
NiteSecServer: "NiteSec Server",
|
|
TheBlackHandServer: "The Black Hand Server",
|
|
BitRunnersServer: "BitRunners Server",
|
|
TheDarkArmyServer: "The Dark Army Server",
|
|
DaedalusServer: "Daedalus Server",
|
|
WorldDaemon: "w0r1d_d43m0n",
|
|
}
|
|
function SpecialServerIpsMap() {}
|
|
|
|
SpecialServerIpsMap.prototype.addIp = function(name, ip) {
|
|
this[name] = ip;
|
|
}
|
|
|
|
SpecialServerIpsMap.prototype.toJSON = function() {
|
|
return Generic_toJSON("SpecialServerIpsMap", this);
|
|
}
|
|
|
|
SpecialServerIpsMap.fromJSON = function(value) {
|
|
return Generic_fromJSON(SpecialServerIpsMap, value.data);
|
|
}
|
|
|
|
Reviver.constructors.SpecialServerIpsMap = SpecialServerIpsMap();
|
|
|
|
SpecialServerIps = null; |