Spaces:
Runtime error
Runtime error
File size: 1,745 Bytes
17a347d effe13f 17a347d 581e199 effe13f 17a347d effe13f 17a347d effe13f 17a347d effe13f 17a347d 5fb9ac4 |
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 |
from typing import Dict
from base.buff import Buff
from general.buffs import GENERAL_BUFFS
BUFFS: Dict[int, Buff | dict] = {
1428: {
"buff_name": "εεΈ",
"activate": False,
"gain_attributes": {
"physical_critical_strike_gain": 400,
"physical_critical_power_gain": 41
}
},
# 9052: {
# "buff_name": "η»ε",
# "gain_skills": {
# 13075: {
# "skill_damage_addition": [205, 410, 614, 819] * 2
# }
# }
# },
8244: {
"buff_name": "θ‘ζ",
"gain_attributes": {
"physical_attack_power_gain": 102
}
},
8627: {
"buff_name": "ει",
"gain_attributes": {
"physical_attack_power_gain": 154
}
},
17176: {
"buff_name": "ει",
"gain_attributes": {
"all_damage_addition": 51
}
},
8267: {
"buff_name": "ζζ",
"gain_attributes": {
"physical_critical_strike_gain": 300,
}
},
14309: {
"buff_name": "ιιΈ£",
"gain_attributes": {
"physical_overcome_gain": 154
}
},
27161: {
"buff_name": "θ‘ζΒ·ζζΆ",
"gain_attributes": {
"physical_attack_power_gain": 102
}
},
9889: {
"buff_name": "θθ§",
"gain_attributes": {
"all_shield_ignore": 512
}
},
}
for buff_id, detail in BUFFS.items():
BUFFS[buff_id] = Buff(buff_id)
for attr, value in detail.items():
setattr(BUFFS[buff_id], attr, value)
for buff_id, buff in GENERAL_BUFFS.items():
if buff_id not in BUFFS:
BUFFS[buff_id] = buff
|