Cobblemon Quests
CatchPokemonQuest
The biggest difference with Pokemon related Quests is the "pokeMatch" field. A PokeMatch is a common method to identify parts of a Pokemon. For instance, a species, form, or ability. I highly recommend reading the [[PokeMatch]] section in its entirety.
The quickest and easiest way to setup the pokeMatch is by simply adding a "species" field, with the full resource identifier species name, i.e. "cobblemon:charizard". Any field can be left out or set to "" to make it accept any option. For example, to create a Quest that simply tracks catching any Pokemon, you could do this:
Any Pokemon caught will count towards this Quest. You could also not put the PokeMatch field at all, which would then result in the default PokeMatch being used, which accepts any Pokemon.
As with other Quests, amount is simply the amount of Pokemon matching the PokeMatch to be caught for the Quest to be "complete".
DefeatPokemonQuest
The DefeatPokemonQuest tracks "defeats" from battles, and only Wild battles. Pokemon killed outside of battle (with swords etc) won't count towards this quest type.
ReleasePokemonQuest
Imagine the CatchPokemonQuest, but for releasing.
HarvestApricornQuest
The "apricorn" field represents the Apricorn colour the Quest involves. This could be "black", "blue", "green", "pink", "red", "white", or "yellow".
The Task Message is automatically made, in the format "Harvest (amount)x (Colour) Apricorns".
As with other quests, "amount" is just the amount of Apricorns to be harvested for the quest to be complete.
NicknamePokemonQuest
"pokeMatch" is optional, without it, any Pokemon being nicknamed will trigger the Quest to progress. You can use Regex to only accept certain nicknames. The "regex" field is also optional, accepting any name. The default Regex pattern is ".*" which accepts any amount of characters, including none.
TradePokemonQuest
"sentPokemon" is a PokeMatch the checks the Pokemon the player is sending. "recievedPokemon" is the same but for the recieved Pokemon. Crazy!
Both fields are optional, making this just a check for any trade event.
EvolvePokemonQuest
Both "preEvolution" and "postEvolution" are optional PokeMatches. For instance, you could create an EvolvePokemonQuest that simply looks for any Pokemon evolving into an Alolan Pokemon.
More features can and will be added to this, such as checking for certain moves being learned, or whether an item was used to trigger the evolution.
HavePokemonQuest
"storageType" can be either "party" or "pc". This Quest is STATELESS, meaning it's either passed (because there's a bulbasaur in your party right now), or not (if there isn't one).
Last updated