pokemon-showdown-client/config/config-example.js
2020-09-06 17:48:04 -07:00

35 lines
837 B
JavaScript

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'
};