原神新普攻圣遺物傷害計(jì)算


假設(shè)宵宮每一發(fā)箭都能觸發(fā)該套裝效果,且假設(shè)攻擊間隔大于0.05s,即每一發(fā)箭都能吃到該buff。對普攻理論期望傷害增幅為30%(追憶為50%)。新圣遺物解放了宵宮的大招,算是給未來的配隊(duì)提供了新的可能性吧
計(jì)算過程:(python)
import random as rm
PingA = ['63.6','63.6','122','158.6','82.8','82.8','188.9']#10級平A倍率
SumPingA = 1 ?#平A次數(shù)
BL = 0 ?#每一次的平A傷害倍率
number = 0 ?#第幾次平A
EXP = 0 ?#傷害期望
a = True ?#是否觸發(fā)
i = 64 ?#概率為100-i
Atksum = input('輸入模擬攻擊次數(shù):') or '70000'
total = 0
while SumPingA <= eval(Atksum):
? ?if a:
? ? ? ?i = 64
? ?b = rm.randint(0, 100)
? ?if b >= i:
? ? ? ?BL = eval(PingA[number]) * 1.6
? ? ? ?a = True
? ?else:
? ? ? ?BL = eval(PingA[number]) * 1
? ? ? ?a = False
? ?EXP += BL
? ?SumPingA += 1
? ?g = SumPingA % len(PingA) #計(jì)算第幾次
? ?number = g
? ?if not a:
? ? ? ?i -= 20
for s in range(0, len(PingA)):
? ?total = eval(PingA[s]) + total
Sumtotal = (eval(Atksum) / len(PingA)) * total
Result = "%.2f%%" % (((EXP / Sumtotal)-1) * 100)
print(Result)