-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from lhearachel/battle-dev
Document the capture formula
- Loading branch information
Showing
23 changed files
with
412 additions
and
317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#ifndef POKEPLATINUM_CONSTANTS_BATTLE_TERRAIN_H | ||
#define POKEPLATINUM_CONSTANTS_BATTLE_TERRAIN_H | ||
|
||
enum Terrain { | ||
TERRAIN_PLAIN = 0, | ||
TERRAIN_SAND, | ||
TERRAIN_GRASS, | ||
TERRAIN_PUDDLE, | ||
TERRAIN_MOUNTAIN, | ||
TERRAIN_CAVE, | ||
TERRAIN_SNOW, | ||
TERRAIN_WATER, | ||
TERRAIN_ICE, | ||
TERRAIN_BUILDING, | ||
TERRAIN_GREAT_MARSH, | ||
TERRAIN_BRIDGE, | ||
|
||
TERRAIN_AARON, | ||
TERRAIN_BERTHA, | ||
TERRAIN_FLINT, | ||
TERRAIN_LUCIAN, | ||
TERRAIN_CYNTHIA, | ||
|
||
TERRAIN_DISTORTION_WORLD, | ||
TERRAIN_BATTLE_TOWER, | ||
TERRAIN_BATTLE_FACTORY, | ||
TERRAIN_BATTLE_ARCADE, | ||
TERRAIN_BATTLE_CASTLE, | ||
TERRAIN_BATTLE_HALL, | ||
TERRAIN_GIRATINA, | ||
|
||
TERRAIN_MAX | ||
}; | ||
|
||
#endif // POKEPLATINUM_CONSTANTS_BATTLE_TERRAIN_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef POKEPLATINUM_CONSTANTS_TIME_H | ||
#define POKEPLATINUM_CONSTANTS_TIME_H | ||
|
||
enum Time { | ||
TIME_MORNING = 0, | ||
TIME_DAY, | ||
TIME_DUSK, | ||
TIME_NIGHT, | ||
TIME_MIDNIGHT, | ||
}; | ||
|
||
#endif // POKEPLATINUM_CONSTANTS_TIME_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.