You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
1.7 KiB
90 lines
1.7 KiB
--------------------------------------------------------------------------------
|
|
-- Boss Data --
|
|
--------------------------------------------------------------------------------
|
|
|
|
--[[
|
|
※ 참고 ) Phase 설정
|
|
Phase 테이블에 설정해둔 Condition_HPRate 값 % 이하가 되면,
|
|
해당 애니메이션을 하고 SummonMob을 소환한다.
|
|
--]]
|
|
|
|
BossInfo =
|
|
{
|
|
UrgDTH_ID_GiantMagmaton =
|
|
{
|
|
Lua_EntranceFunc = "Routine_Boss",
|
|
|
|
Phase =
|
|
{
|
|
{
|
|
Condition_HPRate = 20,
|
|
Animation = "GiantMagmaTon_skill01",
|
|
SummonMob = { Index = "UrgDTH_ID_EarthCalerben", Num = 2, }
|
|
},
|
|
},
|
|
},
|
|
|
|
UrgDTH_ID_BigMudMan =
|
|
{
|
|
Lua_EntranceFunc = "Routine_Boss",
|
|
|
|
Phase =
|
|
{
|
|
{
|
|
Condition_HPRate = 20,
|
|
Animation = "BigMudMan_skill",
|
|
SummonMob = { Index = "UrgDTH_ID_EarthCalerben", Num = 2, }
|
|
},
|
|
},
|
|
},
|
|
|
|
UrgDTH_ID_FireTaitan =
|
|
{
|
|
Lua_EntranceFunc = "Routine_Boss",
|
|
|
|
Phase =
|
|
{
|
|
{
|
|
Condition_HPRate = 20,
|
|
Animation = "FireTaitan_skill",
|
|
SummonMob = { Index = "UrgDTH_ID_EarthCalerben", Num = 2, }
|
|
},
|
|
},
|
|
|
|
},
|
|
|
|
UrgDTH_ID_Weasel =
|
|
{
|
|
Lua_EntranceFunc = "Routine_Boss",
|
|
|
|
Phase =
|
|
{
|
|
{
|
|
Condition_HPRate = 20,
|
|
Animation = "Weasel_skill",
|
|
SummonMob = { Index = "UrgDTH_ID_EarthCalerben", Num = 2, }
|
|
},
|
|
},
|
|
},
|
|
|
|
UrgDTH_ID_FandomCornelius =
|
|
{
|
|
Lua_EntranceFunc = "Routine_Boss",
|
|
|
|
Phase =
|
|
{
|
|
{
|
|
Condition_HPRate = 50,
|
|
Animation = "Dragonneut_Skill3",
|
|
SummonMob = { Index = "UrgDTH_ID_FireShella", Num = 3, }
|
|
},
|
|
|
|
{
|
|
Condition_HPRate = 30,
|
|
Animation = "Dragonneut_Skill3",
|
|
SummonMob = { Index = "UrgDTH_ID_EarthNerpa", Num = 3, }
|
|
},
|
|
},
|
|
},
|
|
|
|
}
|
|
|