diff options
author | Cheng Hann Gan <chenghanngan.us@gmail.com> | 2021-09-28 12:50:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-28 09:50:36 -0700 |
commit | 12aec1bb718eb7b04d4a5506030154b0cce454a0 (patch) | |
tree | cc460ac2d94ec83522565fd11127df0fa172d5a4 /include/constants/evolve_type.h | |
parent | 0d3b11e81a215875fc533db17895613c47a4da73 (diff) |
Created species/item data JSONs (#57)
* Created species data JSON
* Added item data JSON
* Removed address field from JSONs
-Moved constants/item.h import to item.h.
* Used default values for some JSON fields
-Use item ID macros for item evolutions.
Diffstat (limited to 'include/constants/evolve_type.h')
-rw-r--r-- | include/constants/evolve_type.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/constants/evolve_type.h b/include/constants/evolve_type.h new file mode 100644 index 0000000..588484a --- /dev/null +++ b/include/constants/evolve_type.h @@ -0,0 +1,10 @@ +#ifndef GUARD_CONSTANTS_EVOLVE_TYPE_H +#define GUARD_CONSTANTS_EVOLVE_TYPE_H + +#define EVOLVE_TYPE_NONE 0 +#define EVOLVE_TYPE_LEVEL 1 +#define EVOLVE_TYPE_IQ 2 +#define EVOLVE_TYPE_ITEM 3 +#define EVOLVE_TYPE_LINK_CABLE 13 + +#endif |