mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-28 09:05:26 +00:00
77 lines
1.8 KiB
Lua
77 lines
1.8 KiB
Lua
-- 基础信息
|
|
local base_info = {
|
|
group_id = 199001247
|
|
}
|
|
|
|
--================================================================
|
|
--
|
|
-- 配置
|
|
--
|
|
--================================================================
|
|
|
|
-- 怪物
|
|
monsters = {
|
|
}
|
|
|
|
-- NPC
|
|
npcs = {
|
|
{ config_id = 247001, npc_id = 30207, pos = { x = -246.663, y = 121.801, z = 418.264 }, rot = { x = 0.000, y = 219.966, z = 0.000 }, area_id = 403 },
|
|
{ config_id = 247002, npc_id = 30203, pos = { x = -237.372, y = 121.814, z = 421.265 }, rot = { x = 0.000, y = 123.002, z = 0.000 }, area_id = 403 },
|
|
{ config_id = 247003, npc_id = 30205, pos = { x = -247.751, y = 121.707, z = 417.778 }, rot = { x = 0.000, y = 59.921, z = 0.000 }, area_id = 403 },
|
|
{ config_id = 247004, npc_id = 30206, pos = { x = -247.716, y = 121.836, z = 419.617 }, rot = { x = 0.000, y = 119.412, z = 0.000 }, area_id = 403 },
|
|
{ config_id = 247005, npc_id = 30204, pos = { x = -236.171, y = 121.695, z = 420.460 }, rot = { x = 0.000, y = 296.040, z = 0.000 }, area_id = 403 }
|
|
}
|
|
|
|
-- 装置
|
|
gadgets = {
|
|
}
|
|
|
|
-- 区域
|
|
regions = {
|
|
}
|
|
|
|
-- 触发器
|
|
triggers = {
|
|
}
|
|
|
|
-- 变量
|
|
variables = {
|
|
}
|
|
|
|
--================================================================
|
|
--
|
|
-- 初始化配置
|
|
--
|
|
--================================================================
|
|
|
|
-- 初始化时创建
|
|
init_config = {
|
|
suite = 1,
|
|
end_suite = 0,
|
|
rand_suite = false
|
|
}
|
|
|
|
--================================================================
|
|
--
|
|
-- 小组配置
|
|
--
|
|
--================================================================
|
|
|
|
suites = {
|
|
{
|
|
-- suite_id = 1,
|
|
-- description = ,
|
|
monsters = { },
|
|
gadgets = { },
|
|
regions = { },
|
|
triggers = { },
|
|
npcs = { 247001, 247002, 247003, 247004, 247005 },
|
|
rand_weight = 100
|
|
}
|
|
}
|
|
|
|
--================================================================
|
|
--
|
|
-- 触发器
|
|
--
|
|
--================================================================ |