summaryrefslogtreecommitdiffstats
path: root/includes/datas.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/datas.php')
-rw-r--r--includes/datas.php18
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;
}