少年修仙传客户端代码仓库
Client_PangDeRong
2018-09-26 37c2af3375a60fa1597a7bda3a0433983489ad64
1885 修改神兽装备评分计算
3个文件已修改
16 ■■■■ 已修改文件
Core/GameEngine/Model/Config/EquipGSParamConfig.cs 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Core/GameEngine/Model/Config/EquipGSParamConfig.cs.meta 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Core/GameEngine/Model/TelPartialConfig/tagEquipGSParamConfig.cs 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Core/GameEngine/Model/Config/EquipGSParamConfig.cs
@@ -1,6 +1,6 @@
//--------------------------------------------------------
//    [Author]:            第二世界
//    [  Date ]:           Saturday, September 01, 2018
//    [  Date ]:           Wednesday, September 26, 2018
//--------------------------------------------------------
using UnityEngine;
@@ -37,7 +37,9 @@
        public int SkillAtkRateC { get ; private set ; }
        public int SpeedPerC { get ; private set ; }
        public int AtkSpeedC { get ; private set ; }
        public int SkillAtkRateReduceC { get ; private set ; }
        public int SkillAtkRateReduceC { get ; private set ; }
        public int HitC { get ; private set ; }
        public int MissC { get ; private set ; }
        public override string getKey()
        {
@@ -99,7 +101,11 @@
            
                AtkSpeedC=IsNumeric(rawContents[25]) ? int.Parse(rawContents[25]):0; 
            
                SkillAtkRateReduceC=IsNumeric(rawContents[26]) ? int.Parse(rawContents[26]):0;
                SkillAtkRateReduceC=IsNumeric(rawContents[26]) ? int.Parse(rawContents[26]):0;
                HitC=IsNumeric(rawContents[27]) ? int.Parse(rawContents[27]):0;
                MissC=IsNumeric(rawContents[28]) ? int.Parse(rawContents[28]):0;
            }
            catch (Exception ex)
            {
Core/GameEngine/Model/Config/EquipGSParamConfig.cs.meta
@@ -1,6 +1,6 @@
fileFormatVersion: 2
guid: e238f9455d4062c4c867b41cfea2f046
timeCreated: 1535787590
timeCreated: 1537960022
licenseType: Pro
MonoImporter:
  serializedVersion: 2
Core/GameEngine/Model/TelPartialConfig/tagEquipGSParamConfig.cs
@@ -52,6 +52,8 @@
            _tagGsProValueDict.Add(AttrEnum.MoveSpeedPrecent, gsModel.SpeedPerC);
            _tagGsProValueDict.Add(AttrEnum.ATKSPEED, gsModel.AtkSpeedC);
            _tagGsProValueDict.Add(AttrEnum.SkillHurtPrecent, gsModel.SkillAtkRateReduceC);
            _tagGsProValueDict.Add(AttrEnum.HIT, gsModel.HitC);
            _tagGsProValueDict.Add(AttrEnum.MISS, gsModel.MissC);
            return _tagGsProValueDict;
        }
    }