Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document area data #392

Merged
merged 1 commit into from
Feb 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions include/constants/gx_colors.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#ifndef POKEPLATINUM_CONSTANTS_GX_COLORS_H
#define POKEPLATINUM_CONSTANTS_GX_COLORS_H

#define COLOR_BLACK GX_RGB(0, 0, 0)
#define COLOR_DARK_GRAY GX_RGB(4, 4, 4)
#define COLOR_TRANSPARENT GX_RGB(31, 31, 16)

#endif // POKEPLATINUM_CONSTANTS_GX_COLORS_H
13 changes: 8 additions & 5 deletions include/constants/map_prop.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
#ifndef POKEPLATINUM_CONSTANTS_MAP_PROP_H
#define POKEPLATINUM_CONSTANTS_MAP_PROP_H

enum MapPropId {
MAP_PROP_ID_HONEY_TREE = 26,
MAP_PROP_ID_UNK_242 = 242,
MAP_PROP_ID_UNK_258 = 258,
MAP_PROP_ID_UNK_475 = 475,
enum MapPropModelId {
MAP_PROP_MODEL_ID_HONEY_TREE = 26,
MAP_PROP_MODEL_ID_UNK_124 = 124,
MAP_PROP_MODEL_ID_UNK_242 = 242,
MAP_PROP_MODEL_ID_UNK_258 = 258,
MAP_PROP_MODEL_ID_UNK_475 = 475,
MAP_PROP_MODEL_ID_UNK_498 = 498,
MAP_PROP_MODEL_ID_UNK_517 = 517,
};

#endif // POKEPLATINUM_CONSTANTS_MAP_PROP_H
Loading