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_group111101092.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

163 lines
4.6 KiB
Lua
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 基础信息
local base_info = {
group_id = 111101092
}
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
{ config_id = 92007, monster_id = 21010201, pos = { x = 2668.073, y = 265.260, z = -1349.254 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, drop_tag = "丘丘人" },
{ config_id = 92008, monster_id = 21010201, pos = { x = 2664.678, y = 265.604, z = -1348.111 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, drop_tag = "丘丘人" }
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 92001, gadget_id = 70360002, pos = { x = 2659.859, y = 266.031, z = -1345.368 }, rot = { x = 0.000, y = 76.724, z = 0.000 }, level = 1 },
{ config_id = 92004, gadget_id = 70310017, pos = { x = 2666.774, y = 265.354, z = -1345.739 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, state = GadgetState.GearStart, persistent = true },
{ config_id = 92005, gadget_id = 70310021, pos = { x = 2666.774, y = 265.354, z = -1345.739 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, state = GadgetState.GearStart, persistent = true }
}
-- 区域
regions = {
}
-- 触发器
triggers = {
{ config_id = 1092002, name = "GADGET_CREATE_92002", event = EventType.EVENT_GADGET_CREATE, source = "", condition = "condition_EVENT_GADGET_CREATE_92002", action = "action_EVENT_GADGET_CREATE_92002" },
{ config_id = 1092003, name = "SELECT_OPTION_92003", event = EventType.EVENT_SELECT_OPTION, source = "", condition = "condition_EVENT_SELECT_OPTION_92003", action = "action_EVENT_SELECT_OPTION_92003" },
{ config_id = 1092006, name = "ANY_GADGET_DIE_92006", event = EventType.EVENT_ANY_GADGET_DIE, source = "", condition = "condition_EVENT_ANY_GADGET_DIE_92006", action = "action_EVENT_ANY_GADGET_DIE_92006" }
}
-- 变量
variables = {
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
end_suite = 0,
rand_suite = false
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 1,
-- description = ,
monsters = { },
gadgets = { 92001 },
regions = { },
triggers = { "GADGET_CREATE_92002", "SELECT_OPTION_92003", "ANY_GADGET_DIE_92006" },
rand_weight = 100
},
{
-- suite_id = 2,
-- description = ,
monsters = { 92007, 92008 },
gadgets = { 92004, 92005 },
regions = { },
triggers = { },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发条件
function condition_EVENT_GADGET_CREATE_92002(context, evt)
if 92001 ~= evt.param1 then
return false
end
return true
end
-- 触发操作
function action_EVENT_GADGET_CREATE_92002(context, evt)
-- 设置操作台选项
if 0 ~= ScriptLib.SetWorktopOptionsByGroupId(context, 111101092, 92001, {7}) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_wok_options_by_configid")
return -1
end
return 0
end
-- 触发条件
function condition_EVENT_SELECT_OPTION_92003(context, evt)
-- 判断是gadgetid 92001 option_id 7
if 92001 ~= evt.param1 then
return false
end
if 7 ~= evt.param2 then
return false
end
return true
end
-- 触发操作
function action_EVENT_SELECT_OPTION_92003(context, evt)
-- 添加suite2的新内容
ScriptLib.AddExtraGroupSuite(context, 111101092, 2)
-- 删除指定group 111101092 指定config92001物件身上指定option7
if 0 ~= ScriptLib.DelWorktopOptionByGroupId(context, 111101092, 92001, 7) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : del_work_options_by_group_configId")
return -1
end
-- 将configid为 92001 的物件更改为状态 GadgetState.GearStart
if 0 ~= ScriptLib.SetGadgetStateByConfigId(context, 92001, GadgetState.GearStart) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_configId")
return -1
end
return 0
end
-- 触发条件
function condition_EVENT_ANY_GADGET_DIE_92006(context, evt)
if 92005 ~= evt.param1 then
return false
end
return true
end
-- 触发操作
function action_EVENT_ANY_GADGET_DIE_92006(context, evt)
-- 将configid为 92004 的物件更改为状态 GadgetState.Default
if 0 ~= ScriptLib.SetGadgetStateByConfigId(context, 92004, GadgetState.Default) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_configId")
return -1
end
return 0
end