Spaces:
Runtime error
Runtime error
File size: 548 Bytes
dace851 1467c05 dace851 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from base.recipe import damage_addition_recipe, critical_strike_recipe
from general.gains.equipment import EQUIPMENT_GAINS, CriticalSet
from base.gain import Gain
GAINS = {
1916: CriticalSet(1437),
1547: damage_addition_recipe([6234, 6554], 102),
1524: damage_addition_recipe([6234, 6554], 51),
1525: damage_addition_recipe([6559], 51),
1137: critical_strike_recipe([30524], 500),
1977: critical_strike_recipe([2716], 500),
2416: Gain(),
1930: Gain(),
17380: Gain(),
17381: Gain(),
**EQUIPMENT_GAINS,
}
|