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"` }