new enums

This commit is contained in:
Mini-Chiss 2015-08-10 16:13:17 +02:00
parent db70df1bf4
commit 18d11f7d68
1 changed files with 6 additions and 3 deletions

View File

@ -3,11 +3,14 @@ package mineplex.core.reward;
public enum RewardType
{
//% Chances Mythic Legend Rare Uncommon
GameLoot( 0.000001, 0.00001, 0.0001, 3, 10),
Spinner( 0.000001, 0.2, 0.8, 10, 10),
GameLoot( 0.000001, 0.00001, 0.0001, 3, 10),
OldChest( 0, 0.05, 0.4, 5, 0),
AncientChest( 0, 1, 4, 25, 0),
MythicalChest( 0.4, 3, 12, 75, 0);
MythicalChest( 0.4, 3, 12, 75, 0),
SpinnerFiller( 0.1, 1, 4, 20, 30),
SpinnerReal( 0.000001, 0.05, 0.4, 5, 10);
private double _mythicalChance;
private double _legendaryChance;