Move heal locations data to their associated map.json (#673)

This commit is contained in:
GriffinR
2024-10-11 15:17:18 -04:00
committed by GitHub
parent 967a1f98b4
commit bb50006fc9
54 changed files with 446 additions and 247 deletions
+23 -20
View File
@@ -1,25 +1,28 @@
#ifndef GUARD_CONSTANTS_HEAL_LOCATIONS_H
#define GUARD_CONSTANTS_HEAL_LOCATIONS_H
#define SPAWN_PALLET_TOWN 1
#define SPAWN_VIRIDIAN_CITY 2
#define SPAWN_PEWTER_CITY 3
#define SPAWN_CERULEAN_CITY 4
#define SPAWN_LAVENDER_TOWN 5
#define SPAWN_VERMILION_CITY 6
#define SPAWN_CELADON_CITY 7
#define SPAWN_FUCHSIA_CITY 8
#define SPAWN_CINNABAR_ISLAND 9
#define SPAWN_INDIGO_PLATEAU 10
#define SPAWN_SAFFRON_CITY 11
#define SPAWN_ROUTE4 12
#define SPAWN_ROUTE10 13
#define SPAWN_ONE_ISLAND 14
#define SPAWN_TWO_ISLAND 15
#define SPAWN_THREE_ISLAND 16
#define SPAWN_FOUR_ISLAND 17
#define SPAWN_FIVE_ISLAND 18
#define SPAWN_SEVEN_ISLAND 19
#define SPAWN_SIX_ISLAND 20
enum {
HEAL_LOCATION_NONE,
HEAL_LOCATION_PALLET_TOWN,
HEAL_LOCATION_VIRIDIAN_CITY,
HEAL_LOCATION_PEWTER_CITY,
HEAL_LOCATION_CERULEAN_CITY,
HEAL_LOCATION_LAVENDER_TOWN,
HEAL_LOCATION_VERMILION_CITY,
HEAL_LOCATION_CELADON_CITY,
HEAL_LOCATION_FUCHSIA_CITY,
HEAL_LOCATION_CINNABAR_ISLAND,
HEAL_LOCATION_INDIGO_PLATEAU,
HEAL_LOCATION_SAFFRON_CITY,
HEAL_LOCATION_ROUTE4,
HEAL_LOCATION_ROUTE10,
HEAL_LOCATION_ONE_ISLAND,
HEAL_LOCATION_TWO_ISLAND,
HEAL_LOCATION_THREE_ISLAND,
HEAL_LOCATION_FOUR_ISLAND,
HEAL_LOCATION_FIVE_ISLAND,
HEAL_LOCATION_SEVEN_ISLAND,
HEAL_LOCATION_SIX_ISLAND,
};
#endif // GUARD_CONSTANTS_HEAL_LOCATIONS_H