diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-03-24 11:33:41 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-03-24 11:33:41 -0700 |
commit | fff387ad8f7d470d6bef696629a0dfa110467705 (patch) | |
tree | f16044532db03640aba6dcb293a992fbf6c4bfce /includes/datas.php | |
parent | e82855b44ce6db41112eabfe3ffda1bba40b113e (diff) | |
download | pathery-fff387ad8f7d470d6bef696629a0dfa110467705.tar.xz |
Finished wallOrientation setting
Diffstat (limited to 'includes/datas.php')
-rw-r--r-- | includes/datas.php | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/includes/datas.php b/includes/datas.php index de812f1..4d42c1a 100644 --- a/includes/datas.php +++ b/includes/datas.php @@ -690,15 +690,19 @@ function getChampionPointsArray() { //TYPE 5 function getPerfectDayArray() { //($required, $unlockType, $unlockValue, $unlockName, $unlockSubtype) - //$cp[0] = array(requiredpoints, type, 'value', 'name'); + $r[1] = array(1, UNLOCK_EXTRAS, '5', 'Insane Speed', MISC_UNLOCK_INSANE_SPEED); - //Give 0* at the same time $r[2] = array(5, UNLOCK_WALL_ORIENTATION, '1', '90*', 0); - $r[3] = array(50, UNLOCK_WALL_ORIENTATION, '2', '180*', 0); - $r[4] = array(100, UNLOCK_WALL_ORIENTATION, '3', '270*', 0); - //These numbers temporarly unreasonable - $r[5] = array(9275, UNLOCK_WALL_EMBLEM, 'CircleSmall_W_I.png', 'Inverted Bright Small Circle', 0); - $r[6] = array(10000, UNLOCK_WALL_EMBLEM, 'DiamondLarge_W_I.png', 'Inverted Light Large Diamond', 0); + + //TODO: Move these elsewhere + //$r[3] = array(1, UNLOCK_WALL_ORIENTATION, '2', '180*', 0); + //$r[4] = array(1, UNLOCK_WALL_ORIENTATION, '3', '270*', 0); + + //Use CSS Generated gradients for background colors instead of these? + //$r[5] = array(1, UNLOCK_WALL_EMBLEM, 'DiagonalShade_W.png', 'Bright Diagonal Shade', 0); + //$r[6] = array(1, UNLOCK_WALL_EMBLEM, 'DiagonalShade_B.png', 'Dark Diagonal Shade', 0); + //$r[7] = array(9275, UNLOCK_WALL_EMBLEM, 'CircleSmall_W_I.png', 'Inverted Bright Small Circle', 0); + //$r[8] = array(10000, UNLOCK_WALL_EMBLEM, 'DiamondLarge_W_I.png', 'Inverted Light Large Diamond', 0); return $r; } |