< Back

Read-DexEntry

Sat Jan 18, 2020 8:44 pm

NAME Read-DexEntry



SYNOPSIS

Given a Pokemon's number or name, returns and reads a description of the Pokemon aloud.





SYNTAX

Read-DexEntry -Id <Int32> [<CommonParameters>]



Read-DexEntry -Name <String> [<CommonParameters>]





DESCRIPTION

Given a Pokemon's number or name, returns and reads a description of the Pokemon aloud.





PARAMETERS

-Id <Int32>

Pokedex number of the Pokemon



Required? true

Position? named

Default value 0

Accept pipeline input? false

Accept wildcard characters? false



-Name <String>

Name of the Pokemon



Required? true

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS

System.String





NOTES





Currently, the voice functionality only works with Windows Powershell and Powershell Core on macOS



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>Look up a Pokemon by their number



Read-DexEntry -Id 1









-------------------------- EXAMPLE 2 --------------------------



PS C:\\>Look up a Pokemon by their name



Read-DexEntry -Name "Bulbasaur"











RELATED LINKS