{
//每场战斗仅1次,抵挡1次致命伤害,全队10秒内伤害提升15%。
"AbilityName" : "Card_Medical_1000608",
"AbilityStacking":"Unique",
"DefaultModifier":
{
"OnAdded":
[
{ //添加锁血
"$type":"MoleMole.ApplyModifier",
"ModifierName":"Controller",
"Target" : "Self"
}
]
},
"Modifiers":
{
"Controller":{
"Duration" : -1,
"ModifierStacking": "Unique",
"Block": -1,
"OnAdded":
[
{ //添加锁血
"$type":"MoleMole.ApplyModifier",
"ModifierName":"AvatarLockLifeModifier",
"Target" : "Self",
"Predicates":[
{
"$type" : "MoleMole.ByIsLocalAvatar",
"Target" : "Self",
"IsLocalAvatar" : true
}
]
}
],
"OnSwitchInBegin":
[
{ //添加锁血
"$type":"MoleMole.ApplyModifier",
"ModifierName":"AvatarLockLifeModifier",
"Target" : "Self"
}
],
"OnSwitchOutFinish": [
{
"$type": "MoleMole.RemoveModifier",
"ModifierName": "AvatarLockLifeModifier",
"Target": "Self"
}
]
},
//添加锁血
"AvatarLockLifeModifier":
{
"Duration" : -1,
"ModifierStacking": "Unique",
"ModifierMixins":
[
//添加锁血回调
{
"$type": "MoleMole.LockLifePropertyMixin",
"PerformBeHitEffect": true,
"DeltaLockList":
[
{
"LockType": "Total",
"LockValue": 1
}
],
"OnLifeLockedActions":
[
{
"$type":"MoleMole.ApplyModifier",
"ModifierName":"Whosyourdaddy",
"Target" : "Self"
}
]
}
]
},
"Whosyourdaddy":
{
"ModifierStacking" : "Unique",
"Duration" : 0.7,
"IgnoreTimeScale" : true,
"OnAdded":
[
//TimeSlow效果
{
"$type" : "MoleMole.TimeSlowByConfigKeyAction",
"ConfigKey" : "Player_LowHP_TimeSlow_01",
"IsGlobal" : true
},
//Zoom效果
{
"$type" : "MoleMole.CameraZoomAction",
"ZoomConfigKey" : "Player_LowHP_CamZoom_01"
},
//Stretch效果
{
"$type" : "MoleMole.CameraStretchAction",
"StretchConfigKey" : "Player_LowHP_CamStretch_01"
},
//Vignette效果
{
"$type" : "MoleMole.ProcessScreenEffectAction",
"EffectType" : "Vignette",
"EffectKey" : "Player_LowHP_Vignette_01"
},
//RadialBlur效果
{
"$type" : "MoleMole.ProcessScreenEffectAction",
"EffectType" : "RadialBlur",
"EffectKey" : "Player_LowHP_RadialBlur_01"
},
//Glitch效果
{
"$type":"MoleMole.ProcessScreenEffectAction",
"EffectType":"Glitch",
"EffectKey":"Player_LowHP_Glitch_01"
},
//Block
{
"$type":"MoleMole.ProcessModifierBlockAction",
"IsOpenBlock":true,
"AbilityName":"Card_Medical_1000608",
"ModifierName":"Controller"
}
],
"OnSwitchOutFinish": [
{
"$type": "MoleMole.RemoveModifier",
"ModifierName": "Whosyourdaddy",
"Target": "Self"
}
],
"OnRemoved":
[
{
"$type" : "MoleMole.RemoveModifier",
"ModifierName" : "AvatarLockLifeModifier",
"Target" : "Self"
},
//伤害增加
{
"$type":"MoleMole.ApplyModifier",
"ModifierName":"PropModifier",
"Target" : "TeamAvatars"
},
//打断TimeSlow效果
{
"$type" : "MoleMole.InterruptTimeSlowAction",
"TargetKey" : "Player_LowHP_TimeSlow_01"
},
//打断Zoom
{
"$type" : "MoleMole.CameraZoomEndAction",
"EndCameraZoomKey" : "Player_LowHP_CamZoom_01"
},
//打断Stretch
{
"$type" : "MoleMole.CameraStretchEndAction",
"EndCameraStretchKey" : "Player_LowHP_CamStretch_01"
},
//打断Vignette效果
{
"$type" : "MoleMole.InterruptScreenEffectAction",
"EffectType" : "Vignette",
"TargetKey" : "Player_LowHP_Vignette_01"
},
//打断RadialBlur效果
{
"$type" : "MoleMole.InterruptScreenEffectAction",
"EffectType" : "RadialBlur",
"EffectKey" : "Player_LowHP_RadialBlur_01"
},
//打断Glitch效果
{
"$type" : "MoleMole.InterruptScreenEffectAction",
"EffectType" : "Glitch",
"TargetKey" : "Player_LowHP_Glitch_01"
},
//恢复15%HP,不告知玩家(补偿)
{
"$type": "MoleMole.ModifyProperty",
"PropertyType":"CurHP",
"PropertyModifyFunction": "Add",
"Percentage": "%HpPercentage",
"Target" : "Self"
}
]
},
"PropModifier":
{
"Duration": "%Duration",
"ModifierStacking":"Unique",
"OnHitOther":
[
{
"$type":"MoleMole.ModifyAttackDataAction",
"PropertyKey":"Actor_AddedDamageRatio",
"PropertyValue":"%AddedDamageRatio",
"Target":"Self"
}
]
}
},
"AbilitySpecials" :
{
//表格参数
"HpPercentage":
{
"Value" : 0.15
},
"Duration":
{
"Value" : 10
},
"AddedDamageRatio":
{
"Value" : 10
}
}
}