File size: 2,857 Bytes
17a347d
 
 
effe13f
 
 
 
 
 
 
17a347d
 
 
 
 
 
 
 
 
 
 
 
effe13f
 
581e199
effe13f
 
 
 
17a347d
 
 
 
 
 
 
 
 
5fb9ac4
 
17a347d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
from base.buff import Buff

GENERAL_BUFFS = {
    15413: {
        "buff_name": "基础攻击",
        "gain_attributes": {
            "physical_attack_power_base": [0] * 8 + [371, 450, 495, 549],
            "magical_attack_power_base": [0] * 8 + [442, 538, 591, 655]
        }
    },
    20938: {
        "buff_name": "左旋右转",
        "gain_attributes": {
            "surplus_base": 54,
        }
    },
    23573: {
        "buff_name": "泠风解怀",
        "gain_attributes": {
            "all_damage_addition": 154
        }
    },
    3465: {
        "buff_name": "破甲",
        "interval": 128,
        "gain_attributes": {
            "physical_shield_gain": -102
        }
    },
    23107: {
        "buff_name": "号令三军",
        "gain_attributes": {
            "strain_base": 500
        }
    },
    6363: {
        "buff_name": "激雷",
        "gain_attributes": {
            "physical_attack_power_gain": 205,
            "physical_overcome_gain": 205
        }
    },
    10208: {
        "buff_name": "弘法",
        "gain_attributes": {
            "strain_base": 500
        }
    },
    24350: {
        "buff_name": "皎素",
        "gain_attributes": {
            "all_critical_power_gain": 51
        }
    },
    24742: {
        "buff_name": "仙王蛊鼎",
        "gain_attributes": {
            "all_damage_addition": 123
        }
    },
    4246: {
        "buff_name": "朝圣",
        "gain_attributes": {
            "strain_base": 500
        }
    },
    9744: {
        "buff_name": "朝圣",
        "gain_attributes": {
            "strain_base": 875
        }
    },
    8504: {
        "buff_name": "振奋",
        "gain_attributes": {
            "physical_overcome_base": 60,
            "magical_overcome_base": 60
        }
    },
    10031: {
        "buff_name": "寒啸千军",
        "gain_attributes": {
            "physical_overcome_gain": 204,
            "magical_overcome_gain": 204
        }
    },
    23543: {
        "buff_name": "庄周梦",
        "gain_attributes": {
            "strain_base": 50
        }
    },
    16911: {
        "buff_name": "弄梅",
        "gain_attributes": {
            "physical_overcome_base": 700,
            "magical_overcome_base": 700,
            "all_shield_ignore": 205
        }
    },
    11456: {
        "buff_name": "疏狂",
        "gain_attributes": {
            "physical_attack_power_gain": 307,
            "magical_attack_power_gain": 307
        }
    },
    20877: {
        "buff_name": "配伍",
        "gain_attributes": {
            "all_major_gain": 10
        }
    }
}

for buff_id, detail in GENERAL_BUFFS.items():
    GENERAL_BUFFS[buff_id] = Buff(buff_id)
    GENERAL_BUFFS[buff_id].activate = False
    for attr, value in detail.items():
        setattr(GENERAL_BUFFS[buff_id], attr, value)