17 lines
468 B
Lua
17 lines
468 B
Lua
|
ProjectConfig = ProjectConfig or {}
|
||
|
|
||
|
-- 挑战者名字
|
||
|
ProjectConfig.ChallengeName = "挑战者"
|
||
|
-- 围剿方名字
|
||
|
ProjectConfig.SiegeName = "围剿方"
|
||
|
-- 挑战者Buff
|
||
|
ProjectConfig.ChallengeBuffs = {
|
||
|
[1] = {};
|
||
|
[2] = {BuffAssetConfig.EBuffAssetType.AddMaxHealthChallenge2};
|
||
|
[3] = {BuffAssetConfig.EBuffAssetType.AddMaxHealthChallenge3};
|
||
|
[4] = {BuffAssetConfig.EBuffAssetType.AddMaxHealthChallenge};
|
||
|
}
|
||
|
|
||
|
|
||
|
-- 星星得分
|
||
|
--ProjectConfig.StarScore = 5
|