0
0
mirror of https://gitlab.com/YuukiPS/GC-Resources.git synced 2025-04-28 17:15:22 +00:00
GC-Resources/Resources/Scripts/Scene/4/scene4_group144004062.lua
KingRainbow44 8dd3a721e5
Revert "The Great De-Local'ifying of defs and base_info"
This reverts commit 0989747b
2023-08-30 21:15:50 -04:00

105 lines
2.6 KiB
Lua

-- 基础信息
local base_info = {
group_id = 144004062
}
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
{ config_id = 62001, monster_id = 20010201, pos = { x = -712.239, y = 123.871, z = -200.133 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 20, drop_tag = "大史莱姆", pose_id = 201, area_id = 103 },
{ config_id = 62002, monster_id = 20010101, pos = { x = -709.791, y = 122.985, z = -204.629 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 20, drop_tag = "史莱姆", pose_id = 201, area_id = 103 },
{ config_id = 62003, monster_id = 20010101, pos = { x = -715.227, y = 122.677, z = -202.578 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 20, drop_tag = "史莱姆", pose_id = 201, area_id = 103 }
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
}
-- 区域
regions = {
{ config_id = 62004, shape = RegionShape.SPHERE, radius = 5, pos = { x = -712.249, y = 122.639, z = -202.647 }, area_id = 103 }
}
-- 触发器
triggers = {
{ config_id = 1062004, name = "ENTER_REGION_62004", event = EventType.EVENT_ENTER_REGION, source = "", condition = "condition_EVENT_ENTER_REGION_62004", action = "action_EVENT_ENTER_REGION_62004" }
}
-- 变量
variables = {
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
end_suite = 0,
rand_suite = false
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 1,
-- description = ,
monsters = { },
gadgets = { },
regions = { 62004 },
triggers = { "ENTER_REGION_62004" },
rand_weight = 100
},
{
-- suite_id = 2,
-- description = ,
monsters = { 62001, 62002, 62003 },
gadgets = { },
regions = { },
triggers = { },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发条件
function condition_EVENT_ENTER_REGION_62004(context, evt)
if evt.param1 ~= 62004 then return false end
-- 判断角色数量不少于1
if ScriptLib.GetRegionEntityCount(context, { region_eid = evt.source_eid, entity_type = EntityType.AVATAR }) < 1 then
return false
end
return true
end
-- 触发操作
function action_EVENT_ENTER_REGION_62004(context, evt)
-- 添加suite2的新内容
ScriptLib.AddExtraGroupSuite(context, 144004062, 2)
return 0
end