landsandboat/modules/cop/lua/pre_rmt_drops.lua

32 lines
1 KiB
Lua

-----------------------------------
-- Pre-RMT Countermeasure Drops
-- Returns Astral Ring to Castle Oztroja chest drops
-----------------------------------
-- Source: http://www.playonline.com/updateus/041209we8yu0.html
-----------------------------------
require('modules/module_utils')
require('scripts/globals/treasure')
-----------------------------------
local m = Module:new('pre_rmt_drops')
--[[
-- This Module is disabled until the new treasure system is tested an appropiate amount of time.
m:addOverride('xi.zones.Castle_Oztroja.Zone.onInitialize', function(zone)
xi.treasure.lootTable[xi.zone.CASTLE_OZTROJA][2] =
{
{ xi.item.NONE, 690 }, -- Gil
{ xi.item.ASTRAL_RING, 150 }, -- Item
{ xi.item.AQUAMARINE, 20 },
{ xi.item.CHRYSOBERYL, 20 },
{ xi.item.FLUORITE, 20 },
{ xi.item.JADEITE, 20 },
{ xi.item.MOONSTONE, 20 },
{ xi.item.PAINITE, 20 },
{ xi.item.SUNSTONE, 20 },
{ xi.item.ZIRCON, 20 },
},
end)
]]--
return m