File size: 499 Bytes
c255694
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from base.recipe import damage_addition_recipe, critical_strike_recipe
from general.gains.equipment import EQUIPMENT_GAINS, CriticalSet
from base.gain import Gain

GAINS = {
    1924: CriticalSet(9586),
    2209: damage_addition_recipe([18860], 102),
    2210: damage_addition_recipe([14227, 18859], 102),
    2401: damage_addition_recipe([18860], 51),
    2402: damage_addition_recipe([14100], 51),
    2415: Gain(),
    1941: Gain(),
    17306: Gain(),
    17314: Gain(),
    **EQUIPMENT_GAINS,
}