Spaces:
Runtime error
Runtime error
File size: 523 Bytes
88de31c 2f63a42 88de31c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from base.recipe import damage_addition_recipe
from general.gains.equipment import EQUIPMENT_GAINS, PhysicalCriticalSet
from base.gain import Gain
GAINS = {
(22035, 1): Gain(),
1925: PhysicalCriticalSet(0.8),
4290: damage_addition_recipe([16610], 51),
4291: damage_addition_recipe([16803, 16802, 16801, 16800, 17043, 19423, 19424, 32859], 51),
4294: damage_addition_recipe([16610], 51),
4295: damage_addition_recipe([16760, 16382], 51),
2430: Gain(),
1942: Gain(),
**EQUIPMENT_GAINS,
}
|