Class PokemonArt

java.lang.Object
ASCIIArt.PokemonArt

public class PokemonArt extends Object
Provides ASCII art representations for Pokémon and related visual assets.

All ASCII art contained in this class is sourced from external contributors and is credited here: https://www.asciiart.eu/video-games/pokemon

Each Pokémon (or related graphic) is represented by a public static String field containing its ASCII art. These fields are intended to be used throughout the application to display Pokémon visuals in console output.

Example usage:


 System.out.println(PokemonArt.pikachuArt);
 
  • Field Details

    • pokemonLogoArt

      public static String pokemonLogoArt
      ASCII art representation of the Pokémon logo.
    • charizardArt

      public static String charizardArt
      ASCII art representation of the Pokémon Charizard.
    • charmeleonArt

      public static String charmeleonArt
      ASCII art representation of the Pokémon Charmeleon.
    • charmanderArt

      public static String charmanderArt
      ASCII art representation of the Pokémon Charmander.
    • venusaurArt

      public static String venusaurArt
      ASCII art representation of the Pokémon Venusaur.
    • ivysaurArt

      public static String ivysaurArt
      ASCII art representation of the Pokémon Ivysaur.
    • bulbasaurArt

      public static String bulbasaurArt
      ASCII art representation of the Pokémon Bulbasaur.
    • blastoiseArt

      public static String blastoiseArt
      ASCII art representation of the Pokémon Blastoise.
    • wartortleArt

      public static String wartortleArt
      ASCII art representation of the Pokémon Wartortle.
    • squirtleArt

      public static String squirtleArt
      ASCII art representation of the Pokémon Squirtle.
    • raichuArt

      public static String raichuArt
      Placeholder ASCII art for the Pokémon Raichu.

      This field currently contains placeholder text and should be replaced with a valid Raichu ASCII art representation once an appropriate source has been identified.

    • pikachuArt

      public static String pikachuArt
      ASCII art representation of the Pokémon Pikachu.
  • Constructor Details

    • PokemonArt

      public PokemonArt()