Skip to content

Commit

Permalink
bugfix:修正奶系天堂舞姬套装属性描述错误
Browse files Browse the repository at this point in the history
  • Loading branch information
wxh0402 committed Nov 8, 2020
1 parent 23fa044 commit 92a2e66
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion PublicReference/equipment/装备_套装.py
Expand Up @@ -944,22 +944,25 @@ def BUFF属性(self, 属性):
属性.BUFF智力per *= 1.08
属性.一觉力智 += 192
属性.一觉力智per *= 1.05
def 装备描述_BUFF(self, 属性):
def 装备描述(self, 属性):
temp = ''
if 属性.角色 == '圣职者(男)':
temp += '[荣誉祝福]技能等级 +1<br>'
temp += '[荣誉祝福]力量、智力 +8%<br>'
temp += '[圣光天启]力量、智力 +5%<br>'
temp += '[圣光天启]力量、智力 +192<br>'
temp += '[守护恩赐]体力、精神 +145<br>'
elif 属性.角色 == '圣职者(女)':
temp += '[勇气祝福]技能等级 +1<br>'
temp += '[勇气祝福]力量、智力 +8%<br>'
temp += '[天启之珠]力量、智力 +5%<br>'
temp += '[天启之珠]力量、智力 +192<br>'
temp += '[启示圣歌]智力 +145<br>'
elif 属性.角色 == '魔法师(女)':
temp += '[禁忌诅咒]技能等级 +1<br>'
temp += '[禁忌诅咒]力量、智力 +8%<br>'
temp += '[开幕!人偶剧场]力量、智力 +5%<br>'
temp += '[开幕!人偶剧场]力量、智力 +192<br>'
temp += '[人偶操纵者]智力 +145<br>'
return temp

Expand Down

0 comments on commit 92a2e66

Please sign in to comment.