From 44f37651391a48c21b367a74902a3bc7ecbb4ce0 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期一, 17 十二月 2018 11:44:14 +0800
Subject: [PATCH] Merge branch 'master' into Cross_Server
---
System/Pet/PetAttributeMethods.cs | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/System/Pet/PetAttributeMethods.cs b/System/Pet/PetAttributeMethods.cs
index 87de244..1d448d8 100644
--- a/System/Pet/PetAttributeMethods.cs
+++ b/System/Pet/PetAttributeMethods.cs
@@ -399,13 +399,15 @@
}
}
}
- _scoreNumAll = Mathf.FloorToInt(_tagPetClass.AtkAdd * 2.5f) + _scoreNum;
+ Dictionary<int, int> Dic = new Dictionary<int, int>();
+ Dic.Add(78, _tagPetClass.AtkAdd);
+ Dic.Add(77, _tagPetClass.AtkAdd);
+ _scoreNumAll = UIHelper.GetFightPower(Dic) + _scoreNum;
sumFight += _scoreNumAll;
}
allFightText.text = (sumFight + InitFightPower).ToString();
attackSpeed.text = ((float)UIHelper.GetPropertyMapPlayerData(AttrEnum.ATKSPEED) / 100).ToString();
}
-
}
public void RefreshPetUpgradeCostUI(bool isRefresh = false)
--
Gitblit v1.8.0