Pokémon battle simulator.
Go to file
2015-12-31 19:10:53 +01:00
chat-plugins Merge pull request #2345 from bumbadadabum/mafia 2015-12-25 02:40:49 +00:00
config AAA: Ban Illusion and Shadow Tag 2015-12-31 04:09:34 +04:00
data Random Battle improvements 2015-12-31 21:10:09 +04:00
dev-tools Only enable certain ES6 features during ESLint test 2015-12-10 23:07:32 +01:00
lib
logs Replace 'this.sendReply' with 'this.errorReply' in some cases 2015-09-27 19:16:39 -06:00
mods Allow shiny Manaphy 2015-12-30 18:26:06 -05:00
static Improve static files 2015-09-25 17:55:14 -06:00
test Prevent IV values that represent half of a DV 2015-12-30 15:32:40 +00:00
tournaments Merge pull request #2338 from ascriptmaster/chat 2015-12-22 08:17:30 +00:00
.gitattributes Normalize file endings when committing. 2015-12-31 19:10:53 +01:00
.gitignore Migrate build system to ESLint 2015-11-07 21:36:49 -05:00
.travis.yml Migrate build system to ESLint 2015-11-07 21:36:49 -05:00
app.js Make tools.js stand alone 2015-12-24 02:55:52 -06:00
battle-engine.js Remove forme name from default nickname 2015-12-30 22:11:46 -05:00
cidr.js Remove some unused variables 2015-11-07 23:05:55 -06:00
command-parser.js Allow style tags on buttons in private roomintros 2015-12-30 15:49:32 -05:00
commands.js Allow any confirmed user to make groupchats 2015-12-30 15:50:04 -05:00
crashlogger.js Replace remaining instances of var by block bindings 2015-12-03 19:45:35 -05:00
dnsbl.js Convert DNSBL cache to ES6 Maps 2015-12-10 10:57:59 -05:00
ladders-remote.js Improve commenting 2015-12-02 22:14:23 -06:00
ladders.js Don't show debug message when loading empty ladder 2015-12-04 15:05:51 -05:00
LICENSE
loginserver.js Migrate build system to ESLint 2015-11-07 21:36:49 -05:00
monitor.js Use Rooms() instead of Rooms.get() 2015-12-11 19:12:00 -05:00
old-simulator-doc.txt
package.json Test: use mock-fs to sandbox the file system 2015-12-20 03:22:02 -05:00
Procfile
PROTOCOL.md Update documentation of -ability message protocol 2015-07-27 15:16:52 -07:00
README.md Update README instructions for new GitHub layout 2015-12-01 15:02:56 -06:00
repl.js Prefer ES6 octal literals to string form 2015-11-08 08:57:50 +01:00
room-game.js Fix crash when RoomGame#onConnect doesn't exist 2015-12-11 19:04:53 -05:00
rooms.js Remove unused merging parameter passed to Room#onJoin 2015-12-19 23:32:05 -05:00
simulator-doc.txt Remove [InterruptMove] 2015-06-11 19:12:45 -06:00
simulator.js Ensure players get up-to-date HP information 2015-12-09 06:24:58 -05:00
sockets.js Fix some minor bugs in battle log retrieval 2015-12-13 02:34:25 -05:00
team-validator.js Remove forme name from default nickname 2015-12-30 22:11:46 -05:00
tools.js Make tools.js stand alone 2015-12-24 02:55:52 -06:00
users.js Remove unused merging parameter passed to Room#onJoin 2015-12-19 23:32:05 -05:00
verifier.js Use strict mode and let and const instead of var 2015-11-06 21:56:52 -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 Node.js installed, 4.x or later. (Alternatively, most versions of io.js also work, but is not recommended.)

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 "Save" icon button near the top right (next to "Download ZIP"), or if you're really lazy, you can use the "Download ZIP" button. I recommend the Save 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, Sysadmin

Staff

  • Chris Monsanto [chaos] - Sysadmin
  • Hugh Gordon [V4] - Research (game mechanics), Development
  • Juanma Serrano [Joim] - Development, Sysadmin
  • Leonardo Julca [Slayer95] - Development
  • Mathieu Dias-Martins [Marty-D] - Research (game mechanics), Development
  • [The Immortal] - Development

Retired Staff

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

Major Contributors

  • Kevin Lau [Ascriptmaster] - Development, Art (battle animations)
  • Konrad Borowski [xfix] - Development
  • Quinton Lee [sirDonovan] - Development

Contributors

  • Andrew Goodsell [Zracknel] - Art (battle weather backdrops)
  • Bär Halberkamp [bumbadadabum] - Development
  • Ben Davies [Morfent] - Development
  • Ben Frengley [TalkTakesTime] - Development
  • Cody Thompson [Rising_Dusk] - Development
  • Ian Clail [Layell] - Art (battle graphics, sprites)
  • Jacob Zimmer [SolarisFox] - Development
  • Neil Rashbrook [urkerab] - Development
  • Robin Vandenbrande [Quinella] - Development

Special thanks