|
|
@@ -948,10 +948,8 @@ function getLuckyRandCostTimes(turnOneCost) {
|
|
|
if (nIssue >= 8) {
|
|
|
let rv = Math.random();
|
|
|
if (rv > 0.8) {
|
|
|
- times = 1 / 2;
|
|
|
- } else if (rv > 0.6) {
|
|
|
- times = 1;
|
|
|
- } else if (rv < 0.35) {
|
|
|
+ times = 1 / 4;
|
|
|
+ } else {
|
|
|
times = 1 / 2;
|
|
|
}
|
|
|
} else if (nIssue >= 6) {
|
|
|
@@ -988,10 +986,10 @@ function getChangLongCostTimes(planType, pksPlanListData) {
|
|
|
if (failItem) {
|
|
|
if (!checkHitPrizeAfterFailOnce(failItem, pksPlanListData)) {
|
|
|
let timesDict = {
|
|
|
- [1]: 2,
|
|
|
- [3]: 4,
|
|
|
- [5]: 4,
|
|
|
- [6]: 2,
|
|
|
+ [1]: 4,
|
|
|
+ [3]: 8,
|
|
|
+ [5]: 8,
|
|
|
+ [6]: 4,
|
|
|
};
|
|
|
times = timesDict[failItem.index] || 1;
|
|
|
}
|