From 4858b4c371632bffa65c051a0e53402298c67533 Mon Sep 17 00:00:00 2001 From: Justin Marquez Date: Mon, 22 Jun 2026 15:41:21 -0500 Subject: [PATCH] feat: add documentation for new evolution fields --- src/docs/evolution.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/docs/evolution.json b/src/docs/evolution.json index b6d6184..7a3188f 100644 --- a/src/docs/evolution.json +++ b/src/docs/evolution.json @@ -112,6 +112,19 @@ { "name": "EvolutionDetail", "fields": [ + { + "name": "version_group_id", + "description": "The version group in which the evolution was introduced.", + "type": { + "type": "NamedAPIResource", + "of": "VersionGroup" + } + }, + { + "name": "is_default", + "description": "Whether the evolution is considered as the expected evolution in a main series game. Each unique Pokémon variety of a line capable of evolution should have exactly one 'default' evolution. For example, the Meowth species has three default evolutions as there are three distinct varieties it can evolve into: Persian, Alolan Persian, and Perrserker.", + "type": "boolean" + }, { "name": "item", "description": "The item required to cause evolution this into Pokémon species.", @@ -255,6 +268,14 @@ "of": "Pokemon" } }, + { + "name": "evolved_form", + "description": "The form to which this evolution occurs.", + "type": { + "type": "NamedAPIResource", + "of": "Pokemon" + } + }, { "name": "used_move", "description": "The move that must be used by the evolving Pokémon species during the evolution trigger event in order to evolve into this Pokémon species.",