
The Pioneer
Lvl: 5
SummonPioneer
Physical
CD: 20 sec
Skill Delay: 1 sec
SP: 300
Range: 4
The Lightbringer summons the Pioneer to support him. The Pioneer comes from the sky and causes DMG ([Knuckle Boost] Lv.10 x600%) to enemies on the ground. The Pioneer inherits part of the attributes of Lightbringer and [follow] the Lightbringer to fight. It takes priority to attack the targets attacked by Lightbringer. Lasts 600 seconds. The skill cannot be used in the state of [Madogear]. But under this skill, using [Madogear] will immediately get on the Mech
Lvl: 4
SummonPioneer
Physical
CD: 30 sec
Skill Delay: 1 sec
SP: 300
Range: 4
• The Lightbringer summons the Pioneer to support him. The Pioneer comes from the sky and causes DMG ([Knuckle Boost] Lv.10 x500%) to enemies on the ground. The Pioneer inherits part of the attributes of Lightbringer and [follow] the Lightbringer to fight. It takes priority to attack the targets attacked by Lightbringer. Lasts 600 seconds. The skill cannot be used in the state of [Madogear]. But under this skill, using [Madogear] will immediately get on the Mech
Lvl: 3
SummonPioneer
Physical
CD: 40 sec
Skill Delay: 1 sec
SP: 300
Range: 4
• The Lightbringer summons the Pioneer to support him. The Pioneer comes from the sky and causes DMG ([Knuckle Boost] Lv.10 x400%) to enemies on the ground. The Pioneer inherits part of the attributes of Lightbringer and [follow] the Lightbringer to fight. It takes priority to attack the targets attacked by Lightbringer. Lasts 600 seconds. The skill cannot be used in the state of [Madogear]. But under this skill, using [Madogear] will immediately get on the Mech
Lvl: 2
SummonPioneer
Physical
CD: 50 sec
Skill Delay: 1 sec
SP: 300
Range: 4
• The Lightbringer summons the Pioneer to support him. The Pioneer comes from the sky and causes DMG ([Knuckle Boost] Lv.10 x300%) to enemies on the ground. The Pioneer inherits part of the attributes of Lightbringer and [follow] the Lightbringer to fight. It takes priority to attack the targets attacked by Lightbringer. Lasts 600 seconds. The skill cannot be used in the state of [Madogear]. But under this skill, using [Madogear] will immediately get on the Mech
Lvl: 1
SummonPioneer
Physical
CD: 60 sec
Skill Delay: 1 sec
SP: 300
Range: 4
• The Lightbringer summons the Pioneer to support him. The Pioneer comes from the sky and causes DMG ([Knuckle Boost] Lv.10 x200%) to enemies on the ground. The Pioneer inherits part of the attributes of Lightbringer and [follow] the Lightbringer to fight. It takes priority to attack the targets attacked by Lightbringer. Lasts 600 seconds. The skill cannot be used in the state of [Madogear]. But under this skill, using [Madogear] will immediately get on the Mech
Formula
function CommonFun.calcDamage_6403(srcUser, targetUser, params, damageParam, logger)
local Str = srcUser:GetProperty("Str")
local Dex = srcUser:GetProperty("Dex")
local Luk = srcUser:GetProperty("Luk")
local Atk = srcUser:GetProperty("Atk")
local AtkPer = srcUser:GetProperty("AtkPer")
local DamIncrease = srcUser:GetProperty("DamIncrease")
local IgnoreDef = 0
local IgnoreDef1 = srcUser:GetProperty("IgnoreDef")
local IgnoreDef2 = srcUser:GetProperty("IgnoreEquipDef")
if targetUser.boss or targetUser.mini then
IgnoreDef = IgnoreDef1
else
IgnoreDef = IgnoreDef1 + IgnoreDef2
end
if 1 <= IgnoreDef then
IgnoreDef = 1
end
local Refine = srcUser:GetProperty("Refine")
local Def2 = targetUser:GetProperty("Def")
local DefPer2 = targetUser:GetProperty("DefPer")
local Vit2 = targetUser:GetProperty("Vit")
local VitPer2 = targetUser:GetProperty("VitPer")
local DamReduc2 = CommonFun.calcDamReDuc(srcUser, targetUser)
local RefineDamReduc = targetUser:GetProperty("RefineDamReduc")
local damChangePer = damageParam.damChangePer
local Weapon = srcUser:GetEquipedID(7_WEAPON)
local RefineLv = srcUser:GetEquipedRefineLv(7_WEAPON)
local raceparam = CommonFun.CalcRaceParam(srcUser, targetUser, params, damageParam, logger)
local bodyparam = CommonFun.CalcBodyParam(srcUser, targetUser, params, damageParam, logger)
local elementparam = CommonFun.CalcElementParam(srcUser, targetUser, params, damageParam, logger)
local bossparam = CommonFun.CalcBossParam(srcUser, targetUser, params, damageParam, logger)
local raceparam2 = CommonFun.CalcRaceParam2(srcUser, targetUser, params, damageParam, logger)
local bodyparam2 = CommonFun.CalcBodyParam2(srcUser, targetUser, params, damageParam, logger)
local elementparam2 = CommonFun.CalcElementParam2(srcUser, targetUser, params, damageParam, logger)
local bossparam2 = CommonFun.CalcBossParam2(srcUser, targetUser, params, damageParam, logger)
local BaseAtk = Str * 2 + math.floor(Str * Str / 100) + math.floor(Dex / 5) + math.floor(Luk / 5)
local AtkFinal = ((Atk - BaseAtk) * (1 + AtkPer) * CommonFun.ShapeCorrection(srcUser, targetUser) * bodyparam * elementparam * elementparam2 + BaseAtk) * raceparam * bossparam * bossparam2
local DefReduc = CommonFun.CalcDef(srcUser, targetUser)
local LongRangeDamReduc2 = targetUser:GetProperty("LongRangeDamReduc")
local BaseLvDamage = 0
local IBaseLv = srcUser.BaseLv
if srcUser:HasBuffID(43580_ACADEMY_AXE_:MAX_STACK_0) then
BaseLvDamage = IBaseLv * 50
end
local Num = srcUser:GetRunePoint(64090_AESIR_KNUCKLE_BOOST_DAMAGE_10)
local RuneDamage = 1 + Num * 0.1
local GemValue = srcUser:GetGemValue(61091_KNUCKLE_BOOST_DMG_PERCENTAGE)
local GemDam = 1 + GemValue / 100000
local ktz = 1
local skillID, skillLevel = CommonFun.UnmergeSkillID(params.skillIDAndLevel)
if skillID == 4300_CHRONOMANCER:THE_PIONEER then
local skilllv_ktz = srcUser:GetLernedSkillLevel(4300_CHRONOMANCER:THE_PIONEER)
damChangePer = 10.4
ktz = 1 + skilllv_ktz * 1
end
local recursion = 1
if srcUser:HasBuffID(132430_RECURSION_KNUCKLE_BOOST_:MAX_STACK_0) and skillID == 4300_CHRONOMANCER:THE_PIONEER then
local skilllv_dg = srcUser:GetLernedSkillLevel(4308_CHRONOMANCER:RECURSION)
local skilllv_dg2 = srcUser:GetLernedSkillLevel(4322_CHRONOMANCER:RECURSION_ENERGY)
recursion = 1 + skilllv_dg * 0.03 + skilllv_dg2 * 0.02
end
local A = ((AtkFinal * DefReduc * (1 - DamReduc2) + Refine) * (damChangePer + Dex / 30) * (1 - RefineDamReduc) * (1 + DamIncrease - LongRangeDamReduc2) - Vit2 * (1 + VitPer2)) * RuneDamage * GemDam * ktz * recursion + BaseLvDamage
if A <= 1 then
return 1
end
return A
end
Logic Param 6400
function CommonFun.calcBuff_6400(srcUser, targetUser, a, b, c, d, lv)
if srcUser == nil or targetUser == nil then
return 0
end
local MaxHp = targetUser:GetProperty("MaxHp")
local skilllv = srcUser:GetLernedSkillLevel(a)
local A = MaxHp * skilllv * b
return A
end
Enemy
{
"id": 132470,
"BuffName": "The Pioneer - Stun",
"BuffRate": {
"Odds": {
"a": 4320,
"b": 20,
"c": 0,
"type": 8
}
},
"BuffEffect": {
"id": [
132471
],
"type": "AddBuff"
}
}
Enemy
{
"id": 132471,
"BuffName": "Stun",
"BuffRate": {
"Odds": {
"a": 0,
"b": 100,
"type": 130
}
},
"BuffType": {
"isgain": 0,
"isdisperse": 1
},
"BuffEffect": {
"type": "StatusChange",
"NoAct": 1,
"AttrEffect": [
3,
4
],
"StateEffect": "4_Dizzy"
},
"BuffStateID": 80010
}
Logic Param
{
"id": 132300,
"BuffName": "Machine Learning",
"BuffRate": {
"Odds": {
"a": 4301,
"b": 100,
"c": 0,
"type": 8
}
},
"BuffEffect": {
"type": "MachineLearning",
"value": 4301
}
}
Logic Param
{
"id": 132320,
"BuffName": "Parts Replacement",
"BuffRate": {
"Odds": {
"a": 4306,
"b": 100,
"c": 0,
"type": 8
}
},
"BuffEffect": {
"Hp": {
"a": 4306,
"b": 0.04,
"type": 6400
},
"type": "HSPChange"
}
}
Logic Param
{
"id": 132330,
"BuffName": "Consciousness Awakening",
"BuffRate": {
"Odds": {
"a": 4307,
"b": 100,
"c": 0,
"type": 8
}
},
"BuffEffect": {
"type": "AttrChange",
"DamReduc": {
"a": 4321,
"b": 0.05,
"c": 0,
"type": 8
},
"MDamReduc": {
"a": 4321,
"b": 0.05,
"c": 0,
"type": 8
},
"DemiHumanDamPer": {
"a": 4307,
"b": 0.05,
"c": 0,
"type": 8
},
"DemiHumanResPer": {
"a": 4307,
"b": 0.05,
"c": 0,
"type": 8
}
}
}
Logic Param
{
"id": 132480,
"BuffName": "The Pioneer Attribute change",
"BuffRate": {
"Odds": 100
}
}
Logic Param
{
"id": 132481,
"BuffName": "The Pioneer Immunity Abnormal Status",
"BuffRate": {
"Odds": {
"a": 0,
"b": 100,
"c": 20610140,
"type": 5040
}
},
"BuffEffect": {
"type": "ImmuneStatus",
"status": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12
],
"immune_force": 1
}
}

Machine Revolution
Logic Param
{
"id": 132492,
"BuffName": "The Pioneer uses Self Destruction after death",
"BuffRate": {
"Odds": {
"a": 4309,
"b": 100,
"c": 0,
"type": 8
}
},
"Condition": {
"type": "Die",
"needMapType": [
2,
3,
4
]
},
"BuffEffect": {
"id": 4319001,
"Odds": 100,
"type": "UseSkill",
"CarryUse": 1,
"IsActive": 0
}
}
Formula
{
"CD": 20,
"id": 4300005,
"Buff": {
"enemy": [
132470
]
},
"Cost": 1,
"Desc": [
{
"id": 4300000,
"params": [
600
]
}
],
"Icon": "skill_4300001",
"Camps": "Enemy",
"Level": 5,
"Logic": "SkillPointRange",
"Damage": [
{
"type": 6403,
"damChangePer": 0
}
],
"DescId": "##171294",
"NameZh": "##141684",
"DamTime": {
"type": 1,
"value": 1
},
"DelayCD": 1,
"Fire_EP": 3,
"ItemCost": [
{
"id": 12903,
"count": 1020
}
],
"Pvp_buff": {
"enemy": [
132470
]
},
"RollType": 1,
"AttackAct": [
"use_skill24"
],
"Attack_EP": 0,
"SE_attack": "Skill/Lightbringer_kaituozhehao",
"SkillCost": {
"sp": 300
},
"SkillType": "SummonPioneer",
"Target_EP": 3,
"DamageType": 1,
"Logic_Param": {
"loop": false,
"count": 2,
"npcid": 580050,
"range": 3,
"effect": "Mechanic_Pioneer_start,LowRange_B2",
"buffIDs": [
132300,
132320,
132330,
132480,
132481,
132492
],
"interval": 2,
"liveTime": 600,
"no_select": 1,
"isCountTrap": 1,
"fieldarea_cannot_immune": 1
},
"Launch_Range": 4,
"PreCondition": {
"ProType": 10
},
"ExtraMaxLevel": 0
}