diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-03-13 02:26:09 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-03-13 02:26:09 -0700 |
commit | 32cce4bee8a242f7a2e6d6a9e1c9e77b4af87728 (patch) | |
tree | 8f6068568fe0121380efb0e8bbb9985359245cf7 /includes/constants.php | |
parent | 1c9f62a731637f1d373485473f064626d311d705 (diff) | |
download | pathery-32cce4bee8a242f7a2e6d6a9e1c9e77b4af87728.tar.xz |
Achievement back-end for Insane Speed - and any other 'Extra' unlocks like it.
Diffstat (limited to 'includes/constants.php')
-rw-r--r-- | includes/constants.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/includes/constants.php b/includes/constants.php index a6826b1..7b32819 100644 --- a/includes/constants.php +++ b/includes/constants.php @@ -75,4 +75,32 @@ $mapNamesByType = array(1 => 'Simple', 2 => 'Normal', 3 => 'Complex', 4 => 'Spec * Make sure the first one is always 0... */ $tierChallengeRequirements = array(0, 5, 10, 15, 20, 25, 30); + + + +/** + * Unlock Types + */ +define('UNLOCK_WALL_COLOR', 1); +define('UNLOCK_WALL_EMBLEM', 2); +define('UNLOCK_DISPLAY_COLOR', 3); +define('UNLOCK_WALL_ROTATION', 4); +define('UNLOCK_EXTRAS', 8); +// MISC SUBTYPES: + +define('MISC_UNLOCK_INSANE_SPEED', 1); + +/** + * Achievement Types + */ +define('ACHIEVEMENT_MOVES_CAREER', 1); +define('ACHIEVEMENT_MAZE_CAREER', 2); +define('ACHIEVEMENT_MAZE_MASTERY', 3); +define('ACHIEVEMENT_CHAMPION_POINTS', 4); +define('ACHIEVEMENT_PERFECT_DAY', 5); + +define('ACHIEVEMENT_TUTORIAL', 32); + + + ?> |