Spaces:
Runtime error
Runtime error
File size: 781 Bytes
5825182 ef62e40 5825182 |
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 |
from base.buff import Buff
GENERAL_BUFFS = {
15455: {
"buff_name": "输出伤害波动",
"gain_attributes": {
"all_damage_addition": [10, 51]
}
},
# 4761: {
# "buff_name": "水特效",
# "gain_attributes": {
# "physical_attack_power_base": 0,
# "magical_attack_power_base": 0,
# }
# },
# 6360: {
# "buff_name": "风特效",
# "gain_attributes": {
# "physical_overcome_base": 0,
# "magical_overcome_base": 0
# }
# }
}
for buff_id, detail in GENERAL_BUFFS.items():
GENERAL_BUFFS[buff_id] = Buff(buff_id, detail.pop("buff_name"))
for attr, value in detail.items():
setattr(GENERAL_BUFFS[buff_id], attr, value)
|