mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2024-12-26 07:49:29 +03:00
23 lines
715 B
Lua
23 lines
715 B
Lua
|
--************************************************************************
|
||
|
-- 工具自动生成的类型定义代码(UTF-8 With BOM),请勿编辑!
|
||
|
-- File Name: ConfigAbilityAction.lua
|
||
|
-- Purpose: lua类型定义文件
|
||
|
-- Copyright (c) 2017-2100 miHoYo.com, Inc. All rights reserved.
|
||
|
--************************************************************************
|
||
|
|
||
|
--Param Logic Type
|
||
|
ParamLogicType =
|
||
|
{
|
||
|
Replace = 0, -- Replace
|
||
|
Add = 1, -- Add
|
||
|
}
|
||
|
|
||
|
--Level Buff Special
|
||
|
LevelBuffSpecial =
|
||
|
{
|
||
|
None = 0, -- None
|
||
|
WitchTimeDurationScaledByEvadedAttack = 1, -- this is too adhoc to be handled generally within the system
|
||
|
InfiniteDuration = 2, -- Infinite duration, life span is controlled by other thing
|
||
|
}
|
||
|
|