| | |
| | | return |
| | | |
| | | def GetBossTrialDropItemIDList(curPlayer, limitIndex): |
| | | bossIndexList = IpyGameDataPY.GetFuncEvalCfg("BossTrial", 2) |
| | | if limitIndex not in bossIndexList: |
| | | bossIndexDropRateDict = IpyGameDataPY.GetFuncEvalCfg("BossTrial", 4) |
| | | if limitIndex not in bossIndexDropRateDict: |
| | | return |
| | | dropCountRateList = bossIndexDropRateDict[limitIndex] |
| | | |
| | | dropCountTotal = 0 |
| | | itemID = IpyGameDataPY.GetFuncCfg("BossTrial", 1) |
| | | dropCountRateList = IpyGameDataPY.GetFuncEvalCfg("BossTrial", 3) |
| | | |
| | | for actInfo in PyGameData.g_operationActionDict.get(ShareDefine.OperationActionName_BossTrial, {}).values(): |
| | | actNum = actInfo.get(ShareDefine.ActKey_ActNum, 0) |