PageRenderTime 53ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/includes/PlanetData.php

http://2moons.googlecode.com/
PHP | 47 lines | 19 code | 3 blank | 25 comment | 0 complexity | a6d5b303c9f45fe8697c542980f2c919 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, LGPL-3.0, LGPL-2.1, Apache-2.0
  1. <?php
  2. /**
  3. * 2Moons
  4. * Copyright (C) 2012 Jan Kr??pke
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. * @package 2Moons
  20. * @author Jan Kr??pke <info@2moons.cc>
  21. * @copyright 2012 Jan Kr??pke <info@2moons.cc>
  22. * @license http://www.gnu.org/licenses/gpl.html GNU GPLv3 License
  23. * @version 1.7.1 (2013-01-18)
  24. * @info $Id: PlanetData.php 2604 2013-01-18 11:35:42Z slaver7 $
  25. * @link http://2moons.cc/
  26. */
  27. $PlanetData = array(
  28. 1 => array('temp' => mt_rand(220, 260), 'fields' => mt_rand(95, 108), 'image' => array('trocken' => mt_rand(1, 10), 'wuesten' => mt_rand(1, 4))),
  29. 2 => array('temp' => mt_rand(170, 210), 'fields' => mt_rand(97, 110), 'image' => array('trocken' => mt_rand(1, 10), 'wuesten' => mt_rand(1, 4))),
  30. 3 => array('temp' => mt_rand(120, 160), 'fields' => mt_rand(98, 137), 'image' => array('trocken' => mt_rand(1, 10), 'wuesten' => mt_rand(1, 4))),
  31. 4 => array('temp' => mt_rand(70, 110), 'fields' => mt_rand(123, 203), 'image' => array('dschjungel' => mt_rand(1, 10))),
  32. 5 => array('temp' => mt_rand(60, 100), 'fields' => mt_rand(148, 210), 'image' => array('dschjungel' => mt_rand(1, 10))),
  33. 6 => array('temp' => mt_rand(50, 90), 'fields' => mt_rand(148, 226), 'image' => array('dschjungel' => mt_rand(1, 10))),
  34. 7 => array('temp' => mt_rand(40, 80), 'fields' => mt_rand(141, 273), 'image' => array('normaltemp' => mt_rand(1, 7))),
  35. 8 => array('temp' => mt_rand(30, 70), 'fields' => mt_rand(169, 246), 'image' => array('normaltemp' => mt_rand(1, 7))),
  36. 9 => array('temp' => mt_rand(20, 60), 'fields' => mt_rand(161, 238), 'image' => array('normaltemp' => mt_rand(1, 7), 'wasser' => mt_rand(1, 9))),
  37. 10 => array('temp' => mt_rand(10, 50), 'fields' => mt_rand(154, 224), 'image' => array('normaltemp' => mt_rand(1, 7), 'wasser' => mt_rand(1, 9))),
  38. 11 => array('temp' => mt_rand(0, 40), 'fields' => mt_rand(148, 204), 'image' => array('normaltemp' => mt_rand(1, 7), 'wasser' => mt_rand(1, 9))),
  39. 12 => array('temp' => mt_rand(-10, 30), 'fields' => mt_rand(136, 171), 'image' => array('normaltemp' => mt_rand(1, 7), 'wasser' => mt_rand(1, 9))),
  40. 13 => array('temp' => mt_rand(-50, -10), 'fields' => mt_rand(109, 121), 'image' => array('eis' => mt_rand(1, 10))),
  41. 14 => array('temp' => mt_rand(-90, -50), 'fields' => mt_rand(81, 93), 'image' => array('eis' => mt_rand(1, 10))),
  42. 15 => array('temp' => mt_rand(-130, -90), 'fields' => mt_rand(65, 74), 'image' => array('eis' => mt_rand(1, 10)))
  43. );
  44. ?>