Spaces:
Runtime error
Runtime error
File size: 542 Bytes
6d1ec51 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from base.recipe import damage_addition_recipe, critical_strike_recipe
from general.gains.equipment import EQUIPMENT_GAINS, CriticalSet
from base.gain import Gain
GAINS = {
2125: CriticalSet(21758),
2839: damage_addition_recipe([27557], 102),
2840: damage_addition_recipe([27552], 102),
2842: damage_addition_recipe([27557], 51),
2843: damage_addition_recipe([27555], 51),
2841: critical_strike_recipe([27557], 500),
2414: Gain(),
2138: Gain(),
17458: Gain(),
17459: Gain(),
**EQUIPMENT_GAINS,
}
|