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/walkable_tile.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/walkable_tile.h')
-rw-r--r-- | include/constants/walkable_tile.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/constants/walkable_tile.h b/include/constants/walkable_tile.h new file mode 100644 index 0000000..d558466 --- /dev/null +++ b/include/constants/walkable_tile.h @@ -0,0 +1,9 @@ +#ifndef GUARD_CONSTANTS_WALKABLE_TILE_H +#define GUARD_CONSTANTS_WALKABLE_TILE_H + +#define WALKABLE_TILE_CHASM 2 +#define WALKABLE_TILE_WALL 3 +#define WALKABLE_TILE_LAVA 4 +#define WALKABLE_TILE_WATER 5 + +#endif |