yyl
2025-06-17 007fbd542c30f5fa8308128aac26ce6584b3067a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 
 
public partial class TeamBase
{
    //  各种组队的养成系统等级
 
    //  阵型内卡牌的羁绊增益
 
    protected void UpdateProperties()
    {
        //    羁绊
        for (int i = 0; i < teamHeros.Length; i++)
        {
            TeamHero hero = teamHeros[i];
            if (null != hero)
            {
                for (int j = 0; j < hero.heroInfo.fetterInfoList.Count; j++)
                {
                    hero.heroInfo.fetterInfoList[j].SetIsActiveFetter(this);
                }
            }
        }
 
        //    阵型
 
 
        //    属性计算
        for (int i = 0; i < teamHeros.Length; i++)
        {
            TeamHero hero = teamHeros[i];
            if (null != hero)
                hero.heroInfo.CalculateProperties();
        }
    }
 
    public void CalculatePower()
    {
        
    }
}