This commit is contained in:
Akbar Yahya
2022-11-21 16:30:31 +08:00
commit e0d4d8040c
3326 changed files with 683000 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
-- 地图配置
scene_config = {
begin_pos = { x = -100.0, z = -100.0 },
size = { x = 200.0, z = 200.0 },
born_pos = { x = 68.2, y = 1.0, z = 0.0 },
born_rot = { x = 0.0, y = 0.0, z = 0.0 },
die_y = 0
}
-- 所有的区块
blocks = { 1015 }
-- 所有的区块范围坐标
block_rects = {
{ min = { x = -100.0, z = -100.0 }, max = { x = 100.0, z = 100.0 } }
}
-- Dummy Points
dummy_points = { "dummy_points" }
-- Routes
routes_config = { }

View File

@@ -0,0 +1,4 @@
{
"sceneId": 1015,
"routes": []
}

View File

@@ -0,0 +1,4 @@
-- 所有的group
groups = {
{ id = 201015001, refresh_time = 0, pos = { x = 0.9, y = 0.6, z = 0.2 } }
}

View File

@@ -0,0 +1,8 @@
dummy_points = {
["WindBed01"] = { pos = { x = 59.2, y = 0.6, z = 8.1 }, rot = { x = 0.0, y = 0.0, z = 0.0 } },
["WindBed02"] = { pos = { x = 59.0, y = 6.1, z = 2.5 }, rot = { x = 0.0, y = 270.0, z = 0.0 } },
["WindBed03"] = { pos = { x = 58.7, y = 6.0, z = -3.7 }, rot = { x = 0.0, y = 0.0, z = 0.0 } },
["WindBed04"] = { pos = { x = 59.0, y = 0.6, z = -9.4 }, rot = { x = 0.0, y = 0.0, z = 0.0 } },
["QuestNpc"] = { pos = { x = 65.3, y = 0.6, z = -4.6 }, rot = { x = 0.0, y = 0.0, z = 0.0 } },
["WindCushion01"] = { pos = { x = 0.0, y = 0.6, z = 0.0 }, rot = { x = 0.0, y = 0.0, z = 0.0 } }
}

View File

@@ -0,0 +1,77 @@
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
{ config_id = 1, monster_id = 21010501, pos = { x = -33.0, y = 0.6, z = 0.1 }, rot = { x = 0.0, y = 90.0, z = 0.0 }, level = 0, disableWander = true, pose_id = 32 },
{ config_id = 2, monster_id = 21010501, pos = { x = -33.0, y = 0.6, z = 6.1 }, rot = { x = 0.0, y = 90.0, z = 0.0 }, level = 0, disableWander = true, pose_id = 32 },
{ config_id = 3, monster_id = 21010501, pos = { x = -4.7, y = 0.6, z = -5.5 }, rot = { x = 0.0, y = 90.0, z = 0.0 }, level = 0, disableWander = true, pose_id = 32 },
{ config_id = 4, monster_id = 21010501, pos = { x = -4.4, y = 0.6, z = 0.0 }, rot = { x = 0.0, y = 90.0, z = 0.0 }, level = 0, disableWander = true, pose_id = 32 },
{ config_id = 5, monster_id = 21010501, pos = { x = -4.5, y = 0.6, z = 5.4 }, rot = { x = 0.0, y = 90.0, z = 0.0 }, level = 0, disableWander = true, pose_id = 32 },
{ config_id = 6, monster_id = 21010501, pos = { x = -32.6, y = 0.6, z = -6.2 }, rot = { x = 0.0, y = 90.0, z = 0.0 }, level = 0, disableWander = true, pose_id = 32 },
{ config_id = 7, monster_id = 22010301, pos = { x = 17.5, y = 7.2, z = 8.2 }, rot = { x = 0.0, y = 0.0, z = 0.0 }, level = 0, disableWander = true },
{ config_id = 8, monster_id = 21010901, pos = { x = 29.1, y = 4.5, z = 8.1 }, rot = { x = 0.0, y = 0.0, z = 0.0 }, level = 0, disableWander = true, pose_id = 32 },
{ config_id = 9, monster_id = 21010601, pos = { x = 20.4, y = 5.4, z = -8.2 }, rot = { x = 0.0, y = 0.0, z = 0.0 }, level = 0, disableWander = true, pose_id = 32 },
{ config_id = 10, monster_id = 21011001, pos = { x = -1.2, y = 7.2, z = -7.9 }, rot = { x = 0.0, y = 0.0, z = 0.0 }, level = 0, disableWander = true, pose_id = 32 },
{ config_id = 11, monster_id = 21011001, pos = { x = -1.7, y = 7.2, z = 8.4 }, rot = { x = 0.0, y = 0.0, z = 0.0 }, level = 0, disableWander = true, pose_id = 32 }
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
}
-- 区域
regions = {
}
-- 触发器
triggers = {
}
-- 变量
variables = {
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
rand_suite = true,
npcs = { }
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 0,
-- description = ,
monsters = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 },
gadgets = { },
regions = { },
triggers = { },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================

View File

@@ -0,0 +1,8 @@
{
"radius": 100.0,
"points": {},
"areas": {},
"forces": {},
"entities": {},
"doors": {}
}