This PR does a balance pass on Compliments to the Chef's mob Angler Orobon. This adjusts immunities/HP/ST and ability delay and animation delay.
89 lines
3.8 KiB
Lua
89 lines
3.8 KiB
Lua
-----------------------------------
|
|
-- Happy Caster
|
|
-- Navukgo Execution Chamber, Confidential Imperial Order
|
|
-- !addkeyitem SECRET_IMPERIAL_ORDER
|
|
-----------------------------------
|
|
local ID = zones[xi.zone.NAVUKGO_EXECUTION_CHAMBER]
|
|
-----------------------------------
|
|
|
|
local content = Battlefield:new({
|
|
zoneId = xi.zone.NAVUKGO_EXECUTION_CHAMBER,
|
|
battlefieldId = xi.battlefield.id.HAPPY_CASTER,
|
|
maxPlayers = 6,
|
|
timeLimit = utils.minutes(30),
|
|
index = 1,
|
|
entryNpc = '_1s0',
|
|
exitNpcs = { '_1s1', '_1s2', '_1s3' },
|
|
requiredKeyItems = { xi.ki.SECRET_IMPERIAL_ORDER, message = ID.text.IMPERIAL_ORDER_BREAKS },
|
|
})
|
|
|
|
content:addEssentialMobs({ 'Two-faced_Flan' })
|
|
|
|
content.loot =
|
|
{
|
|
{
|
|
{ itemId = xi.item.GIL, weight = xi.loot.weight.NORMAL, amount = 12000 },
|
|
},
|
|
|
|
{
|
|
{ itemId = xi.item.CHARISMA_POTION, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.ICARUS_WING, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.INTELLIGENCE_POTION, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.MIND_POTION, weight = xi.loot.weight.NORMAL },
|
|
},
|
|
|
|
{
|
|
{ itemId = xi.item.BOTTLE_OF_SIEGLINDE_PUTTY, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.BRASS_TANK, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.MERROW_SCALE, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.AHRIMAN_WING, weight = xi.loot.weight.NORMAL },
|
|
},
|
|
|
|
{
|
|
{ itemId = xi.item.SCROLL_OF_ERASE, weight = xi.loot.weight.HIGH },
|
|
{ itemId = xi.item.SCROLL_OF_PROTECTRA_IV, weight = xi.loot.weight.HIGH },
|
|
{ itemId = xi.item.SCROLL_OF_BLIZZARD_IV, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.SCROLL_OF_DISPEL, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.SCROLL_OF_PROTECT_IV, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.SCROLL_OF_QUAKE, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.SCROLL_OF_RERAISE_III, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.SCROLL_OF_WATER_IV, weight = xi.loot.weight.NORMAL },
|
|
},
|
|
|
|
{
|
|
{ itemId = xi.item.CHOCOBO_EGG_SOMEWHAT_WARM, weight = xi.loot.weight.NORMAL },
|
|
},
|
|
|
|
{
|
|
{ itemId = xi.item.CHUNK_OF_FLAN_MEAT, weight = xi.loot.weight.NORMAL },
|
|
},
|
|
|
|
{
|
|
{ itemId = xi.item.NONE, weight = xi.loot.weight.EXTREMELY_HIGH },
|
|
{ itemId = xi.item.ARAKAN_SAMUE, weight = xi.loot.weight.LOW },
|
|
{ itemId = xi.item.MENSUR_EPEE, weight = xi.loot.weight.LOW },
|
|
{ itemId = xi.item.CRUDE_SWORD, weight = xi.loot.weight.LOW },
|
|
{ itemId = xi.item.WARDANCER, weight = xi.loot.weight.LOW },
|
|
},
|
|
|
|
{
|
|
{ itemId = xi.item.NONE, weight = xi.loot.weight.EXTREMELY_HIGH },
|
|
{ itemId = xi.item.PIECE_OF_HABU_SKIN, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.SQUARE_OF_RAINBOW_CLOTH, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.BUFFALO_HORN, weight = xi.loot.weight.LOW },
|
|
{ itemId = xi.item.SQUARE_OF_WAMOURA_CLOTH, weight = xi.loot.weight.LOW },
|
|
{ itemId = xi.item.SQUARE_OF_RED_GRASS_CLOTH, weight = xi.loot.weight.VERY_LOW },
|
|
{ itemId = xi.item.SQUARE_OF_KARAKUL_CLOTH, weight = xi.loot.weight.VERY_LOW },
|
|
{ itemId = xi.item.SQUARE_OF_RAXA, weight = xi.loot.weight.VERY_LOW },
|
|
{ itemId = xi.item.POT_OF_URUSHI, weight = xi.loot.weight.VERY_LOW },
|
|
},
|
|
|
|
{
|
|
{ itemId = xi.item.BEHEMOTH_HORN, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.DRAGON_TALON, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.CHUNK_OF_KHROMA_ORE, weight = xi.loot.weight.NORMAL },
|
|
{ itemId = xi.item.CHUNK_OF_LUMINIUM_ORE, weight = xi.loot.weight.NORMAL },
|
|
},
|
|
}
|
|
|
|
return content:register()
|