From 130b4d2ec2fd2bca1057062fce18038c977b3534 Mon Sep 17 00:00:00 2001 From: sighrelief <109490212+sighrelief@users.noreply.github.com> Date: Wed, 14 May 2025 01:02:41 -0500 Subject: [PATCH] pokeget: add page (#16458) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages/common/pokeget.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/pokeget.md diff --git a/pages/common/pokeget.md b/pages/common/pokeget.md new file mode 100644 index 0000000000..8eac765b70 --- /dev/null +++ b/pages/common/pokeget.md @@ -0,0 +1,28 @@ +# pokeget + +> Display sprites of Pokemon in your terminal. +> More information: . + +- Print a sprite of a given pokemon: + +`pokeget {{pokemon_name}}` + +- Print Mr. Mime (note the use of `-` instead of spaces): + +`pokeget mr-mime` + +- Print Mega Gengar: + +`pokeget gengar {{[-m|--mega]}}` + +- Print a random shiny Pokemon: + +`pokeget random {{[-s|--shiny]}}` + +- Print Alolan Meowth, without printing the Pokemon's name: + +`pokeget meowth {{[-a|--alolan]}} --hide-name` + +- Print a random Pokemon with 1/4096 chance to be shiny: + +`((RANDOM%4096 == 0)) && pokeget random --shiny || pokeget random`