Changes:
Pokemon Specs now need to be surrounded by quotations marks like so: "shiny"
Choices, for the dialogues, also now need to be surrounded by quotation marks
Fixed the choice parser being overly ambitious and parsing things it shouldn't causing breakages with other things like Skript Reflect
Additions:
Added a successful capture event fired when players successfully capture a Pokemon
Code (Text):
on successful capture:
set {_player} to player
set {_pokemon} to event-pokemon
set {_entity} to event-pixelmon
message "WOW! %{_pokemon}% %{_player}% %{_test}%"
Added an NPC Interact event fired when players interact with any Pixelmon NPC
Code (Text):
on npc interact:
set {_entity} to event-npc
set {_player} to player
message "WOW! %{_entity}%"
Full Changelog:
https://github.com/EnvyWare/Pixelmon-Skript-Extension/compare/1.0.0...1.0.1