
Mixed Potion Cast
Throw mixed potion to the designated area, cause all allies within 3 meters getting the effect of [HP Potion Cast] and [MP Potion Cast] once every 2 seconds. Potion area lasts for 20 seconds. Passively increase effects of [HP Potion Cast] by 300% and [MP Potion Cast] by 100%
Skill Levels
• Throw mixed potion to the designated area, cause all allies within 3 meters getting the effect of [HP Potion Cast] and [MP Potion Cast] once every 2 seconds. Potion area lasts for 20 seconds. Passively increase effects of [HP Potion Cast] by 270% and [MP Potion Cast] by 90%
• Throw mixed potion to the designated area, cause all allies within 3 meters getting the effect of [HP Potion Cast] and [MP Potion Cast] once every 2 seconds. Potion area lasts for 20 seconds. Passively increase effects of [HP Potion Cast] by 240% and [MP Potion Cast] by 80%
• Throw mixed potion to the designated area, cause all allies within 3 meters getting the effect of [HP Potion Cast] and [MP Potion Cast] once every 2 seconds. Potion area lasts for 20 seconds. Passively increase effects of [HP Potion Cast] by 210% and [MP Potion Cast] by 70%
• Throw mixed potion to the designated area, cause all allies within 3 meters getting the effect of [HP Potion Cast] and [MP Potion Cast] once every 2 seconds. Potion area lasts for 20 seconds. Passively increase effects of [HP Potion Cast] by 180% and [MP Potion Cast] by 60%
• Throw mixed potion to the designated area, cause all allies within 3 meters getting the effect of [HP Potion Cast] and [MP Potion Cast] once every 2 seconds. Potion area lasts for 20 seconds. Passively increase effects of [HP Potion Cast] by 150% and [MP Potion Cast] by 50%
• Throw mixed potion to the designated area, cause all allies within 3 meters getting the effect of [HP Potion Cast] and [MP Potion Cast] once every 2 seconds. Potion area lasts for 20 seconds. Passively increase effects of [HP Potion Cast] by 120% and [MP Potion Cast] by 40%
• Throw mixed potion to the designated area, cause all allies within 3 meters getting the effect of [HP Potion Cast] and [MP Potion Cast] once every 2 seconds. Potion area lasts for 20 seconds. Passively increase effects of [HP Potion Cast] by 90% and [MP Potion Cast] by 30%
• Throw mixed potion to the designated area, cause all allies within 3 meters getting the effect of [HP Potion Cast] and [MP Potion Cast] once every 2 seconds. Potion area lasts for 20 seconds. Passively increase effects of [HP Potion Cast] by 60% and [MP Potion Cast] by 20%
• Throw mixed potion to the designated area, cause all allies within 3 meters getting the effect of [HP Potion Cast] and [MP Potion Cast] once every 2 seconds. Potion area lasts for 20 seconds. Passively increase effects of [HP Potion Cast] by 30% and [MP Potion Cast] by 10%
Formula
1function CommonFun.calcBuff_2250(srcUser, targetUser, a, b, c, d, lv)
2 if srcUser == nil or targetUser == nil then
3 return 0
4 end
5 local Vit = targetUser:GetProperty("Vit")
6 local Int = srcUser:GetProperty("Int")
7 local skilllv_1 = srcUser:GetLernedSkillLevel(419_RUNE_KNIGHT:LEARNING_POTION)
8 local skilllv_2 = srcUser:GetLernedSkillLevel(423_RUNE_KNIGHT:HP_POTION_CAST)
9 local skilllv_3 = srcUser:GetLernedSkillLevel(3705_ROYAL_GUARD:MIXED_POTION_CAST)
10 local rate1 = 1
11 local rate2 = 1
12 if 1 <= skilllv_1 then
13 rate1 = 1.1 + 0.02 * skilllv_1
14 end
15 if 1 <= skilllv_2 then
16 rate2 = 1 + 0.1 * skilllv_2
17 end
18 local Weapon = srcUser:GetEquipedID(4)
19 local rate3 = 1
20 if Weapon == 43551_RESCUER_SHOES or Weapon == 143551_RESCUER_SHOES_1 then
21 rate3 = rate3 + 0.2
22 end
23 if srcUser:HasBuffID(90001563_RESCUER_SHOES_TIER_4_:MAX_STACK_0) then
24 rate3 = rate3 + 0.2
25 end
26 if srcUser:HasBuffID(44260_SOFT_SOLE_HIKING_BOOTS_:MAX_STACK_0) then
27 rate3 = rate3 + 0.4
28 end
29 local equipRingSD = srcUser:getEquip(CommonFun.PackType.EPACKTYPE_SHADOWEQUIP, CommonFun.EquipPos.EEQUIPPOS_SHOES)
30 if equipRingSD.id ~= 0 and srcUser:HasBuffLayer(44260, EBUFFERLAYER_SHADOW) then
31 rate3 = rate3 + 0.4 * equipRingSD.quench_per / 100
32 end
33 if srcUser:HasBuffID(91000130_ELDER_S_HAMMER_RESCUER_SHOES_:MAX_STACK_0) or srcUser:HasBuffID(91001630_ELDER_S_HAMMER_SOFT_SOLE_HIKING_BOOTS_:MAX_STACK_0) then
34 rate3 = rate3 + 0.1
35 end
36 if srcUser:HasBuffID(91000700_ERODING_TOUCH_RESCUER_SHOES_:MAX_STACK_0) or srcUser:HasBuffID(91001631_ACID_TOUCH_SOFT_SOLE_HIKING_BOOTS_:MAX_STACK_0) then
37 rate3 = rate3 + 0.1
38 end
39 local A = 400 * (1 + Vit * 0.025) * (1 + Int * 0.005) * rate1 * rate2 * rate3 * (1 + skilllv_3 * 0.3)
40 return A
41end