Pokémon battle simulator.
Go to file
2015-06-11 16:11:00 -06:00
chat-plugins Escape é in /forums command 2015-06-11 14:20:27 -06:00
config Update CC formats 2015-06-10 13:35:39 +04:00
data Fix Kee and Maranga Berries 2015-06-11 13:25:51 -04:00
lib Some cleanup in /modlog 2014-12-09 00:32:11 +01:00
logs standardize "Pokémon" in .md files 2015-06-09 17:21:23 -07:00
mods Merge pull request #1934 from SolarisFox/patch-5 2015-06-10 00:36:27 +00:00
static Changes to static file serving 2013-04-24 20:41:49 -06:00
test Add tests for type-immunity negating moves and items 2015-06-11 13:48:28 -07:00
tournaments Tournaments: add auto start feature 2015-05-06 22:08:59 -05:00
.gitignore Introduce cache for syntax testing. 2015-03-27 21:28:03 +01:00
.travis.yml Introduce cache for syntax testing. 2015-03-27 21:28:03 +01:00
app.js Decrease ResourceMonitor notifications 2015-06-10 20:49:20 -04:00
battle-engine.js Merge pull request #1908 from ascriptmaster/tests 2015-06-09 23:03:37 +00:00
cidr.js More style fixes and Gulpfile updates 2014-08-10 20:43:53 -04:00
command-parser.js Improve PM support in Config.chatfilter 2015-06-05 13:22:53 -04:00
commands.js Slight change to /rangelock message 2015-06-11 15:13:41 +04:00
crashlogger.js Dependant support: make sure that relative paths are resolved properly 2015-05-11 15:38:18 -05:00
dnsbl.js Sync .nohost list 2015-06-06 14:03:10 -04:00
gulpfile.js Introduce cache for syntax testing. 2015-03-27 21:28:03 +01:00
LICENSE License: Update copyright year to include 2015 2015-01-27 23:39:26 -05:00
loginserver.js Encode server tokens in requests 2015-06-07 05:16:29 -05:00
old-simulator-doc.txt Update "Pokemon" to "Pokémon" in old-simulator-doc.txt file 2015-06-11 12:59:17 -06:00
package.json Update package.json license 2015-06-05 13:28:11 -04:00
Procfile Make Procfile specify Heroku's desired port 2012-05-16 19:31:02 -05:00
PROTOCOL.md standardize "Pokémon" in .md files 2015-06-09 17:21:23 -07:00
README.md Credits: Fix order 2015-05-06 22:07:00 -05:00
repl.js Fix wrong default path in repl.js 2014-12-15 12:07:33 +01:00
rooms.js Refactor /join and /autojoin 2015-06-10 20:49:20 -04:00
simulator-doc.txt Add "Pokémon" in simulator-doc.txt 2015-06-11 16:11:00 -06:00
simulator.js Slightly more console output 2015-05-12 02:33:07 -04:00
sockets.js Dependant support: make sure that relative paths are resolved properly 2015-05-11 15:38:18 -05:00
team-validator.js Avoid team validator crash 2015-06-05 19:21:00 +02:00
tools.js Style fix: indexOf() comparisons 2015-05-18 15:55:57 -07:00
users.js Fix build error 2015-06-10 21:24:12 -04:00
verifier.js Dependant support: make sure that relative paths are resolved properly 2015-05-11 15:38:18 -05:00

Pokémon Showdown

Navigation: Website | Server repository | Client repository

Build Status Dependency Status devDependency Status

Introduction

This is the source code for the game server of Pokémon Showdown, a website for Pokémon battling. Pokémon Showdown simulates singles, doubles and triples battles in all the games out so far (Generations 1 through 6).

This repository contains the files needed to set up your own Pokémon Showdown server. Note that to set up a server, you'll also need a server computer.

You can use your own computer as a server, but for other people to connect to your computer, you'll need to expose a port (default is 8000 but you can choose a different one) to connect to, which sometimes requires port forwarding (note that this isn't possible on certain internet connections).

Installing

Pokémon Showdown requires you to have io.js installed, any version. (Alternatively, you can install node.js version 0.10.2 or later.)

Next, obtain a copy of Pokémon Showdown. If you're reading this outside of GitHub, you've probably already done this. If you're reading this in GitHub, there's a "Clone" button in the bottom of the right sidebar, or if you're really lazy, there's a "ZIP" download button. I recommend the Clone method - it's more time-consuming to set up, but much easier to update.

Pokémon Showdown is installed and run using a command line. In Mac OS X, open Terminal (it's in Utilities). In Windows, open Command Prompt (type cmd into the Start menu and it should be the first result). Type this into the command line:

cd LOCATION

Replace LOCATION with the location Pokémon Showdown is in (ending up with, for instance, cd "~/Downloads/Pokemon-Showdown" or cd "C:\Users\Bob\Downloads\Pokemon-Showdown\").

This will set your command line's location to Pokémon Showdown's folder. You'll have to do this each time you open a command line to run commands for Pokémon Showdown.

To install dependencies, run the command:

npm install --production

Copy config/config-example.js into config/config.js, and edit as you please.

Congratulations, you're done setting up Pokémon Showdown.

Now, to start Pokémon Showdown, run the command:

node app.js

You can also specify a port:

node app.js 8000

Visit your server at http://SERVER:8000

Replace SERVER with your server domain or IP. Replace 8000 with your port if it's not 8000 (the default port).

Yes, you can test even if you are behind a NAT without port forwarding: http://localhost:8000 will connect to your local machine. Some browser setups might prevent this sort of connection, however (NoScript, for instance). If you can't get connecting locally to work in Firefox, try Chrome.

You will be redirected to http://SERVER.psim.us. The reason your server is visited through psim.us is to make it more difficult for servers to see a user's password in any form, by handling logins globally. You can embed this in an iframe in your website if the URL is a big deal with you.

If you truly want to host the client yourself, there is a repository for the Pokémon Showdown Client. It's not recommended for beginners, though.

Setting up an Administrator account

Once your server is up, you probably want to make yourself an Administrator (~) on it.

config/usergroups.csv

To become an Administrator, create a file named config/usergroups.csv containing

USER,~

Replace USER with the username that you would like to become an Administrator. Do not put a space between the comma and the tilde.

This username must be registered. If you do not have a registered account, you can create one using the Register button in the settings menu (it looks like a gear) in the upper-right of Pokémon Showdown.

Once you're an administrator, you can promote/demote others easily with the /admin, /leader, /mod, etc commands.

Browser support

Pokémon Showdown currently supports, in order of preference:

  • Chrome
  • Firefox
  • Safari
  • Chrome/Firefox/Safari for various mobile devices
  • Opera
  • Firefox for Android
  • IE9+

IE8 support can technically be added without too much difficulty, but it doesn't run PS fast enough to be usable.

As for older browsers (Firefox 3.6), I won't go out of my way to support them, but if there's a simple fix, you can suggest it to me and I'll implement it.

Community

PS has a built-in chat service. Join our main server to talk to us!

You can also visit the Pokémon Showdown forums for discussion and help.

License

Pokémon Showdown's server is distributed under the terms of the MIT License.

Credits

Owner

  • Guangcong Luo [Zarel] - Development, Design

Staff

  • Hugh Gordon [V4] - Research (game mechanics), Development
  • Juanma Serrano [Joim] - Development
  • Leonardo Julca [Slayer95] - Development
  • [The Immortal] - Development

Retired Staff

  • Bill Meltsner [bmelts] - Development
  • Cathy J. Fitzpatrick [cathyjf] - Development

Contributors

  • Andrew Goodsell [Zracknel] - Art (battle weather backdrops)
  • Ben Davies [Morfent] - Development
  • Ben Frengley [TalkTakesTime] - Development
  • Cody Thompson [Rising_Dusk] - Development
  • Jacob Zimmer [SolarisFox] - Development
  • Kevin Lau [Ascriptmaster] - Development
  • Konrad Borowski [xfix] - Development
  • Kyle Dove [Kyle_Dove] - Art (battle backdrops)
  • Mathieu Dias-Martins [Marty-D] - Research (game mechanics), Development
  • Quinton Lee [sirDonovan] - Development
  • Robin Vandenbrande [Quinella] - Development
  • Samuel Teo [Yilx] - Art (main background)
  • Vivian Zou [Vtas] - Art (alternate main background)