pmd-red/include/constants/walkable_tile.h
Cheng Hann Gan 12aec1bb71
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.
2021-09-28 09:50:36 -07:00

10 lines
207 B
C

#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