Level 5
Yes, they [c]all lost their memories from yesterday[/c]!
Skill #231001
Inflicts the Silence effect on a single enemy, which can be removed by the Panacea.
Level 5
Yes, they [c]all lost their memories from yesterday[/c]!
Level 4
Yes, they [c]all lost their memories from yesterday[/c]!
Level 3
Yes, they [c]all lost their memories from yesterday[/c]!
Level 2
Yes, they [c]all lost their memories from yesterday[/c]!
Level 1
Yes, they [c]all lost their memories from yesterday[/c]!
Formulas & functions
Formula source
function CommonFun.calcBuff_103(srcUser, targetUser, a, b, c, d, lv)
if srcUser == nil or targetUser == nil then
return 0
end
local Num1 = srcUser:GetRunePoint(52100)
local SilenceAtk = srcUser:GetProperty("SilenceAtk")
local SilenceDef2 = targetUser:GetProperty("SilenceDef")
local SlienceDam = 1 + SilenceAtk - SilenceDef2
if SlienceDam <= 0 then
SlienceDam = 0
end
local StateAtk = srcUser:GetProperty("StateAtk")
local StateDef2 = targetUser:GetProperty("StateDef")
local StateDam = (1 + StateAtk) * (1 - StateDef2)
if StateDam <= 0 then
StateDam = 0
end
local A = 100 * SlienceDam * StateDam * CommonFun.calcAttrSilenceRate(srcUser, targetUser)
if 0 < Num1 then
A = 0
end
if A <= 0 then
return 0
end
return A
endFormula source
function CommonFun.calcBuff_104(srcUser, targetUser, a, b, c, d, lv)
if srcUser == nil or targetUser == nil then
return 0
end
local Num1 = srcUser:GetRunePoint(52100)
local A = Num1 * 100 * CommonFun.calcAttrSilenceRate(srcUser, targetUser)
if targetUser.boss or targetUser.mini then
A = 0
end
if A <= 0 then
return 0
end
return A
endFormula source
function CommonFun.calcBuff_106(srcUser, targetUser, a, b, c, d, lv)
if srcUser == nil or targetUser == nil then
return 0
end
local Num1 = srcUser:GetRunePoint(52130)
local Num2 = srcUser:GetRunePoint(52100)
local A = Num1 * a * CommonFun.calcAttrSilenceRate(srcUser, targetUser)
if 1 <= Num2 then
A = 0
end
if A <= 0 then
return 0
end
return A
endSkill JSON (Level 5)
{
"id": 231005,
"NameZh": "沉默之术",
"Level": 5,
"Icon": "skill_231001",
"Cost": 1,
"Desc": [
{
"id": 231000,
"params": [
50
]
}
],
"SkillType": "Buff",
"Camps": "Enemy",
"Launch_Range": 6,
"Fire_EP": 3,
"Target_EP": 3,
"Attack_EP": 3,
"CD": 5,
"SkillCost": {
"sp": 30
},
"DelayCD": 3,
"AutoCondition": [
{
"no_target": 1,
"time": 30,
"type": 1
}
],
"Logic": "SkillLockedTarget",
"Buff": {
"enemy": [
96040,
96041,
45000220
]
},
"Pvp_buff": {
"enemy": [
96040,
96041,
45000220
]
},
"AttackAct": [
"use_magic"
],
"SE_attack": "Skill/LexDivina_attack",
"description": {
"chinesesimplified": "没错,他们[c][ffff00]全部都失去了昨天的记忆[-][/c]!!",
"english": "Yes, they [c][ffff00]all lost their memories from yesterday[-][/c]!",
"german": "Ja,sie [c][ffff00] alle haben keine Erinnernungen an gestern[-][/c]!",
"portuguese": "Sim,todos eles[c][ffff00]perderam suas memórias de ontem[-][/c]!",
"spanish": "¡Sí,[c][ffff00]todos perdieron sus recuerdos de ayer[-][/c]!"
}
}