mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-28 13:04:52 -05:00
* 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.
10 lines
207 B
C
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
|