2.0 Changes - including _b
flag for pokemon bread forms
#9
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Since adding the
_b
flag was going to be a breaking change, if implemented correctly, I took the time to also update some of the other function signatures that were either missing some flag support or were in the "wrong" order. The following methods have had their function signature changed in some way:gym
: added support for_p
or power up flag (non-breaking)pokemon
: changed order of arguments to match standard, plus added_b
bread flagpokemon_id, form, evo, gender, costume, alignment, shiny
pokemon_id, evo, form, costume, gender, alignment, bread, shiny
pokestop
: changed order of arguments to match standard.lure_id, power, display, invasionActive, questActive, ar
lure_id, display (boolean | number | string), questActive (boolean | number | string), ar, power
weather
: added support for_l
(severity level) flag, changed argument order to reflect standardweather_id, time_of_day
weather_id, severity_level, time_of_day
Pending the merge of UIcons/UIcons#37