Summary

Description
In versions with Pokemon Contests (but not Super Contests), every move has one of these effects.
Data path
resources/data/contest_effect.csv
Schema
https://poketools.gamestuff.info/data/schema/contest_effect.json

Fields

id

The unique id for this entity. Only entities that have no clear name should use this numeric form.

type

integer

minimum

1

required

appeal

Appeal points

type
integer
minimum
0
required

jam

Jam points

type
integer
minimum
0
required

flavor_text

How this entity is described in-game. Include line breaks where appropriate.

type

string

required

description

A full description of the entity, usually used on entity pages.

Textual content formatted with Markdown. See the CommonMark Spec for details.

type

string

required

JSON Schema

View raw

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://poketools.gamestuff.info/data/schema/contest_effect.json",
  "title": "Contest Effect",
  "description": "In versions with Pokemon Contests (but not Super Contests), every move has one of these effects.",
  "type": "object",
  "propertyNames": {
    "title": "Version Group identifier",
    "allOf": [
      {
        "$ref": "types/identifier.json"
      },
      {
        "type": "string",
        "$filters": "versionGroupIdentifier"
      }
    ]
  },
  "minProperties": 1,
  "additionalProperties": {
    "type": "object",
    "properties": {
      "id": {
        "$ref": "types/id.json"
      },
      "appeal": {
        "type": "integer",
        "title": "Appeal points",
        "minimum": 0
      },
      "jam": {
        "type": "integer",
        "title": "Jam points",
        "minimum": 0
      },
      "flavor_text": {
        "$ref": "types/flavor_text.json"
      },
      "description": {
        "title": "Description",
        "$ref": "types/markdown.json"
      }
    },
    "required": [
      "appeal",
      "jam",
      "flavor_text",
      "description"
    ]
  }
}