mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-03-21 17:50:29 -05:00
Some checks failed
Node.js CI / build (22.x) (push) Has been cancelled
(Also remove a bunch of global types)
36 lines
914 B
JavaScript
36 lines
914 B
JavaScript
/** @type {import('../play.pokemonshowdown.com/src/client-main').PSConfig} */
|
|
var Config = Config || {};
|
|
|
|
/* version */ Config.version = "0";
|
|
|
|
Config.bannedHosts = ['cool.jit.su', 'pokeball-nixonserver.rhcloud.com'];
|
|
|
|
Config.whitelist = [
|
|
'wikipedia.org'
|
|
|
|
// The full list is maintained outside of this repository so changes to it
|
|
// don't clutter the commit log. Feel free to copy our list for your own
|
|
// purposes; it's here: https://play.pokemonshowdown.com/config/config.js
|
|
|
|
// If you would like to change our list, simply message Zarel on Smogon or
|
|
// Discord.
|
|
];
|
|
|
|
// `defaultserver` specifies the server to use when the domain name in the
|
|
// address bar is `Config.routes.client`.
|
|
Config.defaultserver = {
|
|
id: 'showdown',
|
|
host: 'sim3.psim.us',
|
|
port: 443,
|
|
httpport: 8000,
|
|
altport: 80,
|
|
registered: true
|
|
};
|
|
|
|
Config.roomsFirstOpenScript = function () {
|
|
};
|
|
|
|
Config.customcolors = {
|
|
'zarel': 'aeo'
|
|
};
|