contests

package
v0.7.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 12, 2023 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Effect

type Effect struct {
	// The unique identifier for the effect.
	Id int `json:"id"`

	// The appeal value of the effect.
	Appeal int `json:"appeal"`

	// The jam value of the effect.
	Jam int `json:"jam"`

	// Effect entries associated with the effect.
	EffectEntries []struct {
		// The description of the effect.
		Effect string `json:"effect"`

		// Information about the language of the effect description.
		Language struct {
			// The name of the language.
			Name string `json:"name"`

			// The URL to access detailed information about the language.
			Url string `json:"url"`
		} `json:"language"`
	} `json:"effect_entries"`

	// Flavor text entries associated with the effect.
	FlavorTextEntries []struct {
		// The flavor text description.
		FlavorText string `json:"flavor_text"`

		// Information about the language of the flavor text.
		Language struct {
			// The name of the language.
			Name string `json:"name"`

			// The URL to access detailed information about the language.
			Url string `json:"url"`
		} `json:"language"`
	} `json:"flavor_text_entries"`
}

type SuperEffect

type SuperEffect struct {
	// The unique identifier for the super effect.
	Id int `json:"id"`

	// The appeal of the super effect.
	Appeal int `json:"appeal"`

	// Flavor text entries associated with the super effect.
	FlavorTextEntries []struct {
		// The flavor text description.
		FlavorText string `json:"flavor_text"`

		// Information about the language of the flavor text.
		Language struct {
			// The name of the language.
			Name string `json:"name"`

			// The URL to access detailed information about the language.
			Url string `json:"url"`
		} `json:"language"`
	} `json:"flavor_text_entries"`

	// Moves associated with this super effect.
	Moves []struct {
		// The name of the move.
		Name string `json:"name"`

		// The URL to access detailed information about the move.
		Url string `json:"url"`
	} `json:"moves"`
}

type Type

type Type struct {
	// The unique identifier for the type.
	Id int `json:"id"`

	// The name of the type.
	Name string `json:"name"`

	// Information about the berry flavor associated with the type.
	BerryFlavor struct {
		// The name of the berry flavor.
		Name string `json:"name"`

		// The URL to access detailed information about the berry flavor.
		Url string `json:"url"`
	} `json:"berry_flavor"`

	// Names associated with the type in different languages.
	Names []struct {
		// The name of the type.
		Name string `json:"name"`

		// The color associated with the type.
		Color string `json:"color"`

		// Information about the language of the type name.
		Language struct {
			// The name of the language.
			Name string `json:"name"`

			// The URL to access detailed information about the language.
			Url string `json:"url"`
		} `json:"language"`
	} `json:"names"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL