0
0
mirror of https://gitlab.com/YuukiPS/GC-Resources.git synced 2025-04-28 09:05:26 +00:00
GC-Resources/Resources/Scripts/Scene/9/scene9_group199002189.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

123 lines
2.9 KiB
Lua

-- 基础信息
local base_info = {
group_id = 199002189
}
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 189001, gadget_id = 70360001, pos = { x = 556.560, y = 121.628, z = -557.470 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, area_id = 401 },
{ config_id = 189002, gadget_id = 70900433, pos = { x = 557.065, y = 127.420, z = -556.292 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, area_id = 401 }
}
-- 区域
regions = {
}
-- 触发器
triggers = {
{ config_id = 1189003, name = "GROUP_LOAD_189003", event = EventType.EVENT_GROUP_LOAD, source = "", condition = "condition_EVENT_GROUP_LOAD_189003", action = "action_EVENT_GROUP_LOAD_189003", trigger_count = 0 },
{ config_id = 1189004, name = "VARIABLE_CHANGE_189004", event = EventType.EVENT_VARIABLE_CHANGE, source = "", condition = "condition_EVENT_VARIABLE_CHANGE_189004", action = "action_EVENT_VARIABLE_CHANGE_189004", trigger_count = 0 }
}
-- 变量
variables = {
{ config_id = 1, name = "appear", value = 0, no_refresh = true }
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
end_suite = 0,
rand_suite = false
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 1,
-- description = ,
monsters = { },
gadgets = { 189001 },
regions = { },
triggers = { "GROUP_LOAD_189003", "VARIABLE_CHANGE_189004" },
rand_weight = 100
},
{
-- suite_id = 2,
-- description = ,
monsters = { },
gadgets = { 189002 },
regions = { },
triggers = { },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发条件
function condition_EVENT_GROUP_LOAD_189003(context, evt)
-- 判断变量"appear"为1
if ScriptLib.GetGroupVariableValue(context, "appear") ~= 1 then
return false
end
return true
end
-- 触发操作
function action_EVENT_GROUP_LOAD_189003(context, evt)
-- 添加suite2的新内容
ScriptLib.AddExtraGroupSuite(context, 199002189, 2)
return 0
end
-- 触发条件
function condition_EVENT_VARIABLE_CHANGE_189004(context, evt)
if evt.param1 == evt.param2 then return false end
-- 判断变量"appear"为1
if ScriptLib.GetGroupVariableValue(context, "appear") ~= 1 then
return false
end
return true
end
-- 触发操作
function action_EVENT_VARIABLE_CHANGE_189004(context, evt)
-- 添加suite2的新内容
ScriptLib.AddExtraGroupSuite(context, 199002189, 2)
return 0
end