docker/config/dailyChests.php

29 lines
525 B
PHP
Raw Normal View History

2023-04-14 08:35:51 +00:00
<?php
/*
QUESTS
*/
//NOW SET IN THE QUESTS TABLE IN THE MYSQL DATABASE
/*
REWARDS
*/
//SMALL CHEST
$chest1minOrbs = 200;
$chest1maxOrbs = 400;
$chest1minDiamonds = 2;
$chest1maxDiamonds = 10;
$chest1items = [1, 2, 3, 4, 5, 6];
$chest1minKeys = 1;
$chest1maxKeys = 6;
//BIG CHEST
$chest2minOrbs = 2000;
$chest2maxOrbs = 4000;
$chest2minDiamonds = 20;
$chest2maxDiamonds = 100;
$chest2items = [1, 2, 3, 4, 5, 6];
$chest2minKeys = 1;
$chest2maxKeys = 6;
//REWARD TIMES (in seconds)
$chest1wait = 3600;
$chest2wait = 14400;
?>