Uses of Class
card.Card

Packages that use Card
Package
Description
This package contains classes related to Energy cards in the Pokémon Trading Card Game (TCG) emulation.
This package contains all the energy cards in the game.
This package contains the classes related to Pokémon cards in the Pokémon Trading Card Game (TCG) emulation.
This pacakge contains all the Pokémon cards in the game.
This package contains classes related to Trainer cards in the Pokémon Trading Card Game (TCG) emulation.
This package contains all the trainer cards in the game.
This package contains the classes for the various piles used in the Pokémon Trading Card Game (TCG) emulation.
This package contains the classes for the different piles in the game.
  • Uses of Card in card.energy

    Subclasses of Card in card.energy
    Modifier and Type
    Class
    Description
    class 
    This class represents an Energy card in the Pokémon Trading Card Game.
  • Uses of Card in card.energy.energycards

    Subclasses of Card in card.energy.energycards
    Modifier and Type
    Class
    Description
    class 
    This class represents a "Double Colorless Energy" card in the Pokémon Trading Card Game.
    class 
    This class represents a "Fighting Energy" card in the Pokémon Trading Card Game.
    class 
    This class represents a "Fire Energy" card in the Pokémon Trading Card Game.
    class 
    This class represents a "Grass Energy" card in the Pokémon Trading Card Game.
    class 
    This class represents a "Lightning Energy" card in the Pokémon Trading Card Game.
    class 
    This class represents a "Psychic Energy" card in the Pokémon Trading Card Game.
    class 
    This class represents a "Water Energy" card in the Pokémon Trading Card Game.
  • Uses of Card in card.pokemon

    Subclasses of Card in card.pokemon
    Modifier and Type
    Class
    Description
    class 
    This class represents a Pokémon card in the Pokémon Trading Card Game.
  • Uses of Card in card.pokemon.pokemoncards

    Modifier and Type
    Class
    Description
    class 
    This class represents a "Diglett" Pokémon card in the Pokémon Trading Card Game.
    class 
    This class represents a "Dratini" Pokémon card in the Pokémon Trading Card Game.
    class 
    This class represents a "Growlithe" Pokémon card in the Pokémon Trading Card Game.
    class 
    This class represents a "Hitmonchan" Pokémon card in the Pokémon Trading Card Game.
    class 
    This class represents a "Machop" Pokémon card in the Pokémon Trading Card Game.
    class 
    This class represents a "Ponyta" Pokémon card in the Pokémon Trading Card Game.
    class 
    This class represents a "Rattata" Pokémon card in the Pokémon Trading Card Game.
    class 
    This class represents a "Seel" Pokémon card in the Pokémon Trading Card Game.
    class 
    This class represents a "Staryu" Pokémon card in the Pokémon Trading Card Game.
  • Uses of Card in card.trainer

    Subclasses of Card in card.trainer
    Modifier and Type
    Class
    Description
    class 
    This class represents a Trainer card in the Pokémon Trading Card Game.
  • Uses of Card in card.trainer.trainercards

    Modifier and Type
    Class
    Description
    class 
    This class represents the Trainer card "Bill" in the Pokémon Trading Card Game.
    class 
    This class represents the Trainer card "Professor Oak" in the Pokémon Trading Card Game.
  • Uses of Card in pile

    Fields in pile with type parameters of type Card
    Modifier and Type
    Field
    Description
    protected List<Card>
    Pile.cards
    The list of cards in the pile.
    Methods in pile that return Card
    Modifier and Type
    Method
    Description
    Pile.drawCard()
    Draws a card from the top of the pile and decrements the size of the pile it is drawn from.
    Pile.getCardAtIndex(int index)
    Returns the card at the specified index in the pile.
    Methods in pile that return types with arguments of type Card
    Modifier and Type
    Method
    Description
    Pile.getCards()
    Returns the list of cards in the pile.
    Methods in pile with parameters of type Card
    Modifier and Type
    Method
    Description
    void
    Pile.addCard(Card card)
    Adds a card to the pile and increments the size of the pile.
    void
    Pile.removeCard(Card card)
    Removes a card from the pile and decrements the size of the pile.
  • Uses of Card in pile.piles

    Methods in pile.piles that return Card
    Modifier and Type
    Method
    Description
    Hand.playCard(Card card)
    Plays a card from the player's hand and removes it from the hand.
    Methods in pile.piles with parameters of type Card
    Modifier and Type
    Method
    Description
    Hand.playCard(Card card)
    Plays a card from the player's hand and removes it from the hand.