添加配置表

This commit is contained in:
flswld
2022-11-30 00:00:20 +08:00
parent f70a890338
commit d7f3f3b866
33382 changed files with 8476601 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
-- 地图配置
scene_config = {
begin_pos = { x = -531.5, z = -519.5 },
size = { x = 1008.4, z = 1008.4 },
born_pos = { x = -0.426, y = -5.021, z = 42.026 },
born_rot = { x = 0.000, y = 181.471, z = 0.000 },
die_y = -12,
city_id = 1,
vision_anchor = { x = -531.5, z = -519.5 }
}
-- 所有的区块
blocks = { 30502 }
-- 所有的区块范围坐标
block_rects = {
{ min = { x = -531.5, z = -519.5 }, max = { x = 476.9, z = 488.9 } }
}
-- Dummy Points
dummy_points = { }
-- Routes
routes_config = { }

View File

@@ -0,0 +1,7 @@
-- 所有的group
groups = {
{ id = 230502004, refresh_id = 1, pos = { x = 1.234, y = 0.034, z = 8.236 } },
{ id = 230502005, refresh_id = 1, pos = { x = -0.042, y = 0.034, z = -9.715 } },
{ id = 230502006, refresh_id = 1001, pos = { x = 5.489, y = 0.034, z = 1.041 } },
{ id = 230502007, refresh_id = 1, pos = { x = -1.959, y = 0.034, z = -0.913 } }
}

View File

@@ -0,0 +1,73 @@
-- 基础信息
local base_info = {
group_id = 230502004
}
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 4001, gadget_id = 70350077, pos = { x = 0.080, y = 0.000, z = 24.150 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, state = GadgetState.GearStart },
{ config_id = 4002, gadget_id = 70350077, pos = { x = 0.040, y = 0.000, z = -23.740 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, state = GadgetState.GearStart }
}
-- 区域
regions = {
}
-- 触发器
triggers = {
}
-- 变量
variables = {
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
end_suite = 0,
rand_suite = false
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 1,
-- description = ,
monsters = { },
gadgets = { 4001, 4002 },
regions = { },
triggers = { },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================

View File

@@ -0,0 +1,161 @@
-- 基础信息
local base_info = {
group_id = 230502005
}
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 5001, gadget_id = 70360010, pos = { x = 0.228, y = 0.059, z = 0.031 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 }
}
-- 区域
regions = {
}
-- 触发器
triggers = {
{ config_id = 1005002, name = "GADGET_CREATE_5002", event = EventType.EVENT_GADGET_CREATE, source = "", condition = "condition_EVENT_GADGET_CREATE_5002", action = "action_EVENT_GADGET_CREATE_5002" },
{ config_id = 1005003, name = "SELECT_OPTION_5003", event = EventType.EVENT_SELECT_OPTION, source = "", condition = "condition_EVENT_SELECT_OPTION_5003", action = "action_EVENT_SELECT_OPTION_5003", trigger_count = 0 }
}
-- 变量
variables = {
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
end_suite = 0,
rand_suite = false
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 1,
-- description = ,
monsters = { },
gadgets = { 5001 },
regions = { },
triggers = { "GADGET_CREATE_5002", "SELECT_OPTION_5003" },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发条件
function condition_EVENT_GADGET_CREATE_5002(context, evt)
if 5001 ~= evt.param1 then
return false
end
return true
end
-- 触发操作
function action_EVENT_GADGET_CREATE_5002(context, evt)
-- 设置操作台选项
if 0 ~= ScriptLib.SetWorktopOptionsByGroupId(context, 230502005, 5001, {7}) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_wok_options_by_configid")
return -1
end
return 0
end
-- 触发条件
function condition_EVENT_SELECT_OPTION_5003(context, evt)
-- 判断是gadgetid 5001 option_id 7
if 5001 ~= evt.param1 then
return false
end
if 7 ~= evt.param2 then
return false
end
return true
end
-- 触发操作
function action_EVENT_SELECT_OPTION_5003(context, evt)
-- 创建编号为1该怪物潮的识别id)的怪物潮创建怪物总数为20场上怪物最少3只最多4只
if 0 ~= ScriptLib.AutoMonsterTide(context, 1, 230502006, {6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6023}, 20, 3, 4) then
return -1
end
-- 爬塔是否允许使用技能( is_allow_use_skill=0或1,表示不允许或允许使用主动技能)
if 0 ~= ScriptLib.SetIsAllowUseSkill(context, 1) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : tower_allow_use_skill")
return -1
end
-- 删除指定group 230502005 指定config5001物件身上指定option7
if 0 ~= ScriptLib.DelWorktopOptionByGroupId(context, 230502005, 5001, 7) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : del_work_options_by_group_configId")
return -1
end
-- 改变指定group组230502005中 configid为5001的gadget的state
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 230502005, 5001, GadgetState.GearStop) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
return -1
end
-- 改变指定group组230502004中 configid为4002的gadget的state
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 230502004, 4002, GadgetState.Default) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
return -1
end
-- 改变指定group组230502004中 configid为4001的gadget的state
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 230502004, 4001, GadgetState.Default) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
return -1
end
-- 改变指定group组230502007中 configid为7001的gadget的state
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 230502007, 7001, GadgetState.GearStart) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
return -1
end
-- 改变指定group组230502007中 configid为7002的gadget的state
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 230502007, 7002, GadgetState.GearStart) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
return -1
end
return 0
end

View File

@@ -0,0 +1,183 @@
-- 基础信息
local base_info = {
group_id = 230502006
}
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
{ config_id = 6001, monster_id = 25010201, pos = { x = 6.318, y = 0.034, z = -5.019 }, rot = { x = 0.000, y = 346.531, z = 0.000 }, level = 1 },
{ config_id = 6002, monster_id = 25010301, pos = { x = -6.957, y = 0.034, z = -5.032 }, rot = { x = 0.000, y = 21.465, z = 0.000 }, level = 1 },
{ config_id = 6003, monster_id = 25010501, pos = { x = -6.538, y = 0.034, z = -9.942 }, rot = { x = 0.000, y = 18.562, z = 0.000 }, level = 1 },
{ config_id = 6004, monster_id = 25030201, pos = { x = -0.004, y = 0.034, z = -11.536 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 },
{ config_id = 6005, monster_id = 25060101, pos = { x = 7.877, y = 0.034, z = -11.737 }, rot = { x = 0.000, y = 343.731, z = 0.000 }, level = 1 },
{ config_id = 6006, monster_id = 25060101, pos = { x = -11.207, y = 0.034, z = -1.136 }, rot = { x = 0.000, y = 64.828, z = 0.000 }, level = 1 },
{ config_id = 6007, monster_id = 25020201, pos = { x = 11.870, y = 0.034, z = -0.838 }, rot = { x = 0.000, y = 270.084, z = 0.000 }, level = 1 },
{ config_id = 6008, monster_id = 25010701, pos = { x = 1.460, y = 0.034, z = 9.847 }, rot = { x = 0.000, y = 182.789, z = 0.000 }, level = 1 },
{ config_id = 6009, monster_id = 25070101, pos = { x = 4.471, y = 0.034, z = -7.329 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 },
{ config_id = 6010, monster_id = 25070101, pos = { x = -5.793, y = 0.034, z = -7.655 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 },
{ config_id = 6011, monster_id = 25020201, pos = { x = 10.565, y = 0.034, z = 5.770 }, rot = { x = 0.000, y = 234.100, z = 0.000 }, level = 1 },
{ config_id = 6012, monster_id = 25030301, pos = { x = 11.595, y = 0.034, z = -8.136 }, rot = { x = 0.000, y = 322.134, z = 0.000 }, level = 1 },
{ config_id = 6013, monster_id = 25010201, pos = { x = -0.439, y = 0.034, z = -10.040 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 },
{ config_id = 6014, monster_id = 25010201, pos = { x = -12.903, y = 0.034, z = -5.201 }, rot = { x = 0.000, y = 50.168, z = 0.000 }, level = 1 },
{ config_id = 6015, monster_id = 25020201, pos = { x = -9.840, y = 0.034, z = 5.467 }, rot = { x = 0.000, y = 126.700, z = 0.000 }, level = 1 },
{ config_id = 6016, monster_id = 25030201, pos = { x = -11.460, y = 0.034, z = 1.695 }, rot = { x = 0.000, y = 101.360, z = 0.000 }, level = 1 },
{ config_id = 6017, monster_id = 25010301, pos = { x = 9.560, y = 0.034, z = -0.811 }, rot = { x = 0.000, y = 274.510, z = 0.000 }, level = 1 },
{ config_id = 6018, monster_id = 25010501, pos = { x = -8.035, y = 0.034, z = 6.303 }, rot = { x = 0.000, y = 133.400, z = 0.000 }, level = 1 },
{ config_id = 6019, monster_id = 25010701, pos = { x = 5.074, y = 0.034, z = 9.171 }, rot = { x = 0.000, y = 203.110, z = 0.000 }, level = 1 },
{ config_id = 6020, monster_id = 25030301, pos = { x = 0.207, y = 0.034, z = -8.003 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 },
{ config_id = 6021, monster_id = 25030201, pos = { x = -7.695, y = 0.034, z = -6.703 }, rot = { x = 0.000, y = 43.800, z = 0.000 }, level = 1 },
{ config_id = 6022, monster_id = 25010701, pos = { x = 7.267, y = 0.034, z = -6.078 }, rot = { x = 0.000, y = 320.900, z = 0.000 }, level = 1 },
{ config_id = 6023, monster_id = 25070101, pos = { x = 8.370, y = 0.034, z = 5.896 }, rot = { x = 0.000, y = 230.800, z = 0.000 }, level = 1 }
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 6024, gadget_id = 70900205, pos = { x = 6.316, y = -1.425, z = 3.164 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 }
}
-- 区域
regions = {
}
-- 触发器
triggers = {
{ config_id = 1006025, name = "MONSTER_TIDE_OVER_6025", event = EventType.EVENT_MONSTER_TIDE_OVER, source = "1", condition = "", action = "action_EVENT_MONSTER_TIDE_OVER_6025" },
{ config_id = 1006026, name = "ANY_MONSTER_LIVE_6026", event = EventType.EVENT_ANY_MONSTER_LIVE, source = "", condition = "condition_EVENT_ANY_MONSTER_LIVE_6026", action = "action_EVENT_ANY_MONSTER_LIVE_6026" },
{ config_id = 1006027, name = "CHALLENGE_SUCCESS_6027", event = EventType.EVENT_CHALLENGE_SUCCESS, source = "1", condition = "", action = "action_EVENT_CHALLENGE_SUCCESS_6027" },
{ config_id = 1006028, name = "CHALLENGE_FAIL_6028", event = EventType.EVENT_CHALLENGE_FAIL, source = "1", condition = "", action = "action_EVENT_CHALLENGE_FAIL_6028" }
}
-- 变量
variables = {
{ config_id = 1, name = "monster_wave", value = 0, no_refresh = false }
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
end_suite = 0,
rand_suite = false
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 1,
-- description = ,
monsters = { },
gadgets = { 6024 },
regions = { },
triggers = { "MONSTER_TIDE_OVER_6025", "ANY_MONSTER_LIVE_6026", "CHALLENGE_SUCCESS_6027", "CHALLENGE_FAIL_6028" },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发操作
function action_EVENT_MONSTER_TIDE_OVER_6025(context, evt)
-- 延迟0秒刷怪
if 0 ~= ScriptLib.CreateMonster(context, { config_id = 6020, delay_time = 0 }) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : create_monster")
return -1
end
-- 延迟0秒刷怪
if 0 ~= ScriptLib.CreateMonster(context, { config_id = 6021, delay_time = 0 }) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : create_monster")
return -1
end
-- 延迟0秒刷怪
if 0 ~= ScriptLib.CreateMonster(context, { config_id = 6022, delay_time = 0 }) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : create_monster")
return -1
end
return 0
end
-- 触发条件
function condition_EVENT_ANY_MONSTER_LIVE_6026(context, evt)
if 6001 ~= evt.param1 then
return false
end
return true
end
-- 触发操作
function action_EVENT_ANY_MONSTER_LIVE_6026(context, evt)
-- 创建编号为1该挑战的识别id),挑战内容为1042的区域挑战具体参数填写方式见DungeonChallengeData表中的注释所有填写的值都必须是int类型
if 0 ~= ScriptLib.ActiveChallenge(context, 1, 1042, 300, 230502006, 23, 0) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : active_challenge")
return -1
end
-- 针对当前group内变量名为 "monster_wave" 的变量,进行修改,变化值为 1
if 0 ~= ScriptLib.ChangeGroupVariableValue(context, "monster_wave", 1) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : change_GroupVariable")
return -1
end
-- 爬塔三星计时is_stop: 0:开始计时、1:暂停计时)
if 0 ~= ScriptLib.TowerCountTimeStatus(context, 0) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : tower_time_status")
return -1
end
return 0
end
-- 触发操作
function action_EVENT_CHALLENGE_SUCCESS_6027(context, evt)
-- 改变指定group组230502004中 configid为4002的gadget的state
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 230502004, 4002, GadgetState.GearStart) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
return -1
end
-- 爬塔三星计时is_stop: 0:开始计时、1:暂停计时)
if 0 ~= ScriptLib.TowerCountTimeStatus(context, 1) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : tower_time_status")
return -1
end
return 0
end
-- 触发操作
function action_EVENT_CHALLENGE_FAIL_6028(context, evt)
-- 地城失败结算
if 0 ~= ScriptLib.CauseDungeonFail(context) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : cause_dungeonfail")
return -1
end
return 0
end

View File

@@ -0,0 +1,91 @@
-- 基础信息
local base_info = {
group_id = 230502007
}
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 7001, gadget_id = 70350053, pos = { x = 0.031, y = 0.078, z = 0.037 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 },
{ config_id = 7002, gadget_id = 70350054, pos = { x = 0.079, y = 0.063, z = 0.059 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 }
}
-- 区域
regions = {
}
-- 触发器
triggers = {
{ config_id = 1007003, name = "DUNGEON_SETTLE_7003", event = EventType.EVENT_DUNGEON_SETTLE, source = "", condition = "", action = "action_EVENT_DUNGEON_SETTLE_7003" }
}
-- 变量
variables = {
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
end_suite = 0,
rand_suite = false
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 1,
-- description = ,
monsters = { },
gadgets = { 7001, 7002 },
regions = { },
triggers = { "DUNGEON_SETTLE_7003" },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发操作
function action_EVENT_DUNGEON_SETTLE_7003(context, evt)
-- 改变指定group组230502007中 configid为7001的gadget的state
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 230502007, 7001, GadgetState.Default) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
return -1
end
-- 改变指定group组230502007中 configid为7002的gadget的state
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 230502007, 7002, GadgetState.Default) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
return -1
end
return 0
end

View File

@@ -0,0 +1,99 @@
{
"areas": {},
"doors": {},
"entities": {
"1": {
"$type": "ConfigLocalTrigger",
"alias": "",
"areaId": 0,
"checkCount": 0,
"checkDist": 500.0,
"floatParam": 0.0,
"gadgetId": 70010006,
"groupLimit": false,
"isModelHidden": false,
"meta": null,
"pointType": "Other",
"pos": {
"x": -0.9124126,
"y": -5.037683,
"z": 107.7861
},
"rot": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"shape": {
"$type": "ConfigShapeRect",
"centerType": "Center",
"height": 200.0,
"heightType": "Center",
"length": 150.0,
"useHeight": true,
"width": 300.0
},
"stringParam": "",
"tranPos": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"tranRot": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"triggerFlag": "NoReviveRegion",
"triggerInterval": 0.1,
"type": "NORMAL",
"unlocked": true,
"vectorParam": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"withGO": true
}
},
"forces": {},
"points": {
"1": {
"$type": "DungeonQuitPoint",
"alias": "",
"areaId": 0,
"gadgetId": 70120004,
"groupLimit": false,
"isModelHidden": false,
"pointType": "DungeonQuitPoint",
"pos": {
"x": 12.88107,
"y": 7.32255,
"z": -62.51174
},
"rot": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"size": {
"x": 5.0,
"y": 5.0,
"z": 5.0
},
"tranPos": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"tranRot": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"type": "NORMAL",
"unlocked": true
}
},
"transRadius": 0.0
}