feat: init client
This commit is contained in:
13
models/card_ability.go
Normal file
13
models/card_ability.go
Normal file
@@ -0,0 +1,13 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user