volleyballsimtypes 0.0.421 → 0.0.422
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -20,8 +20,8 @@ const decline_1 = require("./decline");
|
|
|
20
20
|
// threshold (hard pity).
|
|
21
21
|
exports.PITY_THRESHOLDS = {
|
|
22
22
|
legendary: 25,
|
|
23
|
-
mythic:
|
|
24
|
-
special:
|
|
23
|
+
mythic: 250,
|
|
24
|
+
special: 750
|
|
25
25
|
};
|
|
26
26
|
// Per-pull soft-pity step: how much a rarity's odds increase for each pull without it. Small enough
|
|
27
27
|
// that base rates stay honest until the hard-pity threshold guarantees the drop.
|
|
@@ -14,8 +14,8 @@ import { declineProfiles } from './decline';
|
|
|
14
14
|
// threshold (hard pity).
|
|
15
15
|
export const PITY_THRESHOLDS = {
|
|
16
16
|
legendary: 25,
|
|
17
|
-
mythic:
|
|
18
|
-
special:
|
|
17
|
+
mythic: 250,
|
|
18
|
+
special: 750
|
|
19
19
|
};
|
|
20
20
|
// Per-pull soft-pity step: how much a rarity's odds increase for each pull without it. Small enough
|
|
21
21
|
// that base rates stay honest until the hard-pity threshold guarantees the drop.
|