Spaces:
Runtime error
Runtime error
File size: 595 Bytes
17a347d effe13f 17a347d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
from base.recipe import damage_addition_recipe, critical_strike_recipe
from general.gains.equipment import EQUIPMENT_GAINS, CriticalSet
from base.gain import Gain
GAINS = {
1923: CriticalSet(1428),
1932: damage_addition_recipe([13075], 102),
1933: damage_addition_recipe([19409], 102),
1937: damage_addition_recipe([13463], 51),
1938: damage_addition_recipe([13092], 51),
1934: critical_strike_recipe([13044], 500),
1936: critical_strike_recipe([13092, 8249], 500),
2408: Gain(),
1940: Gain(),
17447: Gain(),
17448: Gain(),
**EQUIPMENT_GAINS,
}
|