8 lines
350 B
TypeScript
8 lines
350 B
TypeScript
|
|
export const pullChances = [
|
||
|
|
{ chance: 0.4030, gems: 25, cdf: 0.4030, name: 'common' },
|
||
|
|
{ chance: 0.2970, gems: 80, cdf: 0.7000, name: 'rare' },
|
||
|
|
{ chance: 0.1775, gems: 135, cdf: 0.8775, name: 'epic' },
|
||
|
|
{ chance: 0.0725, gems: 280, cdf: 0.9500, name: 'legendary' },
|
||
|
|
{ chance: 0.0500, cdf: 1.0000, name: 'reward' },
|
||
|
|
] as const;
|