new MoveMeta()
Additional information about the mechanics of a Pokemon move.
Name | Type | Description |
---|---|---|
meta_category_id | number | The ID of the move's meta category (e.g., damage dealing, status inflicting). |
meta_ailment_id | string | The ID of the ailment that the move can inflict. |
drain | number | The damage dealt that is healed back to the user. |
healing | number | Thethe user's max HP that is healed. |
crit_rate | number | The additional critical hit rate of the move. |
ailment_chance | number | The chance that the move will inflict an ailment. |
flinch_chance | number | The chance that the move will cause the target to flinch. |
stat_chance | number | The chance that the move will cause a stat change. |
min_hits | number | | The minimum number of times the move can hit, or null if it always hits once. |
max_hits | number | | The maximum number of times the move can hit, or null if it always hits once. |
min_turns | number | | The minimum number of turns the move's effect lasts, or null if it lasts one turn. |
max_turns | number | | The maximum number of turns the move's effect lasts, or null if it lasts one turn. |
stat_changes | Array.<StatChange> | A list of stat changes that the move can cause. |