ango commited on
Commit
0f5c288
·
1 Parent(s): 0ed027c

04.19 commit

Browse files
Files changed (1) hide show
  1. schools/bei_ao_jue/gains.py +5 -2
schools/bei_ao_jue/gains.py CHANGED
@@ -1,5 +1,5 @@
1
- from base.recipe import damage_addition_recipe
2
- from general.gains.equipment import EQUIPMENT_GAINS, EquipmentGain, CriticalSet
3
  from base.gain import Gain
4
 
5
 
@@ -10,9 +10,12 @@ GAINS = {
10
  4291: damage_addition_recipe([16803, 16802, 16801, 16800, 17043, 19423, 19424, 32859], 51),
11
  4294: damage_addition_recipe([16610], 51),
12
  4295: damage_addition_recipe([16760, 16382], 51),
 
 
13
  2430: Gain(),
14
  1942: Gain(),
15
  17374: Gain(),
 
16
  17239: Gain(),
17
  **EQUIPMENT_GAINS,
18
  }
 
1
+ from base.recipe import damage_addition_recipe, critical_strike_recipe
2
+ from general.gains.equipment import EQUIPMENT_GAINS, CriticalSet
3
  from base.gain import Gain
4
 
5
 
 
10
  4291: damage_addition_recipe([16803, 16802, 16801, 16800, 17043, 19423, 19424, 32859], 51),
11
  4294: damage_addition_recipe([16610], 51),
12
  4295: damage_addition_recipe([16760, 16382], 51),
13
+ 4296: critical_strike_recipe([16760, 16382], 500),
14
+ 4297: Gain(),
15
  2430: Gain(),
16
  1942: Gain(),
17
  17374: Gain(),
18
+ 17375: Gain(),
19
  17239: Gain(),
20
  **EQUIPMENT_GAINS,
21
  }