Summary

Description
In versions with Pokemon Super Contests (but not regular Contests), every move has one of these effects.
Data path
resources/data/super_contest_effect.csv
Schema
https://poketools.gamestuff.info/data/schema/super_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

flavor_text

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

type

string

required

JSON Schema

View raw

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://poketools.gamestuff.info/data/schema/super_contest_effect.json",
  "title": "Super Contest Effect",
  "description": "In versions with Pokemon Super Contests (but not regular Contests), every move has one of these effects.",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "types/id.json"
    },
    "appeal": {
      "type": "integer",
      "title": "Appeal points",
      "minimum": 0
    },
    "flavor_text": {
      "$ref": "types/flavor_text.json"
    }
  },
  "additionalProperties": false,
  "required": [
    "id",
    "appeal",
    "flavor_text"
  ]
}