/** * Simulator process * Pokemon Showdown - http://pokemonshowdown.com/ * * This file is where the battle simulation itself happens. * * The most important part of the simulation happens in runEvent - * see that function's definition for details. * * @license MIT */ export {Battle} from './battle'; export {BattleStream} from './battle-stream'; export {Dex} from './dex'; export {Pokemon} from './pokemon'; export {PRNG} from './prng'; export {Side} from './side'; export {TeamValidator} from './team-validator';