mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-24 15:07:47 -05:00
9 lines
423 B
C
9 lines
423 B
C
#ifndef POKEPLATINUM_CONSTANTS_HONEY_TREE_H
|
|
#define POKEPLATINUM_CONSTANTS_HONEY_TREE_H
|
|
|
|
#define TREE_STATUS_ENCOUNTER 3 // 6 hours have passed, so the tree may have an encounter
|
|
#define TREE_STATUS_SLATHERED 2 // Tree has honey on it but 6 hours have not passed yet
|
|
#define TREE_STATUS_BARE 1 // Tree does not have honey on it (wasn't slathered or 24 hours have passed)
|
|
|
|
#endif // POKEPLATINUM_CONSTANTS_HONEY_TREE_H
|