shawenguan 1 anno fa
parent
commit
f7f2e249f7
1 ha cambiato i file con 6 aggiunte e 8 eliminazioni
  1. 6 8
      Scripts/168/pksPlanHelper.js

+ 6 - 8
Scripts/168/pksPlanHelper.js

@@ -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;
 		}