PlayerTeam

io.github.pidoveproject.showdown.battle.PlayerTeam
case class PlayerTeam(size: Count, members: Map[TeamSlot, TeamMember])

The pokemon team of a player.

Value parameters

members

the pokemon members of the team

size

the size of the team

Attributes

Source
PlayerTeam.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Inherited
  • Not inherited
  • Product

Value members

Concrete methods

Get the first available team slot

Get the first available team slot

Attributes

Source
PlayerTeam.scala
def getPokemon(slot: TeamSlot): Option[TeamMember]

Get the pokemon at the given slot.

Get the pokemon at the given slot.

Value parameters

slot

the slot to get from

Attributes

Returns

the pokemon at slot

Source
PlayerTeam.scala
def getSlotByDetails(details: PokemonDetails): Option[TeamSlot]

Retrieve the slot of a pokemon using its details.

Retrieve the slot of a pokemon using its details.

Value parameters

details

the details to identify the pokemon

Attributes

Returns

the matching pokemon's slot or None

Source
PlayerTeam.scala

Replace the details of a team member.

Replace the details of a team member.

Value parameters

details

the new details of the pokemon

slot

the position of the pokemon to modify

Attributes

Returns

a copy of this team with the given details

Source
PlayerTeam.scala
def withPokemon(slot: TeamSlot, pokemon: TeamMember): PlayerTeam

Set the member at the given slot.

Set the member at the given slot.

Value parameters

pokemon

the pokemon to set

slot

the slot to modify

Attributes

Returns

a copy of this team with the given pokemon added

Source
PlayerTeam.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product