14 lines
278 B
Go
14 lines
278 B
Go
package models
|
|
|
|
// CardAbility Describes a single ability of a pokemon.
|
|
type CardAbility struct {
|
|
// Ability type (language dependant).
|
|
Type string `json:"type"`
|
|
|
|
// Name of the ability.
|
|
Name string `json:"name"`
|
|
|
|
// Effect of the ability.
|
|
Effect string `json:"effect"`
|
|
}
|