Summary

Description
Effects the move “Fling” can have.
Data path
resources/data/item_fling_effect.csv
Schema
https://poketools.gamestuff.info/data/schema/item_fling_effect.json

Fields

identifier

A machine-usable name for the entity. This is usually a munged version of the entity name. An identifier must consist only of lowercase ASCII characters, 0-9, and/or a hyphen.

i.e. anything unique to the entity matching the regular expression ^[a-z0-9\-]+$ (Test it here)

type

string

pattern

^[a-z0-9\-]+$ (Test)

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/item_fling_effect.json",
  "title": "Item Fling Effect",
  "description": "Effects the move \"Fling\" can have.",
  "type": "object",
  "properties": {
    "identifier": {
      "$ref": "types/identifier.json"
    },
    "description": {
      "$ref": "types/markdown.json"
    }
  },
  "additionalProperties": false,
  "required": [
    "identifier",
    "description"
  ]
}