0
0
mirror of https://gitlab.com/YuukiPS/GC-Resources.git synced 2025-04-29 09:35:48 +00:00
GC-Resources/Resources/Scripts/Scene/1/scene1_group111101077.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

149 lines
4.7 KiB
Lua

-- 基础信息
local base_info = {
group_id = 111101077
}
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 77001, gadget_id = 70500000, pos = { x = 2871.307, y = 259.778, z = -1805.316 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, point_type = 1003, persistent = true },
{ config_id = 77002, gadget_id = 70500000, pos = { x = 2873.651, y = 259.006, z = -1808.899 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, point_type = 1003, persistent = true },
{ config_id = 77003, gadget_id = 70360001, pos = { x = 2873.228, y = 259.349, z = -1806.974 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, persistent = true },
{ config_id = 77008, gadget_id = 70500000, pos = { x = 2874.812, y = 259.233, z = -1805.561 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, point_type = 1005, persistent = true },
{ config_id = 77009, gadget_id = 70500000, pos = { x = 2869.796, y = 259.723, z = -1808.178 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, point_type = 1005, persistent = true }
}
-- 区域
regions = {
}
-- 触发器
triggers = {
{ config_id = 1077004, name = "GROUP_REFRESH_77004", event = EventType.EVENT_GROUP_REFRESH, source = "", condition = "", action = "action_EVENT_GROUP_REFRESH_77004" },
{ config_id = 1077005, name = "ANY_GADGET_DIE_77005", event = EventType.EVENT_ANY_GADGET_DIE, source = "", condition = "", action = "action_EVENT_ANY_GADGET_DIE_77005", trigger_count = 0 },
{ config_id = 1077006, name = "BLOSSOM_PROGRESS_FINISH_77006", event = EventType.EVENT_BLOSSOM_PROGRESS_FINISH, source = "", condition = "", action = "action_EVENT_BLOSSOM_PROGRESS_FINISH_77006" },
{ config_id = 1077007, name = "GROUP_LOAD_77007", event = EventType.EVENT_GROUP_LOAD, source = "", condition = "", action = "action_EVENT_GROUP_LOAD_77007" }
}
-- 变量
variables = {
{ config_id = 1, name = "GroupCompletion", value = 0, no_refresh = false }
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
end_suite = 0,
rand_suite = false
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 1,
-- description = ,
monsters = { },
gadgets = { 77008, 77009 },
regions = { },
triggers = { "GROUP_LOAD_77007" },
rand_weight = 100
},
{
-- suite_id = 2,
-- description = 开关suite,
monsters = { },
gadgets = { },
regions = { },
triggers = { "GROUP_REFRESH_77004", "ANY_GADGET_DIE_77005", "BLOSSOM_PROGRESS_FINISH_77006" },
rand_weight = 100
},
{
-- suite_id = 3,
-- description = 战斗suite,
monsters = { },
gadgets = { 77001, 77002, 77003 },
regions = { },
triggers = { },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发操作
function action_EVENT_GROUP_REFRESH_77004(context, evt)
-- 指定group的循环玩法进度加1
if 0 ~= ScriptLib.SetBlossomScheduleStateByGroupId(context, 111101077, 2) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_blossomscehedule_byGroupId")
return -1
end
-- 添加suite3的新内容
ScriptLib.AddExtraGroupSuite(context, 111101077, 3)
return 0
end
-- 触发操作
function action_EVENT_ANY_GADGET_DIE_77005(context, evt)
-- 指定group的循环玩法进度加1
ScriptLib.AddBlossomScheduleProgressByGroupId(context, 111101077)
return 0
end
-- 触发操作
function action_EVENT_BLOSSOM_PROGRESS_FINISH_77006(context, evt)
-- 指定group的循环玩法进度加1
if 0 ~= ScriptLib.SetBlossomScheduleStateByGroupId(context, 111101077, 3) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_blossomscehedule_byGroupId")
return -1
end
-- 将本组内变量名为 "GroupCompletion" 的变量设置为 1
if 0 ~= ScriptLib.SetGroupVariableValue(context, "GroupCompletion", 1) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_groupVariable")
return -1
end
return 0
end
-- 触发操作
function action_EVENT_GROUP_LOAD_77007(context, evt)
-- 刷新本group,指定suite与等级修正,自动通知对应循环玩法的进度
if 0 ~= ScriptLib.RefreshBlossomGroup(context, { group_id = 0, suite = 2, exclude_prev = true }) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : refresh_blossom_group")
return -1
end
return 0
end