new enums

This commit is contained in:
Mini-Chiss 2015-08-10 16:13:17 +02:00
parent db70df1bf4
commit 18d11f7d68

View File

@ -4,10 +4,13 @@ public enum RewardType
{ {
//% Chances Mythic Legend Rare Uncommon //% Chances Mythic Legend Rare Uncommon
GameLoot( 0.000001, 0.00001, 0.0001, 3, 10), GameLoot( 0.000001, 0.00001, 0.0001, 3, 10),
Spinner( 0.000001, 0.2, 0.8, 10, 10),
OldChest( 0, 0.05, 0.4, 5, 0), OldChest( 0, 0.05, 0.4, 5, 0),
AncientChest( 0, 1, 4, 25, 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 _mythicalChance;
private double _legendaryChance; private double _legendaryChance;