From 4c36c36508aeb762523c22ef52309ca8a83ed99c Mon Sep 17 00:00:00 2001
From: client_Hale <339726288@qq.com>
Date: 星期五, 14 十二月 2018 19:51:21 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts

---
 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