initial commit
This commit is contained in:
commit
803205ee7f
59 changed files with 3437 additions and 0 deletions
7
src/lib/gacha_pull.ts
Normal file
7
src/lib/gacha_pull.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue