io.github.pidoveproject.showdown.team.Team.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-showdown-api_3 Show documentation
Show all versions of scala-showdown-api_3 Show documentation
A Scala wrapper of Pokemon Showdown's API
The newest version!
package io.github.pidoveproject.showdown.team
/**
* A pokemon team set, like in Showdown's team builder.
*
* @param name the name of the team
* @param tier the tier this team is made for
* @param sets the pokemon sets of this team.
*/
case class Team(name: TeamName, tier: Tier, sets: PokemonSets)