content
stringlengths
5
1.05M
AuctionatorConfigSellingFrameMixin = CreateFromMixins(AuctionatorPanelConfigMixin) function AuctionatorConfigSellingFrameMixin:OnLoad() Auctionator.Debug.Message("AuctionatorConfigSellingFrameMixin:OnLoad()") self.name = AUCTIONATOR_L_CONFIG_SELLING_CATEGORY self.parent = "Auctionator" self:SetupPanel() end function AuctionatorConfigSellingFrameMixin:OnShow() self.AuctionChatLog:SetChecked(Auctionator.Config.Get(Auctionator.Config.Options.AUCTION_CHAT_LOG)) self.PriceHistory:SetChecked(Auctionator.Config.Get(Auctionator.Config.Options.SHOW_SELLING_PRICE_HISTORY)) self.ShowBidPrice:SetChecked(Auctionator.Config.Get(Auctionator.Config.Options.SHOW_SELLING_BID_PRICE)) self.BagCollapsed:SetChecked(Auctionator.Config.Get(Auctionator.Config.Options.SELLING_BAG_COLLAPSED)) self.BagShown:SetChecked(Auctionator.Config.Get(Auctionator.Config.Options.SHOW_SELLING_BAG)) self.IconSize:SetNumber(Auctionator.Config.Get(Auctionator.Config.Options.SELLING_ICON_SIZE)) self.AutoSelectNext:SetChecked(Auctionator.Config.Get(Auctionator.Config.Options.SELLING_AUTO_SELECT_NEXT)) self.MissingFavourites:SetChecked(Auctionator.Config.Get(Auctionator.Config.Options.SELLING_MISSING_FAVOURITES)) self.UnhideAll:SetEnabled(#(Auctionator.Config.Get(Auctionator.Config.Options.SELLING_IGNORED_KEYS)) ~= 0) end function AuctionatorConfigSellingFrameMixin:Save() Auctionator.Debug.Message("AuctionatorConfigSellingFrameMixin:Save()") Auctionator.Config.Set(Auctionator.Config.Options.AUCTION_CHAT_LOG, self.AuctionChatLog:GetChecked()) Auctionator.Config.Set(Auctionator.Config.Options.SHOW_SELLING_PRICE_HISTORY, self.PriceHistory:GetChecked()) Auctionator.Config.Set(Auctionator.Config.Options.SHOW_SELLING_BID_PRICE, self.ShowBidPrice:GetChecked()) Auctionator.Config.Set(Auctionator.Config.Options.SELLING_BAG_COLLAPSED, self.BagCollapsed:GetChecked()) Auctionator.Config.Set(Auctionator.Config.Options.SHOW_SELLING_BAG, self.BagShown:GetChecked()) Auctionator.Config.Set(Auctionator.Config.Options.SELLING_ICON_SIZE, math.min(50, math.max(10, self.IconSize:GetNumber()))) Auctionator.Config.Set(Auctionator.Config.Options.SELLING_AUTO_SELECT_NEXT, self.AutoSelectNext:GetChecked()) Auctionator.Config.Set(Auctionator.Config.Options.SELLING_MISSING_FAVOURITES, self.MissingFavourites:GetChecked()) end function AuctionatorConfigSellingFrameMixin:UnhideAllClicked() Auctionator.Config.Set(Auctionator.Config.Options.SELLING_IGNORED_KEYS, {}) self.UnhideAll:Disable() end function AuctionatorConfigSellingFrameMixin:Cancel() Auctionator.Debug.Message("AuctionatorConfigSellingFrameMixin:Cancel()") end
env = require('test_run') test_run = env.new() test_run:cmd("push filter '(.builtin/.*.lua):[0-9]+' to '\\1'") -- gh-2025 box.savepoint s1 = nil s1 = box.savepoint() box.rollback_to_savepoint(s1) box.begin() s1 = box.savepoint() box.rollback() box.begin() box.rollback_to_savepoint(s1) box.rollback() engine = test_run:get_cfg('engine') -- Test many savepoints on each statement. s = box.schema.space.create('test', {engine = engine}) p = s:create_index('pk') test_run:cmd("setopt delimiter ';'") box.begin() s:replace{1} save1 = box.savepoint() s:replace{2} save2 = box.savepoint() s:replace{3} save3 = box.savepoint() s:replace{4} select1 = s:select{} box.rollback_to_savepoint(save3) select2 = s:select{} box.rollback_to_savepoint(save2) select3 = s:select{} box.rollback_to_savepoint(save1) select4 = s:select{} box.commit() test_run:cmd("setopt delimiter ''"); select1 select2 select3 select4 s:truncate() -- Test rollback to savepoint on the current statement. test_run:cmd("setopt delimiter ';'") box.begin() s:replace{1} s:replace{2} s1 = box.savepoint() box.rollback_to_savepoint(s1) box.commit() test_run:cmd("setopt delimiter ''"); s:select{} s:truncate() -- Test rollback to savepoint after multiple statements. test_run:cmd("setopt delimiter ';'") box.begin() s:replace{1} s1 = box.savepoint() s:replace{2} s:replace{3} s:replace{4} box.rollback_to_savepoint(s1) box.commit() test_run:cmd("setopt delimiter ''"); s:select{} s:truncate() -- Test rollback to savepoint after failed statement. test_run:cmd("setopt delimiter ';'") box.begin() s:replace{1} s1 = box.savepoint() s:replace{3} pcall(s.replace, s, {'kek'}) s:replace{4} box.rollback_to_savepoint(s1) box.commit() test_run:cmd("setopt delimiter ''"); s:select{} s:truncate() -- Test rollback to savepoint inside the trigger. select1 = nil select2 = nil select3 = nil select4 = nil test_run:cmd("setopt delimiter ';'") function on_replace(old, new) if new[1] > 10 then return end select1 = s:select{} s1 = box.savepoint() s:replace{100} box.rollback_to_savepoint(s1) select2 = s:select{} end; _ = s:on_replace(on_replace); box.begin() s:replace{1} select3 = select1 select4 = select2 s:replace{2} box.commit() test_run:cmd("setopt delimiter ''"); select4 select3 select2 select1 s:select{} s:drop() -- Test rollback to savepoint, created in trigger, -- from main tx stream. Fail, because of different substatement -- levels. s = box.schema.space.create('test', {engine = engine}) p = s:create_index('pk') test_run:cmd("setopt delimiter ';'") function on_replace2(old, new) if new[1] ~= 1 then return end s1 = box.savepoint() s:replace{100} end; _ = s:on_replace(on_replace2); box.begin() s:replace{1} select1 = s:select{} s:replace{2} s:replace{3} select2 = s:select{} ok1, errmsg1 = pcall(box.rollback_to_savepoint, s1) select3 = s:select{} s:replace{4} select4 = s:select{} box.commit() test_run:cmd("setopt delimiter ''"); select1 select2 select3 select4 ok1 errmsg1 s:drop() -- Test incorrect savepoints usage inside a transaction. s = box.schema.space.create('test', {engine = engine}) p = s:create_index('pk') test_run:cmd("setopt delimiter ';'") box.begin() s1 = box.savepoint() txn_id = s1.txn_id s:replace{1} ok1, errmsg1 = pcall(box.rollback_to_savepoint) ok2, errmsg2 = pcall(box.rollback_to_savepoint, {txn_id=txn_id}) ok3, errmsg3 = pcall(box.rollback_to_savepoint, {txn_id=txn_id, csavepoint=100}) fake_cdata = box.tuple.new({txn_id}) ok4, errmsg4 = pcall(box.rollback_to_savepoint, {txn_id=txn_id, csavepoint=fake_cdata}) ok5, errmsg5 = pcall(box.rollback_to_savepoint, {txn_id=fake_cdata, csavepoint=s1.csavepoint}) box.commit() test_run:cmd("setopt delimiter ''"); ok1, errmsg1 ok2, errmsg2 ok3, errmsg3 ok4, errmsg4 ok5, errmsg5 s:select{} -- Rollback to released savepoint. box.begin() ok1, errmsg1 = pcall(box.rollback_to_savepoint, s1) box.commit() ok1, errmsg1 s:select{} s:truncate() -- Rollback several savepoints at once. test_run:cmd("setopt delimiter ';'") box.begin() s0 = box.savepoint() s:replace{1} s1 = box.savepoint() s:replace{2} s2 = box.savepoint() s:replace{3} s3 = box.savepoint() s:replace{4} s4 = box.savepoint() s:replace{5} select1 = s:select{} box.rollback_to_savepoint(s2) select2 = s:select{} ok1, errmsg1 = pcall(box.rollback_to_savepoint, s3) select3 = s:select{} s5 = box.savepoint() s:replace{6} s6 = box.savepoint() s:replace{7} select4 = s:select{} ok2, errmsg2 = pcall(box.rollback_to_savepoint, s4) select5 = s:select{} box.rollback_to_savepoint(s6) select6 = s:select{} box.rollback_to_savepoint(s0) select7 = s:select{} box.rollback() test_run:cmd("setopt delimiter ''"); select1 select2 select3 select4 select5 select6 select7 ok1, errmsg1 ok2, errmsg2 s:truncate() -- Rollback to the same substatement level, but from different -- context. test_run:cmd("setopt delimiter ';'") function on_replace3(old_tuple, new_tuple) if new_tuple[2] == 'create savepoint' then s1 = box.savepoint() elseif new_tuple[2] == 'rollback to savepoint' then box.rollback_to_savepoint(s1) end end; _ = s:on_replace(on_replace3); box.begin() s:replace{1, 'create savepoint'} s:replace{2} s:replace{3} s:replace{4, 'rollback to savepoint'} s:replace{5} box.commit() test_run:cmd("setopt delimiter ''"); s:select{} s:truncate() -- Several savepoints on a same statement. test_run:cmd("setopt delimiter ';'") box.begin() s:replace{1} s1 = box.savepoint() s2 = box.savepoint() s3 = box.savepoint() s:replace{2} box.rollback_to_savepoint(s3) box.rollback_to_savepoint(s2) box.rollback_to_savepoint(s1) box.commit() test_run:cmd("setopt delimiter ''"); s:select{} s:truncate() -- Test multiple rollback of a same savepoint. test_run:cmd("setopt delimiter ';'") box.begin() s1 = box.savepoint() s:replace{1} box.rollback_to_savepoint(s1) s:replace{2} box.rollback_to_savepoint(s1) s:replace{3} box.commit() test_run:cmd("setopt delimiter ''"); s:select{} s:drop()
local Fs = require("api.Fs") local MapEntrance = require("mod.elona_sys.api.MapEntrance") local state = require("mod.test_room.internal.global.state") local Event = require("api.Event") local Log = require("api.Log") local function require_all_in(dir) return Fs.iter_directory_items(dir, "full_path") :map(Fs.convert_to_require_path) :map(require) end local function add_test_maps(proto) local map = { _type = "base.map_archetype", _id = proto._id, starting_pos = MapEntrance.stairs_up, properties = { name = proto._id, is_temporary = true, is_renewable = false, types = { "guild" } } } table.merge(map, proto) assert(proto.on_generate_map) -- hotloading support -- BUG but not if you add a new event callback while running for k, v in pairs(map) do if type(v) == "function" and type(proto[k]) == "function" then map[k] = function(...) return proto[k](...) end end end data:add(map) state.is_test_map[_MOD_ID .. "." .. proto._id] = true end local path = "mod/test_room/data/map_archetype/test_map/" require_all_in(path):each(add_test_maps)
SkadaPerCharDB = { ["total"] = { ["healingabsorbed"] = 0, ["dispells"] = 9, ["ccbreaks"] = 1, ["time"] = 697, ["interrupts"] = 8, ["damage"] = 1704040, ["players"] = { { ["healingabsorbed"] = 0, ["class"] = "WARRIOR", ["damaged"] = { }, ["dispells"] = 0, ["role"] = "DAMAGER", ["overhealing"] = 13593, ["interrupts"] = 2, ["damage"] = 131851, ["damagespells"] = { ["Mortal Strike"] = { ["min"] = 217, ["multistrike"] = 4, ["critical"] = 6, ["hit"] = 63, ["totalhits"] = 69, ["id"] = 12294, ["max"] = 672, ["damage"] = 22479, }, ["Thunder Clap"] = { ["min"] = 100, ["multistrike"] = 9, ["critical"] = 11, ["hit"] = 103, ["totalhits"] = 114, ["id"] = 6343, ["max"] = 267, ["damage"] = 15424, }, ["Charge"] = { ["totalhits"] = 7, ["id"] = 105771, ["IMMUNE"] = 7, ["max"] = 0, ["damage"] = 0, }, ["Victory Rush"] = { ["min"] = 150, ["multistrike"] = 3, ["critical"] = 1, ["hit"] = 23, ["totalhits"] = 24, ["id"] = 34428, ["max"] = 447, ["damage"] = 5360, }, ["Execute"] = { ["min"] = 395, ["critical"] = 6, ["hit"] = 22, ["totalhits"] = 28, ["id"] = 163201, ["max"] = 1593, ["damage"] = 22606, }, ["Whirlwind"] = { ["min"] = 130, ["multistrike"] = 17, ["critical"] = 22, ["hit"] = 138, ["totalhits"] = 160, ["id"] = 1680, ["max"] = 459, ["damage"] = 36899, }, ["Rend"] = { ["min"] = 128, ["multistrike"] = 4, ["critical"] = 3, ["hit"] = 31, ["totalhits"] = 34, ["id"] = 772, ["max"] = 308, ["damage"] = 5505, }, ["Attack"] = { ["min"] = 120, ["multistrike"] = 12, ["critical"] = 17, ["hit"] = 115, ["totalhits"] = 132, ["id"] = 6603, ["max"] = 340, ["damage"] = 23578, }, }, ["auras"] = { ["Thunder Clap"] = { ["name"] = "Thunder Clap", ["active"] = 0, ["id"] = 6343, ["uptime"] = 141, ["auratype"] = "DEBUFF", }, ["Victorious"] = { ["name"] = "Victorious", ["active"] = 3, ["id"] = 32216, ["uptime"] = 2344, ["auratype"] = "BUFF", }, ["Charge"] = { ["name"] = "Charge", ["active"] = 1, ["id"] = 109128, ["uptime"] = 1981, ["auratype"] = "BUFF", }, ["Victory Rush"] = { ["name"] = "Victory Rush", ["active"] = 6, ["id"] = 118779, ["uptime"] = 2363, ["auratype"] = "BUFF", }, ["Mortal Wounds"] = { ["name"] = "Mortal Wounds", ["active"] = 0, ["id"] = 115804, ["uptime"] = 320, ["auratype"] = "DEBUFF", }, ["Rend"] = { ["name"] = "Rend", ["active"] = 0, ["id"] = 772, ["uptime"] = 117, ["auratype"] = "DEBUFF", }, }, ["healed"] = { ["Player-3681-07E14AC0"] = { ["role"] = "DAMAGER", ["name"] = "Varane-Magtheridon", ["amount"] = 2784, ["class"] = "WARRIOR", ["shielding"] = 0, }, }, ["deathlog"] = { { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3336, ["ts"] = 1447789415.191, }, -- [1] { ["ts"] = 1447789416.391, ["absorb"] = 0, ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3336, ["srcname"] = "Empri-TwistingNether", }, -- [2] { ["absorb"] = 0, ["srcname"] = "Varane-Magtheridon", ["amount"] = 0, ["spellid"] = 59913, ["hp"] = 3336, ["ts"] = 1447789416.626, }, -- [3] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3336, ["ts"] = 1447789417.565, }, -- [4] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3336, ["ts"] = 1447789417.565, }, -- [5] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3336, ["ts"] = 1447789423.747, }, -- [6] { ["ts"] = 1447789423.747, ["absorb"] = 0, ["amount"] = 0, ["srcname"] = "Empri-TwistingNether", ["hp"] = 3336, ["spellid"] = 23455, }, -- [7] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3336, ["ts"] = 1447789425.715, }, -- [8] { ["ts"] = 1447789440.849, ["amount"] = -81, ["srcname"] = "Walking Bomb", ["hp"] = 3336, ["spellid"] = 88163, }, -- [9] { ["srcname"] = "Walking Bomb", ["amount"] = -382, ["spellid"] = 11504, ["hp"] = 2954, ["ts"] = 1447789440.871, }, -- [10] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3336, ["ts"] = 1447789411.683, }, -- [11] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3336, ["ts"] = 1447789412.85, }, -- [12] { ["absorb"] = 0, ["srcname"] = "Varane-Magtheridon", ["amount"] = 0, ["spellid"] = 118779, ["hp"] = 3336, ["ts"] = 1447789412.912, }, -- [13] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3336, ["ts"] = 1447789414.013, }, -- [14] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3336, ["ts"] = 1447789415.191, }, -- [15] ["pos"] = 11, }, ["id"] = "Player-3681-07E14AC0", ["healing"] = 2784, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Radiation"] = { ["crushing"] = 0, ["id"] = 9770, ["min"] = 9, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Radiation", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 9, ["damage"] = 9, }, ["Machine Gun"] = { ["crushing"] = 0, ["id"] = 10346, ["min"] = 19, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Machine Gun", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 20, ["damage"] = 39, }, ["Throw Wrench"] = { ["crushing"] = 0, ["id"] = 13398, ["min"] = 51, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Throw Wrench", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 56, ["damage"] = 219, }, ["Toxic Nova"] = { ["crushing"] = 0, ["id"] = 81039, ["min"] = 107, ["absorbed"] = 142, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Toxic Nova", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 107, ["damage"] = 107, }, ["Detonate"] = { ["crushing"] = 0, ["id"] = 11504, ["min"] = 382, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Detonate", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 382, ["damage"] = 382, }, ["Void Blast"] = { ["crushing"] = 0, ["id"] = 150543, ["damage"] = 321, ["max"] = 164, ["name"] = "Void Blast", ["min"] = 157, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Shoot"] = { ["crushing"] = 0, ["id"] = 15547, ["damage"] = 63, ["max"] = 63, ["name"] = "Shoot", ["min"] = 63, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["damage"] = 2666, ["max"] = 274, ["name"] = "Attack", ["min"] = 47, ["multistrike"] = 0, ["critical"] = 1, ["blocked"] = 0, ["totalhits"] = 28, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 142, }, ["Chain Lightning"] = { ["crushing"] = 0, ["id"] = 150405, ["damage"] = 133, ["max"] = 133, ["name"] = "Chain Lightning", ["min"] = 133, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Bile Strike"] = { ["crushing"] = 0, ["id"] = 150394, ["damage"] = 510, ["max"] = 112, ["name"] = "Bile Strike", ["min"] = 35, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 10, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Crushing Singularity"] = { ["crushing"] = 0, ["id"] = 150549, ["damage"] = 1454, ["max"] = 149, ["name"] = "Crushing Singularity", ["min"] = 113, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 10, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 36, }, ["Falling Debris"] = { ["crushing"] = 0, ["id"] = 152967, ["damage"] = 74, ["max"] = 74, ["name"] = "Falling Debris", ["min"] = 74, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Shattering Song"] = { ["crushing"] = 0, ["id"] = 149916, ["damage"] = 161, ["max"] = 161, ["name"] = "Shattering Song", ["min"] = 161, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, }, ["time"] = 604, ["damagetaken"] = 6138, ["name"] = "Varane", ["power"] = { { ["spells"] = { [173401] = 66, [109128] = 480, [163201] = -682, }, ["amount"] = -136, }, -- [1] }, ["maxhp"] = 3300, ["healingspells"] = { ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 1817, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["hits"] = 80, ["overhealing"] = 3295, ["max"] = 68, ["critical"] = 0, ["absorbed"] = 0, }, ["Victory Rush"] = { ["shielding"] = 0, ["id"] = 118779, ["healing"] = 967, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Victory Rush", ["hits"] = 24, ["overhealing"] = 10298, ["max"] = 439, ["critical"] = 0, ["absorbed"] = 0, }, }, ["shielding"] = 0, ["multistrikes"] = 0, }, -- [1] { ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { }, ["auras"] = { ["Faerie Fire"] = { ["name"] = "Faerie Fire", ["active"] = 0, ["id"] = 770, ["auratype"] = "DEBUFF", ["uptime"] = 123, }, ["Savage Roar"] = { ["name"] = "Savage Roar", ["active"] = 3, ["id"] = 52610, ["auratype"] = "BUFF", ["uptime"] = 962, }, ["Predatory Swiftness"] = { ["name"] = "Predatory Swiftness", ["active"] = 4, ["id"] = 69369, ["auratype"] = "BUFF", ["uptime"] = 977, }, ["Dazed"] = { ["name"] = "Dazed", ["active"] = 0, ["id"] = 50259, ["uptime"] = 3, ["auratype"] = "DEBUFF", }, ["Rake"] = { ["name"] = "Rake", ["active"] = 0, ["id"] = 155722, ["auratype"] = "DEBUFF", ["uptime"] = 163, }, ["Rip"] = { ["name"] = "Rip", ["active"] = 0, ["id"] = 1079, ["auratype"] = "DEBUFF", ["uptime"] = 108, }, ["Tiger's Fury"] = { ["name"] = "Tiger's Fury", ["active"] = 4, ["id"] = 5217, ["auratype"] = "BUFF", ["uptime"] = 627, }, ["Cat Form"] = { ["name"] = "Cat Form", ["active"] = 1, ["id"] = 768, ["uptime"] = 304, ["auratype"] = "BUFF", }, ["Savage Defense"] = { ["name"] = "Savage Defense", ["active"] = 0, ["id"] = 132402, ["uptime"] = 556, ["auratype"] = "BUFF", }, ["Prowl"] = { ["name"] = "Prowl", ["active"] = 0, ["id"] = 5215, ["auratype"] = "BUFF", ["uptime"] = 8, }, ["Rejuvenation"] = { ["name"] = "Rejuvenation", ["active"] = 0, ["id"] = 774, ["auratype"] = "BUFF", ["uptime"] = 13, }, ["Displacer Beast"] = { ["name"] = "Displacer Beast", ["active"] = 0, ["id"] = 137452, ["auratype"] = "BUFF", ["uptime"] = 20, }, ["Growl"] = { ["name"] = "Growl", ["active"] = 0, ["id"] = 6795, ["uptime"] = 27, ["auratype"] = "DEBUFF", }, ["Thrash"] = { ["name"] = "Thrash", ["active"] = 0, ["id"] = 77758, ["uptime"] = 702, ["auratype"] = "DEBUFF", }, ["Bear Form"] = { ["name"] = "Bear Form", ["active"] = 3, ["id"] = 5487, ["uptime"] = 2123, ["auratype"] = "BUFF", }, ["Dash"] = { ["name"] = "Dash", ["active"] = 0, ["id"] = 1850, ["uptime"] = 15, ["auratype"] = "BUFF", }, ["Immobilized"] = { ["name"] = "Immobilized", ["active"] = 0, ["id"] = 45334, ["uptime"] = 26, ["auratype"] = "DEBUFF", }, }, ["ccbreaks"] = 1, ["time"] = 2112, ["interrupts"] = 0, ["damage"] = 561692, ["damagespells"] = { ["Faerie Fire"] = { ["min"] = 53, ["critical"] = 3, ["hit"] = 8, ["totalhits"] = 11, ["id"] = 770, ["max"] = 121, ["damage"] = 798, }, ["Shred"] = { ["min"] = 168, ["multistrike"] = 1, ["critical"] = 25, ["hit"] = 80, ["totalhits"] = 105, ["id"] = 5221, ["max"] = 1208, ["damage"] = 51039, }, ["Rip"] = { ["min"] = 103, ["critical"] = 13, ["hit"] = 42, ["totalhits"] = 55, ["id"] = 1079, ["max"] = 375, ["damage"] = 10500, }, ["Ferocious Bite"] = { ["min"] = 289, ["critical"] = 10, ["hit"] = 17, ["totalhits"] = 27, ["id"] = 22568, ["max"] = 3799, ["damage"] = 30805, }, ["Rake"] = { ["min"] = 97, ["id"] = 1822, ["critical"] = 13, ["hit"] = 58, ["totalhits"] = 72, ["IMMUNE"] = 1, ["max"] = 309, ["damage"] = 11958, }, ["Swipe"] = { ["DODGE"] = 2, ["max"] = 569, ["min"] = 94, ["PARRY"] = 1, ["critical"] = 62, ["hit"] = 256, ["totalhits"] = 321, ["id"] = 106785, ["damage"] = 74835, }, ["Attack"] = { ["DODGE"] = 1, ["max"] = 373, ["min"] = 1, ["multistrike"] = 19, ["critical"] = 204, ["hit"] = 726, ["totalhits"] = 941, ["glancing"] = 10, ["id"] = 6603, ["damage"] = 135985, }, ["Thrash"] = { ["min"] = 1, ["multistrike"] = 186, ["critical"] = 456, ["hit"] = 1615, ["totalhits"] = 2071, ["id"] = 77758, ["max"] = 281, ["damage"] = 197048, }, ["Mangle"] = { ["min"] = 87, ["multistrike"] = 6, ["critical"] = 22, ["hit"] = 61, ["totalhits"] = 83, ["id"] = 33917, ["max"] = 1145, ["damage"] = 41120, }, ["Maul"] = { ["min"] = 83, ["multistrike"] = 2, ["critical"] = 6, ["hit"] = 40, ["totalhits"] = 46, ["id"] = 6807, ["max"] = 339, ["damage"] = 7604, }, ["Immobilized"] = { ["totalhits"] = 4, ["id"] = 45334, ["IMMUNE"] = 4, ["max"] = 0, ["damage"] = 0, }, }, ["dispells"] = 0, ["damagetaken"] = 142837, ["power"] = { { ["spells"] = { [33917] = 820, [16959] = 1056, [158723] = 2038, [17057] = 90, }, ["amount"] = 4004, }, -- [1] [3] = { ["amount"] = 413, ["spells"] = { [22568] = -307, [5217] = 720, }, }, }, ["id"] = "Player-1403-06025CCB", ["maxhp"] = 4268, ["healingspells"] = { ["Ysera's Gift"] = { ["shielding"] = 0, ["id"] = 145110, ["healing"] = 31447, ["min"] = 2, ["multistrike"] = 0, ["name"] = "Ysera's Gift", ["max"] = 208, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 3947, ["hits"] = 186, }, ["Heal"] = { ["shielding"] = 0, ["id"] = 181867, ["healing"] = 5681, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Heal", ["max"] = 1821, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 835, ["hits"] = 6, }, ["Rejuvenation"] = { ["shielding"] = 0, ["id"] = 774, ["healing"] = 1093, ["min"] = 29, ["multistrike"] = 0, ["name"] = "Rejuvenation", ["max"] = 272, ["critical"] = 2, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 7, }, }, ["damagetakenspells"] = { ["Fanatical Strike"] = { ["crushing"] = 0, ["id"] = 110956, ["min"] = 291, ["absorbed"] = 130, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fanatical Strike", ["blocked"] = 0, ["totalhits"] = 12, ["resisted"] = 0, ["max"] = 609, ["damage"] = 5073, }, ["Shell Shocker"] = { ["crushing"] = 0, ["id"] = 149868, ["damage"] = 177, ["max"] = 177, ["name"] = "Shell Shocker", ["min"] = 177, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Flamethrower"] = { ["crushing"] = 0, ["id"] = 115507, ["min"] = 103, ["absorbed"] = 13, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamethrower", ["blocked"] = 0, ["totalhits"] = 10, ["resisted"] = 288, ["max"] = 157, ["damage"] = 1262, }, ["Strike"] = { ["crushing"] = 0, ["id"] = 14516, ["damage"] = 256, ["max"] = 197, ["name"] = "Strike", ["min"] = 59, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 106, }, ["Sinister Strike"] = { ["crushing"] = 0, ["id"] = 15667, ["damage"] = 551, ["max"] = 264, ["name"] = "Sinister Strike", ["min"] = 136, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Hands of Purity"] = { ["crushing"] = 0, ["id"] = 110953, ["min"] = 14, ["absorbed"] = 13, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Hands of Purity", ["blocked"] = 0, ["totalhits"] = 24, ["resisted"] = 102, ["max"] = 27, ["damage"] = 540, }, ["Chain Lightning"] = { ["crushing"] = 0, ["id"] = 150405, ["damage"] = 108, ["max"] = 108, ["name"] = "Chain Lightning", ["min"] = 108, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Wildly Stabbing"] = { ["crushing"] = 0, ["id"] = 86727, ["damage"] = 571, ["max"] = 82, ["name"] = "Wildly Stabbing", ["min"] = 60, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 8, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Holy Smite"] = { ["crushing"] = 0, ["id"] = 114848, ["min"] = 97, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Holy Smite", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 455, ["damage"] = 552, }, ["Stampede"] = { ["crushing"] = 0, ["id"] = 149957, ["min"] = 288, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Stampede", ["blocked"] = 0, ["totalhits"] = 13, ["resisted"] = 0, ["max"] = 306, ["damage"] = 3835, }, ["Firestorm Kick"] = { ["crushing"] = 0, ["id"] = 113766, ["min"] = 105, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Firestorm Kick", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 45, ["max"] = 150, ["damage"] = 255, }, ["Static Shock"] = { ["crushing"] = 0, ["id"] = 151684, ["damage"] = 66, ["max"] = 66, ["name"] = "Static Shock", ["min"] = 66, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Vine Line"] = { ["crushing"] = 0, ["id"] = 150304, ["min"] = 400, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Vine Line", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 470, ["damage"] = 870, }, ["Sonic Screech"] = { ["crushing"] = 0, ["id"] = 152750, ["min"] = 375, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Sonic Screech", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 411, ["damage"] = 786, }, ["Sweep"] = { ["crushing"] = 0, ["id"] = 86729, ["damage"] = 298, ["max"] = 298, ["name"] = "Sweep", ["min"] = 298, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Knockdown"] = { ["crushing"] = 0, ["id"] = 11428, ["min"] = 46, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Knockdown", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 46, ["damage"] = 46, }, ["Poisoned Arrow Volley"] = { ["crushing"] = 0, ["id"] = 150849, ["min"] = 65, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poisoned Arrow Volley", ["blocked"] = 0, ["totalhits"] = 8, ["resisted"] = 0, ["max"] = 341, ["damage"] = 1070, }, ["Shattering Song"] = { ["crushing"] = 0, ["id"] = 149916, ["damage"] = 95, ["max"] = 95, ["name"] = "Shattering Song", ["min"] = 95, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 38, }, ["Deadly Poison"] = { ["crushing"] = 0, ["id"] = 3583, ["damage"] = 184, ["max"] = 27, ["name"] = "Deadly Poison", ["min"] = 26, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 7, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Whirlwind"] = { ["crushing"] = 0, ["id"] = 84147, ["min"] = 42, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Whirlwind", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 44, ["damage"] = 86, }, ["Toxic Nova"] = { ["crushing"] = 0, ["id"] = 81039, ["min"] = 10, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Toxic Nova", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 10, ["damage"] = 10, }, ["Pass Judgment"] = { ["crushing"] = 0, ["id"] = 111107, ["min"] = 65, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Pass Judgment", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 78, ["damage"] = 213, }, ["Entangling Roots"] = { ["crushing"] = 0, ["id"] = 21331, ["min"] = 37, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Entangling Roots", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 37, ["damage"] = 74, }, ["Book Burner"] = { ["crushing"] = 0, ["id"] = 113364, ["min"] = 677, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Book Burner", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 84, ["max"] = 677, ["damage"] = 677, }, ["Flaming Bolt"] = { ["crushing"] = 0, ["id"] = 150999, ["min"] = 113, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flaming Bolt", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 12, ["max"] = 125, ["damage"] = 238, }, ["Staggering Shot"] = { ["crushing"] = 0, ["id"] = 113642, ["min"] = 294, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Staggering Shot", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 294, ["damage"] = 294, }, ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 280, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 280, ["damage"] = 280, }, ["Scorched Earth"] = { ["crushing"] = 0, ["id"] = 114465, ["min"] = 299, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Scorched Earth", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 299, ["damage"] = 299, }, ["Beatdown"] = { ["crushing"] = 0, ["id"] = 114184, ["min"] = 540, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Beatdown", ["blocked"] = 0, ["totalhits"] = 10, ["resisted"] = 0, ["max"] = 1260, ["damage"] = 9780, }, ["Spirit Bolt"] = { ["crushing"] = 0, ["id"] = 151253, ["min"] = 231, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Bolt", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 231, ["damage"] = 231, }, ["Purifying Flames"] = { ["crushing"] = 0, ["id"] = 110968, ["min"] = 9, ["absorbed"] = 799, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Purifying Flames", ["blocked"] = 0, ["totalhits"] = 31, ["resisted"] = 2058, ["max"] = 379, ["damage"] = 9325, }, ["Spirit Link"] = { ["crushing"] = 0, ["id"] = 151231, ["min"] = 30, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Link", ["blocked"] = 0, ["totalhits"] = 19, ["resisted"] = 0, ["max"] = 396, ["damage"] = 2893, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 175, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 212, ["damage"] = 974, }, ["Tidal Tempest"] = { ["crushing"] = 0, ["id"] = 151564, ["min"] = 303, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Tidal Tempest", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 303, ["damage"] = 303, }, ["Molten Inferno"] = { ["crushing"] = 0, ["id"] = 151742, ["min"] = 606, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Molten Inferno", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 152, ["max"] = 606, ["damage"] = 606, }, ["War Stomp"] = { ["crushing"] = 0, ["id"] = 11876, ["min"] = 426, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "War Stomp", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 426, ["damage"] = 426, }, ["Fireball"] = { ["crushing"] = 0, ["id"] = 128249, ["min"] = 208, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fireball", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 26, ["max"] = 208, ["damage"] = 208, }, ["Multi-Shot"] = { ["crushing"] = 0, ["id"] = 21390, ["min"] = 1197, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Multi-Shot", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 1197, ["damage"] = 1197, }, ["Dirty Blow"] = { ["crushing"] = 0, ["id"] = 86740, ["damage"] = 183, ["max"] = 183, ["name"] = "Dirty Blow", ["min"] = 183, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Void Blast"] = { ["crushing"] = 0, ["id"] = 150543, ["damage"] = 297, ["max"] = 149, ["name"] = "Void Blast", ["min"] = 148, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Shank"] = { ["crushing"] = 0, ["id"] = 15248, ["damage"] = 151, ["max"] = 151, ["name"] = "Shank", ["min"] = 151, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Pyroblast"] = { ["crushing"] = 0, ["id"] = 113690, ["min"] = 76, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Pyroblast", ["blocked"] = 0, ["totalhits"] = 10, ["resisted"] = 231, ["max"] = 611, ["damage"] = 1784, }, ["Dashing Strike"] = { ["crushing"] = 0, ["id"] = 115739, ["min"] = 304, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Dashing Strike", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 327, ["damage"] = 942, }, ["Spirit Gale"] = { ["crushing"] = 0, ["id"] = 115291, ["min"] = 198, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Gale", ["blocked"] = 0, ["totalhits"] = 9, ["resisted"] = 0, ["max"] = 598, ["damage"] = 2215, }, ["Radiation Bolt"] = { ["crushing"] = 0, ["id"] = 92266, ["min"] = 219, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Radiation Bolt", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 219, ["damage"] = 219, }, ["Shoot"] = { ["crushing"] = 0, ["id"] = 150100, ["damage"] = 334, ["max"] = 234, ["name"] = "Shoot", ["min"] = 49, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Cannon Blast"] = { ["crushing"] = 0, ["id"] = 111569, ["min"] = 244, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Cannon Blast", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 143, ["max"] = 269, ["damage"] = 513, }, ["Exploding Shot"] = { ["crushing"] = 0, ["id"] = 114863, ["min"] = 343, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Exploding Shot", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 127, ["max"] = 438, ["damage"] = 1996, }, ["Fan of Knives"] = { ["crushing"] = 0, ["id"] = 150981, ["min"] = 246, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fan of Knives", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 298, ["damage"] = 799, }, ["Bleeding Wound"] = { ["crushing"] = 0, ["id"] = 113855, ["min"] = 255, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Bleeding Wound", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 330, ["damage"] = 1431, }, ["Flamestrike"] = { ["crushing"] = 0, ["id"] = 110963, ["min"] = 24, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamestrike", ["blocked"] = 0, ["totalhits"] = 33, ["resisted"] = 302, ["max"] = 138, ["damage"] = 2011, }, ["Noxious Cloud"] = { ["crushing"] = 0, ["id"] = 21070, ["min"] = 213, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Noxious Cloud", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 213, ["damage"] = 639, }, ["Crushing Singularity"] = { ["crushing"] = 0, ["id"] = 150549, ["damage"] = 765, ["max"] = 135, ["name"] = "Crushing Singularity", ["min"] = 90, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 6, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 45, }, ["Vicious Slice"] = { ["crushing"] = 0, ["id"] = 86604, ["damage"] = 800, ["max"] = 343, ["name"] = "Vicious Slice", ["min"] = 117, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Holy Fire"] = { ["crushing"] = 0, ["id"] = 128232, ["min"] = 28, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Holy Fire", ["blocked"] = 0, ["totalhits"] = 8, ["resisted"] = 158, ["max"] = 217, ["damage"] = 632, }, ["Hamstring"] = { ["crushing"] = 0, ["id"] = 9080, ["damage"] = 65, ["max"] = 33, ["name"] = "Hamstring", ["min"] = 32, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Bile Strike"] = { ["crushing"] = 0, ["id"] = 150394, ["damage"] = 456, ["max"] = 100, ["name"] = "Bile Strike", ["min"] = 32, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 10, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Gouge"] = { ["crushing"] = 0, ["id"] = 12540, ["min"] = 17, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Gouge", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 17, ["damage"] = 34, }, ["Leviathan's Grip"] = { ["crushing"] = 0, ["id"] = 150634, ["damage"] = 354, ["max"] = 118, ["name"] = "Leviathan's Grip", ["min"] = 118, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Lightning Bolt"] = { ["crushing"] = 0, ["id"] = 12167, ["damage"] = 594, ["max"] = 153, ["name"] = "Lightning Bolt", ["min"] = 140, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Deep Bruise"] = { ["crushing"] = 0, ["id"] = 86738, ["damage"] = 30, ["max"] = 30, ["name"] = "Deep Bruise", ["min"] = 30, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Fireball Volley"] = { ["crushing"] = 0, ["id"] = 113691, ["min"] = 426, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fireball Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 203, ["max"] = 426, ["damage"] = 426, }, ["Venom"] = { ["crushing"] = 0, ["id"] = 151275, ["damage"] = 1069, ["max"] = 268, ["name"] = "Venom", ["min"] = 267, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Cleave"] = { ["crushing"] = 0, ["id"] = 115519, ["damage"] = 578, ["max"] = 169, ["name"] = "Cleave", ["min"] = 115, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Retaliation"] = { ["crushing"] = 0, ["id"] = 115511, ["min"] = 300, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Retaliation", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 300, ["damage"] = 300, }, ["Throw Wrench"] = { ["crushing"] = 0, ["id"] = 13398, ["min"] = 46, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Throw Wrench", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 46, ["damage"] = 46, }, ["Water Jet"] = { ["crushing"] = 0, ["id"] = 150504, ["damage"] = 304, ["max"] = 155, ["name"] = "Water Jet", ["min"] = 149, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Poison Shock"] = { ["crushing"] = 0, ["id"] = 22595, ["min"] = 225, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poison Shock", ["blocked"] = 0, ["totalhits"] = 15, ["resisted"] = 0, ["max"] = 275, ["damage"] = 3732, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["damage"] = 74429, ["max"] = 659, ["name"] = "Attack", ["min"] = 5, ["multistrike"] = 0, ["critical"] = 4, ["blocked"] = 0, ["totalhits"] = 542, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 3066, }, }, ["overhealing"] = 4782, ["healed"] = { ["Player-1096-07091437"] = { ["role"] = "DAMAGER", ["name"] = "Sathorin-TheVentureCo", ["amount"] = 997, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 8267, ["class"] = "WARRIOR", ["shielding"] = 0, }, ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 491, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-3687-06FC3B80"] = { ["role"] = "HEALER", ["name"] = "Drpolarbear-Sylvanas", ["amount"] = 846, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 1945, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 4887, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-3674-06FC5F4D"] = { ["role"] = "HEALER", ["name"] = "Stormrise-TwistingNether", ["amount"] = 546, ["class"] = "SHAMAN", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "TANK", ["name"] = "Tjago", ["amount"] = 20242, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["name"] = "Tjago", ["shielding"] = 0, ["healing"] = 38221, ["role"] = "TANK", ["deathlog"] = { { ["ts"] = 1447793958.276, ["absorb"] = 0, ["amount"] = 84, ["spellid"] = 774, ["srcname"] = "Drpolarbear-Sylvanas", ["hp"] = 4842, }, -- [1] { ["absorb"] = 0, ["ts"] = 1447793960.475, ["amount"] = 208, ["srcname"] = "Tjago", ["spellid"] = 145109, ["hp"] = 5050, }, -- [2] { ["ts"] = 1447793961.258, ["absorb"] = 0, ["amount"] = 84, ["srcname"] = "Drpolarbear-Sylvanas", ["hp"] = 5134, ["spellid"] = 774, }, -- [3] { ["absorb"] = 0, ["ts"] = 1447793895.481, ["amount"] = 188, ["spellid"] = 145109, ["hp"] = 5200, ["srcname"] = "Tjago", }, -- [4] { ["srcname"] = "Commander Durand", ["amount"] = -280, ["spellid"] = 115629, ["hp"] = 4920, ["ts"] = 1447793910.271, }, -- [5] { ["absorb"] = 0, ["ts"] = 1447793910.47, ["amount"] = 208, ["spellid"] = 145109, ["hp"] = 5128, ["srcname"] = "Tjago", }, -- [6] { ["srcname"] = "Scarlet Purifier", ["amount"] = -307, ["spellid"] = 110968, ["hp"] = 4821, ["ts"] = 1447793912.538, }, -- [7] { ["srcname"] = "Tjago", ["absorb"] = 0, ["amount"] = 208, ["spellid"] = 145109, ["hp"] = 5029, ["ts"] = 1447793915.476, }, -- [8] { ["absorb"] = 0, ["ts"] = 1447793920.478, ["amount"] = 171, ["srcname"] = "Tjago", ["hp"] = 5200, ["spellid"] = 145109, }, -- [9] { ["ts"] = 1447793945.601, ["amount"] = -327, ["spellid"] = 115739, ["srcname"] = "Commander Durand", ["hp"] = 4873, }, -- [10] { ["ts"] = 1447793946.598, ["amount"] = -304, ["srcname"] = "Commander Durand", ["spellid"] = 115739, ["hp"] = 4569, }, -- [11] { ["ts"] = 1447793946.826, ["amount"] = -311, ["srcname"] = "Commander Durand", ["spellid"] = 115739, ["hp"] = 4258, }, -- [12] { ["absorb"] = 0, ["srcname"] = "Tjago", ["amount"] = 208, ["spellid"] = 145109, ["hp"] = 4466, ["ts"] = 1447793950.481, }, -- [13] { ["absorb"] = 0, ["srcname"] = "Drpolarbear-Sylvanas", ["amount"] = 84, ["spellid"] = 774, ["hp"] = 4550, ["ts"] = 1447793955.293, }, -- [14] { ["absorb"] = 0, ["srcname"] = "Tjago", ["amount"] = 208, ["spellid"] = 145109, ["hp"] = 4758, ["ts"] = 1447793955.481, }, -- [15] ["pos"] = 4, }, ["multistrikes"] = 0, }, -- [2] { ["healingabsorbed"] = 0, ["class"] = "PRIEST", ["damaged"] = { }, ["dispells"] = 0, ["role"] = "HEALER", ["overhealing"] = 129648.106243134, ["interrupts"] = 0, ["damage"] = 65862, ["damagespells"] = { ["Holy Fire"] = { ["min"] = 2, ["multistrike"] = 46, ["critical"] = 18, ["hit"] = 79, ["totalhits"] = 97, ["id"] = 14914, ["max"] = 481, ["damage"] = 3851, }, ["Penance"] = { ["min"] = 202, ["multistrike"] = 7, ["critical"] = 4, ["hit"] = 13, ["totalhits"] = 17, ["id"] = 47666, ["max"] = 464, ["damage"] = 5155, }, ["Smite"] = { ["min"] = 154, ["multistrike"] = 11, ["critical"] = 2, ["hit"] = 25, ["totalhits"] = 27, ["id"] = 585, ["max"] = 322, ["damage"] = 5354, }, ["Shadow Word: Pain"] = { ["min"] = 71, ["multistrike"] = 15, ["critical"] = 7, ["hit"] = 38, ["totalhits"] = 45, ["id"] = 589, ["max"] = 168, ["damage"] = 4915, }, ["Holy Nova"] = { ["min"] = 63, ["multistrike"] = 189, ["critical"] = 78, ["hit"] = 427, ["totalhits"] = 505, ["max"] = 165, ["id"] = 132157, ["damage"] = 46587, }, }, ["auras"] = { ["Borrowed Time"] = { ["name"] = "Borrowed Time", ["active"] = 0, ["id"] = 59889, ["uptime"] = 263, ["auratype"] = "BUFF", }, ["Holy Fire"] = { ["name"] = "Holy Fire", ["active"] = 0, ["id"] = 14914, ["uptime"] = 62, ["auratype"] = "DEBUFF", }, ["Power Word: Shield"] = { ["name"] = "Power Word: Shield", ["active"] = 6, ["id"] = 17, ["uptime"] = 2053, ["auratype"] = "BUFF", }, ["Shadow Word: Pain"] = { ["name"] = "Shadow Word: Pain", ["active"] = 0, ["id"] = 589, ["uptime"] = 75, ["auratype"] = "DEBUFF", }, ["Weakened Soul"] = { ["name"] = "Weakened Soul", ["active"] = 7, ["id"] = 6788, ["uptime"] = 2093, ["auratype"] = "DEBUFF", }, ["Mark of Warsong"] = { ["name"] = "Mark of Warsong", ["active"] = 6, ["id"] = 159675, ["uptime"] = 2275, ["auratype"] = "BUFF", }, ["Divine Aegis"] = { ["name"] = "Divine Aegis", ["active"] = 14, ["id"] = 47753, ["uptime"] = 2245, ["auratype"] = "BUFF", }, ["Executioner's Strike"] = { ["name"] = "Executioner's Strike", ["active"] = 0, ["id"] = 152592, ["uptime"] = 0, ["auratype"] = "DEBUFF", }, }, ["healed"] = { ["Player-3681-07E14AC0"] = { ["role"] = "DAMAGER", ["name"] = "Varane-Magtheridon", ["amount"] = 7290, ["class"] = "WARRIOR", ["shielding"] = 1305, }, ["Player-1307-07BBF516"] = { ["role"] = "DAMAGER", ["name"] = "Darkaya-ChamberofAspects", ["amount"] = 7841, ["class"] = "PRIEST", ["shielding"] = 3232, }, ["Pet-0-3102-48-24775-42720-01024EF814"] = { ["role"] = "NONE", ["name"] = "Oskar", ["amount"] = 0, ["class"] = "WARRIOR", ["shielding"] = 0, }, ["Creature-0-3102-90-27621-95577-00004B8358"] = { ["role"] = "NONE", ["name"] = "Void Tendril", ["amount"] = 0, ["shielding"] = 0, }, ["Creature-0-3102-90-27621-95577-00004B8359"] = { ["role"] = "NONE", ["name"] = "Void Tendril", ["amount"] = 409, ["shielding"] = 141, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 6998, ["class"] = "HUNTER", ["shielding"] = 488, }, ["Player-1403-06025CCB"] = { ["role"] = "TANK", ["name"] = "Tjago", ["amount"] = 48593, ["class"] = "DRUID", ["shielding"] = 17656, }, ["Player-3674-06FD0C06"] = { ["role"] = "HEALER", ["name"] = "Empri-TwistingNether", ["amount"] = 17438, ["class"] = "PRIEST", ["shielding"] = 5196, }, ["Creature-0-3102-90-27621-95577-00004B8357"] = { ["role"] = "NONE", ["name"] = "Void Tendril", ["amount"] = 188, ["shielding"] = 0, }, }, ["deathlog"] = { { ["ts"] = 1447789411.668, ["absorb"] = 0, ["amount"] = 0, ["spellid"] = 59913, ["hp"] = 3080, ["srcname"] = "Empri-TwistingNether", }, -- [1] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["ts"] = 1447789411.683, }, -- [2] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["ts"] = 1447789412.85, }, -- [3] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["ts"] = 1447789414.013, }, -- [4] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["ts"] = 1447789414.013, }, -- [5] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["ts"] = 1447789415.191, }, -- [6] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 59913, ["hp"] = 3080, ["ts"] = 1447789415.209, }, -- [7] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["ts"] = 1447789416.391, }, -- [8] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["ts"] = 1447789416.391, }, -- [9] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["ts"] = 1447789417.565, }, -- [10] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["ts"] = 1447789423.747, }, -- [11] { ["ts"] = 1447789425.715, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["absorb"] = 0, }, -- [12] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 59913, ["hp"] = 3080, ["ts"] = 1447789449.122, }, -- [13] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["ts"] = 1447789410.42, }, -- [14] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3080, ["ts"] = 1447789410.42, }, -- [15] ["pos"] = 14, }, ["id"] = "Player-3674-06FD0C06", ["healing"] = 88757, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Throw Wrench"] = { ["crushing"] = 0, ["id"] = 13398, ["min"] = 67, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Throw Wrench", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 75, ["damage"] = 142, }, ["Cleave"] = { ["crushing"] = 0, ["id"] = 150377, ["damage"] = 157, ["max"] = 157, ["name"] = "Cleave", ["min"] = 157, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Toxic Nova"] = { ["crushing"] = 0, ["id"] = 81039, ["min"] = 11, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Toxic Nova", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 244, ["damage"] = 277, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["damage"] = 5308, ["max"] = 555, ["name"] = "Attack", ["min"] = 2, ["multistrike"] = 0, ["critical"] = 1, ["blocked"] = 0, ["totalhits"] = 35, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 822, }, ["Lightning Bolt"] = { ["crushing"] = 0, ["id"] = 12167, ["damage"] = 913, ["max"] = 176, ["name"] = "Lightning Bolt", ["min"] = 72, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 6, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 114, }, ["Shoot"] = { ["crushing"] = 0, ["id"] = 15547, ["damage"] = 149, ["max"] = 79, ["name"] = "Shoot", ["min"] = 70, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Void Blast"] = { ["crushing"] = 0, ["id"] = 150543, ["damage"] = 161, ["max"] = 161, ["name"] = "Void Blast", ["min"] = 161, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Shank"] = { ["crushing"] = 0, ["id"] = 15248, ["damage"] = 212, ["max"] = 212, ["name"] = "Shank", ["min"] = 212, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Bile Strike"] = { ["crushing"] = 0, ["id"] = 150394, ["damage"] = 108, ["max"] = 36, ["name"] = "Bile Strike", ["min"] = 36, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Crushing Singularity"] = { ["crushing"] = 0, ["id"] = 150549, ["damage"] = 2663, ["max"] = 150, ["name"] = "Crushing Singularity", ["min"] = 18, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 19, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 171, }, ["Rip Tide"] = { ["crushing"] = 0, ["id"] = 150509, ["damage"] = 249, ["max"] = 249, ["name"] = "Rip Tide", ["min"] = 249, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Water Jet"] = { ["crushing"] = 0, ["id"] = 150504, ["damage"] = 639, ["max"] = 164, ["name"] = "Water Jet", ["min"] = 154, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Chain Lightning"] = { ["crushing"] = 0, ["id"] = 150405, ["damage"] = 133, ["max"] = 133, ["name"] = "Chain Lightning", ["min"] = 133, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 5, }, ["Shattering Song"] = { ["crushing"] = 0, ["id"] = 149916, ["damage"] = 199, ["max"] = 199, ["name"] = "Shattering Song", ["min"] = 199, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, }, ["time"] = 596, ["damagetaken"] = 11310, ["name"] = "Empri", ["power"] = { }, ["maxhp"] = 3652, ["healingspells"] = { ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 561, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["hits"] = 25, ["overhealing"] = 1410, ["max"] = 90, ["critical"] = 0, ["absorbed"] = 0, }, ["Penance"] = { ["shielding"] = 0, ["id"] = 47750, ["healing"] = 14644, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 10, ["name"] = "Penance", ["hits"] = 36, ["overhealing"] = 3471, ["max"] = 1002, ["critical"] = 10, ["absorbed"] = 0, }, ["Flash Heal"] = { ["shielding"] = 0, ["id"] = 2061, ["healing"] = 949, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Flash Heal", ["hits"] = 2, ["overhealing"] = 948, ["max"] = 949, ["critical"] = 1, ["absorbed"] = 0, }, ["Holy Nova"] = { ["shielding"] = 0, ["id"] = 23455, ["healing"] = 44585, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 356, ["name"] = "Holy Nova", ["hits"] = 1334, ["overhealing"] = 95982, ["max"] = 232, ["critical"] = 208, ["absorbed"] = 0, }, ["Power Word: Shield"] = { ["shielding"] = 15885, ["id"] = 17, ["healing"] = 15885, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Power Word: Shield", ["hits"] = 126, ["overhealing"] = 8301.107421875, ["max"] = 515, ["critical"] = 0, ["absorbed"] = 0, }, ["Divine Aegis"] = { ["shielding"] = 12133, ["id"] = 47753, ["healing"] = 12133, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Divine Aegis", ["hits"] = 252, ["overhealing"] = 19535.9988212585, ["max"] = 343, ["critical"] = 0, ["absorbed"] = 0, }, }, ["shielding"] = 28018, ["multistrikes"] = 366, }, -- [3] { ["healingabsorbed"] = 0, ["class"] = "PRIEST", ["damaged"] = { }, ["dispells"] = 0, ["role"] = "DAMAGER", ["overhealing"] = 17469.5625, ["interrupts"] = 0, ["damage"] = 75412, ["damagespells"] = { ["Mind Blast"] = { ["min"] = 463, ["multistrike"] = 2, ["critical"] = 3, ["hit"] = 31, ["totalhits"] = 34, ["id"] = 8092, ["max"] = 1069, ["damage"] = 19464, }, ["Devouring Plague"] = { ["min"] = 107, ["critical"] = 1, ["hit"] = 65, ["totalhits"] = 66, ["id"] = 2944, ["max"] = 1287, ["damage"] = 13531, }, ["Touch of the Grave"] = { ["min"] = 104, ["id"] = 127802, ["hit"] = 21, ["totalhits"] = 27, ["IMMUNE"] = 6, ["max"] = 129, ["damage"] = 2386, }, ["Shadow Word: Pain"] = { ["min"] = 101, ["multistrike"] = 20, ["critical"] = 29, ["hit"] = 175, ["totalhits"] = 204, ["id"] = 589, ["max"] = 233, ["damage"] = 26291, }, ["Mind Flay"] = { ["min"] = 84, ["multistrike"] = 9, ["critical"] = 14, ["hit"] = 80, ["totalhits"] = 94, ["id"] = 15407, ["max"] = 195, ["damage"] = 10363, }, ["Mind Sear"] = { ["min"] = 60, ["multistrike"] = 2, ["critical"] = 2, ["hit"] = 23, ["totalhits"] = 25, ["id"] = 49821, ["max"] = 120, ["damage"] = 1667, }, ["Vampiric Touch"] = { ["min"] = 141, ["critical"] = 1, ["hit"] = 10, ["totalhits"] = 11, ["id"] = 34914, ["max"] = 286, ["damage"] = 1710, }, }, ["auras"] = { ["Mind Sear"] = { ["name"] = "Mind Sear", ["active"] = 0, ["id"] = 48045, ["auratype"] = "DEBUFF", ["uptime"] = 15, }, ["Devouring Plague"] = { ["name"] = "Devouring Plague", ["active"] = 0, ["id"] = 158831, ["uptime"] = 43, ["auratype"] = "DEBUFF", }, ["Power Word: Shield"] = { ["name"] = "Power Word: Shield", ["active"] = 0, ["id"] = 17, ["uptime"] = 32, ["auratype"] = "BUFF", }, ["Slow Fall"] = { ["name"] = "Slow Fall", ["active"] = 0, ["id"] = 12438, ["auratype"] = "BUFF", ["uptime"] = 2, }, ["Shadow Word: Pain"] = { ["name"] = "Shadow Word: Pain", ["active"] = 0, ["id"] = 589, ["uptime"] = 315, ["auratype"] = "DEBUFF", }, ["Mind Flay"] = { ["name"] = "Mind Flay", ["active"] = 0, ["id"] = 15407, ["uptime"] = 102, ["auratype"] = "DEBUFF", }, ["Vampiric Touch"] = { ["name"] = "Vampiric Touch", ["active"] = 0, ["id"] = 34914, ["auratype"] = "DEBUFF", ["uptime"] = 52, }, ["Weakened Soul"] = { ["name"] = "Weakened Soul", ["active"] = 0, ["id"] = 6788, ["uptime"] = 72, ["auratype"] = "DEBUFF", }, }, ["healed"] = { ["Player-1307-07BBF516"] = { ["role"] = "DAMAGER", ["name"] = "Darkaya-ChamberofAspects", ["amount"] = 2411, ["class"] = "PRIEST", ["shielding"] = 1738, }, }, ["deathlog"] = { { ["absorb"] = 0, ["srcname"] = "Darkaya-ChamberofAspects", ["amount"] = 0, ["spellid"] = 127626, ["hp"] = 3696, ["ts"] = 1447789441.717, }, -- [1] { ["absorb"] = 0, ["srcname"] = "Darkaya-ChamberofAspects", ["amount"] = 0, ["spellid"] = 127626, ["hp"] = 3696, ["ts"] = 1447789442.611, }, -- [2] { ["ts"] = 1447789412.85, ["absorb"] = 0, ["amount"] = 0, ["srcname"] = "Empri-TwistingNether", ["hp"] = 3696, ["spellid"] = 23455, }, -- [3] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3696, ["ts"] = 1447789414.013, }, -- [4] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3696, ["ts"] = 1447789415.191, }, -- [5] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3696, ["ts"] = 1447789416.391, }, -- [6] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3696, ["ts"] = 1447789417.565, }, -- [7] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3696, ["ts"] = 1447789423.747, }, -- [8] { ["absorb"] = 0, ["srcname"] = "Empri-TwistingNether", ["amount"] = 0, ["spellid"] = 23455, ["hp"] = 3696, ["ts"] = 1447789425.715, }, -- [9] { ["absorb"] = 0, ["srcname"] = "Darkaya-ChamberofAspects", ["amount"] = 0, ["spellid"] = 127626, ["hp"] = 3696, ["ts"] = 1447789437.188, }, -- [10] { ["absorb"] = 0, ["srcname"] = "Darkaya-ChamberofAspects", ["amount"] = 0, ["spellid"] = 127626, ["hp"] = 3696, ["ts"] = 1447789438.113, }, -- [11] { ["absorb"] = 0, ["srcname"] = "Darkaya-ChamberofAspects", ["amount"] = 0, ["spellid"] = 127626, ["hp"] = 3696, ["ts"] = 1447789439.005, }, -- [12] { ["absorb"] = 0, ["srcname"] = "Darkaya-ChamberofAspects", ["amount"] = 0, ["spellid"] = 127802, ["hp"] = 3696, ["ts"] = 1447789439.034, }, -- [13] { ["absorb"] = 0, ["srcname"] = "Darkaya-ChamberofAspects", ["amount"] = 0, ["spellid"] = 127626, ["hp"] = 3696, ["ts"] = 1447789439.911, }, -- [14] { ["absorb"] = 0, ["spellid"] = 127626, ["amount"] = 0, ["ts"] = 1447789440.813, ["srcname"] = "Darkaya-ChamberofAspects", ["hp"] = 3696, }, -- [15] ["pos"] = 3, }, ["id"] = "Player-1307-07BBF516", ["healing"] = 2411, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Executioner's Strike"] = { ["crushing"] = 0, ["id"] = 149943, ["damage"] = 445, ["max"] = 371, ["name"] = "Executioner's Strike", ["min"] = 74, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Cleave"] = { ["crushing"] = 0, ["id"] = 150377, ["damage"] = 158, ["max"] = 158, ["name"] = "Cleave", ["min"] = 158, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Lightning Bolt"] = { ["crushing"] = 0, ["id"] = 12167, ["damage"] = 167, ["max"] = 167, ["name"] = "Lightning Bolt", ["min"] = 167, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Toxic Nova"] = { ["crushing"] = 0, ["id"] = 81039, ["min"] = 11, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Toxic Nova", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 255, ["damage"] = 266, }, ["Shoot"] = { ["crushing"] = 0, ["id"] = 6660, ["damage"] = 124, ["max"] = 65, ["name"] = "Shoot", ["min"] = 59, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 3, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["damage"] = 3336, ["max"] = 282, ["name"] = "Attack", ["min"] = 95, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 16, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 198, }, ["Constricting Grasp"] = { ["crushing"] = 0, ["id"] = 151094, ["damage"] = 319, ["max"] = 80, ["name"] = "Constricting Grasp", ["min"] = 79, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Crushing Singularity"] = { ["crushing"] = 0, ["id"] = 150549, ["damage"] = 620, ["max"] = 149, ["name"] = "Crushing Singularity", ["min"] = 17, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 6, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 273, }, ["Shell Shocker"] = { ["crushing"] = 0, ["id"] = 149868, ["damage"] = 432, ["max"] = 239, ["name"] = "Shell Shocker", ["min"] = 193, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 47, }, ["Water Jet"] = { ["crushing"] = 0, ["id"] = 150504, ["damage"] = 157, ["max"] = 157, ["name"] = "Water Jet", ["min"] = 157, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Falling Debris"] = { ["crushing"] = 0, ["id"] = 152967, ["damage"] = 77, ["max"] = 77, ["name"] = "Falling Debris", ["min"] = 77, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Shattering Song"] = { ["crushing"] = 0, ["id"] = 149916, ["damage"] = 179, ["max"] = 179, ["name"] = "Shattering Song", ["min"] = 179, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, }, ["time"] = 552, ["damagetaken"] = 6280, ["name"] = "Darkaya", ["power"] = { [13] = { ["spells"] = { [8092] = 34, }, ["amount"] = 34, }, [0] = { ["spells"] = { [59914] = 3412, }, ["amount"] = 3412, }, }, ["maxhp"] = 3322, ["healingspells"] = { ["Devouring Plague"] = { ["shielding"] = 0, ["id"] = 127626, ["healing"] = 296, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Devouring Plague", ["hits"] = 69, ["overhealing"] = 13871, ["max"] = 116, ["critical"] = 0, ["absorbed"] = 0, }, ["Power Word: Shield"] = { ["shielding"] = 1738, ["id"] = 17, ["healing"] = 1738, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Power Word: Shield", ["hits"] = 14, ["overhealing"] = 1671.5625, ["max"] = 384, ["critical"] = 0, ["absorbed"] = 0, }, ["Touch of the Grave"] = { ["shielding"] = 0, ["id"] = 127802, ["healing"] = 377, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Touch of the Grave", ["hits"] = 21, ["overhealing"] = 1927, ["max"] = 117, ["critical"] = 0, ["absorbed"] = 0, }, }, ["shielding"] = 1738, ["multistrikes"] = 0, }, -- [4] { ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { }, ["dispells"] = 0, ["role"] = "DAMAGER", ["overhealing"] = 9715, ["interrupts"] = 3, ["auras"] = { ["Oskar: Plainswalking"] = { ["name"] = "Oskar: Plainswalking", ["active"] = 5, ["id"] = 160073, ["auratype"] = "BUFF", ["uptime"] = 1697, }, ["Concussive Shot"] = { ["name"] = "Concussive Shot", ["active"] = 0, ["id"] = 5116, ["uptime"] = 8, ["auratype"] = "DEBUFF", }, ["Dazed"] = { ["name"] = "Dazed", ["active"] = 1, ["id"] = 15571, ["auratype"] = "DEBUFF", ["uptime"] = 1630, }, ["Freezing Trap"] = { ["name"] = "Freezing Trap", ["active"] = 0, ["id"] = 3355, ["auratype"] = "DEBUFF", ["uptime"] = 1, }, ["Oskar: Dash"] = { ["name"] = "Oskar: Dash", ["active"] = 4, ["id"] = 61684, ["auratype"] = "BUFF", ["uptime"] = 2005, }, ["Posthaste"] = { ["name"] = "Posthaste", ["active"] = 0, ["id"] = 118922, ["uptime"] = 16, ["auratype"] = "BUFF", }, ["Revive Pet"] = { ["name"] = "Revive Pet", ["active"] = 0, ["id"] = 982, ["auratype"] = "BUFF", ["uptime"] = 3, }, }, ["damage"] = 354136, ["damagespells"] = { ["Steady Shot"] = { ["max"] = 343, ["min"] = 1, ["multistrike"] = 13, ["critical"] = 58, ["hit"] = 165, ["totalhits"] = 224, ["ABSORB"] = 1, ["id"] = 56641, ["damage"] = 31326, }, ["Oskar: Attack"] = { ["min"] = 45, ["multistrike"] = 6, ["critical"] = 17, ["hit"] = 37, ["totalhits"] = 54, ["id"] = 6603, ["max"] = 114, ["damage"] = 3936, }, ["Oskar: Claw"] = { ["min"] = 51, ["multistrike"] = 1, ["critical"] = 12, ["hit"] = 21, ["totalhits"] = 33, ["id"] = 16827, ["max"] = 258, ["damage"] = 4626, }, ["Auto Shot"] = { ["DODGE"] = 1, ["max"] = 416, ["min"] = 1, ["multistrike"] = 15, ["critical"] = 115, ["hit"] = 342, ["totalhits"] = 458, ["id"] = 75, ["damage"] = 74862, }, ["Kill Shot"] = { ["min"] = 1042, ["critical"] = 1, ["hit"] = 5, ["totalhits"] = 6, ["id"] = 53351, ["max"] = 2322, ["damage"] = 8037, }, ["Multi-Shot"] = { ["min"] = 51, ["multistrike"] = 1, ["critical"] = 18, ["hit"] = 53, ["totalhits"] = 71, ["id"] = 2643, ["max"] = 179, ["damage"] = 6510, }, ["Aimed Shot"] = { ["DODGE"] = 1, ["max"] = 1816, ["min"] = 6, ["multistrike"] = 13, ["critical"] = 98, ["hit"] = 154, ["totalhits"] = 253, ["id"] = 19434, ["damage"] = 224839, }, }, ["deaths"] = { { ["ts"] = 1447792769.28401, ["maxhp"] = 4575, ["log"] = { { ["ts"] = 1447792769.28401, ["spellname"] = "Jyggtvå dies", ["spellid"] = 41220, ["hp"] = 0, }, -- [1] { ["ts"] = 1447792786.348, ["srcname"] = "Tjago", ["hp"] = 0, ["spellid"] = 50769, }, -- [2] { ["ts"] = 1447792726.56703, ["absorb"] = 0, ["amount"] = 0, ["srcname"] = "Stormrise-TwistingNether", ["spellid"] = 61295, ["hp"] = 4575, }, -- [3] { ["ts"] = 1447792729.34504, ["absorb"] = 0, ["amount"] = 0, ["srcname"] = "Stormrise-TwistingNether", ["spellid"] = 61295, ["hp"] = 4575, }, -- [4] { ["absorb"] = 0, ["srcname"] = "Stormrise-TwistingNether", ["amount"] = 0, ["spellid"] = 61295, ["hp"] = 4575, ["ts"] = 1447792730.62405, }, -- [5] { ["srcname"] = "Cavern Lurker", ["amount"] = -476, ["spellid"] = 88163, ["hp"] = 4575, ["ts"] = 1447792756.74306, }, -- [6] { ["srcname"] = "Cavern Lurker", ["amount"] = -567, ["spellid"] = 88163, ["hp"] = 4099, ["ts"] = 1447792759.24107, }, -- [7] { ["ts"] = 1447792761.73608, ["amount"] = -560, ["spellid"] = 88163, ["hp"] = 3532, ["srcname"] = "Cavern Lurker", }, -- [8] { ["srcname"] = "Cavern Lurker", ["amount"] = -410, ["spellid"] = 88163, ["hp"] = 2972, ["ts"] = 1447792762.76509, }, -- [9] { ["ts"] = 1447792764.2421, ["amount"] = -428, ["srcname"] = "Cavern Lurker", ["hp"] = 2562, ["spellid"] = 88163, }, -- [10] { ["ts"] = 1447792765.26411, ["amount"] = -439, ["srcname"] = "Cavern Lurker", ["hp"] = 2134, ["spellid"] = 88163, }, -- [11] { ["srcname"] = "Cavern Lurker", ["amount"] = -42, ["spellid"] = 11428, ["hp"] = 1653, ["ts"] = 1447792765.82812, }, -- [12] { ["srcname"] = "Cavern Lurker", ["amount"] = -816, ["spellid"] = 88163, ["hp"] = 1653, ["ts"] = 1447792766.74613, }, -- [13] { ["srcname"] = "Cavern Lurker", ["amount"] = -475, ["spellid"] = 88163, ["hp"] = 837, ["ts"] = 1447792767.78114, }, -- [14] { ["srcname"] = "Cavern Lurker", ["amount"] = -570, ["spellid"] = 88163, ["hp"] = 362, ["ts"] = 1447792769.25315, }, -- [15] ["pos"] = 3, }, }, -- [1] }, ["healed"] = { ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 3229, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["deathlog"] = { { ["absorb"] = 0, ["hp"] = 5382, ["amount"] = 0, ["ts"] = 1447793935.852, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [1] { ["absorb"] = 0, ["hp"] = 5382, ["amount"] = 0, ["ts"] = 1447793937.847, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [2] { ["absorb"] = 0, ["hp"] = 5382, ["amount"] = 0, ["ts"] = 1447793939.827, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [3] { ["ts"] = 1447793939.902, ["absorb"] = 0, ["amount"] = 0, ["hp"] = 5382, ["srcname"] = "Drpolarbear-Sylvanas", ["spellid"] = 8936, }, -- [4] { ["ts"] = 1447793945.895, ["amount"] = -271, ["hp"] = 5111, ["srcname"] = "Commander Durand", ["spellid"] = 115629, }, -- [5] { ["hp"] = 4853, ["amount"] = -258, ["ts"] = 1447793948.473, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [6] { ["hp"] = 4577, ["amount"] = -276, ["ts"] = 1447793948.653, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [7] { ["absorb"] = 0, ["hp"] = 4661, ["amount"] = 84, ["ts"] = 1447793956.791, ["spellid"] = 774, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [8] { ["absorb"] = 0, ["hp"] = 4745, ["amount"] = 84, ["ts"] = 1447793959.77, ["spellid"] = 774, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [9] { ["hp"] = 5514, ["amount"] = -76, ["ts"] = 1447794016.116, ["spellid"] = 111107, ["srcname"] = "Scarlet Judicator", }, -- [10] { ["hp"] = 5514, ["amount"] = -78, ["ts"] = 1447794018.38, ["spellid"] = 88163, ["srcname"] = "Scarlet Judicator", }, -- [11] { ["hp"] = 5436, ["amount"] = -170, ["ts"] = 1447794019.077, ["spellid"] = 88163, ["srcname"] = "Scarlet Judicator", }, -- [12] { ["absorb"] = 0, ["hp"] = 5590, ["amount"] = 324, ["ts"] = 1447794020.452, ["spellid"] = 164851, ["srcname"] = "Jyggtvå", }, -- [13] { ["absorb"] = 0, ["hp"] = 5590, ["amount"] = 0, ["ts"] = 1447794020.452, ["spellid"] = 59913, ["srcname"] = "Jyggtvå", }, -- [14] { ["absorb"] = 0, ["hp"] = 5382, ["amount"] = 0, ["ts"] = 1447793933.866, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [15] ["pos"] = 15, }, ["id"] = "Player-1403-06025D5B", ["healing"] = 3229, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Whirlwind"] = { ["crushing"] = 0, ["id"] = 84147, ["min"] = 51, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Whirlwind", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 51, ["damage"] = 51, }, ["Toxic Nova"] = { ["crushing"] = 0, ["id"] = 81039, ["min"] = 11, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Toxic Nova", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 241, ["damage"] = 275, }, ["Pass Judgment"] = { ["crushing"] = 0, ["id"] = 111107, ["min"] = 76, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Pass Judgment", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 76, ["damage"] = 76, }, ["Fanatical Strike"] = { ["crushing"] = 0, ["id"] = 110956, ["min"] = 600, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fanatical Strike", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 600, ["damage"] = 600, }, ["Radiation Cloud"] = { ["crushing"] = 0, ["id"] = 10341, ["min"] = 74, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Radiation Cloud", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 74, ["damage"] = 74, }, ["Flamethrower"] = { ["crushing"] = 0, ["id"] = 115507, ["min"] = 165, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamethrower", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 165, ["damage"] = 165, }, ["Maddening Call"] = { ["crushing"] = 0, ["id"] = 86620, ["damage"] = 174, ["max"] = 174, ["name"] = "Maddening Call", ["min"] = 174, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Volley"] = { ["crushing"] = 0, ["id"] = 150908, ["min"] = 635, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 635, ["damage"] = 635, }, ["Crumbling Charge"] = { ["crushing"] = 0, ["id"] = 152334, ["min"] = 288, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Crumbling Charge", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 288, ["damage"] = 288, }, ["Spirit Bolt"] = { ["crushing"] = 0, ["id"] = 151253, ["min"] = 232, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Bolt", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 239, ["damage"] = 708, }, ["Purifying Flames"] = { ["crushing"] = 0, ["id"] = 110968, ["min"] = 381, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Purifying Flames", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 439, ["damage"] = 820, }, ["Spirit Axe"] = { ["crushing"] = 0, ["id"] = 151323, ["min"] = 596, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Axe", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 596, ["damage"] = 596, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 195, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 13, ["resisted"] = 0, ["max"] = 231, ["damage"] = 2781, }, ["Radiation"] = { ["crushing"] = 0, ["id"] = 9770, ["min"] = 7, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Radiation", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 7, ["damage"] = 7, }, ["Spirit Link"] = { ["crushing"] = 0, ["id"] = 151231, ["min"] = 46, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Link", ["blocked"] = 0, ["totalhits"] = 10, ["resisted"] = 0, ["max"] = 255, ["damage"] = 1264, }, ["Bomb"] = { ["crushing"] = 0, ["id"] = 9143, ["min"] = 1068, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Bomb", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 1068, ["damage"] = 1068, }, ["Molten Inferno"] = { ["crushing"] = 0, ["id"] = 151742, ["min"] = 729, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Molten Inferno", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 729, ["damage"] = 729, }, ["Shoot"] = { ["crushing"] = 0, ["id"] = 150100, ["min"] = 57, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Shoot", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 323, ["damage"] = 438, }, ["Firestorm Kick"] = { ["crushing"] = 0, ["id"] = 113766, ["min"] = 149, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Firestorm Kick", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 149, ["damage"] = 149, }, ["Sonic Screech"] = { ["crushing"] = 0, ["id"] = 152750, ["min"] = 409, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Sonic Screech", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 409, ["damage"] = 409, }, ["Static Shock"] = { ["crushing"] = 0, ["id"] = 151684, ["damage"] = 38, ["max"] = 38, ["name"] = "Static Shock", ["min"] = 38, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 36, }, ["Fireball Volley"] = { ["crushing"] = 0, ["id"] = 113691, ["min"] = 667, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fireball Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 667, ["damage"] = 667, }, ["Flamestrike"] = { ["crushing"] = 0, ["id"] = 110963, ["min"] = 29, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamestrike", ["blocked"] = 0, ["totalhits"] = 10, ["resisted"] = 0, ["max"] = 144, ["damage"] = 521, }, ["Falling Debris"] = { ["crushing"] = 0, ["id"] = 152967, ["damage"] = 76, ["max"] = 76, ["name"] = "Falling Debris", ["min"] = 76, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Crushing Singularity"] = { ["crushing"] = 0, ["id"] = 150549, ["damage"] = 1321, ["max"] = 149, ["name"] = "Crushing Singularity", ["min"] = 129, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 9, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 20, }, ["Crystalfire Discharge"] = { ["crushing"] = 0, ["id"] = 153556, ["min"] = 488, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Crystalfire Discharge", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 491, ["damage"] = 979, }, ["Stampede"] = { ["crushing"] = 0, ["id"] = 149957, ["min"] = 287, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Stampede", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 301, ["damage"] = 1172, }, ["Executioner's Strike"] = { ["crushing"] = 0, ["id"] = 149943, ["damage"] = 74, ["max"] = 74, ["name"] = "Executioner's Strike", ["min"] = 74, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Broken Link"] = { ["crushing"] = 0, ["id"] = 151218, ["min"] = 75, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Broken Link", ["blocked"] = 0, ["totalhits"] = 9, ["resisted"] = 0, ["max"] = 76, ["damage"] = 680, }, ["Exploding Shot"] = { ["crushing"] = 0, ["id"] = 114863, ["min"] = 406, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Exploding Shot", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 443, ["damage"] = 849, }, ["Poison"] = { ["crushing"] = 0, ["id"] = 744, ["min"] = 11, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poison", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 11, ["damage"] = 11, }, ["Noxious Cloud"] = { ["crushing"] = 0, ["id"] = 21070, ["min"] = 211, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Noxious Cloud", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 214, ["damage"] = 848, }, ["Jolt"] = { ["crushing"] = 0, ["id"] = 114000, ["min"] = 983, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Jolt", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 983, ["damage"] = 983, }, ["Toss Statue"] = { ["crushing"] = 0, ["id"] = 114022, ["min"] = 265, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Toss Statue", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 276, ["damage"] = 811, }, ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 258, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 8, ["resisted"] = 0, ["max"] = 279, ["damage"] = 2170, }, ["Knockdown"] = { ["crushing"] = 0, ["id"] = 11428, ["min"] = 42, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Knockdown", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 42, ["damage"] = 42, }, ["Poisoned Arrow Volley"] = { ["crushing"] = 0, ["id"] = 150849, ["min"] = 63, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poisoned Arrow Volley", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 330, ["damage"] = 588, }, ["Throw Wrench"] = { ["crushing"] = 0, ["id"] = 13398, ["min"] = 60, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Throw Wrench", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 60, ["damage"] = 60, }, ["Water Jet"] = { ["crushing"] = 0, ["id"] = 150504, ["damage"] = 309, ["max"] = 161, ["name"] = "Water Jet", ["min"] = 148, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Shattering Song"] = { ["crushing"] = 0, ["id"] = 149916, ["damage"] = 176, ["max"] = 176, ["name"] = "Shattering Song", ["min"] = 176, ["multistrike"] = 0, ["critical"] = 0, ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 0, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["damage"] = 11460, ["max"] = 816, ["name"] = "Attack", ["min"] = 8, ["multistrike"] = 0, ["critical"] = 2, ["blocked"] = 0, ["totalhits"] = 36, ["resisted"] = 0, ["glancing"] = 0, ["absorbed"] = 279, }, }, ["time"] = 1898, ["damagetaken"] = 35142, ["name"] = "Jyggtvå", ["power"] = { [2] = { ["spells"] = { [77443] = 3192, }, ["amount"] = 3192, }, }, ["maxhp"] = 4092, ["healingspells"] = { ["Kill Shot"] = { ["shielding"] = 0, ["id"] = 164851, ["healing"] = 1051, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Kill Shot", ["max"] = 640, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 2210, ["hits"] = 4, }, ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 2178, ["multistrikes"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["hits"] = 112, ["overhealing"] = 7505, ["max"] = 108, ["critical"] = 0, ["absorbed"] = 0, }, }, ["shielding"] = 0, ["multistrikes"] = 0, }, -- [5] { ["healingabsorbed"] = 0, ["damaged"] = { }, ["dispells"] = 0, ["healingspells"] = { }, ["time"] = 53, ["interrupts"] = 0, ["damage"] = 5976, ["damagespells"] = { ["Attack"] = { ["min"] = 65, ["multistrike"] = 15, ["critical"] = 3, ["hit"] = 48, ["totalhits"] = 51, ["id"] = 6603, ["max"] = 236, ["damage"] = 5976, }, }, ["auras"] = { }, ["damagetaken"] = 0, ["shielding"] = 0, ["id"] = "Void Tendril", ["maxhp"] = 0, ["ccbreaks"] = 0, ["damagetakenspells"] = { }, ["overhealing"] = 0, ["healed"] = { }, ["name"] = "Void Tendril", ["deathlog"] = { }, ["healing"] = 0, ["role"] = "NONE", ["power"] = { }, ["multistrikes"] = 0, }, -- [6] { ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { }, ["auras"] = { ["MFJones: Spry Attacks"] = { ["name"] = "MFJones: Spry Attacks", ["active"] = 5, ["id"] = 34889, ["auratype"] = "BUFF", ["uptime"] = 1684, }, ["WoW's 11th Anniversary"] = { ["name"] = "WoW's 11th Anniversary", ["active"] = 1, ["id"] = 188454, ["auratype"] = "BUFF", ["uptime"] = 1591, }, ["MFJones: Dash"] = { ["name"] = "MFJones: Dash", ["active"] = 0, ["id"] = 61684, ["auratype"] = "BUFF", ["uptime"] = 76, }, ["Binding Shot"] = { ["name"] = "Binding Shot", ["active"] = 0, ["id"] = 117405, ["auratype"] = "DEBUFF", ["uptime"] = 37, }, ["MFJones: Growl"] = { ["name"] = "MFJones: Growl", ["active"] = 0, ["id"] = 2649, ["auratype"] = "DEBUFF", ["uptime"] = 39, }, ["Inflatable Thunderfury"] = { ["name"] = "Inflatable Thunderfury", ["active"] = 1, ["id"] = 190831, ["auratype"] = "BUFF", ["uptime"] = 1552, }, ["Concussive Shot"] = { ["name"] = "Concussive Shot", ["active"] = 0, ["id"] = 5116, ["auratype"] = "DEBUFF", ["uptime"] = 1, }, ["Posthaste"] = { ["name"] = "Posthaste", ["active"] = 0, ["id"] = 118922, ["auratype"] = "BUFF", ["uptime"] = 7, }, ["Revive Pet"] = { ["name"] = "Revive Pet", ["active"] = 0, ["id"] = 982, ["auratype"] = "BUFF", ["uptime"] = 6, }, }, ["role"] = "DAMAGER", ["time"] = 224, ["interrupts"] = 0, ["power"] = { [2] = { ["amount"] = 560, ["spells"] = { [77443] = 560, }, }, }, ["damage"] = 51173, ["damagespells"] = { ["Steady Shot"] = { ["min"] = 1, ["multistrike"] = 5, ["critical"] = 17, ["hit"] = 21, ["totalhits"] = 38, ["id"] = 56641, ["max"] = 240, ["damage"] = 5929, }, ["Aimed Shot"] = { ["min"] = 618, ["multistrike"] = 2, ["critical"] = 7, ["hit"] = 12, ["totalhits"] = 19, ["id"] = 19434, ["max"] = 1385, ["damage"] = 17477, }, ["Multi-Shot"] = { ["max"] = 156, ["min"] = 1, ["multistrike"] = 9, ["critical"] = 27, ["hit"] = 81, ["totalhits"] = 111, ["EVADE"] = 3, ["id"] = 2643, ["damage"] = 8173, }, ["Auto Shot"] = { ["max"] = 276, ["min"] = 1, ["multistrike"] = 2, ["critical"] = 15, ["hit"] = 44, ["totalhits"] = 60, ["EVADE"] = 1, ["id"] = 75, ["damage"] = 8892, }, ["MFJones: Bite"] = { ["min"] = 1, ["multistrike"] = 2, ["critical"] = 13, ["hit"] = 25, ["totalhits"] = 38, ["id"] = 17253, ["max"] = 315, ["damage"] = 4761, }, ["MFJones: Attack"] = { ["min"] = 1, ["multistrike"] = 7, ["critical"] = 26, ["hit"] = 48, ["totalhits"] = 74, ["id"] = 6603, ["max"] = 133, ["damage"] = 5941, }, ["Binding Shot"] = { ["EVADE"] = 17, ["totalhits"] = 17, ["id"] = 117405, ["max"] = 0, ["damage"] = 0, }, }, ["maxhp"] = 3696, ["damagetaken"] = 4948, ["deathlog"] = { { ["absorb"] = 0, ["hp"] = 3487, ["amount"] = 410, ["ts"] = 1447790596.704, ["spellid"] = 116995, ["srcname"] = "Summerwalker", }, -- [1] { ["absorb"] = 0, ["hp"] = 3744, ["amount"] = 257, ["ts"] = 1447790597.119, ["spellid"] = 115175, ["srcname"] = "Summerwalker", }, -- [2] { ["absorb"] = 0, ["hp"] = 3744, ["amount"] = 0, ["ts"] = 1447790598.037, ["spellid"] = 115175, ["srcname"] = "Summerwalker", }, -- [3] { ["absorb"] = 0, ["hp"] = 3744, ["amount"] = 0, ["ts"] = 1447790599.867, ["spellid"] = 59913, ["srcname"] = "Weaboojones-TwistingNether", }, -- [4] { ["absorb"] = 0, ["hp"] = 3696, ["amount"] = 0, ["ts"] = 1447790538.114, ["spellid"] = 115175, ["srcname"] = "Summerwalker", }, -- [5] { ["ts"] = 1447790538.314, ["absorb"] = 0, ["amount"] = 0, ["hp"] = 3696, ["spellid"] = 59913, ["srcname"] = "Weaboojones-TwistingNether", }, -- [6] { ["ts"] = 1447790538.871, ["absorb"] = 0, ["amount"] = 0, ["srcname"] = "Summerwalker", ["spellid"] = 116995, ["hp"] = 3696, }, -- [7] { ["absorb"] = 0, ["ts"] = 1447790539.032, ["amount"] = 0, ["srcname"] = "Summerwalker", ["spellid"] = 115175, ["hp"] = 3696, }, -- [8] { ["absorb"] = 0, ["ts"] = 1447790539.032, ["amount"] = 0, ["srcname"] = "Summerwalker", ["spellid"] = 115175, ["hp"] = 3696, }, -- [9] { ["absorb"] = 0, ["ts"] = 1447790539.957, ["amount"] = 0, ["srcname"] = "Summerwalker", ["spellid"] = 115175, ["hp"] = 3696, }, -- [10] { ["absorb"] = 0, ["hp"] = 3696, ["amount"] = 0, ["ts"] = 1447790540.244, ["spellid"] = 116995, ["srcname"] = "Summerwalker", }, -- [11] { ["ts"] = 1447790562.517, ["absorb"] = 0, ["amount"] = 0, ["srcname"] = "Weaboojones-TwistingNether", ["spellid"] = 59913, ["hp"] = 3744, }, -- [12] { ["absorb"] = 0, ["hp"] = 3744, ["amount"] = 0, ["ts"] = 1447790564.143, ["spellid"] = 59913, ["srcname"] = "Weaboojones-TwistingNether", }, -- [13] { ["ts"] = 1447790565.633, ["absorb"] = 0, ["amount"] = 0, ["srcname"] = "Weaboojones-TwistingNether", ["spellid"] = 59913, ["hp"] = 3744, }, -- [14] { ["ts"] = 1447790588.242, ["amount"] = -667, ["srcname"] = "Flameweaver Koegler", ["spellid"] = 113691, ["hp"] = 3077, }, -- [15] ["pos"] = 5, }, ["id"] = "Player-3674-06F71B65", ["overhealing"] = 1297, ["damagetakenspells"] = { ["Toss Statue"] = { ["crushing"] = 0, ["id"] = 114022, ["min"] = 263, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Toss Statue", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 276, ["damage"] = 811, }, ["Fireball Volley"] = { ["crushing"] = 0, ["id"] = 113691, ["min"] = 667, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fireball Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 667, ["damage"] = 667, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 51, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 106, ["damage"] = 447, }, ["Whirlwind"] = { ["crushing"] = 0, ["id"] = 84147, ["min"] = 52, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Whirlwind", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 52, ["damage"] = 52, }, ["Exploding Shot"] = { ["crushing"] = 0, ["id"] = 114863, ["min"] = 403, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Exploding Shot", ["blocked"] = 0, ["totalhits"] = 7, ["resisted"] = 0, ["max"] = 446, ["damage"] = 2929, }, ["Piercing Arrow"] = { ["crushing"] = 0, ["id"] = 113564, ["min"] = 42, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Piercing Arrow", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 42, ["damage"] = 42, }, }, ["healingspells"] = { ["Liberation"] = { ["shielding"] = 0, ["id"] = 115927, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Liberation", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 147, ["hits"] = 1, }, ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 352, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 75, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 1150, ["hits"] = 20, }, }, ["shielding"] = 0, ["name"] = "Weaboojones", ["healing"] = 352, ["healed"] = { ["Player-3674-06F71B65"] = { ["role"] = "DAMAGER", ["name"] = "Weaboojones-TwistingNether", ["amount"] = 352, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["dispells"] = 0, ["ccbreaks"] = 0, ["multistrikes"] = 0, }, -- [7] { ["healingabsorbed"] = 0, ["class"] = "MAGE", ["damaged"] = { }, ["auras"] = { ["Ice Barrier"] = { ["name"] = "Ice Barrier", ["active"] = 1, ["id"] = 11426, ["auratype"] = "BUFF", ["uptime"] = 1584, }, ["WoW's 11th Anniversary"] = { ["name"] = "WoW's 11th Anniversary", ["active"] = 1, ["id"] = 188454, ["auratype"] = "BUFF", ["uptime"] = 1585, }, ["Frostbolt"] = { ["name"] = "Frostbolt", ["active"] = 0, ["id"] = 116, ["auratype"] = "DEBUFF", ["uptime"] = 34, }, ["Water Elemental: Freeze"] = { ["name"] = "Water Elemental: Freeze", ["active"] = 0, ["id"] = 33395, ["auratype"] = "DEBUFF", ["uptime"] = 22, }, ["Ice Block"] = { ["name"] = "Ice Block", ["active"] = 0, ["id"] = 45438, ["auratype"] = "BUFF", ["uptime"] = 4, }, ["Blink"] = { ["name"] = "Blink", ["active"] = 1, ["id"] = 1953, ["auratype"] = "BUFF", ["uptime"] = 1508, }, ["Fingers of Frost"] = { ["name"] = "Fingers of Frost", ["active"] = 0, ["id"] = 44544, ["auratype"] = "BUFF", ["uptime"] = 12, }, ["Berserking"] = { ["name"] = "Berserking", ["active"] = 0, ["id"] = 26297, ["auratype"] = "BUFF", ["uptime"] = 10, }, ["Frost Nova"] = { ["name"] = "Frost Nova", ["active"] = 0, ["id"] = 122, ["auratype"] = "DEBUFF", ["uptime"] = 14, }, ["Blazing Speed"] = { ["name"] = "Blazing Speed", ["active"] = 0, ["id"] = 108843, ["auratype"] = "BUFF", ["uptime"] = 4, }, ["Cone of Cold"] = { ["name"] = "Cone of Cold", ["active"] = 0, ["id"] = 120, ["auratype"] = "DEBUFF", ["uptime"] = 44, }, ["Hypothermia"] = { ["name"] = "Hypothermia", ["active"] = 0, ["id"] = 41425, ["auratype"] = "DEBUFF", ["uptime"] = 24, }, }, ["role"] = "DAMAGER", ["time"] = 227, ["interrupts"] = 0, ["power"] = { [0] = { ["amount"] = 1716, ["spells"] = { [59914] = 1716, }, }, }, ["damage"] = 42289, ["damagespells"] = { ["Polymorph"] = { ["id"] = 118, ["totalhits"] = 1, ["IMMUNE"] = 1, ["max"] = 0, ["damage"] = 0, }, ["Water Elemental: Freeze"] = { ["id"] = 33395, ["totalhits"] = 1, ["IMMUNE"] = 1, ["max"] = 0, ["damage"] = 0, }, ["Frost Nova"] = { ["min"] = 1, ["multistrike"] = 2, ["critical"] = 4, ["hit"] = 19, ["totalhits"] = 23, ["id"] = 122, ["max"] = 65, ["damage"] = 607, }, ["Water Elemental: Waterbolt"] = { ["min"] = 1, ["multistrike"] = 2, ["critical"] = 7, ["hit"] = 43, ["totalhits"] = 50, ["id"] = 31707, ["max"] = 205, ["damage"] = 4810, }, ["Ice Lance"] = { ["min"] = 1, ["multistrike"] = 2, ["critical"] = 10, ["hit"] = 12, ["totalhits"] = 22, ["id"] = 30455, ["max"] = 1063, ["damage"] = 8869, }, ["Elemental Force"] = { ["min"] = 1, ["multistrike"] = 3, ["critical"] = 3, ["hit"] = 34, ["totalhits"] = 37, ["id"] = 116616, ["max"] = 231, ["damage"] = 4418, }, ["Cone of Cold"] = { ["min"] = 1, ["multistrike"] = 3, ["critical"] = 19, ["hit"] = 19, ["totalhits"] = 38, ["id"] = 120, ["max"] = 101, ["damage"] = 1848, }, ["Frostbolt"] = { ["min"] = 374, ["multistrike"] = 2, ["critical"] = 9, ["hit"] = 39, ["totalhits"] = 48, ["id"] = 116, ["max"] = 756, ["damage"] = 21737, }, }, ["maxhp"] = 3624, ["damagetaken"] = 2326, ["deathlog"] = { { ["absorb"] = -102, ["hp"] = 3672, ["ts"] = 1447790541.707, ["spellid"] = 88163, ["srcname"] = "Scarlet Pupil", }, -- [1] { ["absorb"] = -163, ["hp"] = 3672, ["ts"] = 1447790541.707, ["srcname"] = "Scarlet Scholar", ["spellid"] = 88163, }, -- [2] { ["absorb"] = -100, ["hp"] = 3672, ["ts"] = 1447790542.214, ["spellid"] = 88163, ["srcname"] = "Scarlet Pupil", }, -- [3] { ["absorb"] = -96, ["hp"] = 3672, ["ts"] = 1447790542.214, ["srcname"] = "Scarlet Pupil", ["spellid"] = 88163, }, -- [4] { ["hp"] = 3625, ["amount"] = -90, ["ts"] = 1447790543.715, ["srcname"] = "Scarlet Pupil", ["spellid"] = 88163, }, -- [5] { ["hp"] = 3625, ["amount"] = -127, ["ts"] = 1447790543.715, ["srcname"] = "Scarlet Pupil", ["spellid"] = 88163, }, -- [6] { ["hp"] = 3625, ["amount"] = -125, ["ts"] = 1447790543.715, ["srcname"] = "Scarlet Pupil", ["spellid"] = 88163, }, -- [7] { ["hp"] = 3625, ["amount"] = -86, ["ts"] = 1447790543.715, ["srcname"] = "Scarlet Pupil", ["spellid"] = 88163, }, -- [8] { ["hp"] = 3625, ["amount"] = -177, ["ts"] = 1447790543.715, ["srcname"] = "Scarlet Scholar", ["spellid"] = 88163, }, -- [9] { ["absorb"] = 0, ["hp"] = 3171, ["amount"] = 147, ["ts"] = 1447790544.948, ["srcname"] = "Sebster-ShatteredHand", ["spellid"] = 45438, }, -- [10] { ["absorb"] = 0, ["hp"] = 3322, ["amount"] = 147, ["ts"] = 1447790545.949, ["spellid"] = 45438, ["srcname"] = "Sebster-ShatteredHand", }, -- [11] { ["ts"] = 1447790546.953, ["absorb"] = 0, ["amount"] = 147, ["hp"] = 3469, ["spellid"] = 45438, ["srcname"] = "Sebster-ShatteredHand", }, -- [12] { ["ts"] = 1447790547.948, ["absorb"] = 0, ["amount"] = 147, ["hp"] = 3620, ["spellid"] = 45438, ["srcname"] = "Sebster-ShatteredHand", }, -- [13] { ["hp"] = 3006, ["amount"] = -666, ["ts"] = 1447790588.508, ["spellid"] = 113691, ["srcname"] = "Flameweaver Koegler", }, -- [14] { ["absorb"] = -86, ["hp"] = 3672, ["ts"] = 1447790541.707, ["spellid"] = 88163, ["srcname"] = "Scarlet Pupil", }, -- [15] ["pos"] = 15, }, ["id"] = "Player-633-063FDE1D", ["overhealing"] = 1034.546875, ["damagetakenspells"] = { ["Fireball Volley"] = { ["crushing"] = 0, ["id"] = 113691, ["min"] = 666, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fireball Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 666, ["damage"] = 666, }, ["Exploding Shot"] = { ["crushing"] = 0, ["id"] = 114863, ["min"] = 415, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Exploding Shot", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 415, ["damage"] = 415, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 86, ["absorbed"] = 4, ["critical"] = 1, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 8, ["resisted"] = 0, ["max"] = 308, ["damage"] = 1245, }, }, ["healingspells"] = { ["Ice Barrier"] = { ["shielding"] = 4109, ["id"] = 11426, ["healing"] = 4109, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Ice Barrier", ["max"] = 578, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 1034.546875, ["hits"] = 28, }, ["Ice Block"] = { ["shielding"] = 0, ["id"] = 45438, ["healing"] = 588, ["min"] = 147, ["multistrike"] = 0, ["name"] = "Ice Block", ["max"] = 147, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 4, }, }, ["shielding"] = 4109, ["name"] = "Sebster", ["healing"] = 4697, ["healed"] = { ["Player-633-063FDE1D"] = { ["role"] = "DAMAGER", ["name"] = "Sebster-ShatteredHand", ["amount"] = 4697, ["class"] = "MAGE", ["shielding"] = 4109, }, }, ["dispells"] = 0, ["ccbreaks"] = 0, ["multistrikes"] = 0, }, -- [8] { ["healingabsorbed"] = 0, ["class"] = "MONK", ["damaged"] = { }, ["auras"] = { ["WoW's 11th Anniversary"] = { ["name"] = "WoW's 11th Anniversary", ["active"] = 1, ["id"] = 188454, ["auratype"] = "BUFF", ["uptime"] = 1629, }, ["Soothing Mist"] = { ["name"] = "Soothing Mist", ["active"] = 2, ["id"] = 115175, ["auratype"] = "BUFF", ["uptime"] = 1627, }, ["Renewing Mist"] = { ["name"] = "Renewing Mist", ["active"] = 0, ["id"] = 119611, ["auratype"] = "BUFF", ["uptime"] = 119, }, }, ["role"] = "HEALER", ["time"] = 182, ["interrupts"] = 0, ["power"] = { [12] = { ["amount"] = 54, ["spells"] = { [115151] = 4, [116694] = 50, }, }, }, ["damage"] = 0, ["damagespells"] = { }, ["maxhp"] = 3696, ["damagetaken"] = 1523, ["deathlog"] = { { ["ts"] = 1447790450.151, ["amount"] = -351, ["hp"] = 3153, ["spellid"] = 111569, ["srcname"] = "Scarlet Cannon", }, -- [1] { ["absorb"] = 0, ["hp"] = 3504, ["amount"] = 351, ["ts"] = 1447790452.901, ["spellid"] = 116995, ["srcname"] = "Summerwalker", }, -- [2] { ["hp"] = 3184, ["amount"] = -320, ["ts"] = 1447790460.887, ["spellid"] = 111569, ["srcname"] = "Scarlet Cannon", }, -- [3] { ["absorb"] = 0, ["hp"] = 3504, ["amount"] = 0, ["ts"] = 1447790482.1, ["spellid"] = 119611, ["srcname"] = "Summerwalker", }, -- [4] { ["absorb"] = 0, ["hp"] = 3504, ["amount"] = 0, ["ts"] = 1447790483.942, ["spellid"] = 119611, ["srcname"] = "Summerwalker", }, -- [5] { ["absorb"] = 0, ["hp"] = 3504, ["amount"] = 0, ["ts"] = 1447790485.394, ["spellid"] = 119611, ["srcname"] = "Summerwalker", }, -- [6] { ["hp"] = 2814, ["amount"] = -690, ["ts"] = 1447790588.368, ["spellid"] = 113691, ["srcname"] = "Flameweaver Koegler", }, -- [7] { ["absorb"] = 0, ["hp"] = 3072, ["amount"] = 258, ["ts"] = 1447790599.008, ["spellid"] = 115175, ["srcname"] = "Summerwalker", }, -- [8] { ["absorb"] = 0, ["hp"] = 3149, ["amount"] = 77, ["ts"] = 1447790599.008, ["spellid"] = 115175, ["srcname"] = "Summerwalker", }, -- [9] { ["absorb"] = 0, ["hp"] = 3504, ["amount"] = 355, ["ts"] = 1447790599.587, ["spellid"] = 116995, ["srcname"] = "Summerwalker", }, -- [10] { ["absorb"] = 0, ["hp"] = 3504, ["amount"] = 0, ["ts"] = 1447790600.007, ["spellid"] = 115175, ["srcname"] = "Summerwalker", }, -- [11] { ["absorb"] = 0, ["hp"] = 3552, ["amount"] = 0, ["ts"] = 1447790600.842, ["spellid"] = 115175, ["srcname"] = "Summerwalker", }, -- [12] { ["absorb"] = 0, ["hp"] = 3504, ["amount"] = 0, ["ts"] = 1447790432.479, ["spellid"] = 119611, ["srcname"] = "Summerwalker", }, -- [13] { ["absorb"] = 0, ["hp"] = 3504, ["amount"] = 0, ["ts"] = 1447790434.317, ["spellid"] = 119611, ["srcname"] = "Summerwalker", }, -- [14] { ["absorb"] = 0, ["hp"] = 3504, ["amount"] = 0, ["ts"] = 1447790435.774, ["spellid"] = 119611, ["srcname"] = "Summerwalker", }, -- [15] ["pos"] = 13, }, ["id"] = "Player-1403-06028B17", ["overhealing"] = 29223, ["damagetakenspells"] = { ["Cannon Blast"] = { ["crushing"] = 0, ["id"] = 111569, ["min"] = 320, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Cannon Blast", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 351, ["damage"] = 671, }, ["Fireball Volley"] = { ["crushing"] = 0, ["id"] = 113691, ["min"] = 690, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fireball Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 690, ["damage"] = 690, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 162, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 162, ["damage"] = 162, }, }, ["healingspells"] = { ["Surging Mist"] = { ["shielding"] = 0, ["id"] = 116995, ["healing"] = 17668, ["min"] = 0, ["multistrike"] = 2, ["name"] = "Surging Mist", ["max"] = 819, ["critical"] = 15, ["absorbed"] = 0, ["overhealing"] = 9143, ["hits"] = 52, }, ["Soothing Mist"] = { ["shielding"] = 0, ["id"] = 115175, ["healing"] = 19100, ["min"] = 0, ["multistrike"] = 16, ["name"] = "Soothing Mist", ["max"] = 516, ["critical"] = 30, ["absorbed"] = 0, ["overhealing"] = 17602, ["hits"] = 126, }, ["Renewing Mist"] = { ["shielding"] = 0, ["id"] = 119611, ["healing"] = 3694, ["min"] = 0, ["multistrike"] = 16, ["name"] = "Renewing Mist", ["max"] = 62, ["critical"] = 34, ["absorbed"] = 0, ["overhealing"] = 2478, ["hits"] = 182, }, }, ["shielding"] = 0, ["name"] = "Summerwalker", ["healing"] = 40462, ["healed"] = { ["Pet-0-3102-90-27621-42720-01024EF814"] = { ["role"] = "NONE", ["name"] = "Oskar", ["amount"] = 1004, ["class"] = "WARRIOR", ["shielding"] = 0, }, ["Player-1403-06028B17"] = { ["role"] = "HEALER", ["name"] = "Summerwalker", ["amount"] = 1166, ["class"] = "MONK", ["shielding"] = 0, }, ["Player-3674-06F71B65"] = { ["role"] = "DAMAGER", ["name"] = "Weaboojones-TwistingNether", ["amount"] = 4596, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Pet-0-1469-1001-20649-42710-0101BE4967"] = { ["role"] = "NONE", ["name"] = "MFJones", ["amount"] = 387, ["class"] = "WARRIOR", ["shielding"] = 0, }, ["Pet-0-1469-1001-20649-510-01029214D5"] = { ["role"] = "NONE", ["name"] = "Water Elemental", ["amount"] = 842, ["class"] = "MAGE", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 2051, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "TANK", ["name"] = "Tjago", ["amount"] = 27046, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-633-063FDE1D"] = { ["role"] = "DAMAGER", ["name"] = "Sebster-ShatteredHand", ["amount"] = 3013, ["class"] = "MAGE", ["shielding"] = 0, }, ["Pet-0-3674-1-92-42710-0201BE4967"] = { ["role"] = "NONE", ["name"] = "MFJones", ["amount"] = 357, ["class"] = "WARRIOR", ["shielding"] = 0, }, }, ["dispells"] = 0, ["ccbreaks"] = 0, ["multistrikes"] = 34, }, -- [9] { ["healingabsorbed"] = 0, ["class"] = "PRIEST", ["damaged"] = { }, ["auras"] = { ["Borrowed Time"] = { ["name"] = "Borrowed Time", ["active"] = 1, ["id"] = 59889, ["auratype"] = "BUFF", ["uptime"] = 1252, }, ["Holy Fire"] = { ["name"] = "Holy Fire", ["active"] = 0, ["id"] = 14914, ["auratype"] = "DEBUFF", ["uptime"] = 79, }, ["Power Word: Shield"] = { ["name"] = "Power Word: Shield", ["active"] = 1, ["id"] = 17, ["auratype"] = "BUFF", ["uptime"] = 1266, }, ["Divine Aegis"] = { ["name"] = "Divine Aegis", ["active"] = 1, ["id"] = 47753, ["auratype"] = "BUFF", ["uptime"] = 1078, }, ["Weakened Soul"] = { ["name"] = "Weakened Soul", ["active"] = 3, ["id"] = 6788, ["auratype"] = "DEBUFF", ["uptime"] = 1326, }, ["Focused Will"] = { ["name"] = "Focused Will", ["active"] = 2, ["id"] = 45242, ["auratype"] = "BUFF", ["uptime"] = 1393, }, ["Shadow Word: Pain"] = { ["name"] = "Shadow Word: Pain", ["active"] = 0, ["id"] = 589, ["auratype"] = "DEBUFF", ["uptime"] = 141, }, ["Body and Soul"] = { ["name"] = "Body and Soul", ["active"] = 0, ["id"] = 65081, ["auratype"] = "BUFF", ["uptime"] = 52, }, }, ["role"] = "HEALER", ["time"] = 338, ["interrupts"] = 0, ["power"] = { }, ["damage"] = 23689, ["damagespells"] = { ["Mind Sear"] = { ["min"] = 43, ["hit"] = 6, ["totalhits"] = 6, ["id"] = 49821, ["max"] = 44, ["damage"] = 262, }, ["Holy Fire"] = { ["min"] = 4, ["multistrike"] = 12, ["critical"] = 12, ["hit"] = 103, ["totalhits"] = 115, ["id"] = 14914, ["max"] = 494, ["damage"] = 4724, }, ["Penance"] = { ["min"] = 211, ["multistrike"] = 2, ["hit"] = 22, ["totalhits"] = 22, ["id"] = 47666, ["max"] = 211, ["damage"] = 4770, }, ["Smite"] = { ["min"] = 161, ["multistrike"] = 3, ["critical"] = 2, ["hit"] = 29, ["totalhits"] = 31, ["id"] = 585, ["max"] = 330, ["damage"] = 5498, }, ["Shadow Word: Pain"] = { ["max"] = 172, ["min"] = 36, ["multistrike"] = 9, ["critical"] = 10, ["hit"] = 79, ["totalhits"] = 90, ["ABSORB"] = 1, ["id"] = 589, ["damage"] = 8434, }, ["Attack"] = { ["min"] = 1, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 6603, ["max"] = 1, ["damage"] = 1, }, }, ["maxhp"] = 3555, ["damagetaken"] = 3757, ["deathlog"] = { { ["ts"] = 1447790921.501, ["amount"] = -228, ["hp"] = 2884, ["spellid"] = 111010, ["srcname"] = "Scarlet Zealot", }, -- [1] { ["ts"] = 1447790925.093, ["absorb"] = 0, ["amount"] = 635, ["hp"] = 3555, ["spellid"] = 2061, ["srcname"] = "Gwah-Drak'thul", }, -- [2] { ["ts"] = 1447790966.006, ["amount"] = -179, ["hp"] = 3159, ["spellid"] = 111010, ["srcname"] = "Scarlet Zealot", }, -- [3] { ["ts"] = 1447790972.093, ["amount"] = -151, ["hp"] = 3008, ["spellid"] = 111010, ["srcname"] = "Scarlet Zealot", }, -- [4] { ["ts"] = 1447790991.546, ["absorb"] = 0, ["amount"] = 439, ["hp"] = 3555, ["spellid"] = 2061, ["srcname"] = "Gwah-Drak'thul", }, -- [5] { ["ts"] = 1447790991.546, ["absorb"] = 0, ["amount"] = 0, ["hp"] = 3555, ["spellid"] = 2061, ["srcname"] = "Gwah-Drak'thul", }, -- [6] { ["ts"] = 1447791038.504, ["amount"] = -180, ["hp"] = 3375, ["spellid"] = 113766, ["srcname"] = "Brother Korloff", }, -- [7] { ["ts"] = 1447791039.505, ["amount"] = -153, ["hp"] = 3222, ["spellid"] = 113766, ["srcname"] = "Brother Korloff", }, -- [8] { ["ts"] = 1447791067.28, ["amount"] = -212, ["hp"] = 3343, ["spellid"] = 111010, ["srcname"] = "Scarlet Zealot", }, -- [9] { ["ts"] = 1447791127, ["amount"] = -390, ["hp"] = 3078, ["spellid"] = 110968, ["srcname"] = "Scarlet Purifier", }, -- [10] { ["ts"] = 1447791203.262, ["amount"] = -318, ["hp"] = 3237, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [11] { ["absorb"] = 0, ["amount"] = 754, ["hp"] = 3555, ["ts"] = 1447790896.721, ["spellid"] = 2061, ["srcname"] = "Gwah-Drak'thul", }, -- [12] { ["ts"] = 1447790899.628, ["amount"] = -135, ["hp"] = 3420, ["spellid"] = 111010, ["srcname"] = "Scarlet Zealot", }, -- [13] { ["ts"] = 1447790902.046, ["amount"] = -148, ["hp"] = 3272, ["spellid"] = 111010, ["srcname"] = "Scarlet Zealot", }, -- [14] { ["ts"] = 1447790909.33, ["amount"] = -160, ["hp"] = 3112, ["spellid"] = 111010, ["srcname"] = "Scarlet Zealot", }, -- [15] ["pos"] = 12, }, ["id"] = "Player-1092-071A5C1A", ["overhealing"] = 9170.5048828125, ["damagetakenspells"] = { ["Purifying Flames"] = { ["crushing"] = 0, ["id"] = 110968, ["min"] = 390, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Purifying Flames", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 413, ["damage"] = 803, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 135, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 11, ["resisted"] = 0, ["max"] = 228, ["damage"] = 1917, }, ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 318, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 318, ["damage"] = 318, }, ["Flamestrike"] = { ["crushing"] = 0, ["id"] = 110963, ["min"] = 21, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamestrike", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 133, ["damage"] = 217, }, ["Flamethrower"] = { ["crushing"] = 0, ["id"] = 115507, ["min"] = 169, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamethrower", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 169, ["damage"] = 169, }, ["Firestorm Kick"] = { ["crushing"] = 0, ["id"] = 113766, ["min"] = 153, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Firestorm Kick", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 180, ["damage"] = 333, }, }, ["healingspells"] = { ["Penance"] = { ["shielding"] = 0, ["id"] = 47750, ["healing"] = 7076, ["min"] = 176, ["multistrike"] = 1, ["name"] = "Penance", ["max"] = 637, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 342, ["hits"] = 13, }, ["Divine Aegis"] = { ["shielding"] = 4333, ["id"] = 47753, ["healing"] = 4333, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Divine Aegis", ["max"] = 449, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 1083.67993164063, ["hits"] = 33, }, ["Power Word: Shield"] = { ["shielding"] = 12408, ["id"] = 17, ["healing"] = 12408, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Power Word: Shield", ["max"] = 466, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 2876.82495117188, ["hits"] = 87, }, ["Flash Heal"] = { ["shielding"] = 0, ["id"] = 2061, ["healing"] = 40473, ["min"] = 0, ["multistrike"] = 5, ["name"] = "Flash Heal", ["max"] = 1043, ["critical"] = 5, ["absorbed"] = 0, ["overhealing"] = 4868, ["hits"] = 47, }, }, ["shielding"] = 16741, ["name"] = "Gwah", ["healing"] = 64290, ["healed"] = { ["Player-1596-08D87980"] = { ["role"] = "DAMAGER", ["name"] = "Elelise-TheMaelstrom", ["amount"] = 4973, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-1092-071A5C1A"] = { ["role"] = "HEALER", ["name"] = "Gwah-Drak'thul", ["amount"] = 1828, ["class"] = "PRIEST", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 1985, ["class"] = "HUNTER", ["shielding"] = 279, }, ["Player-1403-06025CCB"] = { ["role"] = "TANK", ["name"] = "Tjago", ["amount"] = 54462, ["class"] = "DRUID", ["shielding"] = 16462, }, ["Player-1596-07BCD133"] = { ["role"] = "DAMAGER", ["name"] = "Demonroids-TheMaelstrom", ["amount"] = 1042, ["class"] = "WARLOCK", ["shielding"] = 0, }, }, ["dispells"] = 0, ["ccbreaks"] = 0, ["multistrikes"] = 6, }, -- [10] { ["healingabsorbed"] = 0, ["class"] = "WARLOCK", ["damaged"] = { }, ["auras"] = { ["Soul Leech"] = { ["name"] = "Soul Leech", ["active"] = 0, ["id"] = 108366, ["auratype"] = "BUFF", ["uptime"] = 54, }, ["Immolate"] = { ["name"] = "Immolate", ["active"] = 0, ["id"] = 157736, ["auratype"] = "DEBUFF", ["uptime"] = 30, }, ["Rain of Fire"] = { ["name"] = "Rain of Fire", ["active"] = 1, ["id"] = 5740, ["auratype"] = "BUFF", ["uptime"] = 1233, }, }, ["role"] = "DAMAGER", ["time"] = 161, ["interrupts"] = 0, ["power"] = { [14] = { ["amount"] = 0, ["spells"] = { [105047] = 0, }, }, }, ["damage"] = 13656, ["damagespells"] = { ["Chaos Bolt"] = { ["min"] = 1016, ["critical"] = 1, ["totalhits"] = 1, ["id"] = 116858, ["max"] = 1016, ["damage"] = 1016, }, ["Geltai: Firebolt"] = { ["min"] = 170, ["multistrike"] = 2, ["critical"] = 2, ["hit"] = 27, ["totalhits"] = 29, ["id"] = 3110, ["max"] = 341, ["damage"] = 5383, }, ["Incinerate"] = { ["min"] = 281, ["critical"] = 1, ["hit"] = 6, ["totalhits"] = 7, ["id"] = 29722, ["max"] = 563, ["damage"] = 2251, }, ["Conflagrate"] = { ["min"] = 395, ["critical"] = 1, ["hit"] = 3, ["totalhits"] = 4, ["id"] = 17962, ["max"] = 794, ["damage"] = 2010, }, ["Immolate"] = { ["min"] = 97, ["multistrike"] = 3, ["critical"] = 2, ["hit"] = 13, ["totalhits"] = 15, ["id"] = 157736, ["max"] = 196, ["damage"] = 1747, }, ["Rain of Fire"] = { ["min"] = 14, ["multistrike"] = 3, ["critical"] = 11, ["hit"] = 57, ["totalhits"] = 68, ["id"] = 42223, ["max"] = 42, ["damage"] = 1249, }, }, ["maxhp"] = 3504, ["damagetaken"] = 3153, ["deathlog"] = { { ["hp"] = 3204, ["ts"] = 1447791038.127, ["spellid"] = 114465, ["amount"] = -300, }, -- [1] { ["ts"] = 1447791038.504, ["amount"] = -180, ["hp"] = 3024, ["spellid"] = 113766, ["srcname"] = "Brother Korloff", }, -- [2] { ["hp"] = 2724, ["ts"] = 1447791039.138, ["spellid"] = 114465, ["amount"] = -300, }, -- [3] { ["ts"] = 1447791039.505, ["amount"] = -180, ["hp"] = 2544, ["spellid"] = 113766, ["srcname"] = "Brother Korloff", }, -- [4] { ["hp"] = 2245, ["ts"] = 1447791040.127, ["spellid"] = 114465, ["amount"] = -299, }, -- [5] { ["ts"] = 1447791040.5, ["amount"] = -180, ["hp"] = 2065, ["spellid"] = 113766, ["srcname"] = "Brother Korloff", }, -- [6] { ["hp"] = 1762, ["ts"] = 1447791041.122, ["spellid"] = 114465, ["amount"] = -303, }, -- [7] { ["ts"] = 1447791041.509, ["amount"] = -180, ["hp"] = 1582, ["spellid"] = 113766, ["srcname"] = "Brother Korloff", }, -- [8] { ["ts"] = 1447791122.022, ["amount"] = -30, ["hp"] = 3474, ["spellid"] = 110963, ["srcname"] = "Scarlet Purifier", }, -- [9] { ["ts"] = 1447791202.191, ["amount"] = -297, ["hp"] = 3207, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [10] { ["ts"] = 1447791204.084, ["amount"] = -299, ["hp"] = 2908, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [11] { ["ts"] = 1447791205.924, ["amount"] = -311, ["hp"] = 2597, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [12] { ["ts"] = 1447791206.593, ["amount"] = -294, ["hp"] = 2303, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [13] { ["absorb"] = 0, ["amount"] = 1042, ["hp"] = 3345, ["ts"] = 1447791220.747, ["spellid"] = 2061, ["srcname"] = "Gwah-Drak'thul", }, -- [14] ["pos"] = 15, }, ["id"] = "Player-1596-07BCD133", ["overhealing"] = 816.449981689453, ["damagetakenspells"] = { ["Firestorm Kick"] = { ["crushing"] = 0, ["id"] = 113766, ["min"] = 180, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Firestorm Kick", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 180, ["damage"] = 720, }, ["Scorched Earth"] = { ["crushing"] = 0, ["id"] = 114465, ["min"] = 299, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Scorched Earth", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 303, ["damage"] = 1202, }, ["Flamestrike"] = { ["crushing"] = 0, ["id"] = 110963, ["min"] = 30, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamestrike", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 30, ["damage"] = 30, }, ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 294, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 311, ["damage"] = 1201, }, }, ["healingspells"] = { ["Soul Leech"] = { ["shielding"] = 0, ["id"] = 108366, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Soul Leech", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 816.449981689453, ["hits"] = 6, }, }, ["shielding"] = 0, ["name"] = "Demonroids", ["healing"] = 0, ["healed"] = { ["Pet-0-3687-1-101-416-0201C20B47"] = { ["role"] = "NONE", ["name"] = "Geltai", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-1596-07BCD133"] = { ["role"] = "DAMAGER", ["name"] = "Demonroids-TheMaelstrom", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, }, ["dispells"] = 0, ["ccbreaks"] = 0, ["multistrikes"] = 0, }, -- [11] { ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { }, ["auras"] = { ["Dragonhawk: Spry Attacks"] = { ["name"] = "Dragonhawk: Spry Attacks", ["active"] = 8, ["id"] = 34889, ["auratype"] = "BUFF", ["uptime"] = 1410, }, ["Dragonhawk: Frenzy"] = { ["name"] = "Dragonhawk: Frenzy", ["active"] = 3, ["id"] = 19615, ["auratype"] = "BUFF", ["uptime"] = 1314, }, ["Beast Cleave"] = { ["name"] = "Beast Cleave", ["active"] = 0, ["id"] = 118455, ["auratype"] = "BUFF", ["uptime"] = 38, }, ["Dragonhawk: Growl"] = { ["name"] = "Dragonhawk: Growl", ["active"] = 0, ["id"] = 2649, ["auratype"] = "DEBUFF", ["uptime"] = 77, }, ["Dragonhawk: Dash"] = { ["name"] = "Dragonhawk: Dash", ["active"] = 6, ["id"] = 61684, ["auratype"] = "BUFF", ["uptime"] = 1409, }, ["Dragonhawk: Roar of Sacrifice"] = { ["name"] = "Dragonhawk: Roar of Sacrifice", ["active"] = 1, ["id"] = 53480, ["auratype"] = "BUFF", ["uptime"] = 1171, }, ["Revive Pet"] = { ["name"] = "Revive Pet", ["active"] = 0, ["id"] = 982, ["auratype"] = "BUFF", ["uptime"] = 15, }, }, ["role"] = "DAMAGER", ["time"] = 292, ["interrupts"] = 0, ["power"] = { [2] = { ["amount"] = 847, ["spells"] = { [77443] = 742, [34953] = 105, }, }, }, ["damage"] = 34010, ["damagespells"] = { ["Steady Shot"] = { ["max"] = 219, ["min"] = 78, ["multistrike"] = 5, ["critical"] = 5, ["hit"] = 46, ["totalhits"] = 52, ["ABSORB"] = 1, ["id"] = 56641, ["damage"] = 5481, }, ["Dragonhawk: Kill Command"] = { ["min"] = 207, ["critical"] = 2, ["hit"] = 15, ["totalhits"] = 17, ["id"] = 83381, ["max"] = 424, ["damage"] = 4439, }, ["Dragonhawk: Beast Cleave"] = { ["min"] = 10, ["hit"] = 23, ["totalhits"] = 23, ["id"] = 118459, ["max"] = 87, ["damage"] = 1036, }, ["Dragonhawk: Attack"] = { ["max"] = 140, ["min"] = 43, ["multistrike"] = 10, ["critical"] = 19, ["hit"] = 65, ["totalhits"] = 86, ["PARRY"] = 2, ["id"] = 6603, ["damage"] = 5409, }, ["Auto Shot"] = { ["min"] = 22, ["multistrike"] = 3, ["critical"] = 8, ["hit"] = 62, ["totalhits"] = 70, ["id"] = 75, ["max"] = 291, ["damage"] = 8597, }, ["Dragonhawk: Bite"] = { ["min"] = 35, ["multistrike"] = 4, ["critical"] = 11, ["hit"] = 44, ["totalhits"] = 55, ["id"] = 17253, ["max"] = 229, ["damage"] = 4981, }, ["Multi-Shot"] = { ["max"] = 152, ["min"] = 53, ["multistrike"] = 1, ["critical"] = 5, ["hit"] = 14, ["totalhits"] = 20, ["ABSORB"] = 1, ["id"] = 2643, ["damage"] = 1511, }, ["Arcane Shot"] = { ["min"] = 167, ["multistrike"] = 1, ["critical"] = 1, ["hit"] = 12, ["totalhits"] = 13, ["id"] = 3044, ["max"] = 360, ["damage"] = 2556, }, }, ["maxhp"] = 2664, ["damagetaken"] = 5769, ["deathlog"] = { { ["ts"] = 1447791209.974, ["absorb"] = 0, ["amount"] = 1043, ["hp"] = 1226, ["spellid"] = 2061, ["srcname"] = "Gwah-Drak'thul", }, -- [1] { ["absorb"] = 0, ["ts"] = 1447791211.435, ["amount"] = 1043, ["hp"] = 2269, ["spellid"] = 2061, ["srcname"] = "Gwah-Drak'thul", }, -- [2] { ["absorb"] = 0, ["ts"] = 1447791211.435, ["amount"] = 313, ["hp"] = 2582, ["spellid"] = 2061, ["srcname"] = "Gwah-Drak'thul", }, -- [3] { ["hp"] = 1845, ["amount"] = -207, ["ts"] = 1447790911.777, ["spellid"] = 111010, ["srcname"] = "Scarlet Zealot", }, -- [4] { ["ts"] = 1447790917.857, ["amount"] = -201, ["hp"] = 1644, ["spellid"] = 111010, ["srcname"] = "Scarlet Zealot", }, -- [5] { ["ts"] = 1447790919.373, ["absorb"] = 0, ["amount"] = 1020, ["hp"] = 2664, ["spellid"] = 2061, ["srcname"] = "Gwah-Drak'thul", }, -- [6] { ["ts"] = 1447791123.824, ["amount"] = -392, ["hp"] = 2320, ["spellid"] = 110968, ["srcname"] = "Scarlet Purifier", }, -- [7] { ["ts"] = 1447791202.471, ["amount"] = -320, ["hp"] = 2392, ["spellid"] = 115739, ["srcname"] = "Commander Durand", }, -- [8] { ["ts"] = 1447791202.655, ["amount"] = -330, ["hp"] = 2062, ["spellid"] = 115739, ["srcname"] = "Commander Durand", }, -- [9] { ["ts"] = 1447791202.707, ["amount"] = -294, ["hp"] = 1768, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [10] { ["ts"] = 1447791202.86, ["amount"] = -317, ["hp"] = 1451, ["spellid"] = 115739, ["srcname"] = "Commander Durand", }, -- [11] { ["ts"] = 1447791203.065, ["amount"] = -331, ["hp"] = 1120, ["spellid"] = 115739, ["srcname"] = "Commander Durand", }, -- [12] { ["ts"] = 1447791203.251, ["amount"] = -304, ["hp"] = 816, ["spellid"] = 115739, ["srcname"] = "Commander Durand", }, -- [13] { ["ts"] = 1447791203.461, ["amount"] = -332, ["hp"] = 484, ["spellid"] = 115739, ["srcname"] = "Commander Durand", }, -- [14] { ["ts"] = 1447791205.296, ["amount"] = -301, ["hp"] = 183, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [15] ["pos"] = 4, }, ["id"] = "Player-1596-08D87980", ["overhealing"] = 0, ["damagetakenspells"] = { ["Purifying Flames"] = { ["crushing"] = 0, ["id"] = 110968, ["min"] = 392, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Purifying Flames", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 392, ["damage"] = 392, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 191, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 10, ["resisted"] = 0, ["max"] = 231, ["damage"] = 2063, }, ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 294, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 301, ["damage"] = 595, }, ["Flamestrike"] = { ["crushing"] = 0, ["id"] = 110963, ["min"] = 30, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamestrike", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 154, ["damage"] = 274, }, ["Flamethrower"] = { ["crushing"] = 0, ["id"] = 115507, ["min"] = 167, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamethrower", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 172, ["damage"] = 511, }, ["Dashing Strike"] = { ["crushing"] = 0, ["id"] = 115739, ["min"] = 304, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Dashing Strike", ["blocked"] = 0, ["totalhits"] = 6, ["resisted"] = 0, ["max"] = 332, ["damage"] = 1934, }, }, ["healingspells"] = { }, ["shielding"] = 0, ["name"] = "Elelise", ["healing"] = 0, ["healed"] = { }, ["dispells"] = 0, ["ccbreaks"] = 0, ["multistrikes"] = 0, }, -- [12] { ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { }, ["auras"] = { ["Growl"] = { ["name"] = "Growl", ["active"] = 0, ["id"] = 6795, ["auratype"] = "DEBUFF", ["uptime"] = 6, }, ["Faerie Fire"] = { ["name"] = "Faerie Fire", ["active"] = 0, ["id"] = 770, ["auratype"] = "DEBUFF", ["uptime"] = 14, }, ["Tooth and Claw"] = { ["name"] = "Tooth and Claw", ["active"] = 1, ["id"] = 135286, ["auratype"] = "BUFF", ["uptime"] = 820, }, ["Thrash"] = { ["name"] = "Thrash", ["active"] = 0, ["id"] = 77758, ["auratype"] = "DEBUFF", ["uptime"] = 220, }, ["Immobilized"] = { ["name"] = "Immobilized", ["active"] = 0, ["id"] = 45334, ["auratype"] = "DEBUFF", ["uptime"] = 8, }, ["Savage Defense"] = { ["name"] = "Savage Defense", ["active"] = 0, ["id"] = 132402, ["auratype"] = "BUFF", ["uptime"] = 60, }, }, ["role"] = "TANK", ["time"] = 328, ["interrupts"] = 0, ["power"] = { { ["amount"] = 1602, ["spells"] = { [33917] = 100, [16959] = 696, [158723] = 806, }, }, -- [1] }, ["damage"] = 105650, ["damagespells"] = { ["Faerie Fire"] = { ["min"] = 73, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 770, ["max"] = 73, ["damage"] = 73, }, ["Immobilized"] = { ["id"] = 45334, ["totalhits"] = 2, ["IMMUNE"] = 2, ["max"] = 0, ["damage"] = 0, }, ["Maul"] = { ["min"] = 127, ["critical"] = 4, ["hit"] = 9, ["totalhits"] = 13, ["id"] = 6807, ["max"] = 412, ["damage"] = 3149, }, ["Thrash"] = { ["min"] = 49, ["DODGE"] = 4, ["critical"] = 170, ["hit"] = 636, ["totalhits"] = 810, ["id"] = 77758, ["max"] = 264, ["damage"] = 88222, }, ["Mangle"] = { ["min"] = 368, ["critical"] = 4, ["hit"] = 6, ["totalhits"] = 10, ["id"] = 33917, ["max"] = 1081, ["damage"] = 7250, }, ["Attack"] = { ["min"] = 82, ["critical"] = 9, ["hit"] = 42, ["totalhits"] = 51, ["id"] = 6603, ["max"] = 275, ["damage"] = 6956, }, }, ["maxhp"] = 6292, ["damagetaken"] = 61523, ["deathlog"] = { { ["absorb"] = 0, ["ts"] = 1447792732.327, ["amount"] = 71, ["hp"] = 6292, ["spellid"] = 59913, ["srcname"] = "Qaliti-TwistingNether", }, -- [1] { ["absorb"] = 0, ["hp"] = 6526, ["amount"] = 0, ["ts"] = 1447792733.897, ["spellid"] = 61295, ["srcname"] = "Stormrise-TwistingNether", }, -- [2] { ["absorb"] = 0, ["ts"] = 1447792736.686, ["amount"] = 0, ["hp"] = 6526, ["spellid"] = 61295, ["srcname"] = "Stormrise-TwistingNether", }, -- [3] { ["absorb"] = 0, ["ts"] = 1447792739.469, ["amount"] = 0, ["hp"] = 0, ["spellid"] = 61295, ["srcname"] = "Stormrise-TwistingNether", }, -- [4] { ["absorb"] = 0, ["ts"] = 1447792728.259, ["amount"] = 126, ["hp"] = 6247, ["spellid"] = 59913, ["srcname"] = "Qaliti-TwistingNether", }, -- [5] { ["absorb"] = 0, ["hp"] = 6292, ["amount"] = 45, ["ts"] = 1447792728.259, ["spellid"] = 59913, ["srcname"] = "Qaliti-TwistingNether", }, -- [6] { ["absorb"] = 0, ["hp"] = 6292, ["amount"] = 0, ["ts"] = 1447792728.316, ["spellid"] = 61295, ["srcname"] = "Stormrise-TwistingNether", }, -- [7] { ["ts"] = 1447792728.471, ["amount"] = -281, ["hp"] = 6011, ["srcname"] = "Celebras the Cursed", ["spellid"] = 21807, }, -- [8] { ["ts"] = 1447792729.393, ["absorb"] = 0, ["amount"] = 182, ["hp"] = 6193, ["spellid"] = 145110, ["srcname"] = "Tjago", }, -- [9] { ["hp"] = 6193, ["amount"] = -112, ["ts"] = 1447792729.737, ["spellid"] = 88163, ["srcname"] = "Corrupt Force of Nature", }, -- [10] { ["absorb"] = 0, ["hp"] = 6207, ["amount"] = 126, ["ts"] = 1447792729.876, ["spellid"] = 145109, ["srcname"] = "Qaliti-TwistingNether", }, -- [11] { ["absorb"] = 0, ["hp"] = 6292, ["amount"] = 85, ["ts"] = 1447792729.895, ["spellid"] = 52042, ["srcname"] = "Stormrise-TwistingNether", }, -- [12] { ["hp"] = 6008, ["amount"] = -284, ["ts"] = 1447792730.778, ["spellid"] = 21807, ["srcname"] = "Celebras the Cursed", }, -- [13] { ["absorb"] = 0, ["hp"] = 6095, ["amount"] = 87, ["ts"] = 1447792731.103, ["spellid"] = 61295, ["srcname"] = "Stormrise-TwistingNether", }, -- [14] { ["absorb"] = 0, ["hp"] = 6221, ["amount"] = 126, ["ts"] = 1447792732.327, ["spellid"] = 59913, ["srcname"] = "Qaliti-TwistingNether", }, -- [15] ["pos"] = 5, }, ["id"] = "Player-3674-06FCFAA7", ["overhealing"] = 3145, ["damagetakenspells"] = { ["Strike"] = { ["crushing"] = 0, ["id"] = 13446, ["min"] = 293, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Strike", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 340, ["damage"] = 633, }, ["Hamstring"] = { ["crushing"] = 0, ["id"] = 9080, ["min"] = 43, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Hamstring", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 58, ["damage"] = 246, }, ["Backstab"] = { ["crushing"] = 0, ["id"] = 15657, ["min"] = 206, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Backstab", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 293, ["damage"] = 499, }, ["Gouge"] = { ["crushing"] = 0, ["id"] = 12540, ["min"] = 9, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Gouge", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 9, ["damage"] = 9, }, ["Poison"] = { ["crushing"] = 0, ["id"] = 13298, ["min"] = 33, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poison", ["blocked"] = 0, ["totalhits"] = 15, ["resisted"] = 0, ["max"] = 34, ["damage"] = 501, }, ["Sinister Strike"] = { ["crushing"] = 0, ["id"] = 15667, ["min"] = 163, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Sinister Strike", ["blocked"] = 0, ["totalhits"] = 8, ["resisted"] = 0, ["max"] = 237, ["damage"] = 1693, }, ["Wrath"] = { ["crushing"] = 0, ["id"] = 21807, ["min"] = 281, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Wrath", ["blocked"] = 0, ["totalhits"] = 7, ["resisted"] = 0, ["max"] = 322, ["damage"] = 2095, }, ["Poison Bolt"] = { ["crushing"] = 0, ["id"] = 21067, ["min"] = 24, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poison Bolt", ["blocked"] = 0, ["totalhits"] = 16, ["resisted"] = 0, ["max"] = 171, ["damage"] = 1242, }, ["Poison Shock"] = { ["crushing"] = 0, ["id"] = 22595, ["min"] = 216, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poison Shock", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 222, ["damage"] = 874, }, ["Knockdown"] = { ["crushing"] = 0, ["id"] = 11428, ["min"] = 25, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Knockdown", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 42, ["damage"] = 99, }, ["Corruption"] = { ["crushing"] = 0, ["id"] = 21068, ["min"] = 14, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Corruption", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 15, ["damage"] = 73, }, ["Goblin Dragon Gun"] = { ["crushing"] = 0, ["id"] = 21910, ["min"] = 204, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Goblin Dragon Gun", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 226, ["damage"] = 1076, }, ["Entangling Roots"] = { ["crushing"] = 0, ["id"] = 12747, ["min"] = 11, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Entangling Roots", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 33, ["damage"] = 94, }, ["Multi-Shot"] = { ["crushing"] = 0, ["id"] = 21390, ["min"] = 993, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Multi-Shot", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 993, ["damage"] = 993, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 56, ["absorbed"] = 720, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 241, ["resisted"] = 0, ["max"] = 508, ["damage"] = 51396, }, }, ["healingspells"] = { ["Ysera's Gift"] = { ["shielding"] = 0, ["id"] = 145109, ["healing"] = 7045, ["min"] = 21, ["multistrike"] = 0, ["name"] = "Ysera's Gift", ["max"] = 126, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 258, ["hits"] = 58, }, ["Heal"] = { ["shielding"] = 0, ["id"] = 181867, ["healing"] = 1060, ["min"] = 1060, ["multistrike"] = 0, ["name"] = "Heal", ["max"] = 1060, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 1, }, ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 5476, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 212, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 2887, ["hits"] = 54, }, ["Tooth and Claw"] = { ["shielding"] = 1107, ["id"] = 135597, ["healing"] = 1107, ["min"] = 193, ["multistrike"] = 0, ["name"] = "Tooth and Claw", ["max"] = 468, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 4, }, }, ["shielding"] = 1107, ["name"] = "Qaliti", ["healing"] = 14688, ["healed"] = { ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 14163, ["class"] = "DRUID", ["shielding"] = 1107, }, ["Player-3674-06FC5F4D"] = { ["role"] = "HEALER", ["name"] = "Stormrise-TwistingNether", ["amount"] = 378, ["class"] = "SHAMAN", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 147, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["dispells"] = 0, ["ccbreaks"] = 0, ["multistrikes"] = 0, }, -- [13] { ["healingabsorbed"] = 0, ["class"] = "WARLOCK", ["damaged"] = { }, ["auras"] = { ["Soulburn"] = { ["name"] = "Soulburn", ["active"] = 0, ["id"] = 74434, ["auratype"] = "BUFF", ["uptime"] = 87, }, ["Soul Leech"] = { ["name"] = "Soul Leech", ["active"] = 18, ["id"] = 108366, ["auratype"] = "BUFF", ["uptime"] = 952, }, ["Corruption"] = { ["name"] = "Corruption", ["active"] = 0, ["id"] = 146739, ["auratype"] = "DEBUFF", ["uptime"] = 359, }, ["Sarthyk: Suffering"] = { ["name"] = "Sarthyk: Suffering", ["active"] = 0, ["id"] = 17735, ["auratype"] = "DEBUFF", ["uptime"] = 5, }, ["Drain Soul"] = { ["name"] = "Drain Soul", ["active"] = 0, ["id"] = 103103, ["auratype"] = "BUFF", ["uptime"] = 191, }, ["Drain Life"] = { ["name"] = "Drain Life", ["active"] = 0, ["id"] = 689, ["auratype"] = "BUFF", ["uptime"] = 3, }, ["Unstable Affliction"] = { ["name"] = "Unstable Affliction", ["active"] = 0, ["id"] = 30108, ["auratype"] = "DEBUFF", ["uptime"] = 239, }, ["Seed of Corruption"] = { ["name"] = "Seed of Corruption", ["active"] = 0, ["id"] = 114790, ["auratype"] = "DEBUFF", ["uptime"] = 51, }, }, ["role"] = "DAMAGER", ["time"] = 668, ["interrupts"] = 0, ["power"] = { [7] = { ["amount"] = 16, ["spells"] = { [17941] = 8, [87388] = 8, }, }, }, ["damage"] = 69319, ["damagespells"] = { ["Corruption"] = { ["min"] = 24, ["max"] = 103, ["critical"] = 30, ["hit"] = 341, ["totalhits"] = 373, ["id"] = 146739, ["MISS"] = 2, ["damage"] = 16113, }, ["Shadowfury"] = { ["id"] = 30283, ["totalhits"] = 3, ["IMMUNE"] = 3, ["max"] = 0, ["damage"] = 0, }, ["Flaafun: Attack"] = { ["min"] = 76, ["critical"] = 1, ["hit"] = 13, ["totalhits"] = 14, ["id"] = 6603, ["max"] = 153, ["damage"] = 1149, }, ["Touch of the Grave"] = { ["min"] = 88, ["hit"] = 32, ["totalhits"] = 32, ["id"] = 127802, ["max"] = 105, ["damage"] = 3038, }, ["Voltai: Firebolt"] = { ["min"] = 171, ["max"] = 357, ["critical"] = 7, ["hit"] = 71, ["totalhits"] = 80, ["id"] = 3110, ["MISS"] = 2, ["damage"] = 14805, }, ["Unstable Affliction"] = { ["min"] = 23, ["critical"] = 28, ["hit"] = 210, ["totalhits"] = 238, ["id"] = 131736, ["max"] = 135, ["damage"] = 13200, }, ["Seed of Corruption"] = { ["min"] = 16, ["max"] = 281, ["critical"] = 4, ["hit"] = 66, ["totalhits"] = 71, ["id"] = 87385, ["MISS"] = 1, ["damage"] = 7751, }, ["Sarthyk: Torment"] = { ["min"] = 58, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 3716, ["max"] = 58, ["damage"] = 174, }, ["Sarthyk: Attack"] = { ["min"] = 76, ["hit"] = 4, ["totalhits"] = 4, ["id"] = 6603, ["max"] = 77, ["damage"] = 305, }, ["Flaafun: Shadow Bite"] = { ["min"] = 72, ["critical"] = 1, ["hit"] = 13, ["totalhits"] = 14, ["id"] = 54049, ["max"] = 145, ["damage"] = 1093, }, ["Drain Life"] = { ["min"] = 48, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 689, ["max"] = 48, ["damage"] = 144, }, ["Drain Soul"] = { ["min"] = 60, ["max"] = 126, ["critical"] = 19, ["hit"] = 150, ["totalhits"] = 170, ["id"] = 103103, ["MISS"] = 1, ["damage"] = 11531, }, ["Attack"] = { ["min"] = 16, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 6603, ["max"] = 16, ["damage"] = 16, }, }, ["maxhp"] = 3456, ["damagetaken"] = 6554, ["deathlog"] = { { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793481.615, ["spellid"] = 127802, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [1] { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793482.538, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [2] { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793483.15, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [3] { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793483.493, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [4] { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793484.461, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [5] { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793485.061, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [6] { ["absorb"] = 0, ["ts"] = 1447793486.956, ["amount"] = 0, ["spellid"] = 63106, ["hp"] = 3450, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [7] { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793488.627, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [8] { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793488.853, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [9] { ["absorb"] = -508, ["hp"] = 3226, ["amount"] = -224, ["ts"] = 1447793489.546, ["spellid"] = 151742, ["srcname"] = "Molten Inferno Crystal", }, -- [10] { ["absorb"] = 0, ["hp"] = 3238, ["amount"] = 12, ["ts"] = 1447793489.59, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [11] { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793479.696, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [12] { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793480.635, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [13] { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793481.243, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [14] { ["absorb"] = 0, ["hp"] = 3450, ["amount"] = 0, ["ts"] = 1447793481.588, ["spellid"] = 63106, ["srcname"] = "Faustoblyth-Ravenholdt", }, -- [15] ["pos"] = 12, }, ["id"] = "Player-1096-0700DF96", ["overhealing"] = 9842.50002288818, ["damagetakenspells"] = { ["Spirit Link"] = { ["crushing"] = 0, ["id"] = 151231, ["min"] = 34, ["absorbed"] = 235, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Link", ["blocked"] = 0, ["totalhits"] = 16, ["resisted"] = 0, ["max"] = 519, ["damage"] = 2277, }, ["Sonic Field"] = { ["crushing"] = 0, ["id"] = 152748, ["min"] = 20, ["absorbed"] = 167, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Sonic Field", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 113, ["damage"] = 228, }, ["Bomb"] = { ["crushing"] = 0, ["id"] = 9143, ["min"] = 835, ["absorbed"] = 72, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Bomb", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 835, ["damage"] = 835, }, ["Crumbling Charge"] = { ["crushing"] = 0, ["id"] = 152334, ["min"] = 152, ["absorbed"] = 184, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Crumbling Charge", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 152, ["damage"] = 152, }, ["Spirit Bolt"] = { ["crushing"] = 0, ["id"] = 151253, ["min"] = 238, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Bolt", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 243, ["damage"] = 481, }, ["Knockdown"] = { ["crushing"] = 0, ["id"] = 11428, ["min"] = 48, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Knockdown", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 66, ["damage"] = 114, }, ["Poisoned Arrow Volley"] = { ["crushing"] = 0, ["id"] = 150849, ["min"] = 334, ["absorbed"] = 18, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poisoned Arrow Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 334, ["damage"] = 334, }, ["Molten Inferno"] = { ["crushing"] = 0, ["id"] = 151742, ["min"] = 224, ["absorbed"] = 508, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Molten Inferno", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 224, ["damage"] = 224, }, ["Stampede"] = { ["crushing"] = 0, ["id"] = 149957, ["min"] = 272, ["absorbed"] = 26, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Stampede", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 300, ["damage"] = 572, }, ["Poison Shock"] = { ["crushing"] = 0, ["id"] = 22595, ["min"] = 204, ["absorbed"] = 36, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poison Shock", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 204, ["damage"] = 204, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 546, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 587, ["damage"] = 1133, }, }, ["healingspells"] = { ["Siphon Life"] = { ["shielding"] = 0, ["id"] = 63106, ["healing"] = 613, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Siphon Life", ["max"] = 13, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 3964, ["hits"] = 368, }, ["Healthstone"] = { ["shielding"] = 0, ["id"] = 6262, ["healing"] = 1273, ["min"] = 300, ["multistrike"] = 0, ["name"] = "Healthstone", ["max"] = 973, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 1610, ["hits"] = 2, }, ["Touch of the Grave"] = { ["shielding"] = 0, ["id"] = 127802, ["healing"] = 582, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Touch of the Grave", ["max"] = 103, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 2417, ["hits"] = 32, }, ["Drain Life"] = { ["shielding"] = 0, ["id"] = 89653, ["healing"] = 73, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Drain Life", ["max"] = 38, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 35, ["hits"] = 3, }, ["Soul Leech"] = { ["shielding"] = 1875, ["id"] = 108366, ["healing"] = 1875, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Soul Leech", ["max"] = 508, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 1816.50002288818, ["hits"] = 64, }, }, ["shielding"] = 1875, ["name"] = "Faustoblyth", ["healing"] = 4416, ["healed"] = { ["Pet-0-3768-1004-13293-416-010246ED8B"] = { ["role"] = "NONE", ["name"] = "Voltai", ["amount"] = 155, ["class"] = "WARLOCK", ["shielding"] = 155, }, ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 4092, ["class"] = "WARLOCK", ["shielding"] = 1551, }, ["Pet-0-3774-47-1363-416-010246ED8B"] = { ["role"] = "NONE", ["name"] = "Voltai", ["amount"] = 44, ["class"] = "WARLOCK", ["shielding"] = 44, }, ["Pet-0-3102-349-6994-416-020246ED8B"] = { ["role"] = "NONE", ["name"] = "Voltai", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Pet-0-3774-47-1363-1860-01024700CF"] = { ["role"] = "NONE", ["name"] = "Sarthyk", ["amount"] = 18, ["class"] = "WARRIOR", ["shielding"] = 18, }, ["Pet-0-3774-47-1363-417-010249C51D"] = { ["role"] = "NONE", ["name"] = "Flaafun", ["amount"] = 53, ["class"] = "WARLOCK", ["shielding"] = 53, }, ["Pet-0-3102-349-6994-416-010246ED8B"] = { ["role"] = "NONE", ["name"] = "Voltai", ["amount"] = 54, ["class"] = "WARLOCK", ["shielding"] = 54, }, }, ["dispells"] = 0, ["ccbreaks"] = 0, ["multistrikes"] = 0, }, -- [14] { ["healingabsorbed"] = 0, ["class"] = "SHAMAN", ["damaged"] = { }, ["auras"] = { ["Riptide"] = { ["name"] = "Riptide", ["active"] = 3, ["id"] = 61295, ["auratype"] = "BUFF", ["uptime"] = 1012, }, ["Earth Shield"] = { ["name"] = "Earth Shield", ["active"] = 1, ["id"] = 974, ["auratype"] = "BUFF", ["uptime"] = 921, }, ["Healing Stream Totem"] = { ["name"] = "Healing Stream Totem", ["active"] = 0, ["id"] = 5394, ["auratype"] = "BUFF", ["uptime"] = 98, }, ["Ghost Wolf"] = { ["name"] = "Ghost Wolf", ["active"] = 0, ["id"] = 2645, ["auratype"] = "BUFF", ["uptime"] = 16, }, ["Flame Shock"] = { ["name"] = "Flame Shock", ["active"] = 0, ["id"] = 8050, ["auratype"] = "DEBUFF", ["uptime"] = 13, }, }, ["role"] = "HEALER", ["time"] = 302, ["interrupts"] = 0, ["power"] = { [0] = { ["amount"] = 99, ["spells"] = { [52128] = 99, }, }, }, ["damage"] = 687, ["damagespells"] = { ["Searing Totem: Searing Bolt"] = { ["min"] = 41, ["hit"] = 6, ["totalhits"] = 6, ["id"] = 3606, ["max"] = 42, ["damage"] = 250, }, ["Flame Shock"] = { ["min"] = 73, ["hit"] = 5, ["totalhits"] = 5, ["id"] = 8050, ["max"] = 145, ["damage"] = 437, }, }, ["maxhp"] = 4104, ["damagetaken"] = 3318, ["deathlog"] = { { ["absorb"] = 0, ["hp"] = 4091, ["amount"] = 182, ["ts"] = 1447792664.389, ["spellid"] = 145110, ["srcname"] = "Tjago", }, -- [1] { ["absorb"] = 0, ["hp"] = 4217, ["amount"] = 126, ["ts"] = 1447792664.866, ["spellid"] = 145110, ["srcname"] = "Qaliti-TwistingNether", }, -- [2] { ["hp"] = 2926, ["amount"] = -1374, ["spellname"] = "Falling", ["ts"] = 1447792678.24, }, -- [3] { ["absorb"] = 0, ["hp"] = 3156, ["amount"] = 225, ["ts"] = 1447792680.171, ["spellid"] = 52042, ["srcname"] = "Stormrise-TwistingNether", }, -- [4] { ["absorb"] = 0, ["hp"] = 3386, ["amount"] = 225, ["ts"] = 1447792682.035, ["spellid"] = 52042, ["srcname"] = "Stormrise-TwistingNether", }, -- [5] { ["absorb"] = 0, ["ts"] = 1447792682.579, ["amount"] = 914, ["hp"] = 4300, ["spellid"] = 8004, ["srcname"] = "Stormrise-TwistingNether", }, -- [6] { ["ts"] = 1447792697.23, ["amount"] = -216, ["hp"] = 4084, ["spellid"] = 21070, ["srcname"] = "Noxious Slime", }, -- [7] { ["absorb"] = 0, ["hp"] = 4300, ["amount"] = 44, ["ts"] = 1447792714.394, ["spellid"] = 145110, ["srcname"] = "Tjago", }, -- [8] { ["absorb"] = 0, ["hp"] = 3797, ["amount"] = 396, ["ts"] = 1447792574.493, ["spellid"] = 61295, ["srcname"] = "Stormrise-TwistingNether", }, -- [9] { ["absorb"] = 0, ["hp"] = 3928, ["amount"] = 126, ["ts"] = 1447792574.877, ["spellid"] = 145110, ["srcname"] = "Qaliti-TwistingNether", }, -- [10] { ["ts"] = 1447792575.179, ["absorb"] = 0, ["amount"] = 225, ["hp"] = 4153, ["spellid"] = 52042, ["srcname"] = "Stormrise-TwistingNether", }, -- [11] { ["absorb"] = 0, ["hp"] = 4300, ["amount"] = 147, ["ts"] = 1447792575.38, ["spellid"] = 145110, ["srcname"] = "Tjago", }, -- [12] { ["absorb"] = 0, ["hp"] = 4300, ["amount"] = 0, ["ts"] = 1447792577.288, ["spellid"] = 61295, ["srcname"] = "Stormrise-TwistingNether", }, -- [13] { ["hp"] = 4044, ["amount"] = -256, ["ts"] = 1447792643.918, ["spellid"] = 22595, ["srcname"] = "Creeping Sludge", }, -- [14] { ["ts"] = 1447792645.109, ["amount"] = -269, ["hp"] = 3775, ["spellid"] = 22595, ["srcname"] = "Creeping Sludge", }, -- [15] ["pos"] = 9, }, ["id"] = "Player-3674-06FC5F4D", ["overhealing"] = 42448, ["damagetakenspells"] = { ["Entangling Roots"] = { ["crushing"] = 0, ["id"] = 21331, ["min"] = 27, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Entangling Roots", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 37, ["damage"] = 64, }, ["Strike"] = { ["crushing"] = 0, ["id"] = 13446, ["min"] = 383, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Strike", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 383, ["damage"] = 383, }, ["Poison Shock"] = { ["crushing"] = 0, ["id"] = 22595, ["min"] = 256, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poison Shock", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 269, ["damage"] = 525, }, ["Multi-Shot"] = { ["crushing"] = 0, ["id"] = 21390, ["min"] = 1359, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Multi-Shot", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 1359, ["damage"] = 1359, }, ["Noxious Cloud"] = { ["crushing"] = 0, ["id"] = 21070, ["min"] = 216, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Noxious Cloud", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 216, ["damage"] = 216, }, ["War Stomp"] = { ["crushing"] = 0, ["id"] = 11876, ["min"] = 505, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "War Stomp", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 505, ["damage"] = 505, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 266, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 266, ["damage"] = 266, }, }, ["healingspells"] = { ["Riptide"] = { ["shielding"] = 0, ["id"] = 61295, ["healing"] = 18032, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Riptide", ["max"] = 949, ["critical"] = 10, ["absorbed"] = 0, ["overhealing"] = 11438, ["hits"] = 182, }, ["Healing Stream Totem"] = { ["shielding"] = 0, ["id"] = 52042, ["healing"] = 9388, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Healing Stream Totem", ["max"] = 450, ["critical"] = 5, ["absorbed"] = 0, ["overhealing"] = 4196, ["hits"] = 62, }, ["Earth Shield"] = { ["shielding"] = 0, ["id"] = 379, ["healing"] = 7319, ["min"] = 56, ["multistrike"] = 0, ["name"] = "Earth Shield", ["max"] = 257, ["critical"] = 5, ["absorbed"] = 0, ["overhealing"] = 251, ["hits"] = 54, }, ["Healing Surge"] = { ["shielding"] = 0, ["id"] = 8004, ["healing"] = 34605, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Healing Surge", ["max"] = 2287, ["critical"] = 4, ["absorbed"] = 0, ["overhealing"] = 26563, ["hits"] = 42, }, }, ["shielding"] = 0, ["name"] = "Stormrise", ["healing"] = 69344, ["healed"] = { ["Player-3674-06FC5F4D"] = { ["role"] = "HEALER", ["name"] = "Stormrise-TwistingNether", ["amount"] = 3932, ["class"] = "SHAMAN", ["shielding"] = 0, }, ["Pet-0-3102-349-6994-416-020246ED8B"] = { ["role"] = "NONE", ["name"] = "Voltai", ["amount"] = 22, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 4346, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 49904, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 1419, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 9721, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["dispells"] = 0, ["ccbreaks"] = 0, ["multistrikes"] = 0, }, -- [15] { ["healingabsorbed"] = 0, ["class"] = "WARRIOR", ["damaged"] = { }, ["auras"] = { ["Taunt"] = { ["name"] = "Taunt", ["active"] = 0, ["id"] = 355, ["auratype"] = "DEBUFF", ["uptime"] = 21, }, ["Charge"] = { ["name"] = "Charge", ["active"] = 0, ["id"] = 109128, ["auratype"] = "BUFF", ["uptime"] = 78, }, ["Victorious"] = { ["name"] = "Victorious", ["active"] = 5, ["id"] = 32216, ["auratype"] = "BUFF", ["uptime"] = 624, }, ["Berserking"] = { ["name"] = "Berserking", ["active"] = 0, ["id"] = 26297, ["auratype"] = "BUFF", ["uptime"] = 41, }, ["Thunder Clap"] = { ["name"] = "Thunder Clap", ["active"] = 0, ["id"] = 6343, ["auratype"] = "DEBUFF", ["uptime"] = 186, }, ["Shield Block"] = { ["name"] = "Shield Block", ["active"] = 0, ["id"] = 132404, ["auratype"] = "BUFF", ["uptime"] = 338, }, ["Deep Wounds"] = { ["name"] = "Deep Wounds", ["active"] = 0, ["id"] = 115767, ["auratype"] = "DEBUFF", ["uptime"] = 392, }, ["Sword and Board"] = { ["name"] = "Sword and Board", ["active"] = 2, ["id"] = 50227, ["auratype"] = "BUFF", ["uptime"] = 460, }, ["Victory Rush"] = { ["name"] = "Victory Rush", ["active"] = 3, ["id"] = 118779, ["auratype"] = "BUFF", ["uptime"] = 584, }, ["Enrage"] = { ["name"] = "Enrage", ["active"] = 0, ["id"] = 12880, ["auratype"] = "BUFF", ["uptime"] = 48, }, ["Ultimatum"] = { ["name"] = "Ultimatum", ["active"] = 0, ["id"] = 122510, ["auratype"] = "BUFF", ["uptime"] = 7, }, }, ["role"] = "TANK", ["time"] = 628, ["interrupts"] = 2, ["power"] = { { ["amount"] = 3310, ["spells"] = { [109128] = 260, [23922] = 1610, [12880] = 60, [6572] = 1380, }, }, -- [1] }, ["damage"] = 135170, ["damagespells"] = { ["Shield Slam"] = { ["min"] = 37, ["critical"] = 3, ["hit"] = 74, ["totalhits"] = 77, ["id"] = 23922, ["max"] = 151, ["damage"] = 4504, }, ["Charge"] = { ["id"] = 105771, ["totalhits"] = 5, ["IMMUNE"] = 5, ["max"] = 0, ["damage"] = 0, }, ["Execute"] = { ["min"] = 500, ["critical"] = 2, ["hit"] = 6, ["totalhits"] = 8, ["id"] = 5308, ["max"] = 1171, ["damage"] = 5424, }, ["Devastate"] = { ["min"] = 136, ["critical"] = 3, ["hit"] = 64, ["totalhits"] = 67, ["id"] = 20243, ["max"] = 397, ["damage"] = 14121, }, ["Thunder Clap"] = { ["min"] = 111, ["critical"] = 5, ["hit"] = 85, ["totalhits"] = 90, ["id"] = 6343, ["max"] = 319, ["damage"] = 11876, }, ["Revenge"] = { ["min"] = 62, ["critical"] = 9, ["hit"] = 100, ["totalhits"] = 109, ["id"] = 6572, ["max"] = 838, ["damage"] = 37014, }, ["Deep Wounds"] = { ["min"] = 46, ["critical"] = 15, ["hit"] = 297, ["totalhits"] = 312, ["id"] = 115767, ["max"] = 277, ["damage"] = 39758, }, ["Heroic Strike"] = { ["min"] = 76, ["critical"] = 4, ["hit"] = 5, ["totalhits"] = 9, ["id"] = 78, ["max"] = 234, ["damage"] = 1153, }, ["Victory Rush"] = { ["min"] = 132, ["critical"] = 1, ["hit"] = 17, ["totalhits"] = 18, ["id"] = 34428, ["max"] = 388, ["damage"] = 3702, }, ["Heroic Throw"] = { ["min"] = 43, ["hit"] = 2, ["totalhits"] = 2, ["id"] = 57755, ["max"] = 56, ["damage"] = 99, }, ["Attack"] = { ["min"] = 54, ["critical"] = 11, ["hit"] = 186, ["totalhits"] = 197, ["id"] = 6603, ["max"] = 237, ["damage"] = 17519, }, }, ["maxhp"] = 3528, ["damagetaken"] = 96478, ["deathlog"] = { { ["ts"] = 1447793950.881, ["absorb"] = 0, ["amount"] = 775, ["hp"] = 4175, ["srcname"] = "Drpolarbear-Sylvanas", ["spellid"] = 48503, }, -- [1] { ["ts"] = 1447793951.465, ["amount"] = -145, ["hp"] = 4175, ["spellid"] = 88163, ["srcname"] = "Scarlet Judicator", }, -- [2] { ["ts"] = 1447793953.071, ["amount"] = -403, ["hp"] = 4035, ["spellid"] = 88163, ["srcname"] = "Commander Durand", }, -- [3] { ["ts"] = 1447793954.015, ["amount"] = -67, ["hp"] = 3632, ["srcname"] = "Scarlet Judicator", ["spellid"] = 88163, }, -- [4] { ["hp"] = 3570, ["amount"] = -39, ["ts"] = 1447793955.721, ["spellid"] = 88163, ["srcname"] = "Scarlet Judicator", }, -- [5] { ["ts"] = 1447793956.311, ["amount"] = -43, ["hp"] = 3492, ["spellid"] = 111107, ["srcname"] = "Scarlet Judicator", }, -- [6] { ["hp"] = 3492, ["amount"] = -130, ["ts"] = 1447793956.577, ["spellid"] = 88163, ["srcname"] = "Scarlet Judicator", }, -- [7] { ["ts"] = 1447793957.419, ["amount"] = -62, ["hp"] = 3362, ["srcname"] = "Scarlet Judicator", ["spellid"] = 88163, }, -- [8] { ["ts"] = 1447793957.475, ["amount"] = -411, ["hp"] = 3362, ["srcname"] = "Commander Durand", ["spellid"] = 88163, }, -- [9] { ["ts"] = 1447793958.276, ["amount"] = -81, ["hp"] = 2889, ["srcname"] = "Scarlet Judicator", ["spellid"] = 88163, }, -- [10] { ["ts"] = 1447793958.286, ["absorb"] = 0, ["amount"] = 84, ["hp"] = 2973, ["spellid"] = 774, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [11] { ["ts"] = 1447793959.692, ["amount"] = -274, ["hp"] = 2897, ["srcname"] = "Commander Durand", ["spellid"] = 88163, }, -- [12] { ["absorb"] = 0, ["ts"] = 1447793959.779, ["amount"] = 536, ["hp"] = 3433, ["spellid"] = 18562, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [13] { ["ts"] = 1447793959.976, ["amount"] = -79, ["hp"] = 3159, ["srcname"] = "Scarlet Judicator", ["spellid"] = 88163, }, -- [14] { ["absorb"] = 0, ["ts"] = 1447793961.313, ["amount"] = 0, ["hp"] = 3168, ["spellid"] = 774, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [15] ["pos"] = 1, }, ["id"] = "Player-3687-06FC3B49", ["overhealing"] = 2307, ["damagetakenspells"] = { ["Holy Smite"] = { ["crushing"] = 0, ["id"] = 114848, ["min"] = 415, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Holy Smite", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 429, ["damage"] = 1264, }, ["Spirit Link"] = { ["crushing"] = 0, ["id"] = 151231, ["min"] = 58, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Link", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 398, ["damage"] = 1072, }, ["Stampede"] = { ["crushing"] = 0, ["id"] = 149957, ["min"] = 192, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Stampede", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 60, ["max"] = 235, ["damage"] = 427, }, ["Pass Judgment"] = { ["crushing"] = 0, ["id"] = 111107, ["min"] = 36, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Pass Judgment", ["blocked"] = 88, ["totalhits"] = 6, ["resisted"] = 0, ["max"] = 69, ["damage"] = 272, }, ["Shoot"] = { ["crushing"] = 0, ["id"] = 150100, ["min"] = 115, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Shoot", ["blocked"] = 0, ["totalhits"] = 65, ["resisted"] = 0, ["max"] = 465, ["damage"] = 11180, }, ["Fanatical Strike"] = { ["crushing"] = 0, ["id"] = 110956, ["min"] = 329, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fanatical Strike", ["blocked"] = 0, ["totalhits"] = 7, ["resisted"] = 0, ["max"] = 492, ["damage"] = 3013, }, ["Dashing Strike"] = { ["crushing"] = 0, ["id"] = 115739, ["min"] = 230, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Dashing Strike", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 240, ["damage"] = 470, }, ["Nature Barrage"] = { ["crushing"] = 0, ["id"] = 150286, ["min"] = 270, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Nature Barrage", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 270, ["damage"] = 270, }, ["Flamestrike"] = { ["crushing"] = 0, ["id"] = 110963, ["min"] = 24, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamestrike", ["blocked"] = 0, ["totalhits"] = 20, ["resisted"] = 0, ["max"] = 128, ["damage"] = 1441, }, ["Woven Elements"] = { ["crushing"] = 0, ["id"] = 150774, ["min"] = 263, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Woven Elements", ["blocked"] = 0, ["totalhits"] = 12, ["resisted"] = 0, ["max"] = 395, ["damage"] = 4345, }, ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 193, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 199, ["damage"] = 589, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 153, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 8, ["resisted"] = 0, ["max"] = 185, ["damage"] = 1383, }, ["Vine Line"] = { ["crushing"] = 0, ["id"] = 150304, ["min"] = 341, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Vine Line", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 47, ["max"] = 341, ["damage"] = 341, }, ["Fan of Knives"] = { ["crushing"] = 0, ["id"] = 150981, ["min"] = 210, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fan of Knives", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 213, ["damage"] = 423, }, ["Sonic Screech"] = { ["crushing"] = 0, ["id"] = 152750, ["min"] = 300, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Sonic Screech", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 300, ["damage"] = 300, }, ["Purifying Flames"] = { ["crushing"] = 0, ["id"] = 110968, ["min"] = 307, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Purifying Flames", ["blocked"] = 0, ["totalhits"] = 30, ["resisted"] = 0, ["max"] = 371, ["damage"] = 10161, }, ["Drain Life"] = { ["crushing"] = 0, ["id"] = 151475, ["min"] = 105, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Drain Life", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 105, ["damage"] = 525, }, ["Spirit Gale"] = { ["crushing"] = 0, ["id"] = 115291, ["min"] = 178, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Gale", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 540, ["damage"] = 1080, }, ["Flamethrower"] = { ["crushing"] = 0, ["id"] = 115507, ["min"] = 138, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamethrower", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 138, ["damage"] = 138, }, ["Spirit Bolt"] = { ["crushing"] = 0, ["id"] = 151253, ["min"] = 186, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Bolt", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 191, ["damage"] = 939, }, ["Hands of Purity"] = { ["crushing"] = 0, ["id"] = 110953, ["min"] = 24, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Hands of Purity", ["blocked"] = 0, ["totalhits"] = 40, ["resisted"] = 0, ["max"] = 24, ["damage"] = 960, }, ["Tidal Tempest"] = { ["crushing"] = 0, ["id"] = 151564, ["min"] = 243, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Tidal Tempest", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 243, ["damage"] = 243, }, ["Poisoned Arrow Volley"] = { ["crushing"] = 0, ["id"] = 150849, ["min"] = 51, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poisoned Arrow Volley", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 269, ["damage"] = 634, }, ["Rend"] = { ["crushing"] = 0, ["id"] = 152357, ["min"] = 82, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Rend", ["blocked"] = 0, ["totalhits"] = 15, ["resisted"] = 0, ["max"] = 82, ["damage"] = 1230, }, ["Harnessed Stone"] = { ["crushing"] = 0, ["id"] = 150546, ["min"] = 137, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Harnessed Stone", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 88, ["max"] = 143, ["damage"] = 280, }, ["Wing Clip"] = { ["crushing"] = 0, ["id"] = 150859, ["min"] = 120, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Wing Clip", ["blocked"] = 211, ["totalhits"] = 8, ["resisted"] = 0, ["max"] = 205, ["damage"] = 1214, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 17, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 11206, ["totalhits"] = 399, ["resisted"] = 0, ["max"] = 681, ["damage"] = 52284, }, }, ["healingspells"] = { ["Victory Rush"] = { ["shielding"] = 0, ["id"] = 118779, ["healing"] = 7601, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Victory Rush", ["max"] = 627, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 2307, ["hits"] = 18, }, ["Leech"] = { ["shielding"] = 0, ["id"] = 143924, ["healing"] = 396, ["min"] = 20, ["multistrike"] = 0, ["name"] = "Leech", ["max"] = 221, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 4, }, }, ["shielding"] = 0, ["name"] = "Banananator", ["healing"] = 7997, ["healed"] = { ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 7997, ["class"] = "WARRIOR", ["shielding"] = 0, }, }, ["dispells"] = 0, ["ccbreaks"] = 0, ["multistrikes"] = 0, }, -- [16] { ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { }, ["auras"] = { ["Nature's Swiftness"] = { ["name"] = "Nature's Swiftness", ["active"] = 0, ["id"] = 132158, ["auratype"] = "BUFF", ["uptime"] = 5, }, ["Cat Form"] = { ["name"] = "Cat Form", ["active"] = 0, ["id"] = 768, ["auratype"] = "BUFF", ["uptime"] = 2, }, ["Regrowth"] = { ["name"] = "Regrowth", ["active"] = 8, ["id"] = 8936, ["auratype"] = "BUFF", ["uptime"] = 644, }, ["Displacer Beast"] = { ["name"] = "Displacer Beast", ["active"] = 0, ["id"] = 137452, ["auratype"] = "BUFF", ["uptime"] = 4, }, ["Rejuvenation"] = { ["name"] = "Rejuvenation", ["active"] = 15, ["id"] = 774, ["auratype"] = "BUFF", ["uptime"] = 652, }, ["Moonfire"] = { ["name"] = "Moonfire", ["active"] = 0, ["id"] = 164812, ["auratype"] = "DEBUFF", ["uptime"] = 183, }, ["Living Seed"] = { ["name"] = "Living Seed", ["active"] = 7, ["id"] = 48504, ["auratype"] = "BUFF", ["uptime"] = 610, }, }, ["role"] = "HEALER", ["time"] = 611, ["interrupts"] = 0, ["power"] = { }, ["damage"] = 13602, ["damagespells"] = { ["Moonfire"] = { ["min"] = 2, ["ABSORB"] = 1, ["critical"] = 13, ["hit"] = 185, ["totalhits"] = 199, ["id"] = 164812, ["max"] = 80, ["damage"] = 8164, }, ["Wrath"] = { ["min"] = 196, ["critical"] = 2, ["hit"] = 20, ["totalhits"] = 22, ["id"] = 5176, ["max"] = 509, ["damage"] = 5438, }, }, ["maxhp"] = 2784, ["damagetaken"] = 11298, ["deathlog"] = { { ["ts"] = 1447793953.792, ["absorb"] = 0, ["amount"] = 84, ["hp"] = 3200, ["srcname"] = "Drpolarbear-Sylvanas", ["spellid"] = 774, }, -- [1] { ["ts"] = 1447793955.348, ["absorb"] = 0, ["amount"] = 15, ["hp"] = 3219, ["srcname"] = "Drpolarbear-Sylvanas", ["spellid"] = 8936, }, -- [2] { ["absorb"] = 0, ["hp"] = 3307, ["amount"] = 84, ["ts"] = 1447793956.783, ["spellid"] = 774, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [3] { ["ts"] = 1447793957.353, ["absorb"] = 0, ["amount"] = 15, ["hp"] = 3322, ["srcname"] = "Drpolarbear-Sylvanas", ["spellid"] = 8936, }, -- [4] { ["ts"] = 1447793959.34, ["absorb"] = 0, ["amount"] = 15, ["hp"] = 3341, ["srcname"] = "Drpolarbear-Sylvanas", ["spellid"] = 8936, }, -- [5] { ["absorb"] = 0, ["ts"] = 1447793959.761, ["amount"] = 84, ["hp"] = 3425, ["srcname"] = "Drpolarbear-Sylvanas", ["spellid"] = 774, }, -- [6] { ["absorb"] = 0, ["ts"] = 1447793961.403, ["amount"] = 15, ["hp"] = 3444, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [7] { ["ts"] = 1447793907.492, ["absorb"] = 0, ["amount"] = 0, ["hp"] = 3575, ["srcname"] = "Drpolarbear-Sylvanas", ["spellid"] = 774, }, -- [8] { ["absorb"] = 0, ["hp"] = 3575, ["amount"] = 0, ["ts"] = 1447793908.425, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [9] { ["ts"] = 1447793910.403, ["absorb"] = 0, ["amount"] = 0, ["hp"] = 3575, ["srcname"] = "Drpolarbear-Sylvanas", ["spellid"] = 8936, }, -- [10] { ["ts"] = 1447793946.391, ["amount"] = -317, ["hp"] = 3258, ["spellid"] = 115739, ["srcname"] = "Commander Durand", }, -- [11] { ["hp"] = 2957, ["amount"] = -301, ["ts"] = 1447793946.641, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [12] { ["hp"] = 2670, ["amount"] = -287, ["ts"] = 1447793947.736, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [13] { ["hp"] = 2386, ["amount"] = -288, ["ts"] = 1447793948.294, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [14] { ["absorb"] = 0, ["hp"] = 3116, ["amount"] = 722, ["ts"] = 1447793953.363, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [15] ["pos"] = 8, }, ["id"] = "Player-3687-06FC3B80", ["overhealing"] = 29870, ["damagetakenspells"] = { ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 287, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 301, ["damage"] = 876, }, ["Fan of Knives"] = { ["crushing"] = 0, ["id"] = 150981, ["min"] = 309, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fan of Knives", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 313, ["damage"] = 622, }, ["Spirit Link"] = { ["crushing"] = 0, ["id"] = 151231, ["min"] = 53, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Link", ["blocked"] = 0, ["totalhits"] = 17, ["resisted"] = 0, ["max"] = 209, ["damage"] = 1883, }, ["Sonic Field"] = { ["crushing"] = 0, ["id"] = 152748, ["min"] = 132, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Sonic Field", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 132, ["damage"] = 132, }, ["Stampede"] = { ["crushing"] = 0, ["id"] = 149957, ["min"] = 292, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Stampede", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 308, ["damage"] = 1209, }, ["Crumbling Charge"] = { ["crushing"] = 0, ["id"] = 152334, ["min"] = 320, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Crumbling Charge", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 330, ["damage"] = 975, }, ["Dashing Strike"] = { ["crushing"] = 0, ["id"] = 115739, ["min"] = 317, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Dashing Strike", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 317, ["damage"] = 317, }, ["Spirit Bolt"] = { ["crushing"] = 0, ["id"] = 151253, ["min"] = 241, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Bolt", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 241, ["damage"] = 482, }, ["Firestorm Kick"] = { ["crushing"] = 0, ["id"] = 113766, ["min"] = 150, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Firestorm Kick", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 150, ["damage"] = 450, }, ["Elemental Binding"] = { ["crushing"] = 0, ["id"] = 151605, ["min"] = 150, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Elemental Binding", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 150, ["damage"] = 450, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 198, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 207, ["damage"] = 606, }, ["Purifying Flames"] = { ["crushing"] = 0, ["id"] = 110968, ["min"] = 385, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Purifying Flames", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 385, ["damage"] = 385, }, ["Flamestrike"] = { ["crushing"] = 0, ["id"] = 110963, ["min"] = 30, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamestrike", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 158, ["damage"] = 248, }, ["Shoot"] = { ["crushing"] = 0, ["id"] = 150100, ["min"] = 226, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Shoot", ["blocked"] = 0, ["totalhits"] = 7, ["resisted"] = 0, ["max"] = 272, ["damage"] = 1741, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 25, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 8, ["resisted"] = 0, ["max"] = 443, ["damage"] = 922, }, }, ["healingspells"] = { ["Healing Touch"] = { ["shielding"] = 0, ["id"] = 5185, ["healing"] = 6302, ["min"] = 507, ["multistrike"] = 0, ["name"] = "Healing Touch", ["max"] = 1233, ["critical"] = 1, ["absorbed"] = 0, ["overhealing"] = 421, ["hits"] = 8, }, ["Swiftmend"] = { ["shielding"] = 0, ["id"] = 18562, ["healing"] = 6001, ["min"] = 383, ["multistrike"] = 0, ["name"] = "Swiftmend", ["max"] = 536, ["critical"] = 1, ["absorbed"] = 0, ["overhealing"] = 634, ["hits"] = 12, }, ["Regrowth"] = { ["shielding"] = 0, ["id"] = 8936, ["healing"] = 40638, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Regrowth", ["max"] = 1000, ["critical"] = 94, ["absorbed"] = 0, ["overhealing"] = 13915, ["hits"] = 392, }, ["Rejuvenation"] = { ["shielding"] = 0, ["id"] = 774, ["healing"] = 24269, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Rejuvenation", ["max"] = 168, ["critical"] = 37, ["absorbed"] = 0, ["overhealing"] = 10819, ["hits"] = 443, }, ["Living Seed"] = { ["shielding"] = 0, ["id"] = 48503, ["healing"] = 14560, ["min"] = 24, ["multistrike"] = 0, ["name"] = "Living Seed", ["max"] = 775, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 4081, ["hits"] = 44, }, }, ["shielding"] = 0, ["name"] = "Drpolarbear", ["healing"] = 91770, ["healed"] = { ["Player-1096-07091437"] = { ["role"] = "DAMAGER", ["name"] = "Sathorin-TheVentureCo", ["amount"] = 1101, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 73003, ["class"] = "WARRIOR", ["shielding"] = 0, }, ["Player-3687-06FC3B80"] = { ["role"] = "HEALER", ["name"] = "Drpolarbear-Sylvanas", ["amount"] = 7221, ["class"] = "DRUID", ["shielding"] = 0, }, ["Pet-0-1096-530-105-42710-140249A92D"] = { ["role"] = "NONE", ["name"] = "Dragonhawk", ["amount"] = 162, ["class"] = "WARRIOR", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 4062, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 5146, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 1075, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Pet-0-3774-47-1363-416-010246ED8B"] = { ["role"] = "NONE", ["name"] = "Voltai", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, }, ["dispells"] = 9, ["ccbreaks"] = 0, ["multistrikes"] = 0, }, -- [17] { ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { }, ["auras"] = { ["Dragonhawk: Spry Attacks"] = { ["name"] = "Dragonhawk: Spry Attacks", ["active"] = 0, ["id"] = 34889, ["auratype"] = "BUFF", ["uptime"] = 3, }, ["Dragonhawk: Growl"] = { ["name"] = "Dragonhawk: Growl", ["active"] = 0, ["id"] = 2649, ["auratype"] = "DEBUFF", ["uptime"] = 0, }, ["Dazed"] = { ["name"] = "Dazed", ["active"] = 1, ["id"] = 15571, ["auratype"] = "DEBUFF", ["uptime"] = 249, }, }, ["role"] = "DAMAGER", ["time"] = 233, ["interrupts"] = 1, ["power"] = { [2] = { ["amount"] = 99, ["spells"] = { [34953] = 15, [77443] = 84, }, }, }, ["damage"] = 19866, ["damagespells"] = { ["Steady Shot"] = { ["min"] = 84, ["critical"] = 1, ["hit"] = 5, ["totalhits"] = 6, ["id"] = 56641, ["max"] = 175, ["damage"] = 656, }, ["Counter Shot"] = { ["id"] = 147362, ["totalhits"] = 1, ["IMMUNE"] = 1, ["max"] = 0, ["damage"] = 0, }, ["Dragonhawk: Attack"] = { ["min"] = 51, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 6603, ["max"] = 51, ["damage"] = 51, }, ["Auto Shot"] = { ["min"] = 100, ["critical"] = 10, ["hit"] = 59, ["totalhits"] = 69, ["id"] = 75, ["max"] = 293, ["damage"] = 9384, }, ["Dragonhawk: Bite"] = { ["min"] = 106, ["multistrike"] = 1, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 17253, ["max"] = 106, ["damage"] = 123, }, ["Multi-Shot"] = { ["min"] = 55, ["critical"] = 4, ["hit"] = 23, ["totalhits"] = 27, ["id"] = 2643, ["max"] = 157, ["damage"] = 2059, }, ["Arcane Shot"] = { ["min"] = 180, ["critical"] = 6, ["hit"] = 26, ["totalhits"] = 32, ["id"] = 3044, ["max"] = 411, ["damage"] = 7593, }, }, ["maxhp"] = 3648, ["damagetaken"] = 3503, ["deathlog"] = { { ["absorb"] = 0, ["hp"] = 3394, ["amount"] = 15, ["ts"] = 1447793961.822, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [1] { ["ts"] = 1447794012.258, ["amount"] = -174, ["hp"] = 4032, ["spellid"] = 88163, ["srcname"] = "Scarlet Judicator", }, -- [2] { ["ts"] = 1447794013.965, ["amount"] = -213, ["hp"] = 3858, ["spellid"] = 88163, ["srcname"] = "Scarlet Judicator", }, -- [3] { ["ts"] = 1447794015.667, ["amount"] = -184, ["hp"] = 3645, ["spellid"] = 88163, ["srcname"] = "Scarlet Judicator", }, -- [4] { ["absorb"] = 0, ["ts"] = 1447793930.475, ["amount"] = 208, ["hp"] = 3678, ["spellid"] = 145110, ["srcname"] = "Tjago", }, -- [5] { ["absorb"] = 0, ["hp"] = 3768, ["amount"] = 90, ["ts"] = 1447793940.482, ["spellid"] = 145110, ["srcname"] = "Tjago", }, -- [6] { ["ts"] = 1447793945.188, ["amount"] = -281, ["hp"] = 3487, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [7] { ["ts"] = 1447793945.8, ["amount"] = -316, ["hp"] = 3171, ["spellid"] = 115739, ["srcname"] = "Commander Durand", }, -- [8] { ["hp"] = 2874, ["amount"] = -297, ["ts"] = 1447793947.226, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [9] { ["ts"] = 1447793949.148, ["amount"] = -277, ["hp"] = 2597, ["spellid"] = 115629, ["srcname"] = "Commander Durand", }, -- [10] { ["ts"] = 1447793951.869, ["absorb"] = 0, ["amount"] = 722, ["hp"] = 3319, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [11] { ["ts"] = 1447793953.861, ["absorb"] = 0, ["amount"] = 15, ["hp"] = 3334, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [12] { ["absorb"] = 0, ["hp"] = 3349, ["amount"] = 15, ["ts"] = 1447793955.849, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [13] { ["absorb"] = 0, ["hp"] = 3364, ["amount"] = 15, ["ts"] = 1447793957.834, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [14] { ["ts"] = 1447793959.831, ["absorb"] = 0, ["amount"] = 15, ["hp"] = 3379, ["spellid"] = 8936, ["srcname"] = "Drpolarbear-Sylvanas", }, -- [15] ["pos"] = 5, }, ["id"] = "Player-1096-07091437", ["overhealing"] = 294, ["damagetakenspells"] = { ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 277, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 298, ["damage"] = 1153, }, ["Dashing Strike"] = { ["crushing"] = 0, ["id"] = 115739, ["min"] = 316, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Dashing Strike", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 316, ["damage"] = 316, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 194, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 221, ["damage"] = 815, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 49, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 13, ["resisted"] = 0, ["max"] = 213, ["damage"] = 1219, }, }, ["healingspells"] = { ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 219, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 73, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 294, ["hits"] = 7, }, }, ["shielding"] = 0, ["name"] = "Sathorin", ["healing"] = 219, ["healed"] = { ["Player-1096-07091437"] = { ["role"] = "DAMAGER", ["name"] = "Sathorin-TheVentureCo", ["amount"] = 219, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["dispells"] = 0, ["ccbreaks"] = 0, ["multistrikes"] = 0, }, -- [18] }, ["deaths"] = 1, ["mobs"] = { ["Aku'mai"] = { ["players"] = { ["Darkaya-ChamberofAspects"] = { ["taken"] = 0, ["done"] = 77, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 0, ["done"] = 74, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Jyggtvå"] = { ["taken"] = 0, ["done"] = 76, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 0, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 227, }, ["Irradiated Slime"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 3390, ["done"] = 494, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2577, ["done"] = 1026, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 2360, ["done"] = 266, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 2450, ["done"] = 107, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 1513, ["done"] = 277, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 12290, ["done"] = 2170, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Scarlet Purifier"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 4402, ["done"] = 1020, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Banananator-Sylvanas"] = { ["taken"] = 11970, ["done"] = 12423, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Jyggtvå"] = { ["taken"] = 25699, ["done"] = 1341, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 46019, ["done"] = 11336, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 2433, ["done"] = 30, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 1068, ["done"] = 633, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 6042, ["done"] = 666, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 4621, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { ["Heal"] = { ["min"] = 680, ["crits"] = 0, ["max"] = 922, ["healing"] = 7814, ["overhealing"] = 0, ["hits"] = 9, }, }, ["taken"] = 102254, ["done"] = 27449, ["htaken"] = 7814, ["hdonespell"] = { }, }, ["Houndmaster Braun"] = { ["players"] = { ["Sebster-ShatteredHand"] = { ["taken"] = 5816, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 4997, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Jyggtvå"] = { ["taken"] = 2581, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 4754, ["done"] = 0, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 18148, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Battle Boar"] = { ["players"] = { ["Tjago"] = { ["taken"] = 4045, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 203, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 3417, ["done"] = 1084, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 7665, ["done"] = 1084, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Voidwalker Minion"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1980, ["done"] = 1321, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 1581, ["done"] = 1301, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 468, ["done"] = 620, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 988, ["done"] = 1454, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 590, ["done"] = 2663, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 5607, ["htakenspell"] = { ["Corrupted Healing Totem Heal"] = { ["min"] = 0, ["crits"] = 0, ["max"] = 0, ["healing"] = 0, ["overhealing"] = 200, ["hits"] = 2, }, }, ["htaken"] = 0, ["done"] = 7359, }, ["Razorfen Stonechanter"] = { ["players"] = { ["Banananator-Sylvanas"] = { ["taken"] = 1800, ["done"] = 590, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 621, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 1455, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2344, ["done"] = 148, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 6220, ["done"] = 738, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Aqua Guardian"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 224, ["done"] = 159, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 243, ["done"] = 0, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 535, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 627, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 1494, ["done"] = 930, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 3123, ["htakenspell"] = { ["Corrupted Healing Totem Heal"] = { ["min"] = 100, ["crits"] = 0, ["max"] = 100, ["healing"] = 200, ["overhealing"] = 0, ["hits"] = 2, }, }, ["htaken"] = 200, ["done"] = 1089, }, ["Guardian of the Deep"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2365, ["done"] = 519, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 1186, ["done"] = 386, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 1372, ["done"] = 179, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 2122, ["done"] = 161, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 1511, ["done"] = 397, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 8556, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 1642, }, ["Warlord Ramtusk"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 5459, ["done"] = 596, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 10595, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 420, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Banananator-Sylvanas"] = { ["taken"] = 5939, ["done"] = 6219, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 3503, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { ["Spirit Link"] = { ["min"] = 83, ["crits"] = 0, ["max"] = 1760, ["healing"] = 11341, ["overhealing"] = 0, ["hits"] = 20, }, }, ["taken"] = 25916, ["done"] = 6815, ["htaken"] = 11341, ["hdonespell"] = { }, }, ["Rowdy Troublemaker"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2194, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 4516, ["done"] = 1939, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 1588, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 4139, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 2285, ["done"] = 663, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 14722, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 2602, }, ["Putridus Trickster"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2103, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 3038, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Qaliti-TwistingNether"] = { ["taken"] = 15923, ["done"] = 10053, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 12139, ["done"] = 1511, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 33203, ["done"] = 11564, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Scarlet Fanatic"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 1711, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Banananator-Sylvanas"] = { ["taken"] = 15418, ["done"] = 11985, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Jyggtvå"] = { ["taken"] = 22614, ["done"] = 1056, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 32518, ["done"] = 13973, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 1260, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 39, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 6502, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 3125, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { ["Heal"] = { ["min"] = 636, ["crits"] = 0, ["max"] = 865, ["healing"] = 6868, ["overhealing"] = 0, ["hits"] = 9, }, }, ["taken"] = 83187, ["done"] = 27014, ["htaken"] = 6868, ["hdonespell"] = { }, }, ["Scarlet Cannon"] = { ["players"] = { ["Summerwalker"] = { ["taken"] = 0, ["done"] = 671, ["role"] = "HEALER", ["class"] = "MONK", }, ["Tjago"] = { ["taken"] = 0, ["done"] = 513, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 0, ["done"] = 1184, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Irradiated Pillager"] = { ["players"] = { ["Darkaya-ChamberofAspects"] = { ["taken"] = 245, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 1180, ["done"] = 9, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Jyggtvå"] = { ["taken"] = 2635, ["done"] = 7, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 436, ["done"] = 219, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 4496, ["done"] = 235, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Razorfen Scarblade"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1363, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Tjago"] = { ["taken"] = 2422, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 4399, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 2311, ["done"] = 2791, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 10495, ["done"] = 2791, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Poison Sprite"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 658, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 173, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Qaliti-TwistingNether"] = { ["taken"] = 5069, ["done"] = 1490, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 1091, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 6991, ["done"] = 1490, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Razorshell Snapjaw"] = { ["players"] = { ["Darkaya-ChamberofAspects"] = { ["taken"] = 912, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 270, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Jyggtvå"] = { ["taken"] = 856, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 236, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 2274, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 0, }, ["Spirit of Redemption"] = { ["players"] = { }, ["hdone"] = 15058, ["htakenspell"] = { }, ["taken"] = 0, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { ["Heal"] = { ["min"] = 826, ["crits"] = 0, ["max"] = 922, ["healing"] = 15058, ["overhealing"] = 38, ["hits"] = 17, }, }, }, ["Viscous Fallout"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2912, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 1533, ["done"] = 1258, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 3393, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 2700, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 843, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 11381, ["done"] = 1258, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Scarlet Evoker"] = { ["players"] = { ["Weaboojones-TwistingNether"] = { ["taken"] = 1081, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Sebster-ShatteredHand"] = { ["taken"] = 625, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Tjago"] = { ["taken"] = 1307, ["done"] = 299, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 3013, ["done"] = 299, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Crystalfire Totem"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 149, ["done"] = 979, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 149, ["done"] = 979, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Twilight Lord Bathiel"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 4035, ["done"] = 1692, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 782, ["done"] = 0, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 3299, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 3179, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 881, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 12176, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 1692, }, ["Fallen Crusader"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 0, ["done"] = 23, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 6518, ["done"] = 339, ["role"] = "TANK", ["class"] = "DRUID", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 0, ["done"] = 107, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 117, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 1882, ["done"] = 118, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 8517, ["done"] = 587, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Snake"] = { ["players"] = { ["Qaliti-TwistingNether"] = { ["taken"] = 71, ["done"] = 0, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 71, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Razorfen Torchbearer"] = { ["players"] = { ["Tjago"] = { ["taken"] = 269, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 1524, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 192, ["done"] = 134, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 1985, ["done"] = 134, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Frenzied Spirit"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2279, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 8152, ["done"] = 1593, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 1134, ["done"] = 648, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 580, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 2117, ["done"] = 840, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 14262, ["done"] = 3081, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Training Dummy"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 111, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 1437, ["done"] = 0, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 451, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2524, ["done"] = 0, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 4523, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Dark Iron Agent"] = { ["players"] = { ["Void Tendril"] = { ["taken"] = 1420, ["done"] = 0, ["role"] = "NONE", }, ["Jyggtvå"] = { ["taken"] = 2337, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5620, ["done"] = 2830, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 4450, ["done"] = 747, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 6665, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 2719, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 23211, ["done"] = 3577, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Vicious Thug"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 536, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 1786, ["done"] = 776, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 1338, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 1650, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 873, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 6183, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 776, }, ["Groyat, the Blind Hunter"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 7218, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 3823, ["done"] = 2689, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 1521, ["done"] = 132, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 8775, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 3979, ["done"] = 228, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 525, ["htakenspell"] = { ["Drain Life"] = { ["min"] = 105, ["crits"] = 0, ["max"] = 105, ["healing"] = 525, ["overhealing"] = 0, ["hits"] = 5, }, }, ["taken"] = 25316, ["done"] = 3049, ["htaken"] = 525, ["hdonespell"] = { ["Drain Life"] = { ["min"] = 105, ["crits"] = 0, ["max"] = 105, ["healing"] = 525, ["overhealing"] = 0, ["hits"] = 5, }, }, }, ["Scarlet Hall Guardian"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 0, ["done"] = 983, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 3615, ["done"] = 619, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sebster-ShatteredHand"] = { ["taken"] = 1084, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 1984, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 6683, ["done"] = 1602, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Deep Terror"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 307, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 675, ["done"] = 0, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 995, ["done"] = 319, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 1703, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 446, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 4126, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 319, }, ["Riverpaw Shaman"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1251, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 4864, ["done"] = 594, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 391, ["done"] = 167, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 5030, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 2178, ["done"] = 1095, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 13714, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 1856, }, ["Scarlet Defender"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1417, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Sebster-ShatteredHand"] = { ["taken"] = 13, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Tjago"] = { ["taken"] = 1563, ["done"] = 352, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 2993, ["done"] = 352, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Creeping Sludge"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 4582, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 6673, ["done"] = 3732, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Stormrise-TwistingNether"] = { ["taken"] = 0, ["done"] = 525, ["role"] = "HEALER", ["class"] = "SHAMAN", }, ["Qaliti-TwistingNether"] = { ["taken"] = 5892, ["done"] = 3090, ["role"] = "TANK", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 2262, ["done"] = 204, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 19409, ["done"] = 7551, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Scarlet Scourge Hewer"] = { ["players"] = { ["Void Tendril"] = { ["taken"] = 614, ["done"] = 0, ["role"] = "NONE", }, ["Sebster-ShatteredHand"] = { ["taken"] = 1953, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Tjago"] = { ["taken"] = 3565, ["done"] = 671, ["role"] = "TANK", ["class"] = "DRUID", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 1150, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Jyggtvå"] = { ["taken"] = 511, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 7793, ["done"] = 671, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Vigilant Watchman"] = { ["players"] = { ["Weaboojones-TwistingNether"] = { ["taken"] = 1097, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Sebster-ShatteredHand"] = { ["taken"] = 5903, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Tjago"] = { ["taken"] = 3095, ["done"] = 1182, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 10095, ["done"] = 1182, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Scarlet Cannoneer"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 3158, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2949, ["done"] = 0, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sebster-ShatteredHand"] = { ["taken"] = 2261, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 1323, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 9691, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Scarlet Myrmidon"] = { ["players"] = { ["Weaboojones-TwistingNether"] = { ["taken"] = 250, ["done"] = 52, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Jyggtvå"] = { ["taken"] = 1241, ["done"] = 51, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Sebster-ShatteredHand"] = { ["taken"] = 1537, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Tjago"] = { ["taken"] = 2304, ["done"] = 915, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 5332, ["done"] = 1018, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Executioner Gore"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2189, ["done"] = 74, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 2063, ["done"] = 1621, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 2168, ["done"] = 445, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 3562, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 1932, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 11914, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 2140, }, ["Zombified Corpse"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 246, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Jyggtvå"] = { ["taken"] = 1599, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 1801, ["done"] = 102, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 70, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 371, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 4087, ["done"] = 102, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Randolph Moloch"] = { ["players"] = { ["Darkaya-ChamberofAspects"] = { ["taken"] = 2374, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 3011, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 1103, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, ["Tjago"] = { ["taken"] = 2487, ["done"] = 1391, ["class"] = "DRUID", ["role"] = "TANK", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 8975, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 1391, }, ["Scarlet Centurion"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 656, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Jyggtvå"] = { ["taken"] = 3889, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 11134, ["done"] = 3186, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 1986, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 413, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 2089, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 0, ["done"] = 116, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 20167, ["done"] = 3302, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Corrupt Force of Nature"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 646, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Qaliti-TwistingNether"] = { ["taken"] = 4420, ["done"] = 1308, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 3123, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 8189, ["done"] = 1308, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Twilight Disciple"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1898, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 1173, ["done"] = 752, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 1248, ["done"] = 158, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 1536, ["done"] = 146, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 1113, ["done"] = 180, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 6968, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 1236, }, ["Stampeding Boar"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 0, ["done"] = 1172, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 0, ["done"] = 3835, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 0, ["done"] = 1209, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Banananator-Sylvanas"] = { ["taken"] = 0, ["done"] = 427, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 0, ["done"] = 572, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 0, ["done"] = 7215, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Ghamoo-Ra"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2266, ["done"] = 38, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 1773, ["done"] = 658, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 2076, ["done"] = 193, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 947, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 848, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 7910, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 889, }, ["Riverpaw Slayer"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1072, ["done"] = 150, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 4720, ["done"] = 1266, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 3344, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 3469, ["done"] = 169, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 2785, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 15390, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 1585, }, ["Solarshard Totem"] = { ["players"] = { ["Banananator-Sylvanas"] = { ["taken"] = 274, ["done"] = 0, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 274, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Putridus Shadowstalker"] = { ["players"] = { ["Tjago"] = { ["taken"] = 5791, ["done"] = 1356, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Qaliti-TwistingNether"] = { ["taken"] = 10210, ["done"] = 6970, ["role"] = "TANK", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 1398, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 2541, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 19940, ["done"] = 8326, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Peacekeeper Security Suit"] = { ["players"] = { ["Empri-TwistingNether"] = { ["taken"] = 462, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 2170, ["done"] = 204, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Jyggtvå"] = { ["taken"] = 2198, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2151, ["done"] = 0, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 6981, ["done"] = 204, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Cavern Lurker"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1497, ["done"] = 1247, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 7445, ["done"] = 4783, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Qaliti-TwistingNether"] = { ["taken"] = 5438, ["done"] = 4313, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 8722, ["done"] = 1746, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 23102, ["done"] = 12089, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Blindlight Rotmouth"] = { ["players"] = { ["Darkaya-ChamberofAspects"] = { ["taken"] = 110, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 1175, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 403, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, ["Tjago"] = { ["taken"] = 425, ["done"] = 141, ["class"] = "DRUID", ["role"] = "TANK", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 2113, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 141, }, ["Subjugator Kor'ul"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1207, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 2400, ["done"] = 1270, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 2251, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 1722, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 2728, ["done"] = 555, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 10308, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 1825, }, ["Crystalline Behemoth"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1976, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 1199, ["done"] = 686, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 821, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 4376, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1888, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 10260, ["done"] = 686, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Blue Shale Crawler"] = { ["players"] = { ["Varane-Magtheridon"] = { ["taken"] = 271, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 72, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, ["Tjago"] = { ["taken"] = 159, ["done"] = 0, ["class"] = "DRUID", ["role"] = "TANK", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 502, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 0, }, ["Scarlet Flamethrower"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 407, ["done"] = 169, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Jyggtvå"] = { ["taken"] = 3245, ["done"] = 165, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 7079, ["done"] = 2391, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 1333, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 694, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 467, ["done"] = 511, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 244, ["done"] = 286, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 13469, ["done"] = 3522, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Angry Hound"] = { ["players"] = { ["Summerwalker"] = { ["taken"] = 0, ["done"] = 162, ["role"] = "HEALER", ["class"] = "MONK", }, ["Tjago"] = { ["taken"] = 733, ["done"] = 229, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sebster-ShatteredHand"] = { ["taken"] = 1526, ["done"] = 640, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 3227, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 5486, ["done"] = 1031, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Leprous Defender"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 5154, ["done"] = 115, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2469, ["done"] = 530, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 2586, ["done"] = 59, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 3000, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 3040, ["done"] = 217, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 16249, ["done"] = 921, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Mobile Alert System"] = { ["players"] = { ["Darkaya-ChamberofAspects"] = { ["taken"] = 529, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Empri-TwistingNether"] = { ["taken"] = 266, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 795, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Charlga Razorflank"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 7870, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 5455, ["done"] = 3041, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 1677, ["done"] = 450, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 13698, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 6090, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 34790, ["done"] = 3491, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Razorfen Beast Stalker"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 3334, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 7547, ["done"] = 8020, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 777, ["done"] = 622, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 12835, ["done"] = 1047, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 2487, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 26980, ["done"] = 9689, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Scarlet Pupil"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 393, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 8459, ["done"] = 13235, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sebster-ShatteredHand"] = { ["taken"] = 434, ["done"] = 428, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 2287, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 11573, ["done"] = 13663, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Scarlet Judicator"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 3526, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Jyggtvå"] = { ["taken"] = 16163, ["done"] = 408, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 18544, ["done"] = 5988, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 3185, ["done"] = 571, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 757, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 3021, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 7846, ["done"] = 5329, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { ["Heal"] = { ["min"] = 637, ["crits"] = 0, ["max"] = 865, ["healing"] = 6831, ["overhealing"] = 38, ["hits"] = 9, }, }, ["taken"] = 53042, ["done"] = 12296, ["htaken"] = 6831, ["hdonespell"] = { }, }, ["Scarlet Evangelist"] = { ["players"] = { ["Void Tendril"] = { ["taken"] = 113, ["done"] = 0, ["role"] = "NONE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 2697, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Sebster-ShatteredHand"] = { ["taken"] = 3037, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Tjago"] = { ["taken"] = 2251, ["done"] = 805, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 8098, ["done"] = 805, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Crystalline Aberration"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1493, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 1493, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Leprous Assistant"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 3060, ["done"] = 23, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 3913, ["done"] = 417, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 357, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 14817, ["done"] = 1371, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 1615, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 23762, ["done"] = 1811, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Noxious Slime"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2764, ["done"] = 848, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5716, ["done"] = 639, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Stormrise-TwistingNether"] = { ["taken"] = 0, ["done"] = 216, ["role"] = "HEALER", ["class"] = "SHAMAN", }, ["Qaliti-TwistingNether"] = { ["taken"] = 9303, ["done"] = 7319, ["role"] = "TANK", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 2665, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 20448, ["done"] = 9022, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Putridus Satyr"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1575, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 7053, ["done"] = 1780, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Qaliti-TwistingNether"] = { ["taken"] = 8991, ["done"] = 10220, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 9048, ["done"] = 3426, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 26667, ["done"] = 15426, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Arcane Nullifier X-21"] = { ["players"] = { ["Void Tendril"] = { ["taken"] = 236, ["done"] = 0, ["role"] = "NONE", }, ["Jyggtvå"] = { ["taken"] = 6898, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 6016, ["done"] = 3685, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 5125, ["done"] = 835, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 8798, ["done"] = 274, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 2546, ["done"] = 322, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 29619, ["done"] = 5116, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Brother Korloff"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 1531, ["done"] = 333, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 1777, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Jyggtvå"] = { ["taken"] = 7880, ["done"] = 149, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 10371, ["done"] = 2473, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 1294, ["done"] = 720, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 0, ["done"] = 450, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 2753, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 2857, ["done"] = 2026, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 28463, ["done"] = 6151, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Tidal Tempest Crystal"] = { ["players"] = { ["Banananator-Sylvanas"] = { ["taken"] = 0, ["done"] = 243, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Tjago"] = { ["taken"] = 0, ["done"] = 303, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 0, ["done"] = 546, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Molten Inferno Crystal"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 0, ["done"] = 224, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 0, ["done"] = 729, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 0, ["done"] = 606, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 0, ["done"] = 1559, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Caverndeep Ambusher"] = { ["players"] = { ["Varane-Magtheridon"] = { ["taken"] = 429, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 182, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Tjago"] = { ["taken"] = 444, ["done"] = 0, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 1055, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Blindlight Bilefin"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 3276, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 2079, ["done"] = 686, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 655, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 1042, ["done"] = 510, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 1775, ["done"] = 545, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 8827, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 1741, }, ["Master Archer"] = { ["players"] = { ["Tjago"] = { ["taken"] = 1658, ["done"] = 1537, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sebster-ShatteredHand"] = { ["taken"] = 527, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 591, ["done"] = 93, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 2776, ["done"] = 1630, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Razorfen Geomagus"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1082, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 1440, ["done"] = 354, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 124, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 408, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 132, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 3186, ["done"] = 354, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Vile Bat"] = { ["players"] = { ["Tjago"] = { ["taken"] = 2427, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 256, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 151, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 2758, ["done"] = 406, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 5592, ["done"] = 406, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Crystalline Shardling"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 654, ["done"] = 288, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 988, ["done"] = 504, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 212, ["done"] = 1347, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 735, ["done"] = 122, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 612, ["done"] = 152, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 3201, ["done"] = 2413, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Corrupted Healing Totem"] = { ["players"] = { ["Empri-TwistingNether"] = { ["taken"] = 84, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 600, ["hdonespell"] = { ["Corrupted Healing Totem Heal"] = { ["min"] = 0, ["crits"] = 0, ["max"] = 100, ["healing"] = 600, ["overhealing"] = 800, ["hits"] = 14, }, }, ["taken"] = 84, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 0, }, ["Vine Snake"] = { ["players"] = { ["Banananator-Sylvanas"] = { ["taken"] = 486, ["done"] = 0, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Tjago"] = { ["taken"] = 533, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 1019, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Twilight Storm Mender"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1228, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 628, ["done"] = 108, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 705, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 919, ["done"] = 133, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 1506, ["done"] = 417, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 4986, ["htakenspell"] = { ["Corrupted Healing Totem Heal"] = { ["min"] = 100, ["crits"] = 0, ["max"] = 100, ["healing"] = 200, ["overhealing"] = 0, ["hits"] = 2, }, }, ["htaken"] = 200, ["done"] = 658, }, ["Irradiated Horror"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 4437, ["done"] = 230, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 1626, ["done"] = 95, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 732, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 457, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 309, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 7561, ["done"] = 325, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Razorfen Hidecrusher"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1838, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Tjago"] = { ["taken"] = 4718, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 3661, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 1475, ["done"] = 2199, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 11692, ["done"] = 2199, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Scarlet Guardian"] = { ["players"] = { ["Sebster-ShatteredHand"] = { ["taken"] = 94, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Jyggtvå"] = { ["taken"] = 827, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 2791, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 3712, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Obedient Hound"] = { ["players"] = { ["Tjago"] = { ["taken"] = 472, ["done"] = 425, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sebster-ShatteredHand"] = { ["taken"] = 418, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 1696, ["done"] = 396, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 2586, ["done"] = 821, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Riverpaw Basher"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1631, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 1634, ["done"] = 566, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 1790, ["done"] = 281, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 2587, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 837, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 8479, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 847, }, ["Aggem Thorncurse"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 544, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 1130, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Banananator-Sylvanas"] = { ["taken"] = 1623, ["done"] = 3449, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Tjago"] = { ["taken"] = 2033, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 5330, ["done"] = 3449, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Spirit Link Totem"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 0, ["done"] = 1264, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 0, ["done"] = 2893, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 0, ["done"] = 1883, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Banananator-Sylvanas"] = { ["taken"] = 0, ["done"] = 1072, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 0, ["done"] = 2277, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 12020, ["htakenspell"] = { }, ["taken"] = 0, ["done"] = 9389, ["htaken"] = 0, ["hdonespell"] = { ["Spirit Link"] = { ["min"] = 83, ["crits"] = 0, ["max"] = 1760, ["healing"] = 12020, ["overhealing"] = 0, ["hits"] = 21, }, }, }, ["Leprous Technician"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1109, ["done"] = 60, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 1035, ["done"] = 46, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 78, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 3829, ["done"] = 372, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 507, ["done"] = 236, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 6558, ["done"] = 714, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Death Speaker Jargba"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 878, ["done"] = 1388, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 696, ["done"] = 231, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 459, ["done"] = 482, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Banananator-Sylvanas"] = { ["taken"] = 615, ["done"] = 939, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1293, ["done"] = 481, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { ["Spirit Link"] = { ["min"] = 679, ["crits"] = 0, ["max"] = 679, ["healing"] = 679, ["overhealing"] = 0, ["hits"] = 1, }, }, ["taken"] = 3941, ["done"] = 3521, ["htaken"] = 679, ["hdonespell"] = { }, }, ["Caverndeep Burrower"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1499, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2569, ["done"] = 172, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 577, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 2859, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 341, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 7845, ["done"] = 172, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Thruk"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 3106, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 1824, ["done"] = 549, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 3156, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 2557, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 1503, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 12146, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 549, }, ["Mechanized Sentry"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 3236, ["done"] = 242, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5982, ["done"] = 2083, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 2966, ["done"] = 204, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 10327, ["done"] = 47, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 1406, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 23917, ["done"] = 2576, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Riverpaw Poacher"] = { ["players"] = { ["Void Tendril"] = { ["taken"] = 278, ["done"] = 0, ["role"] = "NONE", }, ["Jyggtvå"] = { ["taken"] = 1865, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 4010, ["done"] = 1049, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 1981, ["done"] = 163, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 4093, ["done"] = 63, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 2457, ["done"] = 769, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 14684, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 2044, }, ["Aku'mai the Venomous"] = { ["players"] = { ["Varane-Magtheridon"] = { ["taken"] = 318, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 1356, ["done"] = 535, ["class"] = "DRUID", ["role"] = "TANK", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 1674, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 535, }, ["Hogger"] = { ["players"] = { ["Void Tendril"] = { ["taken"] = 748, ["done"] = 0, ["role"] = "NONE", }, ["Jyggtvå"] = { ["taken"] = 3229, ["done"] = 174, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 3599, ["done"] = 1571, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 2543, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 2144, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 649, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 12912, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 1745, }, ["Hunter Bonetusk"] = { ["players"] = { ["Tjago"] = { ["taken"] = 11700, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 3813, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 3579, ["done"] = 635, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 4533, ["done"] = 1297, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 23625, ["done"] = 1932, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Sergeant Verdone"] = { ["players"] = { ["Weaboojones-TwistingNether"] = { ["taken"] = 1890, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 1890, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Starving Hound"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 640, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5342, ["done"] = 1396, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sebster-ShatteredHand"] = { ["taken"] = 3599, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 5790, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 15371, ["done"] = 1396, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Razorfen Kraulshaper"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1893, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 3033, ["done"] = 470, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 211, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Banananator-Sylvanas"] = { ["taken"] = 2510, ["done"] = 693, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 417, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 8064, ["done"] = 1163, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Flameweaver Koegler"] = { ["players"] = { ["Sebster-ShatteredHand"] = { ["taken"] = 7805, ["done"] = 666, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 8683, ["done"] = 667, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Summerwalker"] = { ["taken"] = 0, ["done"] = 690, ["role"] = "HEALER", ["class"] = "MONK", }, ["Jyggtvå"] = { ["taken"] = 3919, ["done"] = 667, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5934, ["done"] = 3590, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 26341, ["done"] = 6280, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Cave Bat"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 5695, ["done"] = 863, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 3717, ["done"] = 786, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 0, ["done"] = 443, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Banananator-Sylvanas"] = { ["taken"] = 3730, ["done"] = 2048, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 2767, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 15909, ["done"] = 4140, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Kraulshaper Tukaar"] = { ["players"] = { ["Tjago"] = { ["taken"] = 5088, ["done"] = 400, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 3146, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 1200, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 2521, ["done"] = 0, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 11955, ["done"] = 400, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Walking Bomb"] = { ["players"] = { ["Varane-Magtheridon"] = { ["taken"] = 0, ["done"] = 463, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 0, ["done"] = 463, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Tinkerer Gizlock"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 3071, ["done"] = 1068, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 4495, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 2351, ["done"] = 835, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Qaliti-TwistingNether"] = { ["taken"] = 4989, ["done"] = 2188, ["role"] = "TANK", ["class"] = "DRUID", }, ["Stormrise-TwistingNether"] = { ["taken"] = 687, ["done"] = 0, ["role"] = "HEALER", ["class"] = "SHAMAN", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 15593, ["done"] = 4091, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Roogug"] = { ["players"] = { ["Tjago"] = { ["taken"] = 8730, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 3185, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 2096, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 4894, ["done"] = 5540, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 18905, ["done"] = 5540, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Razorfen Huntmaster"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 8310, ["done"] = 588, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 6540, ["done"] = 6146, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 783, ["done"] = 1741, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 10922, ["done"] = 1304, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 4365, ["done"] = 334, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 30920, ["done"] = 10113, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Petty Criminal"] = { ["players"] = { ["Darkaya-ChamberofAspects"] = { ["taken"] = 303, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 1215, ["done"] = 120, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 1994, ["done"] = 176, ["class"] = "PRIEST", ["role"] = "HEALER", }, ["Tjago"] = { ["taken"] = 2055, ["done"] = 324, ["class"] = "DRUID", ["role"] = "TANK", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 5567, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 620, }, ["Aku'mai the Devourer"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1812, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 2311, ["done"] = 534, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 4196, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 3042, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 2750, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 14111, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 534, }, ["Blood-Branded Razorfen"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 6007, ["done"] = 533, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2581, ["done"] = 277, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 85, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Banananator-Sylvanas"] = { ["taken"] = 2276, ["done"] = 1689, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1001, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 11950, ["done"] = 2499, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Twilight Aquamancer"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1265, ["done"] = 309, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 817, ["done"] = 346, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 864, ["done"] = 157, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 2453, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 1891, ["done"] = 639, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 7290, ["htakenspell"] = { ["Corrupted Healing Totem Heal"] = { ["min"] = 100, ["crits"] = 0, ["max"] = 100, ["healing"] = 200, ["overhealing"] = 0, ["hits"] = 2, }, }, ["htaken"] = 200, ["done"] = 1451, }, ["Scarlet Zealot"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 4004, ["done"] = 1917, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Banananator-Sylvanas"] = { ["taken"] = 6477, ["done"] = 1383, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Jyggtvå"] = { ["taken"] = 13954, ["done"] = 2781, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 14546, ["done"] = 1104, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 3438, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 195, ["done"] = 606, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 1723, ["done"] = 2063, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 178, ["done"] = 815, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 7729, ["htakenspell"] = { ["Heal"] = { ["min"] = 637, ["crits"] = 0, ["max"] = 637, ["healing"] = 1274, ["overhealing"] = 0, ["hits"] = 2, }, }, ["taken"] = 44515, ["done"] = 10669, ["htaken"] = 1274, ["hdonespell"] = { ["Heal"] = { ["min"] = 636, ["crits"] = 0, ["max"] = 680, ["healing"] = 7729, ["overhealing"] = 0, ["hits"] = 12, }, }, }, ["Blindlight Murloc"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1329, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 2443, ["done"] = 95, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 359, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 2222, ["done"] = 101, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 2465, ["done"] = 589, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 8818, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 785, }, ["Kraulshaped Monstrosity"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 3327, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 2004, ["done"] = 1388, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 366, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 4973, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1883, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 12553, ["done"] = 1388, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Celebras the Cursed"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1159, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 2771, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Qaliti-TwistingNether"] = { ["taken"] = 8250, ["done"] = 2614, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 4607, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 16787, ["done"] = 2614, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Mekgineer Thermaplugg"] = { ["players"] = { ["Void Tendril"] = { ["taken"] = 1638, ["done"] = 0, ["role"] = "NONE", }, ["Tjago"] = { ["taken"] = 2634, ["done"] = 2031, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 3548, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 2861, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 2878, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 13559, ["done"] = 2031, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Pahboo-Ra"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 910, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 910, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 0, }, ["Mechano-Tank"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1335, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 339, ["done"] = 0, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 535, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 564, ["done"] = 39, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 248, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 3021, ["done"] = 39, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Scarlet Scholar"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1375, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2599, ["done"] = 122, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sebster-ShatteredHand"] = { ["taken"] = 133, ["done"] = 177, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 1599, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 5706, ["done"] = 299, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Mechanized Guardian"] = { ["players"] = { ["Void Tendril"] = { ["taken"] = 929, ["done"] = 0, ["role"] = "NONE", }, ["Jyggtvå"] = { ["taken"] = 1027, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 1056, ["done"] = 0, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 582, ["done"] = 678, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 609, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 1055, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 5258, ["done"] = 678, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Scarlet Treasurer"] = { ["players"] = { ["Weaboojones-TwistingNether"] = { ["taken"] = 2218, ["done"] = 811, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Sebster-ShatteredHand"] = { ["taken"] = 275, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Jyggtvå"] = { ["taken"] = 1996, ["done"] = 811, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 3996, ["done"] = 385, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 8485, ["done"] = 2007, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Domina"] = { ["players"] = { ["Darkaya-ChamberofAspects"] = { ["taken"] = 1046, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 1636, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Jyggtvå"] = { ["taken"] = 970, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 1320, ["done"] = 0, ["class"] = "DRUID", ["role"] = "TANK", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 4972, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 0, }, ["Lord Vyletongue"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 4300, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2935, ["done"] = 1197, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Stormrise-TwistingNether"] = { ["taken"] = 0, ["done"] = 1359, ["role"] = "HEALER", ["class"] = "SHAMAN", }, ["Qaliti-TwistingNether"] = { ["taken"] = 4226, ["done"] = 2178, ["role"] = "TANK", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 3577, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 15038, ["done"] = 4734, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Electrocutioner 6000"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1621, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 1356, ["done"] = 1386, ["role"] = "TANK", ["class"] = "DRUID", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 1270, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "PRIEST", }, ["Varane-Magtheridon"] = { ["taken"] = 2182, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARRIOR", }, ["Empri-TwistingNether"] = { ["taken"] = 1772, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 8201, ["done"] = 1386, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Armsmaster Harlan"] = { ["players"] = { ["Tjago"] = { ["taken"] = 2560, ["done"] = 597, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sebster-ShatteredHand"] = { ["taken"] = 3110, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 4020, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 9690, ["done"] = 597, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Deeprot Tangler"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2417, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 6356, ["done"] = 471, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Stormrise-TwistingNether"] = { ["taken"] = 0, ["done"] = 64, ["role"] = "HEALER", ["class"] = "SHAMAN", }, ["Qaliti-TwistingNether"] = { ["taken"] = 9507, ["done"] = 4568, ["role"] = "TANK", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 744, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 19024, ["done"] = 5103, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Commander Durand"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 1725, ["done"] = 318, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 1019, ["done"] = 1469, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Jyggtvå"] = { ["taken"] = 8408, ["done"] = 2170, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 11535, ["done"] = 3332, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 510, ["done"] = 1201, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 1689, ["done"] = 1193, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 3137, ["done"] = 2529, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 6384, ["done"] = 4525, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 13848, ["htakenspell"] = { ["Scarlet Resurrection"] = { ["min"] = 7097, ["crits"] = 0, ["max"] = 7097, ["healing"] = 14194, ["overhealing"] = 4734, ["hits"] = 2, }, }, ["taken"] = 34407, ["done"] = 16737, ["htaken"] = 14194, ["hdonespell"] = { ["Furious Resolve"] = { ["min"] = 6750, ["crits"] = 0, ["max"] = 7098, ["healing"] = 13848, ["overhealing"] = 348, ["hits"] = 2, }, }, }, ["Twilight Shadowmage"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1179, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 1374, ["done"] = 297, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 144, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 864, ["done"] = 321, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 149, ["done"] = 234, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 3710, ["htakenspell"] = { ["Corrupted Healing Totem Heal"] = { ["min"] = 0, ["crits"] = 0, ["max"] = 0, ["healing"] = 0, ["overhealing"] = 200, ["hits"] = 2, }, }, ["htaken"] = 0, ["done"] = 852, }, ["Riverpaw Looter"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1597, ["done"] = 0, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 4103, ["done"] = 875, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 2311, ["done"] = 493, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 4037, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 2892, ["done"] = 406, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 14940, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 1774, }, ["Corruptor"] = { ["players"] = { ["Qaliti-TwistingNether"] = { ["taken"] = 7900, ["done"] = 1504, ["role"] = "TANK", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 279, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 3209, ["done"] = 256, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 11388, ["done"] = 1760, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Shifty Thief"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2473, ["done"] = 168, ["class"] = "HUNTER", ["role"] = "DAMAGER", }, ["Tjago"] = { ["taken"] = 1741, ["done"] = 1094, ["class"] = "DRUID", ["role"] = "TANK", }, ["Darkaya-ChamberofAspects"] = { ["taken"] = 1557, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "DAMAGER", }, ["Varane-Magtheridon"] = { ["taken"] = 1294, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 695, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 7760, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 1262, }, ["Deeprot Stomper"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 3888, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 6572, ["done"] = 426, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Stormrise-TwistingNether"] = { ["taken"] = 0, ["done"] = 1154, ["role"] = "HEALER", ["class"] = "SHAMAN", }, ["Qaliti-TwistingNether"] = { ["taken"] = 5461, ["done"] = 3708, ["role"] = "TANK", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1489, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 17410, ["done"] = 5288, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Twilight Shadow"] = { ["players"] = { ["Varane-Magtheridon"] = { ["taken"] = 130, ["done"] = 0, ["class"] = "WARRIOR", ["role"] = "DAMAGER", }, ["Empri-TwistingNether"] = { ["taken"] = 963, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, ["Tjago"] = { ["taken"] = 384, ["done"] = 179, ["class"] = "DRUID", ["role"] = "TANK", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 1477, ["htakenspell"] = { ["Corrupted Healing Totem Heal"] = { ["min"] = 0, ["crits"] = 0, ["max"] = 0, ["healing"] = 0, ["overhealing"] = 400, ["hits"] = 4, }, }, ["htaken"] = 0, ["done"] = 179, }, ["High Inquisitor Whitemane"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 2139, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 1767, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Jyggtvå"] = { ["taken"] = 13386, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 12040, ["done"] = 771, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 1022, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 510, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 3396, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 3040, ["done"] = 1550, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 14194, ["htakenspell"] = { ["Furious Resolve"] = { ["min"] = 6750, ["crits"] = 0, ["max"] = 7098, ["healing"] = 13848, ["overhealing"] = 348, ["hits"] = 2, }, }, ["taken"] = 37300, ["done"] = 2321, ["htaken"] = 13848, ["hdonespell"] = { ["Scarlet Resurrection"] = { ["min"] = 7097, ["crits"] = 0, ["max"] = 7097, ["healing"] = 14194, ["overhealing"] = 4734, ["hits"] = 2, }, }, }, ["Thalnos the Soulrender"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 3088, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Jyggtvå"] = { ["taken"] = 8220, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 9414, ["done"] = 707, ["role"] = "TANK", ["class"] = "DRUID", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 1385, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 718, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 2884, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 2734, ["done"] = 787, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 28443, ["done"] = 1494, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Pile of Corpses"] = { ["players"] = { ["Demonroids-TheMaelstrom"] = { ["taken"] = 310, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Gwah-Drak'thul"] = { ["taken"] = 169, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 830, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 3460, ["done"] = 0, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 4769, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Razorfen Thornbolt"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 419, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Banananator-Sylvanas"] = { ["taken"] = 2414, ["done"] = 922, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Jyggtvå"] = { ["taken"] = 978, ["done"] = 323, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 764, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 4575, ["done"] = 1245, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Commander Lindon"] = { ["players"] = { ["Weaboojones-TwistingNether"] = { ["taken"] = 1802, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Sebster-ShatteredHand"] = { ["taken"] = 2139, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Tjago"] = { ["taken"] = 1373, ["done"] = 480, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 5314, ["done"] = 480, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Blindlight Razorjaw"] = { ["players"] = { ["Empri-TwistingNether"] = { ["taken"] = 72, ["done"] = 0, ["class"] = "PRIEST", ["role"] = "HEALER", }, }, ["hdone"] = 0, ["hdonespell"] = { }, ["taken"] = 72, ["htakenspell"] = { }, ["htaken"] = 0, ["done"] = 0, }, }, ["mobtaken"] = 1703140, ["healing"] = 433637, ["mobdone"] = 395356, ["power"] = { 8780, -- [1] 4698, -- [2] 413, -- [3] [0] = 5227, [13] = 34, [12] = 54, [14] = 0, [7] = 16, }, ["overhealing"] = 304655.670505524, ["damagetaken"] = 405857, ["name"] = "Total", ["starttime"] = 1447787200, ["shielding"] = 53588, ["mobhdone"] = 63974, ["last_action"] = 1447787200, ["multistrikes"] = 406, }, ["sets"] = { { ["healingabsorbed"] = 0, ["dispells"] = 0, ["ccbreaks"] = 0, ["time"] = 119, ["interrupts"] = 1, ["endtime"] = 1447793962, ["gotboss"] = true, ["damage"] = 92035, ["players"] = { { ["last"] = 1447793962, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Commander Durand"] = 1689, ["High Inquisitor Whitemane"] = 550, }, ["auras"] = { ["Nature's Swiftness"] = { ["name"] = "Nature's Swiftness", ["active"] = 0, ["id"] = 132158, ["auratype"] = "BUFF", ["uptime"] = 1, }, ["Regrowth"] = { ["name"] = "Regrowth", ["active"] = 2, ["id"] = 8936, ["auratype"] = "BUFF", ["uptime"] = 89, }, ["Rejuvenation"] = { ["name"] = "Rejuvenation", ["active"] = 4, ["id"] = 774, ["auratype"] = "BUFF", ["uptime"] = 55, }, ["Moonfire"] = { ["name"] = "Moonfire", ["active"] = 0, ["id"] = 164812, ["auratype"] = "DEBUFF", ["uptime"] = 42, }, ["Living Seed"] = { ["name"] = "Living Seed", ["active"] = 2, ["id"] = 48504, ["auratype"] = "BUFF", ["uptime"] = 64, }, }, ["role"] = "HEALER", ["time"] = 119, ["interrupts"] = 0, ["damage"] = 2239, ["damagespells"] = { ["Moonfire"] = { ["min"] = 2, ["ABSORB"] = 1, ["critical"] = 3, ["hit"] = 31, ["totalhits"] = 35, ["id"] = 164812, ["max"] = 80, ["damage"] = 1503, }, ["Wrath"] = { ["min"] = 215, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 5176, ["max"] = 264, ["damage"] = 736, }, }, ["power"] = { }, ["damagetaken"] = 2225, ["shielding"] = 0, ["id"] = "Player-3687-06FC3B80", ["first"] = 1447793843, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Purifying Flames"] = { ["crushing"] = 0, ["id"] = 110968, ["min"] = 385, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Purifying Flames", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 385, ["damage"] = 385, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 198, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 201, ["damage"] = 399, }, ["Flamestrike"] = { ["crushing"] = 0, ["id"] = 110963, ["min"] = 30, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamestrike", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 158, ["damage"] = 248, }, ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 287, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 301, ["damage"] = 876, }, ["Dashing Strike"] = { ["crushing"] = 0, ["id"] = 115739, ["min"] = 317, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Dashing Strike", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 317, ["damage"] = 317, }, }, ["overhealing"] = 5887, ["healingspells"] = { ["Healing Touch"] = { ["shielding"] = 0, ["id"] = 5185, ["healing"] = 1233, ["min"] = 1233, ["multistrike"] = 0, ["name"] = "Healing Touch", ["max"] = 1233, ["critical"] = 1, ["absorbed"] = 0, ["overhealing"] = 421, ["hits"] = 1, }, ["Swiftmend"] = { ["shielding"] = 0, ["id"] = 18562, ["healing"] = 1608, ["min"] = 536, ["multistrike"] = 0, ["name"] = "Swiftmend", ["max"] = 536, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 3, }, ["Regrowth"] = { ["shielding"] = 0, ["id"] = 8936, ["healing"] = 7886, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Regrowth", ["max"] = 723, ["critical"] = 18, ["absorbed"] = 0, ["overhealing"] = 2285, ["hits"] = 86, }, ["Rejuvenation"] = { ["shielding"] = 0, ["id"] = 774, ["healing"] = 4749, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Rejuvenation", ["max"] = 168, ["critical"] = 6, ["absorbed"] = 0, ["overhealing"] = 2134, ["hits"] = 85, }, ["Living Seed"] = { ["shielding"] = 0, ["id"] = 48503, ["healing"] = 3030, ["min"] = 45, ["multistrike"] = 0, ["name"] = "Living Seed", ["max"] = 775, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 1047, ["hits"] = 8, }, }, ["name"] = "Drpolarbear", ["healing"] = 18506, ["healed"] = { ["Player-1096-07091437"] = { ["role"] = "DAMAGER", ["name"] = "Sathorin-TheVentureCo", ["amount"] = 881, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 12779, ["class"] = "WARRIOR", ["shielding"] = 0, }, ["Player-3687-06FC3B80"] = { ["role"] = "HEALER", ["name"] = "Drpolarbear-Sylvanas", ["amount"] = 1996, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 1266, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 1584, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 3575, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [1] { ["last"] = 1447793961, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Scarlet Fanatic"] = 1928, ["High Inquisitor Whitemane"] = 6891, ["Scarlet Zealot"] = 5434, ["Scarlet Purifier"] = 6380, ["Commander Durand"] = 4242, }, ["auras"] = { }, ["role"] = "DAMAGER", ["time"] = 117, ["interrupts"] = 0, ["damage"] = 24875, ["damagespells"] = { ["Steady Shot"] = { ["min"] = 113, ["critical"] = 6, ["hit"] = 7, ["totalhits"] = 13, ["id"] = 56641, ["max"] = 281, ["damage"] = 2436, }, ["Kill Shot"] = { ["min"] = 1042, ["hit"] = 2, ["totalhits"] = 2, ["id"] = 53351, ["max"] = 1168, ["damage"] = 2210, }, ["Aimed Shot"] = { ["min"] = 670, ["critical"] = 7, ["hit"] = 6, ["totalhits"] = 13, ["id"] = 19434, ["max"] = 1697, ["damage"] = 14963, }, ["Multi-Shot"] = { ["min"] = 76, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 2643, ["max"] = 106, ["damage"] = 260, }, ["Auto Shot"] = { ["min"] = 134, ["critical"] = 6, ["hit"] = 20, ["totalhits"] = 26, ["id"] = 75, ["max"] = 412, ["damage"] = 5006, }, }, ["power"] = { [2] = { ["amount"] = 196, ["spells"] = { [77443] = 196, }, }, }, ["damagetaken"] = 2320, ["shielding"] = 0, ["id"] = "Player-1403-06025D5B", ["first"] = 1447793844, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 258, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 7, ["resisted"] = 0, ["max"] = 279, ["damage"] = 1903, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 195, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 222, ["damage"] = 417, }, }, ["overhealing"] = 1840, ["healingspells"] = { ["Kill Shot"] = { ["shielding"] = 0, ["id"] = 164851, ["healing"] = 87, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Kill Shot", ["max"] = 87, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 1527, ["hits"] = 2, }, ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 122, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 108, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 313, ["hits"] = 4, }, }, ["name"] = "Jyggtvå", ["healing"] = 209, ["healed"] = { ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 209, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["maxhp"] = 5382, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [2] { ["last"] = 1447793961, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Scarlet Fanatic"] = 4426, ["High Inquisitor Whitemane"] = 7180, ["Scarlet Zealot"] = 2103, ["Scarlet Purifier"] = 14399, ["Commander Durand"] = 5289, }, ["auras"] = { ["Predatory Swiftness"] = { ["name"] = "Predatory Swiftness", ["active"] = 1, ["id"] = 69369, ["auratype"] = "BUFF", ["uptime"] = 73, }, ["Rake"] = { ["name"] = "Rake", ["active"] = 0, ["id"] = 163505, ["auratype"] = "DEBUFF", ["uptime"] = 32, }, ["Rip"] = { ["name"] = "Rip", ["active"] = 0, ["id"] = 1079, ["auratype"] = "DEBUFF", ["uptime"] = 17, }, ["Displacer Beast"] = { ["name"] = "Displacer Beast", ["active"] = 0, ["id"] = 137452, ["auratype"] = "BUFF", ["uptime"] = 4, }, ["Savage Roar"] = { ["name"] = "Savage Roar", ["active"] = 1, ["id"] = 52610, ["auratype"] = "BUFF", ["uptime"] = 108, }, }, ["role"] = "DAMAGER", ["time"] = 116, ["interrupts"] = 0, ["damage"] = 33397, ["damagespells"] = { ["Rake"] = { ["min"] = 151, ["critical"] = 1, ["hit"] = 13, ["totalhits"] = 14, ["id"] = 1822, ["max"] = 309, ["damage"] = 2276, }, ["Rip"] = { ["min"] = 159, ["critical"] = 1, ["hit"] = 7, ["totalhits"] = 8, ["id"] = 1079, ["max"] = 326, ["damage"] = 1444, }, ["Ferocious Bite"] = { ["min"] = 882, ["critical"] = 1, ["hit"] = 2, ["totalhits"] = 3, ["id"] = 22568, ["max"] = 1207, ["damage"] = 3030, }, ["Shred"] = { ["min"] = 260, ["critical"] = 6, ["hit"] = 11, ["totalhits"] = 17, ["id"] = 5221, ["max"] = 1208, ["damage"] = 9375, }, ["Swipe"] = { ["min"] = 200, ["critical"] = 3, ["hit"] = 9, ["totalhits"] = 12, ["id"] = 106785, ["max"] = 477, ["damage"] = 3656, }, ["Attack"] = { ["min"] = 128, ["critical"] = 17, ["hit"] = 60, ["totalhits"] = 77, ["id"] = 6603, ["max"] = 373, ["damage"] = 13616, }, }, ["power"] = { [3] = { ["amount"] = -34, ["spells"] = { [22568] = -34, }, }, }, ["damagetaken"] = 3465, ["shielding"] = 0, ["id"] = "Player-1403-06025CCB", ["first"] = 1447793845, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Purifying Flames"] = { ["crushing"] = 0, ["id"] = 110968, ["min"] = 307, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Purifying Flames", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 77, ["max"] = 307, ["damage"] = 307, }, ["Fanatical Strike"] = { ["crushing"] = 0, ["id"] = 110956, ["min"] = 480, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fanatical Strike", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 609, ["damage"] = 1089, }, ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 280, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 280, ["damage"] = 280, }, ["Flamestrike"] = { ["crushing"] = 0, ["id"] = 110963, ["min"] = 30, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamestrike", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 32, ["max"] = 128, ["damage"] = 218, }, ["Dashing Strike"] = { ["crushing"] = 0, ["id"] = 115739, ["min"] = 304, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Dashing Strike", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 327, ["damage"] = 942, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 275, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 354, ["damage"] = 629, }, }, ["overhealing"] = 577, ["healingspells"] = { ["Ysera's Gift"] = { ["shielding"] = 0, ["id"] = 145109, ["healing"] = 4207, ["min"] = 15, ["multistrike"] = 0, ["name"] = "Ysera's Gift", ["max"] = 208, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 577, ["hits"] = 23, }, }, ["name"] = "Tjago", ["healing"] = 4207, ["healed"] = { ["Player-1096-07091437"] = { ["role"] = "DAMAGER", ["name"] = "Sathorin-TheVentureCo", ["amount"] = 506, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 1663, ["class"] = "WARRIOR", ["shielding"] = 0, }, ["Player-3687-06FC3B80"] = { ["role"] = "HEALER", ["name"] = "Drpolarbear-Sylvanas", ["amount"] = 15, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 208, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 1815, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 5200, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [3] { ["last"] = 1447793961, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Scarlet Fanatic"] = 1013, ["High Inquisitor Whitemane"] = 1767, ["Scarlet Zealot"] = 55, ["Scarlet Purifier"] = 2918, ["Commander Durand"] = 1019, }, ["auras"] = { ["Dazed"] = { ["name"] = "Dazed", ["active"] = 0, ["id"] = 15571, ["auratype"] = "DEBUFF", ["uptime"] = 18, }, }, ["role"] = "DAMAGER", ["time"] = 116, ["interrupts"] = 1, ["damage"] = 6772, ["damagespells"] = { ["Steady Shot"] = { ["min"] = 88, ["hit"] = 2, ["totalhits"] = 2, ["id"] = 56641, ["max"] = 98, ["damage"] = 186, }, ["Counter Shot"] = { ["id"] = 147362, ["totalhits"] = 1, ["IMMUNE"] = 1, ["max"] = 0, ["damage"] = 0, }, ["Auto Shot"] = { ["min"] = 101, ["critical"] = 3, ["hit"] = 25, ["totalhits"] = 28, ["id"] = 75, ["max"] = 231, ["damage"] = 3562, }, ["Multi-Shot"] = { ["min"] = 55, ["critical"] = 1, ["hit"] = 10, ["totalhits"] = 11, ["id"] = 2643, ["max"] = 117, ["damage"] = 812, }, ["Arcane Shot"] = { ["min"] = 180, ["hit"] = 11, ["totalhits"] = 11, ["id"] = 3044, ["max"] = 217, ["damage"] = 2212, }, }, ["power"] = { [2] = { ["amount"] = 28, ["spells"] = { [77443] = 28, }, }, }, ["damagetaken"] = 1869, ["shielding"] = 0, ["id"] = "Player-1096-07091437", ["first"] = 1447793845, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Dashing Strike"] = { ["crushing"] = 0, ["id"] = 115739, ["min"] = 316, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Dashing Strike", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 316, ["damage"] = 316, }, ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 277, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 298, ["damage"] = 1153, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 199, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 201, ["damage"] = 400, }, }, ["overhealing"] = 75, ["healingspells"] = { ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 73, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 73, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 75, ["hits"] = 2, }, }, ["name"] = "Sathorin", ["healing"] = 73, ["healed"] = { ["Player-1096-07091437"] = { ["role"] = "DAMAGER", ["name"] = "Sathorin-TheVentureCo", ["amount"] = 73, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["maxhp"] = 3648, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [4] { ["last"] = 1447793962, ["healingabsorbed"] = 0, ["class"] = "WARRIOR", ["damaged"] = { ["Scarlet Fanatic"] = 5286, ["High Inquisitor Whitemane"] = 3040, ["Scarlet Zealot"] = 1592, ["Commander Durand"] = 6384, ["Scarlet Purifier"] = 5037, ["Scarlet Judicator"] = 3413, }, ["auras"] = { ["Taunt"] = { ["name"] = "Taunt", ["active"] = 0, ["id"] = 355, ["auratype"] = "DEBUFF", ["uptime"] = 6, }, ["Charge"] = { ["name"] = "Charge", ["active"] = 0, ["id"] = 109128, ["auratype"] = "BUFF", ["uptime"] = 24, }, ["Victorious"] = { ["name"] = "Victorious", ["active"] = 1, ["id"] = 32216, ["auratype"] = "BUFF", ["uptime"] = 2, }, ["Thunder Clap"] = { ["name"] = "Thunder Clap", ["active"] = 0, ["id"] = 6343, ["auratype"] = "DEBUFF", ["uptime"] = 40, }, ["Shield Block"] = { ["name"] = "Shield Block", ["active"] = 0, ["id"] = 132404, ["auratype"] = "BUFF", ["uptime"] = 54, }, ["Deep Wounds"] = { ["name"] = "Deep Wounds", ["active"] = 0, ["id"] = 115767, ["auratype"] = "DEBUFF", ["uptime"] = 98, }, ["Victory Rush"] = { ["name"] = "Victory Rush", ["active"] = 0, ["id"] = 118779, ["auratype"] = "BUFF", ["uptime"] = 6, }, ["Berserking"] = { ["name"] = "Berserking", ["active"] = 0, ["id"] = 26297, ["auratype"] = "BUFF", ["uptime"] = 11, }, ["Sword and Board"] = { ["name"] = "Sword and Board", ["active"] = 0, ["id"] = 50227, ["auratype"] = "BUFF", ["uptime"] = 6, }, }, ["role"] = "TANK", ["time"] = 115, ["interrupts"] = 0, ["damage"] = 24752, ["damagespells"] = { ["Shield Slam"] = { ["min"] = 58, ["hit"] = 12, ["totalhits"] = 12, ["id"] = 23922, ["max"] = 76, ["damage"] = 754, }, ["Charge"] = { ["id"] = 105771, ["totalhits"] = 3, ["IMMUNE"] = 3, ["max"] = 0, ["damage"] = 0, }, ["Execute"] = { ["min"] = 582, ["critical"] = 1, ["hit"] = 1, ["totalhits"] = 2, ["id"] = 5308, ["max"] = 1133, ["damage"] = 1715, }, ["Thunder Clap"] = { ["min"] = 122, ["critical"] = 1, ["hit"] = 11, ["totalhits"] = 12, ["id"] = 6343, ["max"] = 319, ["damage"] = 1819, }, ["Revenge"] = { ["min"] = 105, ["critical"] = 2, ["hit"] = 17, ["totalhits"] = 19, ["id"] = 6572, ["max"] = 838, ["damage"] = 7506, }, ["Deep Wounds"] = { ["min"] = 46, ["critical"] = 5, ["hit"] = 49, ["totalhits"] = 54, ["id"] = 115767, ["max"] = 253, ["damage"] = 7370, }, ["Victory Rush"] = { ["min"] = 210, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 34428, ["max"] = 210, ["damage"] = 210, }, ["Devastate"] = { ["min"] = 204, ["hit"] = 8, ["totalhits"] = 8, ["id"] = 20243, ["max"] = 269, ["damage"] = 1742, }, ["Heroic Throw"] = { ["min"] = 43, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 57755, ["max"] = 43, ["damage"] = 43, }, ["Attack"] = { ["min"] = 83, ["critical"] = 4, ["hit"] = 32, ["totalhits"] = 36, ["id"] = 6603, ["max"] = 218, ["damage"] = 3593, }, }, ["power"] = { { ["amount"] = 595, ["spells"] = { [109128] = 80, [23922] = 255, [6572] = 260, }, }, -- [1] }, ["damagetaken"] = 16224, ["shielding"] = 0, ["id"] = "Player-3687-06FC3B49", ["first"] = 1447793847, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Holy Smite"] = { ["crushing"] = 0, ["id"] = 114848, ["min"] = 415, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Holy Smite", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 429, ["damage"] = 1264, }, ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 193, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 199, ["damage"] = 589, }, ["Dashing Strike"] = { ["crushing"] = 0, ["id"] = 115739, ["min"] = 230, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Dashing Strike", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 240, ["damage"] = 470, }, ["Pass Judgment"] = { ["crushing"] = 0, ["id"] = 111107, ["min"] = 43, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Pass Judgment", ["blocked"] = 19, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 43, ["damage"] = 43, }, ["Hands of Purity"] = { ["crushing"] = 0, ["id"] = 110953, ["min"] = 24, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Hands of Purity", ["blocked"] = 0, ["totalhits"] = 10, ["resisted"] = 0, ["max"] = 24, ["damage"] = 240, }, ["Fanatical Strike"] = { ["crushing"] = 0, ["id"] = 110956, ["min"] = 329, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fanatical Strike", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 484, ["damage"] = 1262, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 157, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 185, ["damage"] = 686, }, ["Flamestrike"] = { ["crushing"] = 0, ["id"] = 110963, ["min"] = 24, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flamestrike", ["blocked"] = 0, ["totalhits"] = 6, ["resisted"] = 0, ["max"] = 128, ["damage"] = 529, }, ["Purifying Flames"] = { ["crushing"] = 0, ["id"] = 110968, ["min"] = 317, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Purifying Flames", ["blocked"] = 0, ["totalhits"] = 11, ["resisted"] = 0, ["max"] = 371, ["damage"] = 3741, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 39, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 1316, ["totalhits"] = 40, ["resisted"] = 0, ["max"] = 411, ["damage"] = 7400, }, }, ["overhealing"] = 153, ["healingspells"] = { ["Victory Rush"] = { ["shielding"] = 0, ["id"] = 118779, ["healing"] = 473, ["min"] = 473, ["multistrike"] = 0, ["name"] = "Victory Rush", ["max"] = 473, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 153, ["hits"] = 1, }, }, ["name"] = "Banananator", ["healing"] = 473, ["healed"] = { ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 473, ["class"] = "WARRIOR", ["shielding"] = 0, }, }, ["maxhp"] = 4175, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [5] }, ["deaths"] = 0, ["mobs"] = { ["Scarlet Fanatic"] = { ["players"] = { ["Banananator-Sylvanas"] = { ["taken"] = 5286, ["done"] = 4182, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Jyggtvå"] = { ["taken"] = 1928, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 1013, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 4426, ["done"] = 1718, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { ["Heal"] = { ["min"] = 637, ["crits"] = 0, ["max"] = 637, ["healing"] = 637, ["overhealing"] = 0, ["hits"] = 1, }, }, ["taken"] = 12653, ["done"] = 5900, ["htaken"] = 637, ["hdonespell"] = { }, }, ["High Inquisitor Whitemane"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 6891, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 3040, ["done"] = 1550, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 510, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 1767, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 6920, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 7097, ["htakenspell"] = { ["Furious Resolve"] = { ["min"] = 7098, ["crits"] = 0, ["max"] = 7098, ["healing"] = 7098, ["overhealing"] = 0, ["hits"] = 1, }, }, ["taken"] = 19128, ["done"] = 1550, ["htaken"] = 7098, ["hdonespell"] = { ["Scarlet Resurrection"] = { ["min"] = 7097, ["crits"] = 0, ["max"] = 7097, ["healing"] = 7097, ["overhealing"] = 2367, ["hits"] = 1, }, }, }, ["Spirit of Redemption"] = { ["players"] = { }, ["hdone"] = 1844, ["htakenspell"] = { }, ["taken"] = 0, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { ["Heal"] = { ["min"] = 922, ["crits"] = 0, ["max"] = 922, ["healing"] = 1844, ["overhealing"] = 0, ["hits"] = 2, }, }, }, ["Scarlet Zealot"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 5434, ["done"] = 417, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 1592, ["done"] = 686, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 0, ["done"] = 399, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 2103, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 55, ["done"] = 400, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 1317, ["htakenspell"] = { }, ["taken"] = 9184, ["done"] = 1902, ["htaken"] = 0, ["hdonespell"] = { ["Heal"] = { ["min"] = 637, ["crits"] = 0, ["max"] = 680, ["healing"] = 1317, ["overhealing"] = 0, ["hits"] = 2, }, }, }, ["Commander Durand"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 4242, ["done"] = 1903, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 6384, ["done"] = 4525, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 1689, ["done"] = 1193, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 5289, ["done"] = 1222, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 1019, ["done"] = 1469, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 7098, ["htakenspell"] = { ["Scarlet Resurrection"] = { ["min"] = 7097, ["crits"] = 0, ["max"] = 7097, ["healing"] = 7097, ["overhealing"] = 2367, ["hits"] = 1, }, }, ["taken"] = 18623, ["done"] = 10312, ["htaken"] = 7097, ["hdonespell"] = { ["Furious Resolve"] = { ["min"] = 7098, ["crits"] = 0, ["max"] = 7098, ["healing"] = 7098, ["overhealing"] = 0, ["hits"] = 1, }, }, }, ["Scarlet Purifier"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 6380, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 14399, ["done"] = 525, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 0, ["done"] = 633, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Banananator-Sylvanas"] = { ["taken"] = 5037, ["done"] = 4635, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Sathorin-TheVentureCo"] = { ["taken"] = 2918, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { ["Heal"] = { ["min"] = 680, ["crits"] = 0, ["max"] = 922, ["healing"] = 2524, ["overhealing"] = 0, ["hits"] = 3, }, }, ["taken"] = 28734, ["done"] = 5793, ["htaken"] = 2524, ["hdonespell"] = { }, }, ["Scarlet Judicator"] = { ["players"] = { ["Banananator-Sylvanas"] = { ["taken"] = 3413, ["done"] = 646, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 3413, ["done"] = 646, ["htaken"] = 0, ["hdonespell"] = { }, }, }, ["mobtaken"] = 91735, ["starttime"] = 1447793843, ["healing"] = 23468, ["power"] = { 595, -- [1] 224, -- [2] -34, -- [3] }, ["multistrikes"] = 0, ["overhealing"] = 8532, ["shielding"] = 0, ["name"] = "Commander Durand (2)", ["mobname"] = "Commander Durand", ["damagetaken"] = 26103, ["mobhdone"] = 17356, ["last_action"] = 1447793843, ["mobdone"] = 26103, }, -- [1] { ["healingabsorbed"] = 0, ["dispells"] = 0, ["ccbreaks"] = 0, ["time"] = 31, ["interrupts"] = 0, ["endtime"] = 1447793821, ["gotboss"] = true, ["damage"] = 31915, ["players"] = { { ["last"] = 1447793820, ["healingabsorbed"] = 0, ["class"] = "WARRIOR", ["damaged"] = { ["Scarlet Fanatic"] = 5852, ["Brother Korloff"] = 2857, }, ["auras"] = { ["Enrage"] = { ["name"] = "Enrage", ["active"] = 0, ["id"] = 12880, ["auratype"] = "BUFF", ["uptime"] = 8, }, ["Thunder Clap"] = { ["name"] = "Thunder Clap", ["active"] = 0, ["id"] = 6343, ["auratype"] = "DEBUFF", ["uptime"] = 9, }, ["Shield Block"] = { ["name"] = "Shield Block", ["active"] = 0, ["id"] = 132404, ["auratype"] = "BUFF", ["uptime"] = 12, }, ["Deep Wounds"] = { ["name"] = "Deep Wounds", ["active"] = 0, ["id"] = 115767, ["auratype"] = "DEBUFF", ["uptime"] = 20, }, ["Ultimatum"] = { ["name"] = "Ultimatum", ["active"] = 0, ["id"] = 122510, ["auratype"] = "BUFF", ["uptime"] = 2, }, ["Victory Rush"] = { ["name"] = "Victory Rush", ["active"] = 0, ["id"] = 118779, ["auratype"] = "BUFF", ["uptime"] = 6, }, ["Charge"] = { ["name"] = "Charge", ["active"] = 0, ["id"] = 109128, ["auratype"] = "BUFF", ["uptime"] = 6, }, ["Victorious"] = { ["name"] = "Victorious", ["active"] = 0, ["id"] = 32216, ["auratype"] = "BUFF", ["uptime"] = 5, }, }, ["role"] = "TANK", ["time"] = 30, ["interrupts"] = 0, ["damage"] = 8709, ["damagespells"] = { ["Shield Slam"] = { ["min"] = 75, ["critical"] = 1, ["hit"] = 2, ["totalhits"] = 3, ["id"] = 23922, ["max"] = 151, ["damage"] = 309, }, ["Charge"] = { ["id"] = 105771, ["totalhits"] = 1, ["IMMUNE"] = 1, ["max"] = 0, ["damage"] = 0, }, ["Victory Rush"] = { ["min"] = 207, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 34428, ["max"] = 207, ["damage"] = 207, }, ["Thunder Clap"] = { ["min"] = 175, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 6343, ["max"] = 176, ["damage"] = 527, }, ["Revenge"] = { ["min"] = 127, ["hit"] = 9, ["totalhits"] = 9, ["id"] = 6572, ["max"] = 554, ["damage"] = 3087, }, ["Deep Wounds"] = { ["min"] = 126, ["critical"] = 1, ["hit"] = 14, ["totalhits"] = 15, ["id"] = 115767, ["max"] = 277, ["damage"] = 2108, }, ["Heroic Strike"] = { ["min"] = 105, ["critical"] = 1, ["hit"] = 1, ["totalhits"] = 2, ["id"] = 78, ["max"] = 234, ["damage"] = 339, }, ["Devastate"] = { ["min"] = 273, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 20243, ["max"] = 294, ["damage"] = 842, }, ["Heroic Throw"] = { ["min"] = 56, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 57755, ["max"] = 56, ["damage"] = 56, }, ["Attack"] = { ["min"] = 86, ["critical"] = 1, ["hit"] = 9, ["totalhits"] = 10, ["id"] = 6603, ["max"] = 237, ["damage"] = 1234, }, }, ["power"] = { { ["amount"] = 170, ["spells"] = { [109128] = 20, [23922] = 60, [12880] = 10, [6572] = 80, }, }, -- [1] }, ["damagetaken"] = 6155, ["shielding"] = 0, ["id"] = "Player-3687-06FC3B49", ["first"] = 1447793790, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Hands of Purity"] = { ["crushing"] = 0, ["id"] = 110953, ["min"] = 24, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Hands of Purity", ["blocked"] = 0, ["totalhits"] = 15, ["resisted"] = 0, ["max"] = 24, ["damage"] = 360, }, ["Fanatical Strike"] = { ["crushing"] = 0, ["id"] = 110956, ["min"] = 342, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fanatical Strike", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 492, ["damage"] = 1304, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 63, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 867, ["totalhits"] = 24, ["resisted"] = 0, ["max"] = 494, ["damage"] = 4491, }, }, ["overhealing"] = 136, ["healingspells"] = { ["Victory Rush"] = { ["shielding"] = 0, ["id"] = 118779, ["healing"] = 490, ["min"] = 490, ["multistrike"] = 0, ["name"] = "Victory Rush", ["max"] = 490, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 136, ["hits"] = 1, }, }, ["name"] = "Banananator", ["healing"] = 490, ["healed"] = { ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 490, ["class"] = "WARRIOR", ["shielding"] = 0, }, }, ["maxhp"] = 4175, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [1] { ["last"] = 1447793820, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Scarlet Fanatic"] = 5649, ["Brother Korloff"] = 7153, }, ["auras"] = { ["Predatory Swiftness"] = { ["name"] = "Predatory Swiftness", ["active"] = 1, ["id"] = 69369, ["auratype"] = "BUFF", ["uptime"] = 16, }, ["Tiger's Fury"] = { ["name"] = "Tiger's Fury", ["active"] = 1, ["id"] = 5217, ["auratype"] = "BUFF", ["uptime"] = 8, }, ["Savage Roar"] = { ["name"] = "Savage Roar", ["active"] = 1, ["id"] = 52610, ["auratype"] = "BUFF", ["uptime"] = 24, }, ["Rake"] = { ["name"] = "Rake", ["active"] = 0, ["id"] = 155722, ["auratype"] = "DEBUFF", ["uptime"] = 7, }, }, ["role"] = "DAMAGER", ["time"] = 30, ["interrupts"] = 0, ["damage"] = 12802, ["damagespells"] = { ["Shred"] = { ["min"] = 536, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 5221, ["max"] = 630, ["damage"] = 1780, }, ["Ferocious Bite"] = { ["min"] = 3799, ["critical"] = 1, ["totalhits"] = 1, ["id"] = 22568, ["max"] = 3799, ["damage"] = 3799, }, ["Rake"] = { ["min"] = 151, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 1822, ["max"] = 152, ["damage"] = 455, }, ["Swipe"] = { ["min"] = 227, ["critical"] = 1, ["hit"] = 8, ["totalhits"] = 9, ["id"] = 106785, ["max"] = 558, ["damage"] = 2681, }, ["Attack"] = { ["min"] = 165, ["critical"] = 2, ["hit"] = 19, ["totalhits"] = 21, ["id"] = 6603, ["max"] = 372, ["damage"] = 4087, }, }, ["power"] = { [3] = { ["amount"] = 39, ["spells"] = { [5217] = 60, [22568] = -21, }, }, }, ["damagetaken"] = 554, ["shielding"] = 0, ["id"] = "Player-1403-06025CCB", ["first"] = 1447793790, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Scorched Earth"] = { ["crushing"] = 0, ["id"] = 114465, ["min"] = 299, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Scorched Earth", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 299, ["damage"] = 299, }, ["Firestorm Kick"] = { ["crushing"] = 0, ["id"] = 113766, ["min"] = 105, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Firestorm Kick", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 45, ["max"] = 150, ["damage"] = 255, }, }, ["overhealing"] = 458, ["healingspells"] = { ["Ysera's Gift"] = { ["shielding"] = 0, ["id"] = 145110, ["healing"] = 998, ["min"] = 26, ["multistrike"] = 0, ["name"] = "Ysera's Gift", ["max"] = 208, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 458, ["hits"] = 7, }, }, ["name"] = "Tjago", ["healing"] = 998, ["healed"] = { ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 149, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 641, ["class"] = "WARRIOR", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 208, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 5200, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [2] { ["last"] = 1447793820, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { }, ["auras"] = { ["Rejuvenation"] = { ["name"] = "Rejuvenation", ["active"] = 1, ["id"] = 774, ["auratype"] = "BUFF", ["uptime"] = 2, }, ["Living Seed"] = { ["name"] = "Living Seed", ["active"] = 1, ["id"] = 48504, ["auratype"] = "BUFF", ["uptime"] = 11, }, }, ["role"] = "HEALER", ["time"] = 30, ["interrupts"] = 0, ["damage"] = 0, ["damagespells"] = { }, ["power"] = { }, ["damagetaken"] = 450, ["shielding"] = 0, ["id"] = "Player-3687-06FC3B80", ["first"] = 1447793790, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Firestorm Kick"] = { ["crushing"] = 0, ["id"] = 113766, ["min"] = 150, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Firestorm Kick", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 150, ["damage"] = 450, }, }, ["overhealing"] = 1759, ["healingspells"] = { ["Swiftmend"] = { ["shielding"] = 0, ["id"] = 18562, ["healing"] = 536, ["min"] = 536, ["multistrike"] = 0, ["name"] = "Swiftmend", ["max"] = 536, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 1, }, ["Rejuvenation"] = { ["shielding"] = 0, ["id"] = 774, ["healing"] = 953, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Rejuvenation", ["max"] = 84, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 390, ["hits"] = 16, }, ["Living Seed"] = { ["shielding"] = 0, ["id"] = 48503, ["healing"] = 1083, ["min"] = 361, ["multistrike"] = 0, ["name"] = "Living Seed", ["max"] = 361, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 3, }, ["Regrowth"] = { ["shielding"] = 0, ["id"] = 8936, ["healing"] = 2512, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Regrowth", ["max"] = 722, ["critical"] = 6, ["absorbed"] = 0, ["overhealing"] = 1369, ["hits"] = 22, }, }, ["name"] = "Drpolarbear", ["healing"] = 5084, ["healed"] = { ["Player-3687-06FC3B80"] = { ["role"] = "HEALER", ["name"] = "Drpolarbear-Sylvanas", ["amount"] = 84, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 5000, ["class"] = "WARRIOR", ["shielding"] = 0, }, }, ["maxhp"] = 3575, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [3] { ["last"] = 1447793819, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Scarlet Fanatic"] = 4968, ["Brother Korloff"] = 3038, }, ["auras"] = { }, ["role"] = "DAMAGER", ["time"] = 29, ["interrupts"] = 0, ["damage"] = 8006, ["damagespells"] = { ["Auto Shot"] = { ["min"] = 176, ["critical"] = 2, ["hit"] = 6, ["totalhits"] = 8, ["id"] = 75, ["max"] = 416, ["damage"] = 1920, }, ["Steady Shot"] = { ["min"] = 149, ["critical"] = 1, ["hit"] = 2, ["totalhits"] = 3, ["id"] = 56641, ["max"] = 343, ["damage"] = 642, }, ["Aimed Shot"] = { ["min"] = 864, ["critical"] = 1, ["hit"] = 4, ["totalhits"] = 5, ["id"] = 19434, ["max"] = 1816, ["damage"] = 5444, }, }, ["power"] = { [2] = { ["amount"] = 42, ["spells"] = { [77443] = 42, }, }, }, ["damagetaken"] = 149, ["shielding"] = 0, ["id"] = "Player-1403-06025D5B", ["first"] = 1447793790, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Firestorm Kick"] = { ["crushing"] = 0, ["id"] = 113766, ["min"] = 149, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Firestorm Kick", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 149, ["damage"] = 149, }, }, ["overhealing"] = 218, ["healingspells"] = { ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 218, ["hits"] = 2, }, }, ["name"] = "Jyggtvå", ["healing"] = 0, ["healed"] = { ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 0, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["maxhp"] = 5382, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [4] { ["last"] = 1447793820, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Scarlet Fanatic"] = 621, ["Brother Korloff"] = 1777, }, ["auras"] = { }, ["role"] = "DAMAGER", ["time"] = 28, ["interrupts"] = 0, ["damage"] = 2398, ["damagespells"] = { ["Auto Shot"] = { ["min"] = 135, ["critical"] = 1, ["hit"] = 7, ["totalhits"] = 8, ["id"] = 75, ["max"] = 293, ["damage"] = 1289, }, ["Steady Shot"] = { ["min"] = 118, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 56641, ["max"] = 118, ["damage"] = 118, }, ["Arcane Shot"] = { ["min"] = 180, ["critical"] = 1, ["hit"] = 3, ["totalhits"] = 4, ["id"] = 3044, ["max"] = 411, ["damage"] = 991, }, }, ["power"] = { [2] = { ["amount"] = 14, ["spells"] = { [77443] = 14, }, }, }, ["damagetaken"] = 0, ["shielding"] = 0, ["id"] = "Player-1096-07091437", ["first"] = 1447793792, ["ccbreaks"] = 0, ["damagetakenspells"] = { }, ["overhealing"] = 146, ["healingspells"] = { ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 146, ["hits"] = 2, }, }, ["name"] = "Sathorin", ["healing"] = 0, ["healed"] = { ["Player-1096-07091437"] = { ["role"] = "DAMAGER", ["name"] = "Sathorin-TheVentureCo", ["amount"] = 0, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["maxhp"] = 3648, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [5] }, ["deaths"] = 0, ["mobs"] = { ["Scarlet Fanatic"] = { ["players"] = { ["Sathorin-TheVentureCo"] = { ["taken"] = 621, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 5852, ["done"] = 4129, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Jyggtvå"] = { ["taken"] = 4968, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5649, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 17090, ["done"] = 4129, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Brother Korloff"] = { ["players"] = { ["Sathorin-TheVentureCo"] = { ["taken"] = 1777, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 2857, ["done"] = 2026, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 0, ["done"] = 450, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 3038, ["done"] = 149, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 7153, ["done"] = 255, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 14825, ["done"] = 2880, ["htaken"] = 0, ["hdonespell"] = { }, }, }, ["mobtaken"] = 31915, ["starttime"] = 1447793790, ["healing"] = 6572, ["power"] = { 170, -- [1] 56, -- [2] 39, -- [3] }, ["multistrikes"] = 0, ["overhealing"] = 2717, ["shielding"] = 0, ["name"] = "Brother Korloff (2)", ["mobname"] = "Brother Korloff", ["damagetaken"] = 7308, ["mobhdone"] = 0, ["last_action"] = 1447793790, ["mobdone"] = 7009, }, -- [2] { ["healingabsorbed"] = 0, ["dispells"] = 0, ["ccbreaks"] = 0, ["time"] = 15, ["interrupts"] = 0, ["endtime"] = 1447793651, ["gotboss"] = true, ["damage"] = 16479, ["players"] = { { ["last"] = 1447793650, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Thalnos the Soulrender"] = 1385, ["Fallen Crusader"] = 117, }, ["auras"] = { ["Dragonhawk: Spry Attacks"] = { ["name"] = "Dragonhawk: Spry Attacks", ["active"] = 0, ["id"] = 34889, ["auratype"] = "BUFF", ["uptime"] = 3, }, }, ["role"] = "DAMAGER", ["time"] = 14, ["interrupts"] = 0, ["damage"] = 1502, ["damagespells"] = { ["Auto Shot"] = { ["min"] = 104, ["hit"] = 5, ["totalhits"] = 5, ["id"] = 75, ["max"] = 112, ["damage"] = 542, }, ["Steady Shot"] = { ["min"] = 175, ["critical"] = 1, ["totalhits"] = 1, ["id"] = 56641, ["max"] = 175, ["damage"] = 175, }, ["Multi-Shot"] = { ["min"] = 58, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 2643, ["max"] = 63, ["damage"] = 180, }, ["Arcane Shot"] = { ["min"] = 208, ["critical"] = 1, ["hit"] = 1, ["totalhits"] = 2, ["id"] = 3044, ["max"] = 397, ["damage"] = 605, }, }, ["power"] = { [2] = { ["amount"] = 14, ["spells"] = { [77443] = 14, }, }, }, ["damagetaken"] = 0, ["shielding"] = 0, ["id"] = "Player-1096-07091437", ["first"] = 1447793636, ["ccbreaks"] = 0, ["damagetakenspells"] = { }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Sathorin", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 3648, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [1] { ["last"] = 1447793650, ["healingabsorbed"] = 0, ["class"] = "WARRIOR", ["damaged"] = { ["Thalnos the Soulrender"] = 2734, ["Fallen Crusader"] = 1882, }, ["auras"] = { ["Thunder Clap"] = { ["name"] = "Thunder Clap", ["active"] = 5, ["id"] = 6343, ["auratype"] = "DEBUFF", ["uptime"] = 8, }, ["Victory Rush"] = { ["name"] = "Victory Rush", ["active"] = 0, ["id"] = 118779, ["auratype"] = "BUFF", ["uptime"] = 6, }, ["Shield Block"] = { ["name"] = "Shield Block", ["active"] = 0, ["id"] = 132404, ["auratype"] = "BUFF", ["uptime"] = 6, }, ["Deep Wounds"] = { ["name"] = "Deep Wounds", ["active"] = 5, ["id"] = 115767, ["auratype"] = "DEBUFF", ["uptime"] = 11, }, }, ["role"] = "TANK", ["time"] = 14, ["interrupts"] = 0, ["damage"] = 4616, ["damagespells"] = { ["Thunder Clap"] = { ["min"] = 120, ["critical"] = 2, ["hit"] = 6, ["totalhits"] = 8, ["id"] = 6343, ["max"] = 241, ["damage"] = 1202, }, ["Revenge"] = { ["min"] = 190, ["critical"] = 1, ["hit"] = 3, ["totalhits"] = 4, ["id"] = 6572, ["max"] = 757, ["damage"] = 1703, }, ["Deep Wounds"] = { ["min"] = 122, ["critical"] = 1, ["hit"] = 6, ["totalhits"] = 7, ["id"] = 115767, ["max"] = 244, ["damage"] = 976, }, ["Victory Rush"] = { ["min"] = 202, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 34428, ["max"] = 202, ["damage"] = 202, }, ["Devastate"] = { ["min"] = 208, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 20243, ["max"] = 208, ["damage"] = 208, }, ["Attack"] = { ["min"] = 80, ["hit"] = 4, ["totalhits"] = 4, ["id"] = 6603, ["max"] = 82, ["damage"] = 325, }, }, ["power"] = { { ["amount"] = 60, ["spells"] = { [6572] = 60, }, }, -- [1] }, ["damagetaken"] = 1445, ["shielding"] = 0, ["id"] = "Player-3687-06FC3B49", ["first"] = 1447793636, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Spirit Gale"] = { ["crushing"] = 0, ["id"] = 115291, ["min"] = 178, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Gale", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 540, ["damage"] = 1080, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 17, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 50, ["totalhits"] = 8, ["resisted"] = 0, ["max"] = 131, ["damage"] = 365, }, }, ["overhealing"] = 56, ["healingspells"] = { ["Victory Rush"] = { ["shielding"] = 0, ["id"] = 118779, ["healing"] = 540, ["min"] = 540, ["multistrike"] = 0, ["name"] = "Victory Rush", ["max"] = 540, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 56, ["hits"] = 1, }, }, ["name"] = "Banananator", ["healing"] = 540, ["healed"] = { ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 540, ["class"] = "WARRIOR", ["shielding"] = 0, }, }, ["maxhp"] = 3975, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [2] { ["last"] = 1447793650, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Thalnos the Soulrender"] = 718, }, ["auras"] = { ["Living Seed"] = { ["name"] = "Living Seed", ["active"] = 0, ["id"] = 48504, ["auratype"] = "BUFF", ["uptime"] = 4, }, ["Rejuvenation"] = { ["name"] = "Rejuvenation", ["active"] = 0, ["id"] = 774, ["auratype"] = "BUFF", ["uptime"] = 4, }, ["Moonfire"] = { ["name"] = "Moonfire", ["active"] = 0, ["id"] = 164812, ["auratype"] = "DEBUFF", ["uptime"] = 7, }, ["Regrowth"] = { ["name"] = "Regrowth", ["active"] = 1, ["id"] = 8936, ["auratype"] = "BUFF", ["uptime"] = 11, }, }, ["role"] = "HEALER", ["time"] = 14, ["interrupts"] = 0, ["damage"] = 718, ["damagespells"] = { ["Moonfire"] = { ["min"] = 39, ["critical"] = 1, ["hit"] = 3, ["totalhits"] = 4, ["id"] = 164812, ["max"] = 78, ["damage"] = 209, }, ["Wrath"] = { ["min"] = 509, ["critical"] = 1, ["totalhits"] = 1, ["id"] = 5176, ["max"] = 509, ["damage"] = 509, }, }, ["power"] = { }, ["damagetaken"] = 107, ["shielding"] = 0, ["id"] = "Player-3687-06FC3B80", ["first"] = 1447793636, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 25, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 29, ["damage"] = 107, }, }, ["overhealing"] = 916, ["healingspells"] = { ["Rejuvenation"] = { ["shielding"] = 0, ["id"] = 774, ["healing"] = 238, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Rejuvenation", ["max"] = 81, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 497, ["hits"] = 11, }, ["Living Seed"] = { ["shielding"] = 0, ["id"] = 48503, ["healing"] = 24, ["min"] = 24, ["multistrike"] = 0, ["name"] = "Living Seed", ["max"] = 24, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 326, ["hits"] = 1, }, ["Regrowth"] = { ["shielding"] = 0, ["id"] = 8936, ["healing"] = 695, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Regrowth", ["max"] = 652, ["critical"] = 2, ["absorbed"] = 0, ["overhealing"] = 93, ["hits"] = 7, }, }, ["name"] = "Drpolarbear", ["healing"] = 957, ["healed"] = { ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 756, ["class"] = "WARRIOR", ["shielding"] = 0, }, ["Player-3687-06FC3B80"] = { ["role"] = "HEALER", ["name"] = "Drpolarbear-Sylvanas", ["amount"] = 201, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 0, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 3475, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [3] { ["last"] = 1447793650, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Thalnos the Soulrender"] = 5489, }, ["auras"] = { ["Tiger's Fury"] = { ["name"] = "Tiger's Fury", ["active"] = 0, ["id"] = 5217, ["auratype"] = "BUFF", ["uptime"] = 8, }, ["Predatory Swiftness"] = { ["name"] = "Predatory Swiftness", ["active"] = 1, ["id"] = 69369, ["auratype"] = "BUFF", ["uptime"] = 5, }, ["Rake"] = { ["name"] = "Rake", ["active"] = 0, ["id"] = 155722, ["auratype"] = "DEBUFF", ["uptime"] = 11, }, ["Rip"] = { ["name"] = "Rip", ["active"] = 0, ["id"] = 1079, ["auratype"] = "DEBUFF", ["uptime"] = 4, }, }, ["role"] = "DAMAGER", ["time"] = 12, ["interrupts"] = 0, ["damage"] = 5489, ["damagespells"] = { ["Rip"] = { ["min"] = 184, ["critical"] = 1, ["hit"] = 1, ["totalhits"] = 2, ["id"] = 1079, ["max"] = 375, ["damage"] = 559, }, ["Shred"] = { ["min"] = 430, ["critical"] = 1, ["hit"] = 3, ["totalhits"] = 4, ["id"] = 5221, ["max"] = 993, ["damage"] = 2398, }, ["Rake"] = { ["min"] = 152, ["hit"] = 4, ["totalhits"] = 4, ["id"] = 1822, ["max"] = 152, ["damage"] = 608, }, ["Attack"] = { ["min"] = 132, ["critical"] = 2, ["hit"] = 9, ["totalhits"] = 11, ["id"] = 6603, ["max"] = 302, ["damage"] = 1924, }, }, ["power"] = { [3] = { ["amount"] = 60, ["spells"] = { [5217] = 60, }, }, }, ["damagetaken"] = 0, ["shielding"] = 0, ["id"] = "Player-1403-06025CCB", ["first"] = 1447793638, ["ccbreaks"] = 0, ["damagetakenspells"] = { }, ["overhealing"] = 266, ["healingspells"] = { ["Ysera's Gift"] = { ["shielding"] = 0, ["id"] = 145110, ["healing"] = 150, ["min"] = 23, ["multistrike"] = 0, ["name"] = "Ysera's Gift", ["max"] = 127, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 266, ["hits"] = 2, }, }, ["name"] = "Tjago", ["healing"] = 150, ["healed"] = { ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 23, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-3687-06FC3B49"] = { ["role"] = "TANK", ["name"] = "Banananator-Sylvanas", ["amount"] = 127, ["class"] = "WARRIOR", ["shielding"] = 0, }, }, ["maxhp"] = 5200, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [4] { ["last"] = 1447793650, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Thalnos the Soulrender"] = 4154, }, ["auras"] = { }, ["role"] = "DAMAGER", ["time"] = 8, ["interrupts"] = 0, ["damage"] = 4154, ["damagespells"] = { ["Auto Shot"] = { ["min"] = 135, ["critical"] = 1, ["hit"] = 2, ["totalhits"] = 3, ["id"] = 75, ["max"] = 286, ["damage"] = 574, }, ["Kill Shot"] = { ["min"] = 1206, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 53351, ["max"] = 1206, ["damage"] = 1206, }, ["Steady Shot"] = { ["min"] = 131, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 56641, ["max"] = 131, ["damage"] = 131, }, ["Aimed Shot"] = { ["min"] = 712, ["critical"] = 1, ["hit"] = 1, ["totalhits"] = 2, ["id"] = 19434, ["max"] = 1531, ["damage"] = 2243, }, }, ["power"] = { [2] = { ["amount"] = 14, ["spells"] = { [77443] = 14, }, }, }, ["damagetaken"] = 23, ["shielding"] = 0, ["id"] = "Player-1403-06025D5B", ["first"] = 1447793642, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 23, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 23, ["damage"] = 23, }, }, ["overhealing"] = 109, ["healingspells"] = { ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 109, ["hits"] = 1, }, }, ["name"] = "Jyggtvå", ["healing"] = 0, ["healed"] = { ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 0, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["maxhp"] = 5382, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [5] }, ["deaths"] = 0, ["mobs"] = { ["Thalnos the Soulrender"] = { ["players"] = { ["Sathorin-TheVentureCo"] = { ["taken"] = 1385, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 2734, ["done"] = 787, ["role"] = "TANK", ["class"] = "WARRIOR", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 718, ["done"] = 0, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 4154, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5489, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 14480, ["done"] = 787, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Fallen Crusader"] = { ["players"] = { ["Sathorin-TheVentureCo"] = { ["taken"] = 117, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Drpolarbear-Sylvanas"] = { ["taken"] = 0, ["done"] = 107, ["role"] = "HEALER", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 0, ["done"] = 23, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Banananator-Sylvanas"] = { ["taken"] = 1882, ["done"] = 118, ["role"] = "TANK", ["class"] = "WARRIOR", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 1999, ["done"] = 248, ["htaken"] = 0, ["hdonespell"] = { }, }, }, ["mobtaken"] = 16479, ["starttime"] = 1447793636, ["healing"] = 1647, ["power"] = { 60, -- [1] 28, -- [2] 60, -- [3] }, ["multistrikes"] = 0, ["overhealing"] = 1347, ["shielding"] = 0, ["name"] = "Thalnos the Soulrender (2)", ["mobname"] = "Thalnos the Soulrender", ["damagetaken"] = 1575, ["mobhdone"] = 0, ["last_action"] = 1447793636, ["mobdone"] = 1035, }, -- [3] { ["healingabsorbed"] = 0, ["dispells"] = 0, ["ccbreaks"] = 0, ["time"] = 115, ["interrupts"] = 0, ["endtime"] = 1447792793, ["gotboss"] = true, ["damage"] = 57163, ["players"] = { { ["last"] = 1447792739, ["healingabsorbed"] = 0, ["class"] = "SHAMAN", ["damaged"] = { }, ["auras"] = { ["Riptide"] = { ["name"] = "Riptide", ["active"] = 0, ["id"] = 61295, ["auratype"] = "BUFF", ["uptime"] = 18, }, ["Healing Stream Totem"] = { ["name"] = "Healing Stream Totem", ["active"] = 0, ["id"] = 5394, ["auratype"] = "BUFF", ["uptime"] = 30, }, }, ["role"] = "HEALER", ["time"] = 61, ["interrupts"] = 0, ["damage"] = 0, ["damagespells"] = { }, ["power"] = { }, ["damagetaken"] = 216, ["shielding"] = 0, ["id"] = "Player-3674-06FC5F4D", ["first"] = 1447792678, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Noxious Cloud"] = { ["crushing"] = 0, ["id"] = 21070, ["min"] = 216, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Noxious Cloud", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 216, ["damage"] = 216, }, }, ["overhealing"] = 5642, ["healingspells"] = { ["Riptide"] = { ["shielding"] = 0, ["id"] = 61295, ["healing"] = 3149, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Riptide", ["max"] = 475, ["critical"] = 1, ["absorbed"] = 0, ["overhealing"] = 2244, ["hits"] = 36, }, ["Healing Stream Totem"] = { ["shielding"] = 0, ["id"] = 52042, ["healing"] = 3297, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Healing Stream Totem", ["max"] = 225, ["critical"] = 1, ["absorbed"] = 0, ["overhealing"] = 1007, ["hits"] = 20, }, ["Earth Shield"] = { ["shielding"] = 0, ["id"] = 379, ["healing"] = 769, ["min"] = 128, ["multistrike"] = 0, ["name"] = "Earth Shield", ["max"] = 129, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 6, }, ["Healing Surge"] = { ["shielding"] = 0, ["id"] = 8004, ["healing"] = 7505, ["min"] = 709, ["multistrike"] = 0, ["name"] = "Healing Surge", ["max"] = 1414, ["critical"] = 1, ["absorbed"] = 0, ["overhealing"] = 2391, ["hits"] = 7, }, }, ["name"] = "Stormrise", ["healing"] = 14720, ["healed"] = { ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 980, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 0, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 2163, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 10191, ["class"] = "DRUID", ["shielding"] = 0, }, ["Pet-0-3102-349-6994-416-020246ED8B"] = { ["role"] = "NONE", ["name"] = "Voltai", ["amount"] = 22, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-3674-06FC5F4D"] = { ["role"] = "HEALER", ["name"] = "Stormrise-TwistingNether", ["amount"] = 1364, ["class"] = "SHAMAN", ["shielding"] = 0, }, }, ["maxhp"] = 4300, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [1] { ["last"] = 1447792732, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Corrupt Force of Nature"] = 4420, ["Cavern Lurker"] = 647, ["Celebras the Cursed"] = 8250, ["Noxious Slime"] = 9303, }, ["auras"] = { ["Thrash"] = { ["name"] = "Thrash", ["active"] = 0, ["id"] = 77758, ["auratype"] = "DEBUFF", ["uptime"] = 48, }, ["Tooth and Claw"] = { ["name"] = "Tooth and Claw", ["active"] = 1, ["id"] = 135601, ["auratype"] = "DEBUFF", ["uptime"] = 79, }, }, ["role"] = "TANK", ["time"] = 54, ["interrupts"] = 0, ["damage"] = 22620, ["damagespells"] = { ["Mangle"] = { ["min"] = 1030, ["critical"] = 3, ["totalhits"] = 3, ["id"] = 33917, ["max"] = 1068, ["damage"] = 3163, }, ["Maul"] = { ["min"] = 133, ["critical"] = 1, ["hit"] = 4, ["totalhits"] = 5, ["id"] = 6807, ["max"] = 391, ["damage"] = 1090, }, ["Thrash"] = { ["min"] = 50, ["critical"] = 19, ["hit"] = 115, ["totalhits"] = 134, ["id"] = 77758, ["max"] = 264, ["damage"] = 16578, }, ["Immobilized"] = { ["id"] = 45334, ["totalhits"] = 1, ["IMMUNE"] = 1, ["max"] = 0, ["damage"] = 0, }, ["Attack"] = { ["min"] = 86, ["critical"] = 2, ["hit"] = 11, ["totalhits"] = 13, ["id"] = 6603, ["max"] = 275, ["damage"] = 1789, }, }, ["power"] = { { ["amount"] = 284, ["spells"] = { [33917] = 30, [16959] = 120, [158723] = 134, }, }, -- [1] }, ["damagetaken"] = 11767, ["shielding"] = 252, ["id"] = "Player-3674-06FCFAA7", ["first"] = 1447792678, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Entangling Roots"] = { ["crushing"] = 0, ["id"] = 12747, ["min"] = 11, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Entangling Roots", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 17, ["damage"] = 28, }, ["Wrath"] = { ["crushing"] = 0, ["id"] = 21807, ["min"] = 281, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Wrath", ["blocked"] = 0, ["totalhits"] = 7, ["resisted"] = 0, ["max"] = 322, ["damage"] = 2095, }, ["Knockdown"] = { ["crushing"] = 0, ["id"] = 11428, ["min"] = 42, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Knockdown", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 42, ["damage"] = 42, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 69, ["absorbed"] = 252, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 43, ["resisted"] = 0, ["max"] = 491, ["damage"] = 9602, }, }, ["overhealing"] = 163, ["healingspells"] = { ["Ysera's Gift"] = { ["shielding"] = 0, ["id"] = 145109, ["healing"] = 1007, ["min"] = 125, ["multistrike"] = 0, ["name"] = "Ysera's Gift", ["max"] = 126, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 8, }, ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 1142, ["min"] = 45, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 149, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 163, ["hits"] = 10, }, ["Tooth and Claw"] = { ["shielding"] = 252, ["id"] = 135597, ["healing"] = 252, ["min"] = 252, ["multistrike"] = 0, ["name"] = "Tooth and Claw", ["max"] = 252, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 1, }, }, ["name"] = "Qaliti", ["healing"] = 2401, ["healed"] = { ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 2401, ["class"] = "DRUID", ["shielding"] = 252, }, }, ["maxhp"] = 6292, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [2] { ["last"] = 1447792790, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Corrupt Force of Nature"] = 3123, ["Cavern Lurker"] = 5112, ["Celebras the Cursed"] = 4607, ["Noxious Slime"] = 5716, }, ["auras"] = { ["Predatory Swiftness"] = { ["name"] = "Predatory Swiftness", ["active"] = 0, ["id"] = 69369, ["auratype"] = "BUFF", ["uptime"] = 54, }, ["Rake"] = { ["name"] = "Rake", ["active"] = 0, ["id"] = 155722, ["auratype"] = "DEBUFF", ["uptime"] = 14, }, ["Rip"] = { ["name"] = "Rip", ["active"] = 0, ["id"] = 1079, ["auratype"] = "DEBUFF", ["uptime"] = 9, }, ["Tiger's Fury"] = { ["name"] = "Tiger's Fury", ["active"] = 0, ["id"] = 5217, ["auratype"] = "BUFF", ["uptime"] = 8, }, ["Rejuvenation"] = { ["name"] = "Rejuvenation", ["active"] = 0, ["id"] = 774, ["auratype"] = "BUFF", ["uptime"] = 1, }, ["Savage Roar"] = { ["name"] = "Savage Roar", ["active"] = 0, ["id"] = 52610, ["auratype"] = "BUFF", ["uptime"] = 81, }, }, ["role"] = "DAMAGER", ["time"] = 111, ["interrupts"] = 0, ["damage"] = 18558, ["damagespells"] = { ["Shred"] = { ["min"] = 168, ["critical"] = 2, ["hit"] = 5, ["totalhits"] = 7, ["id"] = 5221, ["max"] = 842, ["damage"] = 3070, }, ["Rip"] = { ["min"] = 103, ["hit"] = 4, ["totalhits"] = 4, ["id"] = 1079, ["max"] = 103, ["damage"] = 412, }, ["Ferocious Bite"] = { ["min"] = 1377, ["critical"] = 1, ["hit"] = 1, ["totalhits"] = 2, ["id"] = 22568, ["max"] = 2241, ["damage"] = 3618, }, ["Rake"] = { ["min"] = 157, ["hit"] = 5, ["totalhits"] = 5, ["id"] = 1822, ["max"] = 158, ["damage"] = 787, }, ["Swipe"] = { ["min"] = 110, ["PARRY"] = 1, ["critical"] = 5, ["hit"] = 16, ["totalhits"] = 22, ["id"] = 106785, ["max"] = 392, ["damage"] = 4765, }, ["Attack"] = { ["min"] = 53, ["glancing"] = 10, ["critical"] = 6, ["hit"] = 34, ["totalhits"] = 50, ["id"] = 6603, ["max"] = 286, ["damage"] = 5906, }, }, ["power"] = { [3] = { ["amount"] = 15, ["spells"] = { [22568] = -45, [5217] = 60, }, }, }, ["damagetaken"] = 2385, ["shielding"] = 0, ["id"] = "Player-1403-06025CCB", ["first"] = 1447792679, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Noxious Cloud"] = { ["crushing"] = 0, ["id"] = 21070, ["min"] = 213, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Noxious Cloud", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 213, ["damage"] = 639, }, ["Knockdown"] = { ["crushing"] = 0, ["id"] = 11428, ["min"] = 46, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Knockdown", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 46, ["damage"] = 46, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 497, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 619, ["damage"] = 1700, }, }, ["overhealing"] = 320, ["healingspells"] = { ["Ysera's Gift"] = { ["shielding"] = 0, ["id"] = 145110, ["healing"] = 2956, ["min"] = 44, ["multistrike"] = 0, ["name"] = "Ysera's Gift", ["max"] = 182, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 320, ["hits"] = 18, }, ["Rejuvenation"] = { ["shielding"] = 0, ["id"] = 774, ["healing"] = 121, ["min"] = 121, ["multistrike"] = 0, ["name"] = "Rejuvenation", ["max"] = 121, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 1, }, }, ["name"] = "Tjago", ["healing"] = 3077, ["healed"] = { ["Player-3674-06FC5F4D"] = { ["role"] = "HEALER", ["name"] = "Stormrise-TwistingNether", ["amount"] = 44, ["class"] = "SHAMAN", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 121, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 1867, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 182, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 863, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 4550, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [3] { ["last"] = 1447792769, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Cavern Lurker"] = 4832, ["Celebras the Cursed"] = 2771, ["Noxious Slime"] = 2764, }, ["auras"] = { }, ["role"] = "DAMAGER", ["time"] = 89, ["interrupts"] = 0, ["power"] = { [2] = { ["amount"] = 168, ["spells"] = { [77443] = 168, }, }, }, ["damage"] = 10367, ["damagespells"] = { ["Auto Shot"] = { ["min"] = 122, ["critical"] = 4, ["hit"] = 17, ["totalhits"] = 21, ["id"] = 75, ["max"] = 287, ["damage"] = 3306, }, ["Steady Shot"] = { ["min"] = 100, ["critical"] = 4, ["hit"] = 8, ["totalhits"] = 12, ["id"] = 56641, ["max"] = 232, ["damage"] = 1741, }, ["Multi-Shot"] = { ["min"] = 67, ["critical"] = 1, ["hit"] = 7, ["totalhits"] = 8, ["id"] = 2643, ["max"] = 152, ["damage"] = 643, }, ["Aimed Shot"] = { ["min"] = 633, ["critical"] = 3, ["hit"] = 1, ["totalhits"] = 4, ["id"] = 19434, ["max"] = 1400, ["damage"] = 4677, }, }, ["deaths"] = { { ["ts"] = 1447792769.28401, ["maxhp"] = 4575, ["log"] = { { ["ts"] = 1447792769.28401, ["spellname"] = "Jyggtvå dies", ["spellid"] = 41220, ["hp"] = 0, }, -- [1] { ["ts"] = 1447792786.348, ["srcname"] = "Tjago", ["hp"] = 0, ["spellid"] = 50769, }, -- [2] { ["ts"] = 1447792726.56703, ["absorb"] = 0, ["amount"] = 0, ["srcname"] = "Stormrise-TwistingNether", ["spellid"] = 61295, ["hp"] = 4575, }, -- [3] { ["ts"] = 1447792729.34504, ["absorb"] = 0, ["amount"] = 0, ["srcname"] = "Stormrise-TwistingNether", ["spellid"] = 61295, ["hp"] = 4575, }, -- [4] { ["absorb"] = 0, ["srcname"] = "Stormrise-TwistingNether", ["amount"] = 0, ["spellid"] = 61295, ["hp"] = 4575, ["ts"] = 1447792730.62405, }, -- [5] { ["srcname"] = "Cavern Lurker", ["amount"] = -476, ["spellid"] = 88163, ["hp"] = 4575, ["ts"] = 1447792756.74306, }, -- [6] { ["srcname"] = "Cavern Lurker", ["amount"] = -567, ["spellid"] = 88163, ["hp"] = 4099, ["ts"] = 1447792759.24107, }, -- [7] { ["ts"] = 1447792761.73608, ["amount"] = -560, ["spellid"] = 88163, ["hp"] = 3532, ["srcname"] = "Cavern Lurker", }, -- [8] { ["srcname"] = "Cavern Lurker", ["amount"] = -410, ["spellid"] = 88163, ["hp"] = 2972, ["ts"] = 1447792762.76509, }, -- [9] { ["ts"] = 1447792764.2421, ["amount"] = -428, ["srcname"] = "Cavern Lurker", ["hp"] = 2562, ["spellid"] = 88163, }, -- [10] { ["ts"] = 1447792765.26411, ["amount"] = -439, ["srcname"] = "Cavern Lurker", ["hp"] = 2134, ["spellid"] = 88163, }, -- [11] { ["srcname"] = "Cavern Lurker", ["amount"] = -42, ["spellid"] = 11428, ["hp"] = 1653, ["ts"] = 1447792765.82812, }, -- [12] { ["srcname"] = "Cavern Lurker", ["amount"] = -816, ["spellid"] = 88163, ["hp"] = 1653, ["ts"] = 1447792766.74613, }, -- [13] { ["srcname"] = "Cavern Lurker", ["amount"] = -475, ["spellid"] = 88163, ["hp"] = 837, ["ts"] = 1447792767.78114, }, -- [14] { ["srcname"] = "Cavern Lurker", ["amount"] = -570, ["spellid"] = 88163, ["hp"] = 362, ["ts"] = 1447792769.25315, }, -- [15] ["pos"] = 3, }, }, -- [1] }, ["damagetaken"] = 5631, ["shielding"] = 0, ["id"] = "Player-1403-06025D5B", ["first"] = 1447792680, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Noxious Cloud"] = { ["crushing"] = 0, ["id"] = 21070, ["min"] = 211, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Noxious Cloud", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 214, ["damage"] = 848, }, ["Knockdown"] = { ["crushing"] = 0, ["id"] = 11428, ["min"] = 42, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Knockdown", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 42, ["damage"] = 42, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 410, ["absorbed"] = 0, ["critical"] = 1, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 9, ["resisted"] = 0, ["max"] = 816, ["damage"] = 4741, }, }, ["overhealing"] = 93, ["healingspells"] = { ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 93, ["hits"] = 1, }, }, ["name"] = "Jyggtvå", ["healing"] = 0, ["healed"] = { ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 0, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["maxhp"] = 4575, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [4] { ["last"] = 1447792785, ["healingabsorbed"] = 0, ["class"] = "WARLOCK", ["damaged"] = { ["Corrupt Force of Nature"] = 646, ["Cavern Lurker"] = 1148, ["Celebras the Cursed"] = 1159, ["Noxious Slime"] = 2665, }, ["auras"] = { ["Soulburn"] = { ["name"] = "Soulburn", ["active"] = 0, ["id"] = 74434, ["auratype"] = "BUFF", ["uptime"] = 9, }, ["Soul Leech"] = { ["name"] = "Soul Leech", ["active"] = 0, ["id"] = 108366, ["auratype"] = "BUFF", ["uptime"] = 42, }, ["Corruption"] = { ["name"] = "Corruption", ["active"] = 0, ["id"] = 146739, ["auratype"] = "DEBUFF", ["uptime"] = 26, }, ["Drain Soul"] = { ["name"] = "Drain Soul", ["active"] = 0, ["id"] = 103103, ["auratype"] = "BUFF", ["uptime"] = 9, }, ["Unstable Affliction"] = { ["name"] = "Unstable Affliction", ["active"] = 0, ["id"] = 30108, ["auratype"] = "DEBUFF", ["uptime"] = 23, }, ["Seed of Corruption"] = { ["name"] = "Seed of Corruption", ["active"] = 0, ["id"] = 114790, ["auratype"] = "DEBUFF", ["uptime"] = 7, }, }, ["role"] = "DAMAGER", ["time"] = 103, ["interrupts"] = 0, ["damage"] = 5618, ["damagespells"] = { ["Corruption"] = { ["min"] = 24, ["max"] = 100, ["critical"] = 1, ["hit"] = 29, ["totalhits"] = 32, ["id"] = 146739, ["MISS"] = 2, ["damage"] = 1413, }, ["Attack"] = { ["min"] = 16, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 6603, ["max"] = 16, ["damage"] = 16, }, ["Touch of the Grave"] = { ["min"] = 92, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 127802, ["max"] = 99, ["damage"] = 284, }, ["Voltai: Firebolt"] = { ["min"] = 171, ["max"] = 174, ["hit"] = 8, ["totalhits"] = 10, ["id"] = 3110, ["MISS"] = 2, ["damage"] = 1382, }, ["Drain Soul"] = { ["min"] = 60, ["max"] = 61, ["hit"] = 7, ["totalhits"] = 8, ["id"] = 103103, ["MISS"] = 1, ["damage"] = 421, }, ["Unstable Affliction"] = { ["min"] = 33, ["critical"] = 2, ["hit"] = 15, ["totalhits"] = 17, ["id"] = 30108, ["max"] = 129, ["damage"] = 1037, }, ["Seed of Corruption"] = { ["min"] = 16, ["max"] = 243, ["critical"] = 1, ["hit"] = 9, ["totalhits"] = 11, ["id"] = 114790, ["MISS"] = 1, ["damage"] = 1065, }, }, ["power"] = { [7] = { ["amount"] = 1, ["spells"] = { [17941] = 1, }, }, }, ["damagetaken"] = 1247, ["shielding"] = 54, ["id"] = "Player-1096-0700DF96", ["first"] = 1447792682, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Knockdown"] = { ["crushing"] = 0, ["id"] = 11428, ["min"] = 48, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Knockdown", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 66, ["damage"] = 114, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 546, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 587, ["damage"] = 1133, }, }, ["overhealing"] = 1171.30000305176, ["healingspells"] = { ["Siphon Life"] = { ["shielding"] = 0, ["id"] = 63106, ["healing"] = 24, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Siphon Life", ["max"] = 12, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 340, ["hits"] = 30, }, ["Soul Leech"] = { ["shielding"] = 54, ["id"] = 108366, ["healing"] = 54, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Soul Leech", ["max"] = 36, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 270.300003051758, ["hits"] = 9, }, ["Healthstone"] = { ["shielding"] = 0, ["id"] = 6262, ["healing"] = 973, ["min"] = 973, ["multistrike"] = 0, ["name"] = "Healthstone", ["max"] = 973, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 468, ["hits"] = 1, }, ["Touch of the Grave"] = { ["shielding"] = 0, ["id"] = 127802, ["healing"] = 191, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Touch of the Grave", ["max"] = 99, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 93, ["hits"] = 3, }, }, ["name"] = "Faustoblyth", ["healing"] = 1242, ["healed"] = { ["Pet-0-3102-349-6994-416-020246ED8B"] = { ["role"] = "NONE", ["name"] = "Voltai", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 1188, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Pet-0-3102-349-6994-416-010246ED8B"] = { ["role"] = "NONE", ["name"] = "Voltai", ["amount"] = 54, ["class"] = "WARLOCK", ["shielding"] = 54, }, }, ["maxhp"] = 3456, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [5] }, ["deaths"] = 1, ["mobs"] = { ["Corrupt Force of Nature"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 646, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Qaliti-TwistingNether"] = { ["taken"] = 4420, ["done"] = 1308, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 3123, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 8189, ["done"] = 1308, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Cavern Lurker"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1148, ["done"] = 1247, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Qaliti-TwistingNether"] = { ["taken"] = 647, ["done"] = 526, ["role"] = "TANK", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 4832, ["done"] = 4783, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5112, ["done"] = 1746, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 11739, ["done"] = 8302, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Celebras the Cursed"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1159, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 2771, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Qaliti-TwistingNether"] = { ["taken"] = 8250, ["done"] = 2614, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 4607, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 16787, ["done"] = 2614, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Noxious Slime"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2764, ["done"] = 848, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5716, ["done"] = 639, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Stormrise-TwistingNether"] = { ["taken"] = 0, ["done"] = 216, ["role"] = "HEALER", ["class"] = "SHAMAN", }, ["Qaliti-TwistingNether"] = { ["taken"] = 9303, ["done"] = 7319, ["role"] = "TANK", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 2665, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 20448, ["done"] = 9022, ["htaken"] = 0, ["hdonespell"] = { }, }, }, ["mobtaken"] = 57163, ["starttime"] = 1447792678, ["healing"] = 21440, ["power"] = { 284, -- [1] 168, -- [2] 15, -- [3] [7] = 1, }, ["multistrikes"] = 0, ["overhealing"] = 7389.30000305176, ["shielding"] = 306, ["name"] = "Celebras the Cursed", ["mobname"] = "Celebras the Cursed", ["damagetaken"] = 21246, ["mobhdone"] = 0, ["last_action"] = 1447792678, ["mobdone"] = 21246, }, -- [4] { ["healingabsorbed"] = 0, ["dispells"] = 0, ["ccbreaks"] = 0, ["time"] = 22, ["interrupts"] = 0, ["endtime"] = 1447792579, ["gotboss"] = true, ["damage"] = 24884, ["players"] = { { ["last"] = 1447792579, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Putridus Shadowstalker"] = 7020, ["Lord Vyletongue"] = 4226, }, ["auras"] = { ["Tooth and Claw"] = { ["name"] = "Tooth and Claw", ["active"] = 0, ["id"] = 135601, ["auratype"] = "DEBUFF", ["uptime"] = 2, }, ["Savage Defense"] = { ["name"] = "Savage Defense", ["active"] = 0, ["id"] = 132402, ["auratype"] = "BUFF", ["uptime"] = 12, }, }, ["role"] = "TANK", ["time"] = 22, ["interrupts"] = 0, ["damage"] = 11246, ["damagespells"] = { ["Thrash"] = { ["min"] = 89, ["DODGE"] = 3, ["critical"] = 20, ["hit"] = 48, ["totalhits"] = 71, ["id"] = 77758, ["max"] = 264, ["damage"] = 9629, }, ["Mangle"] = { ["min"] = 549, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 33917, ["max"] = 549, ["damage"] = 549, }, ["Maul"] = { ["min"] = 412, ["critical"] = 1, ["totalhits"] = 1, ["id"] = 6807, ["max"] = 412, ["damage"] = 412, }, ["Attack"] = { ["min"] = 129, ["critical"] = 1, ["hit"] = 3, ["totalhits"] = 4, ["id"] = 6603, ["max"] = 256, ["damage"] = 656, }, }, ["power"] = { { ["amount"] = 150, ["spells"] = { [33917] = 10, [16959] = 72, [158723] = 68, }, }, -- [1] }, ["damagetaken"] = 6223, ["shielding"] = 193, ["id"] = "Player-3674-06FCFAA7", ["first"] = 1447792557, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Multi-Shot"] = { ["crushing"] = 0, ["id"] = 21390, ["min"] = 993, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Multi-Shot", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 993, ["damage"] = 993, }, ["Hamstring"] = { ["crushing"] = 0, ["id"] = 9080, ["min"] = 55, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Hamstring", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 58, ["damage"] = 113, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 176, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 19, ["resisted"] = 0, ["max"] = 486, ["damage"] = 5117, }, }, ["overhealing"] = 954, ["healingspells"] = { ["Ysera's Gift"] = { ["shielding"] = 0, ["id"] = 145109, ["healing"] = 378, ["min"] = 126, ["multistrike"] = 0, ["name"] = "Ysera's Gift", ["max"] = 126, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 3, }, ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 954, ["hits"] = 4, }, ["Tooth and Claw"] = { ["shielding"] = 193, ["id"] = 135597, ["healing"] = 193, ["min"] = 193, ["multistrike"] = 0, ["name"] = "Tooth and Claw", ["max"] = 193, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 1, }, }, ["name"] = "Qaliti", ["healing"] = 571, ["healed"] = { ["Player-3674-06FC5F4D"] = { ["role"] = "HEALER", ["name"] = "Stormrise-TwistingNether", ["amount"] = 126, ["class"] = "SHAMAN", ["shielding"] = 0, }, ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 445, ["class"] = "DRUID", ["shielding"] = 193, }, }, ["maxhp"] = 6292, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [1] { ["last"] = 1447792579, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Lord Vyletongue"] = 4300, }, ["auras"] = { }, ["role"] = "DAMAGER", ["time"] = 21, ["interrupts"] = 0, ["damage"] = 4300, ["damagespells"] = { ["Auto Shot"] = { ["min"] = 119, ["critical"] = 1, ["hit"] = 7, ["totalhits"] = 8, ["id"] = 75, ["max"] = 280, ["damage"] = 1164, }, ["Steady Shot"] = { ["min"] = 109, ["critical"] = 1, ["hit"] = 3, ["totalhits"] = 4, ["id"] = 56641, ["max"] = 224, ["damage"] = 557, }, ["Multi-Shot"] = { ["min"] = 67, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 2643, ["max"] = 67, ["damage"] = 67, }, ["Aimed Shot"] = { ["min"] = 637, ["critical"] = 1, ["hit"] = 2, ["totalhits"] = 3, ["id"] = 19434, ["max"] = 1231, ["damage"] = 2512, }, }, ["power"] = { [2] = { ["amount"] = 56, ["spells"] = { [77443] = 56, }, }, }, ["damagetaken"] = 0, ["shielding"] = 0, ["id"] = "Player-1403-06025D5B", ["first"] = 1447792558, ["ccbreaks"] = 0, ["damagetakenspells"] = { }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Jyggtvå", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 4368, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [2] { ["last"] = 1447792579, ["healingabsorbed"] = 0, ["class"] = "WARLOCK", ["damaged"] = { ["Putridus Shadowstalker"] = 687, ["Lord Vyletongue"] = 3577, }, ["auras"] = { ["Corruption"] = { ["name"] = "Corruption", ["active"] = 0, ["id"] = 146739, ["auratype"] = "DEBUFF", ["uptime"] = 15, }, ["Soul Leech"] = { ["name"] = "Soul Leech", ["active"] = 2, ["id"] = 108366, ["auratype"] = "BUFF", ["uptime"] = 13, }, ["Soulburn"] = { ["name"] = "Soulburn", ["active"] = 0, ["id"] = 74434, ["auratype"] = "BUFF", ["uptime"] = 4, }, ["Drain Soul"] = { ["name"] = "Drain Soul", ["active"] = 0, ["id"] = 103103, ["auratype"] = "BUFF", ["uptime"] = 11, }, ["Unstable Affliction"] = { ["name"] = "Unstable Affliction", ["active"] = 0, ["id"] = 30108, ["auratype"] = "DEBUFF", ["uptime"] = 16, }, ["Seed of Corruption"] = { ["name"] = "Seed of Corruption", ["active"] = 0, ["id"] = 114790, ["auratype"] = "DEBUFF", ["uptime"] = 3, }, }, ["role"] = "DAMAGER", ["time"] = 21, ["interrupts"] = 0, ["damage"] = 4264, ["damagespells"] = { ["Corruption"] = { ["min"] = 24, ["critical"] = 2, ["hit"] = 21, ["totalhits"] = 23, ["id"] = 146739, ["max"] = 99, ["damage"] = 991, }, ["Touch of the Grave"] = { ["min"] = 91, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 127802, ["max"] = 91, ["damage"] = 91, }, ["Drain Soul"] = { ["min"] = 60, ["hit"] = 11, ["totalhits"] = 11, ["id"] = 103103, ["max"] = 61, ["damage"] = 663, }, ["Voltai: Firebolt"] = { ["min"] = 171, ["hit"] = 6, ["totalhits"] = 6, ["id"] = 3110, ["max"] = 172, ["damage"] = 1031, }, ["Unstable Affliction"] = { ["min"] = 32, ["critical"] = 3, ["hit"] = 15, ["totalhits"] = 18, ["id"] = 30108, ["max"] = 129, ["damage"] = 975, }, ["Seed of Corruption"] = { ["min"] = 123, ["hit"] = 4, ["totalhits"] = 4, ["id"] = 87385, ["max"] = 139, ["damage"] = 513, }, }, ["power"] = { }, ["damagetaken"] = 0, ["shielding"] = 0, ["id"] = "Player-1096-0700DF96", ["first"] = 1447792558, ["ccbreaks"] = 0, ["damagetakenspells"] = { }, ["overhealing"] = 373, ["healingspells"] = { ["Siphon Life"] = { ["shielding"] = 0, ["id"] = 63106, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Siphon Life", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 282, ["hits"] = 23, }, ["Touch of the Grave"] = { ["shielding"] = 0, ["id"] = 127802, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Touch of the Grave", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 91, ["hits"] = 1, }, }, ["name"] = "Faustoblyth", ["healing"] = 0, ["healed"] = { ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, }, ["maxhp"] = 3456, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [3] { ["last"] = 1447792576, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Putridus Shadowstalker"] = 2139, ["Lord Vyletongue"] = 2935, }, ["auras"] = { ["Thrash"] = { ["name"] = "Thrash", ["active"] = 0, ["id"] = 106830, ["auratype"] = "DEBUFF", ["uptime"] = 7, }, ["Predatory Swiftness"] = { ["name"] = "Predatory Swiftness", ["active"] = 1, ["id"] = 69369, ["auratype"] = "BUFF", ["uptime"] = 8, }, }, ["role"] = "DAMAGER", ["time"] = 18, ["interrupts"] = 0, ["damage"] = 5074, ["damagespells"] = { ["Shred"] = { ["min"] = 365, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 5221, ["max"] = 365, ["damage"] = 365, }, ["Ferocious Bite"] = { ["min"] = 946, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 22568, ["max"] = 946, ["damage"] = 946, }, ["Thrash"] = { ["min"] = 79, ["critical"] = 1, ["hit"] = 7, ["totalhits"] = 8, ["id"] = 106830, ["max"] = 227, ["damage"] = 847, }, ["Swipe"] = { ["min"] = 179, ["critical"] = 1, ["hit"] = 4, ["totalhits"] = 5, ["id"] = 106785, ["max"] = 367, ["damage"] = 1118, }, ["Attack"] = { ["min"] = 115, ["DODGE"] = 1, ["critical"] = 1, ["hit"] = 13, ["totalhits"] = 15, ["id"] = 6603, ["max"] = 236, ["damage"] = 1798, }, }, ["power"] = { [3] = { ["amount"] = -25, ["spells"] = { [22568] = -25, }, }, }, ["damagetaken"] = 1197, ["shielding"] = 0, ["id"] = "Player-1403-06025CCB", ["first"] = 1447792558, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Multi-Shot"] = { ["crushing"] = 0, ["id"] = 21390, ["min"] = 1197, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Multi-Shot", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 1197, ["damage"] = 1197, }, }, ["overhealing"] = 26, ["healingspells"] = { ["Ysera's Gift"] = { ["shielding"] = 0, ["id"] = 145110, ["healing"] = 495, ["min"] = 147, ["multistrike"] = 0, ["name"] = "Ysera's Gift", ["max"] = 174, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 26, ["hits"] = 3, }, }, ["name"] = "Tjago", ["healing"] = 495, ["healed"] = { ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 174, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-3674-06FC5F4D"] = { ["role"] = "HEALER", ["name"] = "Stormrise-TwistingNether", ["amount"] = 147, ["class"] = "SHAMAN", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 174, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 4344, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [4] { ["last"] = 1447792578, ["healingabsorbed"] = 0, ["class"] = "SHAMAN", ["damaged"] = { }, ["auras"] = { ["Riptide"] = { ["name"] = "Riptide", ["active"] = 1, ["id"] = 61295, ["auratype"] = "BUFF", ["uptime"] = 5, }, ["Healing Stream Totem"] = { ["name"] = "Healing Stream Totem", ["active"] = 0, ["id"] = 5394, ["auratype"] = "BUFF", ["uptime"] = 15, }, }, ["role"] = "HEALER", ["time"] = 19, ["interrupts"] = 0, ["damage"] = 0, ["damagespells"] = { }, ["power"] = { }, ["damagetaken"] = 1359, ["shielding"] = 0, ["id"] = "Player-3674-06FC5F4D", ["first"] = 1447792559, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Multi-Shot"] = { ["crushing"] = 0, ["id"] = 21390, ["min"] = 1359, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Multi-Shot", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 1359, ["damage"] = 1359, }, }, ["overhealing"] = 7680, ["healingspells"] = { ["Riptide"] = { ["shielding"] = 0, ["id"] = 61295, ["healing"] = 827, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Riptide", ["max"] = 396, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 965, ["hits"] = 11, }, ["Healing Stream Totem"] = { ["shielding"] = 0, ["id"] = 52042, ["healing"] = 1565, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Healing Stream Totem", ["max"] = 225, ["critical"] = 1, ["absorbed"] = 0, ["overhealing"] = 701, ["hits"] = 10, }, ["Earth Shield"] = { ["shielding"] = 0, ["id"] = 379, ["healing"] = 515, ["min"] = 128, ["multistrike"] = 0, ["name"] = "Earth Shield", ["max"] = 129, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 4, }, ["Healing Surge"] = { ["shielding"] = 0, ["id"] = 8004, ["healing"] = 6476, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Healing Surge", ["max"] = 2287, ["critical"] = 2, ["absorbed"] = 0, ["overhealing"] = 6014, ["hits"] = 7, }, }, ["name"] = "Stormrise", ["healing"] = 9383, ["healed"] = { ["Player-3674-06FC5F4D"] = { ["role"] = "HEALER", ["name"] = "Stormrise-TwistingNether", ["amount"] = 1071, ["class"] = "SHAMAN", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 0, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 7289, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 1023, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, }, ["maxhp"] = 4300, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [5] }, ["deaths"] = 0, ["mobs"] = { ["Putridus Shadowstalker"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 687, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Qaliti-TwistingNether"] = { ["taken"] = 7020, ["done"] = 4045, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 2139, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 9846, ["done"] = 4045, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Lord Vyletongue"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 4300, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2935, ["done"] = 1197, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Stormrise-TwistingNether"] = { ["taken"] = 0, ["done"] = 1359, ["role"] = "HEALER", ["class"] = "SHAMAN", }, ["Qaliti-TwistingNether"] = { ["taken"] = 4226, ["done"] = 2178, ["role"] = "TANK", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 3577, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 15038, ["done"] = 4734, ["htaken"] = 0, ["hdonespell"] = { }, }, }, ["mobtaken"] = 24884, ["starttime"] = 1447792557, ["healing"] = 10449, ["power"] = { 150, -- [1] 56, -- [2] -25, -- [3] }, ["multistrikes"] = 0, ["overhealing"] = 9033, ["shielding"] = 193, ["name"] = "Lord Vyletongue", ["mobname"] = "Lord Vyletongue", ["damagetaken"] = 8779, ["mobhdone"] = 0, ["last_action"] = 1447792557, ["mobdone"] = 8779, }, -- [5] { ["healingabsorbed"] = 0, ["dispells"] = 0, ["ccbreaks"] = 0, ["time"] = 139, ["interrupts"] = 0, ["endtime"] = 1447792548, ["gotboss"] = true, ["damage"] = 100674, ["players"] = { { ["last"] = 1447792548, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Snake"] = 71, ["Poison Sprite"] = 3351, ["Putridus Shadowstalker"] = 3190, ["Putridus Satyr"] = 7694, ["Deeprot Stomper"] = 3124, ["Corruptor"] = 6142, ["Tinkerer Gizlock"] = 4989, ["Putridus Trickster"] = 7861, ["Deeprot Tangler"] = 6646, }, ["auras"] = { ["Growl"] = { ["name"] = "Growl", ["active"] = 0, ["id"] = 6795, ["auratype"] = "DEBUFF", ["uptime"] = 6, }, ["Faerie Fire"] = { ["name"] = "Faerie Fire", ["active"] = 0, ["id"] = 770, ["auratype"] = "DEBUFF", ["uptime"] = 14, }, ["Tooth and Claw"] = { ["name"] = "Tooth and Claw", ["active"] = 0, ["id"] = 135286, ["auratype"] = "BUFF", ["uptime"] = 45, }, ["Thrash"] = { ["name"] = "Thrash", ["active"] = 0, ["id"] = 77758, ["auratype"] = "DEBUFF", ["uptime"] = 109, }, ["Immobilized"] = { ["name"] = "Immobilized", ["active"] = 0, ["id"] = 45334, ["auratype"] = "DEBUFF", ["uptime"] = 8, }, ["Savage Defense"] = { ["name"] = "Savage Defense", ["active"] = 0, ["id"] = 132402, ["auratype"] = "BUFF", ["uptime"] = 30, }, }, ["role"] = "TANK", ["time"] = 139, ["interrupts"] = 0, ["damage"] = 43068, ["damagespells"] = { ["Faerie Fire"] = { ["min"] = 73, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 770, ["max"] = 73, ["damage"] = 73, }, ["Maul"] = { ["min"] = 191, ["critical"] = 2, ["hit"] = 3, ["totalhits"] = 5, ["id"] = 6807, ["max"] = 392, ["damage"] = 1318, }, ["Mangle"] = { ["min"] = 502, ["critical"] = 1, ["hit"] = 3, ["totalhits"] = 4, ["id"] = 33917, ["max"] = 1081, ["damage"] = 2657, }, ["Thrash"] = { ["min"] = 49, ["DODGE"] = 1, ["critical"] = 84, ["hit"] = 301, ["totalhits"] = 386, ["id"] = 77758, ["max"] = 264, ["damage"] = 36246, }, ["Immobilized"] = { ["id"] = 45334, ["totalhits"] = 1, ["IMMUNE"] = 1, ["max"] = 0, ["damage"] = 0, }, ["Attack"] = { ["min"] = 82, ["critical"] = 2, ["hit"] = 21, ["totalhits"] = 23, ["id"] = 6603, ["max"] = 191, ["damage"] = 2774, }, }, ["power"] = { { ["amount"] = 745, ["spells"] = { [33917] = 40, [16959] = 320, [158723] = 385, }, }, -- [1] }, ["damagetaken"] = 26487, ["shielding"] = 468, ["id"] = "Player-3674-06FCFAA7", ["first"] = 1447792409, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Strike"] = { ["crushing"] = 0, ["id"] = 13446, ["min"] = 293, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Strike", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 340, ["damage"] = 633, }, ["Hamstring"] = { ["crushing"] = 0, ["id"] = 9080, ["min"] = 43, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Hamstring", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 46, ["damage"] = 133, }, ["Backstab"] = { ["crushing"] = 0, ["id"] = 15657, ["min"] = 293, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Backstab", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 293, ["damage"] = 293, }, ["Gouge"] = { ["crushing"] = 0, ["id"] = 12540, ["min"] = 9, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Gouge", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 9, ["damage"] = 9, }, ["Poison"] = { ["crushing"] = 0, ["id"] = 13298, ["min"] = 33, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poison", ["blocked"] = 0, ["totalhits"] = 9, ["resisted"] = 0, ["max"] = 34, ["damage"] = 300, }, ["Sinister Strike"] = { ["crushing"] = 0, ["id"] = 15667, ["min"] = 163, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Sinister Strike", ["blocked"] = 0, ["totalhits"] = 7, ["resisted"] = 0, ["max"] = 237, ["damage"] = 1472, }, ["Poison Bolt"] = { ["crushing"] = 0, ["id"] = 21067, ["min"] = 24, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Poison Bolt", ["blocked"] = 0, ["totalhits"] = 12, ["resisted"] = 0, ["max"] = 171, ["damage"] = 854, }, ["Goblin Dragon Gun"] = { ["crushing"] = 0, ["id"] = 21910, ["min"] = 204, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Goblin Dragon Gun", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 226, ["damage"] = 1076, }, ["Entangling Roots"] = { ["crushing"] = 0, ["id"] = 21331, ["min"] = 33, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Entangling Roots", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 33, ["damage"] = 66, }, ["Corruption"] = { ["crushing"] = 0, ["id"] = 21068, ["min"] = 14, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Corruption", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 15, ["damage"] = 73, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 57, ["absorbed"] = 468, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 114, ["resisted"] = 0, ["max"] = 508, ["damage"] = 21578, }, }, ["overhealing"] = 1419, ["healingspells"] = { ["Ysera's Gift"] = { ["shielding"] = 0, ["id"] = 145109, ["healing"] = 3141, ["min"] = 21, ["multistrike"] = 0, ["name"] = "Ysera's Gift", ["max"] = 126, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 258, ["hits"] = 27, }, ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 2148, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 205, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 1161, ["hits"] = 22, }, ["Tooth and Claw"] = { ["shielding"] = 468, ["id"] = 135597, ["healing"] = 468, ["min"] = 468, ["multistrike"] = 0, ["name"] = "Tooth and Claw", ["max"] = 468, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 1, }, }, ["name"] = "Qaliti", ["healing"] = 5757, ["healed"] = { ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 5610, ["class"] = "DRUID", ["shielding"] = 468, }, ["Player-3674-06FC5F4D"] = { ["role"] = "HEALER", ["name"] = "Stormrise-TwistingNether", ["amount"] = 126, ["class"] = "SHAMAN", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 21, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 6292, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [1] { ["last"] = 1447792548, ["healingabsorbed"] = 0, ["class"] = "SHAMAN", ["damaged"] = { ["Tinkerer Gizlock"] = 687, }, ["auras"] = { ["Riptide"] = { ["name"] = "Riptide", ["active"] = 1, ["id"] = 61295, ["auratype"] = "BUFF", ["uptime"] = 72, }, ["Healing Stream Totem"] = { ["name"] = "Healing Stream Totem", ["active"] = 0, ["id"] = 5394, ["auratype"] = "BUFF", ["uptime"] = 30, }, ["Earth Shield"] = { ["name"] = "Earth Shield", ["active"] = 1, ["id"] = 974, ["auratype"] = "BUFF", ["uptime"] = 52, }, ["Flame Shock"] = { ["name"] = "Flame Shock", ["active"] = 0, ["id"] = 8050, ["auratype"] = "DEBUFF", ["uptime"] = 13, }, }, ["role"] = "HEALER", ["time"] = 139, ["interrupts"] = 0, ["damage"] = 687, ["damagespells"] = { ["Searing Totem: Searing Bolt"] = { ["min"] = 41, ["hit"] = 6, ["totalhits"] = 6, ["id"] = 3606, ["max"] = 42, ["damage"] = 250, }, ["Flame Shock"] = { ["min"] = 73, ["hit"] = 5, ["totalhits"] = 5, ["id"] = 8050, ["max"] = 145, ["damage"] = 437, }, }, ["power"] = { [0] = { ["amount"] = 99, ["spells"] = { [52128] = 99, }, }, }, ["damagetaken"] = 1218, ["shielding"] = 0, ["id"] = "Player-3674-06FC5F4D", ["first"] = 1447792409, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Strike"] = { ["crushing"] = 0, ["id"] = 13446, ["min"] = 383, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Strike", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 383, ["damage"] = 383, }, ["Entangling Roots"] = { ["crushing"] = 0, ["id"] = 21331, ["min"] = 27, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Entangling Roots", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 37, ["damage"] = 64, }, ["War Stomp"] = { ["crushing"] = 0, ["id"] = 11876, ["min"] = 505, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "War Stomp", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 505, ["damage"] = 505, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 266, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 266, ["damage"] = 266, }, }, ["overhealing"] = 16656, ["healingspells"] = { ["Riptide"] = { ["shielding"] = 0, ["id"] = 61295, ["healing"] = 9000, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Riptide", ["max"] = 791, ["critical"] = 5, ["absorbed"] = 0, ["overhealing"] = 4727, ["hits"] = 82, }, ["Healing Stream Totem"] = { ["shielding"] = 0, ["id"] = 52042, ["healing"] = 3411, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Healing Stream Totem", ["max"] = 450, ["critical"] = 2, ["absorbed"] = 0, ["overhealing"] = 2488, ["hits"] = 28, }, ["Earth Shield"] = { ["shielding"] = 0, ["id"] = 379, ["healing"] = 4312, ["min"] = 76, ["multistrike"] = 0, ["name"] = "Earth Shield", ["max"] = 257, ["critical"] = 5, ["absorbed"] = 0, ["overhealing"] = 178, ["hits"] = 30, }, ["Healing Surge"] = { ["shielding"] = 0, ["id"] = 8004, ["healing"] = 10929, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Healing Surge", ["max"] = 1414, ["critical"] = 1, ["absorbed"] = 0, ["overhealing"] = 9263, ["hits"] = 14, }, }, ["name"] = "Stormrise", ["healing"] = 27652, ["healed"] = { ["Player-3674-06FC5F4D"] = { ["role"] = "HEALER", ["name"] = "Stormrise-TwistingNether", ["amount"] = 1497, ["class"] = "SHAMAN", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 1068, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 3886, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 439, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 20762, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 4104, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [2] { ["last"] = 1447792548, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Deeprot Stomper"] = 4735, ["Poison Sprite"] = 952, ["Putridus Shadowstalker"] = 3652, ["Deeprot Tangler"] = 5951, ["Corruptor"] = 2812, ["Tinkerer Gizlock"] = 4495, ["Putridus Satyr"] = 6339, ["Putridus Trickster"] = 8145, }, ["auras"] = { ["Predatory Swiftness"] = { ["name"] = "Predatory Swiftness", ["active"] = 1, ["id"] = 69369, ["auratype"] = "BUFF", ["uptime"] = 58, }, ["Thrash"] = { ["name"] = "Thrash", ["active"] = 0, ["id"] = 106830, ["auratype"] = "DEBUFF", ["uptime"] = 9, }, ["Rake"] = { ["name"] = "Rake", ["active"] = 0, ["id"] = 155722, ["auratype"] = "DEBUFF", ["uptime"] = 14, }, ["Savage Roar"] = { ["name"] = "Savage Roar", ["active"] = 1, ["id"] = 52610, ["auratype"] = "BUFF", ["uptime"] = 124, }, }, ["role"] = "DAMAGER", ["time"] = 139, ["interrupts"] = 0, ["damage"] = 37081, ["damagespells"] = { ["Shred"] = { ["min"] = 274, ["critical"] = 2, ["hit"] = 7, ["totalhits"] = 9, ["id"] = 5221, ["max"] = 786, ["damage"] = 4129, }, ["Thrash"] = { ["min"] = 79, ["hit"] = 5, ["totalhits"] = 5, ["id"] = 106830, ["max"] = 112, ["damage"] = 461, }, ["Ferocious Bite"] = { ["min"] = 723, ["critical"] = 2, ["hit"] = 2, ["totalhits"] = 4, ["id"] = 22568, ["max"] = 1261, ["damage"] = 3981, }, ["Rake"] = { ["min"] = 134, ["critical"] = 2, ["hit"] = 4, ["totalhits"] = 6, ["id"] = 1822, ["max"] = 274, ["damage"] = 1086, }, ["Swipe"] = { ["DODGE"] = 2, ["min"] = 150, ["critical"] = 12, ["hit"] = 45, ["totalhits"] = 59, ["id"] = 106785, ["max"] = 400, ["damage"] = 12786, }, ["Attack"] = { ["min"] = 87, ["critical"] = 29, ["hit"] = 65, ["totalhits"] = 94, ["id"] = 6603, ["max"] = 255, ["damage"] = 14638, }, }, ["power"] = { [3] = { ["amount"] = -35, ["spells"] = { [22568] = -35, }, }, }, ["damagetaken"] = 4765, ["shielding"] = 0, ["id"] = "Player-1403-06025CCB", ["first"] = 1447792409, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Gouge"] = { ["crushing"] = 0, ["id"] = 12540, ["min"] = 17, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Gouge", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 17, ["damage"] = 17, }, ["Entangling Roots"] = { ["crushing"] = 0, ["id"] = 21331, ["min"] = 37, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Entangling Roots", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 37, ["damage"] = 74, }, ["Sinister Strike"] = { ["crushing"] = 0, ["id"] = 15667, ["min"] = 264, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Sinister Strike", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 264, ["damage"] = 264, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 119, ["absorbed"] = 0, ["critical"] = 2, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 13, ["resisted"] = 0, ["max"] = 647, ["damage"] = 4410, }, }, ["overhealing"] = 1310, ["healingspells"] = { ["Ysera's Gift"] = { ["shielding"] = 0, ["id"] = 145110, ["healing"] = 3522, ["min"] = 39, ["multistrike"] = 0, ["name"] = "Ysera's Gift", ["max"] = 174, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 475, ["hits"] = 23, }, ["Heal"] = { ["shielding"] = 0, ["id"] = 181867, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Heal", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 835, ["hits"] = 1, }, }, ["name"] = "Tjago", ["healing"] = 3522, ["healed"] = { ["Player-3674-06FC5F4D"] = { ["role"] = "HEALER", ["name"] = "Stormrise-TwistingNether", ["amount"] = 173, ["class"] = "SHAMAN", ["shielding"] = 0, }, ["Player-3674-06FCFAA7"] = { ["role"] = "TANK", ["name"] = "Qaliti-TwistingNether", ["amount"] = 2253, ["class"] = "DRUID", ["shielding"] = 0, }, ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 173, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "DAMAGER", ["name"] = "Tjago", ["amount"] = 923, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 4344, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [3] { ["last"] = 1447792548, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Deeprot Stomper"] = 1856, ["Poison Sprite"] = 658, ["Corruptor"] = 279, ["Putridus Trickster"] = 816, ["Deeprot Tangler"] = 2285, ["Tinkerer Gizlock"] = 3071, ["Putridus Satyr"] = 1176, ["Putridus Shadowstalker"] = 1398, }, ["auras"] = { }, ["role"] = "DAMAGER", ["time"] = 138, ["interrupts"] = 0, ["damage"] = 11539, ["damagespells"] = { ["Auto Shot"] = { ["min"] = 118, ["DODGE"] = 1, ["critical"] = 4, ["hit"] = 16, ["totalhits"] = 21, ["id"] = 75, ["max"] = 267, ["damage"] = 3045, }, ["Aimed Shot"] = { ["DODGE"] = 1, ["min"] = 555, ["hit"] = 11, ["totalhits"] = 12, ["id"] = 19434, ["max"] = 686, ["damage"] = 6892, }, ["Multi-Shot"] = { ["min"] = 130, ["critical"] = 4, ["totalhits"] = 4, ["id"] = 2643, ["max"] = 148, ["damage"] = 555, }, ["Steady Shot"] = { ["min"] = 97, ["hit"] = 10, ["totalhits"] = 10, ["id"] = 56641, ["max"] = 112, ["damage"] = 1047, }, }, ["power"] = { [2] = { ["amount"] = 154, ["spells"] = { [77443] = 154, }, }, }, ["damagetaken"] = 1068, ["shielding"] = 0, ["id"] = "Player-1403-06025D5B", ["first"] = 1447792410, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Bomb"] = { ["crushing"] = 0, ["id"] = 9143, ["min"] = 1068, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Bomb", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 1068, ["damage"] = 1068, }, }, ["overhealing"] = 354, ["healingspells"] = { ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 354, ["hits"] = 4, }, }, ["name"] = "Jyggtvå", ["healing"] = 0, ["healed"] = { ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 0, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["maxhp"] = 4368, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [4] { ["last"] = 1447792542, ["healingabsorbed"] = 0, ["class"] = "WARLOCK", ["damaged"] = { ["Deeprot Stomper"] = 971, ["Poison Sprite"] = 173, ["Putridus Shadowstalker"] = 1854, ["Deeprot Tangler"] = 375, ["Tinkerer Gizlock"] = 2351, ["Putridus Satyr"] = 999, ["Putridus Trickster"] = 1576, }, ["auras"] = { ["Soulburn"] = { ["name"] = "Soulburn", ["active"] = 0, ["id"] = 74434, ["auratype"] = "BUFF", ["uptime"] = 25, }, ["Soul Leech"] = { ["name"] = "Soul Leech", ["active"] = 2, ["id"] = 108366, ["auratype"] = "BUFF", ["uptime"] = 83, }, ["Drain Soul"] = { ["name"] = "Drain Soul", ["active"] = 0, ["id"] = 103103, ["auratype"] = "BUFF", ["uptime"] = 20, }, ["Corruption"] = { ["name"] = "Corruption", ["active"] = 0, ["id"] = 146739, ["auratype"] = "DEBUFF", ["uptime"] = 50, }, ["Drain Life"] = { ["name"] = "Drain Life", ["active"] = 0, ["id"] = 689, ["auratype"] = "BUFF", ["uptime"] = 3, }, ["Unstable Affliction"] = { ["name"] = "Unstable Affliction", ["active"] = 0, ["id"] = 30108, ["auratype"] = "DEBUFF", ["uptime"] = 15, }, ["Seed of Corruption"] = { ["name"] = "Seed of Corruption", ["active"] = 0, ["id"] = 114790, ["auratype"] = "DEBUFF", ["uptime"] = 10, }, }, ["role"] = "DAMAGER", ["time"] = 132, ["interrupts"] = 0, ["damage"] = 8299, ["damagespells"] = { ["Corruption"] = { ["min"] = 24, ["critical"] = 3, ["hit"] = 39, ["totalhits"] = 42, ["id"] = 131740, ["max"] = 99, ["damage"] = 1939, }, ["Drain Life"] = { ["min"] = 48, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 689, ["max"] = 48, ["damage"] = 144, }, ["Touch of the Grave"] = { ["min"] = 88, ["hit"] = 5, ["totalhits"] = 5, ["id"] = 127802, ["max"] = 98, ["damage"] = 462, }, ["Drain Soul"] = { ["min"] = 60, ["critical"] = 2, ["hit"] = 16, ["totalhits"] = 18, ["id"] = 103103, ["max"] = 121, ["damage"] = 1203, }, ["Voltai: Firebolt"] = { ["min"] = 171, ["critical"] = 4, ["hit"] = 7, ["totalhits"] = 11, ["id"] = 3110, ["max"] = 343, ["damage"] = 2572, }, ["Unstable Affliction"] = { ["min"] = 32, ["critical"] = 2, ["hit"] = 9, ["totalhits"] = 11, ["id"] = 131736, ["max"] = 129, ["damage"] = 617, }, ["Seed of Corruption"] = { ["min"] = 16, ["hit"] = 14, ["totalhits"] = 14, ["id"] = 87385, ["max"] = 137, ["damage"] = 1362, }, }, ["power"] = { [7] = { ["amount"] = 3, ["spells"] = { [87388] = 2, [17941] = 1, }, }, }, ["damagetaken"] = 835, ["shielding"] = 72, ["id"] = "Player-1096-0700DF96", ["first"] = 1447792410, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Bomb"] = { ["crushing"] = 0, ["id"] = 9143, ["min"] = 835, ["absorbed"] = 72, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Bomb", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 835, ["damage"] = 835, }, }, ["overhealing"] = 1409.15000915527, ["healingspells"] = { ["Soul Leech"] = { ["shielding"] = 72, ["id"] = 108366, ["healing"] = 72, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Soul Leech", ["max"] = 72, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 552.150009155274, ["hits"] = 6, }, ["Drain Life"] = { ["shielding"] = 0, ["id"] = 89653, ["healing"] = 73, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Drain Life", ["max"] = 38, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 35, ["hits"] = 3, }, ["Siphon Life"] = { ["shielding"] = 0, ["id"] = 63106, ["healing"] = 62, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Siphon Life", ["max"] = 13, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 448, ["hits"] = 42, }, ["Touch of the Grave"] = { ["shielding"] = 0, ["id"] = 127802, ["healing"] = 88, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Touch of the Grave", ["max"] = 88, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 374, ["hits"] = 5, }, }, ["name"] = "Faustoblyth", ["healing"] = 295, ["healed"] = { ["Player-1096-0700DF96"] = { ["role"] = "DAMAGER", ["name"] = "Faustoblyth-Ravenholdt", ["amount"] = 295, ["class"] = "WARLOCK", ["shielding"] = 72, }, ["Pet-0-3102-349-6994-416-010246ED8B"] = { ["role"] = "NONE", ["name"] = "Voltai", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, }, ["maxhp"] = 3456, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [5] }, ["deaths"] = 0, ["mobs"] = { ["Snake"] = { ["players"] = { ["Qaliti-TwistingNether"] = { ["taken"] = 71, ["done"] = 0, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 71, ["done"] = 0, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Poison Sprite"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 658, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 173, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Qaliti-TwistingNether"] = { ["taken"] = 3351, ["done"] = 1102, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 952, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 5134, ["done"] = 1102, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Putridus Shadowstalker"] = { ["players"] = { ["Tjago"] = { ["taken"] = 3652, ["done"] = 1356, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Qaliti-TwistingNether"] = { ["taken"] = 3190, ["done"] = 2925, ["role"] = "TANK", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 1398, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1854, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 10094, ["done"] = 4281, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Putridus Satyr"] = { ["players"] = { ["Faustoblyth-Ravenholdt"] = { ["taken"] = 999, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 1176, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Qaliti-TwistingNether"] = { ["taken"] = 7694, ["done"] = 9113, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 6339, ["done"] = 1171, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 16208, ["done"] = 10284, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Deeprot Stomper"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 1856, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 4735, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 971, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Qaliti-TwistingNether"] = { ["taken"] = 3124, ["done"] = 2634, ["role"] = "TANK", ["class"] = "DRUID", }, ["Stormrise-TwistingNether"] = { ["taken"] = 0, ["done"] = 1154, ["role"] = "HEALER", ["class"] = "SHAMAN", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 10686, ["done"] = 3788, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Corruptor"] = { ["players"] = { ["Qaliti-TwistingNether"] = { ["taken"] = 6142, ["done"] = 1309, ["role"] = "TANK", ["class"] = "DRUID", }, ["Jyggtvå"] = { ["taken"] = 279, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2812, ["done"] = 256, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 9233, ["done"] = 1565, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Tinkerer Gizlock"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 3071, ["done"] = 1068, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 4495, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 2351, ["done"] = 835, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Qaliti-TwistingNether"] = { ["taken"] = 4989, ["done"] = 2188, ["role"] = "TANK", ["class"] = "DRUID", }, ["Stormrise-TwistingNether"] = { ["taken"] = 687, ["done"] = 0, ["role"] = "HEALER", ["class"] = "SHAMAN", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 15593, ["done"] = 4091, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Putridus Trickster"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 816, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 1576, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Qaliti-TwistingNether"] = { ["taken"] = 7861, ["done"] = 4186, ["role"] = "TANK", ["class"] = "DRUID", }, ["Tjago"] = { ["taken"] = 8145, ["done"] = 1511, ["role"] = "DAMAGER", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 18398, ["done"] = 5697, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Deeprot Tangler"] = { ["players"] = { ["Jyggtvå"] = { ["taken"] = 2285, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5951, ["done"] = 471, ["role"] = "DAMAGER", ["class"] = "DRUID", }, ["Stormrise-TwistingNether"] = { ["taken"] = 0, ["done"] = 64, ["role"] = "HEALER", ["class"] = "SHAMAN", }, ["Qaliti-TwistingNether"] = { ["taken"] = 6646, ["done"] = 3030, ["role"] = "TANK", ["class"] = "DRUID", }, ["Faustoblyth-Ravenholdt"] = { ["taken"] = 375, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 15257, ["done"] = 3565, ["htaken"] = 0, ["hdonespell"] = { }, }, }, ["mobtaken"] = 100674, ["starttime"] = 1447792409, ["healing"] = 37226, ["power"] = { 745, -- [1] 154, -- [2] -35, -- [3] [7] = 3, [0] = 99, }, ["multistrikes"] = 0, ["overhealing"] = 21148.1500091553, ["shielding"] = 540, ["name"] = "Tinkerer Gizlock", ["mobname"] = "Tinkerer Gizlock", ["damagetaken"] = 34373, ["mobhdone"] = 0, ["last_action"] = 1447792409, ["mobdone"] = 34373, }, -- [6] { ["healingabsorbed"] = 0, ["dispells"] = 0, ["ccbreaks"] = 0, ["time"] = 86, ["interrupts"] = 2, ["endtime"] = 1447791224, ["gotboss"] = true, ["damage"] = 44966, ["players"] = { { ["last"] = 1447791222, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Scarlet Zealot"] = 362, ["High Inquisitor Whitemane"] = 6708, ["Commander Durand"] = 4166, ["Scarlet Judicator"] = 3445, }, ["auras"] = { }, ["role"] = "DAMAGER", ["time"] = 83, ["interrupts"] = 2, ["damage"] = 14681, ["damagespells"] = { ["Auto Shot"] = { ["min"] = 111, ["critical"] = 3, ["hit"] = 19, ["totalhits"] = 22, ["id"] = 75, ["max"] = 244, ["damage"] = 2992, }, ["Steady Shot"] = { ["min"] = 91, ["ABSORB"] = 1, ["critical"] = 2, ["hit"] = 10, ["totalhits"] = 13, ["id"] = 56641, ["max"] = 213, ["damage"] = 1501, }, ["Aimed Shot"] = { ["min"] = 544, ["multistrike"] = 2, ["critical"] = 6, ["hit"] = 4, ["totalhits"] = 10, ["id"] = 19434, ["max"] = 1326, ["damage"] = 10188, }, }, ["power"] = { [2] = { ["amount"] = 168, ["spells"] = { [77443] = 168, }, }, }, ["damagetaken"] = 762, ["shielding"] = 0, ["id"] = "Player-1403-06025D5B", ["first"] = 1447791139, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 267, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 267, ["damage"] = 267, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 84, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 84, ["damage"] = 84, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 202, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 209, ["damage"] = 411, }, }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Jyggtvå", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 4176, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [1] { ["last"] = 1447791223, ["healingabsorbed"] = 0, ["class"] = "PRIEST", ["damaged"] = { ["High Inquisitor Whitemane"] = 2224, ["Commander Durand"] = 1725, ["Scarlet Judicator"] = 1170, }, ["auras"] = { ["Borrowed Time"] = { ["name"] = "Borrowed Time", ["active"] = 0, ["id"] = 59889, ["auratype"] = "BUFF", ["uptime"] = 17, }, ["Holy Fire"] = { ["name"] = "Holy Fire", ["active"] = 0, ["id"] = 14914, ["auratype"] = "DEBUFF", ["uptime"] = 26, }, ["Power Word: Shield"] = { ["name"] = "Power Word: Shield", ["active"] = 0, ["id"] = 17, ["auratype"] = "BUFF", ["uptime"] = 27, }, ["Focused Will"] = { ["name"] = "Focused Will", ["active"] = 0, ["id"] = 45242, ["auratype"] = "BUFF", ["uptime"] = 8, }, ["Shadow Word: Pain"] = { ["name"] = "Shadow Word: Pain", ["active"] = 0, ["id"] = 589, ["auratype"] = "DEBUFF", ["uptime"] = 67, }, ["Divine Aegis"] = { ["name"] = "Divine Aegis", ["active"] = 1, ["id"] = 47753, ["auratype"] = "BUFF", ["uptime"] = 11, }, ["Weakened Soul"] = { ["name"] = "Weakened Soul", ["active"] = 0, ["id"] = 6788, ["auratype"] = "DEBUFF", ["uptime"] = 35, }, ["Body and Soul"] = { ["name"] = "Body and Soul", ["active"] = 0, ["id"] = 65081, ["auratype"] = "BUFF", ["uptime"] = 12, }, }, ["role"] = "HEALER", ["time"] = 84, ["interrupts"] = 0, ["damage"] = 5119, ["damagespells"] = { ["Holy Fire"] = { ["min"] = 5, ["multistrike"] = 6, ["critical"] = 4, ["hit"] = 28, ["totalhits"] = 32, ["id"] = 14914, ["max"] = 242, ["damage"] = 964, }, ["Penance"] = { ["min"] = 211, ["hit"] = 5, ["totalhits"] = 5, ["id"] = 47666, ["max"] = 211, ["damage"] = 1055, }, ["Smite"] = { ["min"] = 162, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 585, ["max"] = 162, ["damage"] = 162, }, ["Shadow Word: Pain"] = { ["max"] = 172, ["min"] = 36, ["multistrike"] = 3, ["critical"] = 5, ["hit"] = 26, ["totalhits"] = 32, ["ABSORB"] = 1, ["id"] = 589, ["damage"] = 2937, }, ["Attack"] = { ["min"] = 1, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 6603, ["max"] = 1, ["damage"] = 1, }, }, ["power"] = { }, ["damagetaken"] = 318, ["shielding"] = 3175, ["id"] = "Player-1092-071A5C1A", ["first"] = 1447791139, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 318, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 318, ["damage"] = 318, }, }, ["overhealing"] = 3239.5048828125, ["healingspells"] = { ["Power Word: Shield"] = { ["shielding"] = 2092, ["id"] = 17, ["healing"] = 2092, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Power Word: Shield", ["max"] = 466, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 1046.82495117188, ["hits"] = 9, }, ["Divine Aegis"] = { ["shielding"] = 1083, ["id"] = 47753, ["healing"] = 1083, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Divine Aegis", ["max"] = 449, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 1083.67993164063, ["hits"] = 6, }, ["Flash Heal"] = { ["shielding"] = 0, ["id"] = 2061, ["healing"] = 7855, ["min"] = 0, ["multistrike"] = 2, ["name"] = "Flash Heal", ["max"] = 1043, ["critical"] = 2, ["absorbed"] = 0, ["overhealing"] = 1109, ["hits"] = 10, }, }, ["name"] = "Gwah", ["healing"] = 11030, ["healed"] = { ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 664, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "TANK", ["name"] = "Tjago", ["amount"] = 6925, ["class"] = "DRUID", ["shielding"] = 3175, }, ["Player-1596-07BCD133"] = { ["role"] = "DAMAGER", ["name"] = "Demonroids-TheMaelstrom", ["amount"] = 1042, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-1596-08D87980"] = { ["role"] = "DAMAGER", ["name"] = "Elelise-TheMaelstrom", ["amount"] = 2399, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["maxhp"] = 3555, ["dispells"] = 0, ["multistrikes"] = 2, }, -- [2] { ["last"] = 1447791223, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Scarlet Zealot"] = 263, ["High Inquisitor Whitemane"] = 5207, ["Commander Durand"] = 6246, ["Scarlet Judicator"] = 2518, }, ["auras"] = { ["Thrash"] = { ["name"] = "Thrash", ["active"] = 0, ["id"] = 77758, ["auratype"] = "DEBUFF", ["uptime"] = 66, }, ["Faerie Fire"] = { ["name"] = "Faerie Fire", ["active"] = 0, ["id"] = 770, ["auratype"] = "DEBUFF", ["uptime"] = 50, }, ["Growl"] = { ["name"] = "Growl", ["active"] = 0, ["id"] = 6795, ["auratype"] = "DEBUFF", ["uptime"] = 6, }, ["Savage Defense"] = { ["name"] = "Savage Defense", ["active"] = 0, ["id"] = 132402, ["auratype"] = "BUFF", ["uptime"] = 6, }, }, ["role"] = "TANK", ["time"] = 81, ["interrupts"] = 0, ["damage"] = 14234, ["damagespells"] = { ["Faerie Fire"] = { ["min"] = 59, ["critical"] = 1, ["hit"] = 2, ["totalhits"] = 3, ["id"] = 770, ["max"] = 121, ["damage"] = 239, }, ["Mangle"] = { ["min"] = 87, ["multistrike"] = 1, ["critical"] = 2, ["hit"] = 5, ["totalhits"] = 7, ["id"] = 33917, ["max"] = 826, ["damage"] = 3442, }, ["Maul"] = { ["min"] = 132, ["multistrike"] = 1, ["hit"] = 6, ["totalhits"] = 6, ["id"] = 6807, ["max"] = 162, ["damage"] = 946, }, ["Thrash"] = { ["min"] = 70, ["multistrike"] = 11, ["critical"] = 15, ["hit"] = 59, ["totalhits"] = 74, ["id"] = 77758, ["max"] = 208, ["damage"] = 7685, }, ["Attack"] = { ["min"] = 71, ["multistrike"] = 1, ["critical"] = 2, ["hit"] = 15, ["totalhits"] = 17, ["id"] = 6603, ["max"] = 215, ["damage"] = 1922, }, }, ["power"] = { { ["amount"] = 214, ["spells"] = { [33917] = 60, [16959] = 80, [158723] = 74, }, }, -- [1] }, ["damagetaken"] = 4639, ["shielding"] = 0, ["id"] = "Player-1403-06025CCB", ["first"] = 1447791142, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Holy Smite"] = { ["crushing"] = 0, ["id"] = 114848, ["min"] = 455, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Holy Smite", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 455, ["damage"] = 455, }, ["Smite"] = { ["crushing"] = 0, ["id"] = 111010, ["min"] = 175, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Smite", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 175, ["damage"] = 175, }, ["Pass Judgment"] = { ["crushing"] = 0, ["id"] = 111107, ["min"] = 65, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Pass Judgment", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 78, ["damage"] = 143, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 47, ["absorbed"] = 559, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 21, ["resisted"] = 0, ["max"] = 435, ["damage"] = 3866, }, }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Tjago", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 4968, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [3] { ["last"] = 1447791211, ["healingabsorbed"] = 0, ["class"] = "WARLOCK", ["damaged"] = { ["Scarlet Zealot"] = 2652, ["Commander Durand"] = 510, ["High Inquisitor Whitemane"] = 1022, }, ["auras"] = { ["Soul Leech"] = { ["name"] = "Soul Leech", ["active"] = 0, ["id"] = 108366, ["auratype"] = "BUFF", ["uptime"] = 22, }, }, ["role"] = "DAMAGER", ["time"] = 66, ["interrupts"] = 0, ["damage"] = 4184, ["damagespells"] = { ["Incinerate"] = { ["min"] = 281, ["hit"] = 4, ["totalhits"] = 4, ["id"] = 29722, ["max"] = 282, ["damage"] = 1126, }, ["Chaos Bolt"] = { ["min"] = 1016, ["critical"] = 1, ["totalhits"] = 1, ["id"] = 116858, ["max"] = 1016, ["damage"] = 1016, }, ["Geltai: Firebolt"] = { ["min"] = 170, ["critical"] = 1, ["hit"] = 10, ["totalhits"] = 11, ["id"] = 3110, ["max"] = 341, ["damage"] = 2042, }, }, ["power"] = { [14] = { ["amount"] = 0, ["spells"] = { [105047] = 0, }, }, }, ["damagetaken"] = 1201, ["shielding"] = 0, ["id"] = "Player-1596-07BCD133", ["first"] = 1447791145, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 294, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 311, ["damage"] = 1201, }, }, ["overhealing"] = 478.949981689453, ["healingspells"] = { ["Soul Leech"] = { ["shielding"] = 0, ["id"] = 108366, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Soul Leech", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 478.949981689453, ["hits"] = 2, }, }, ["name"] = "Demonroids", ["healing"] = 0, ["healed"] = { ["Pet-0-3687-1-101-416-0201C20B47"] = { ["role"] = "NONE", ["name"] = "Geltai", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Player-1596-07BCD133"] = { ["role"] = "DAMAGER", ["name"] = "Demonroids-TheMaelstrom", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, }, ["maxhp"] = 3504, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [4] { ["last"] = 1447791222, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Commander Durand"] = 3137, ["High Inquisitor Whitemane"] = 3611, }, ["auras"] = { ["Dragonhawk: Spry Attacks"] = { ["name"] = "Dragonhawk: Spry Attacks", ["active"] = 3, ["id"] = 34889, ["auratype"] = "BUFF", ["uptime"] = 18, }, ["Dragonhawk: Dash"] = { ["name"] = "Dragonhawk: Dash", ["active"] = 0, ["id"] = 61684, ["auratype"] = "BUFF", ["uptime"] = 18, }, ["Beast Cleave"] = { ["name"] = "Beast Cleave", ["active"] = 0, ["id"] = 118455, ["auratype"] = "BUFF", ["uptime"] = 19, }, ["Dragonhawk: Growl"] = { ["name"] = "Dragonhawk: Growl", ["active"] = 0, ["id"] = 2649, ["auratype"] = "DEBUFF", ["uptime"] = 18, }, ["Dragonhawk: Frenzy"] = { ["name"] = "Dragonhawk: Frenzy", ["active"] = 2, ["id"] = 19615, ["auratype"] = "BUFF", ["uptime"] = 50, }, ["Dragonhawk: Roar of Sacrifice"] = { ["name"] = "Dragonhawk: Roar of Sacrifice", ["active"] = 0, ["id"] = 53480, ["auratype"] = "BUFF", ["uptime"] = 12, }, ["Revive Pet"] = { ["name"] = "Revive Pet", ["active"] = 0, ["id"] = 982, ["auratype"] = "BUFF", ["uptime"] = 3, }, }, ["role"] = "DAMAGER", ["time"] = 65, ["interrupts"] = 0, ["damage"] = 6748, ["damagespells"] = { ["Steady Shot"] = { ["max"] = 183, ["min"] = 80, ["multistrike"] = 1, ["critical"] = 1, ["hit"] = 12, ["totalhits"] = 14, ["ABSORB"] = 1, ["id"] = 56641, ["damage"] = 1255, }, ["Dragonhawk: Beast Cleave"] = { ["min"] = 10, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 118459, ["max"] = 34, ["damage"] = 75, }, ["Dragonhawk: Attack"] = { ["max"] = 108, ["min"] = 45, ["multistrike"] = 3, ["critical"] = 3, ["hit"] = 15, ["totalhits"] = 19, ["PARRY"] = 1, ["id"] = 6603, ["damage"] = 1104, }, ["Auto Shot"] = { ["min"] = 22, ["critical"] = 1, ["hit"] = 15, ["totalhits"] = 16, ["id"] = 75, ["max"] = 215, ["damage"] = 1661, }, ["Dragonhawk: Kill Command"] = { ["min"] = 255, ["critical"] = 1, ["hit"] = 3, ["totalhits"] = 4, ["id"] = 83381, ["max"] = 424, ["damage"] = 1189, }, ["Multi-Shot"] = { ["min"] = 53, ["ABSORB"] = 1, ["critical"] = 2, ["hit"] = 4, ["totalhits"] = 7, ["id"] = 2643, ["max"] = 120, ["damage"] = 461, }, ["Dragonhawk: Bite"] = { ["min"] = 36, ["critical"] = 2, ["hit"] = 10, ["totalhits"] = 12, ["id"] = 17253, ["max"] = 192, ["damage"] = 1003, }, }, ["power"] = { [2] = { ["amount"] = 197, ["spells"] = { [77443] = 182, [34953] = 15, }, }, }, ["damagetaken"] = 2529, ["shielding"] = 0, ["id"] = "Player-1596-08D87980", ["first"] = 1447791157, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Flash of Steel"] = { ["crushing"] = 0, ["id"] = 115629, ["min"] = 294, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Flash of Steel", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 301, ["damage"] = 595, }, ["Dashing Strike"] = { ["crushing"] = 0, ["id"] = 115739, ["min"] = 304, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Dashing Strike", ["blocked"] = 0, ["totalhits"] = 6, ["resisted"] = 0, ["max"] = 332, ["damage"] = 1934, }, }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Elelise", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 2712, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [5] }, ["deaths"] = 0, ["mobs"] = { ["Scarlet Zealot"] = { ["players"] = { ["Demonroids-TheMaelstrom"] = { ["taken"] = 2652, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Jyggtvå"] = { ["taken"] = 362, ["done"] = 411, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 263, ["done"] = 305, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 637, ["htakenspell"] = { }, ["taken"] = 3277, ["done"] = 716, ["htaken"] = 0, ["hdonespell"] = { ["Heal"] = { ["min"] = 637, ["crits"] = 0, ["max"] = 637, ["healing"] = 637, ["overhealing"] = 0, ["hits"] = 1, }, }, }, ["High Inquisitor Whitemane"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 2139, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Jyggtvå"] = { ["taken"] = 6495, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5120, ["done"] = 771, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 1022, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 3396, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 7097, ["htakenspell"] = { ["Furious Resolve"] = { ["min"] = 6750, ["crits"] = 0, ["max"] = 6750, ["healing"] = 6750, ["overhealing"] = 348, ["hits"] = 1, }, }, ["taken"] = 18172, ["done"] = 771, ["htaken"] = 6750, ["hdonespell"] = { ["Scarlet Resurrection"] = { ["min"] = 7097, ["crits"] = 0, ["max"] = 7097, ["healing"] = 7097, ["overhealing"] = 2367, ["hits"] = 1, }, }, }, ["Commander Durand"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 1725, ["done"] = 318, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Jyggtvå"] = { ["taken"] = 4166, ["done"] = 267, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 6246, ["done"] = 2110, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 510, ["done"] = 1201, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 3137, ["done"] = 2529, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 6750, ["htakenspell"] = { ["Scarlet Resurrection"] = { ["min"] = 7097, ["crits"] = 0, ["max"] = 7097, ["healing"] = 7097, ["overhealing"] = 2367, ["hits"] = 1, }, }, ["taken"] = 15784, ["done"] = 6425, ["htaken"] = 7097, ["hdonespell"] = { ["Furious Resolve"] = { ["min"] = 6750, ["crits"] = 0, ["max"] = 6750, ["healing"] = 6750, ["overhealing"] = 348, ["hits"] = 1, }, }, }, ["Scarlet Judicator"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 1170, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Jyggtvå"] = { ["taken"] = 3445, ["done"] = 84, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 2518, ["done"] = 1453, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { ["Heal"] = { ["min"] = 637, ["crits"] = 0, ["max"] = 637, ["healing"] = 637, ["overhealing"] = 0, ["hits"] = 1, }, }, ["taken"] = 7133, ["done"] = 1537, ["htaken"] = 637, ["hdonespell"] = { }, }, }, ["mobtaken"] = 44366, ["starttime"] = 1447791138, ["healing"] = 11030, ["power"] = { 214, -- [1] 365, -- [2] [14] = 0, }, ["multistrikes"] = 2, ["overhealing"] = 3718.45486450195, ["shielding"] = 3175, ["name"] = "Commander Durand", ["mobname"] = "Commander Durand", ["damagetaken"] = 9449, ["mobhdone"] = 14484, ["last_action"] = 1447791138, ["mobdone"] = 9449, }, -- [7] { ["healingabsorbed"] = 0, ["dispells"] = 0, ["ccbreaks"] = 0, ["time"] = 15, ["interrupts"] = 0, ["endtime"] = 1447791042, ["gotboss"] = true, ["damage"] = 13638, ["players"] = { { ["last"] = 1447791041, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Brother Korloff"] = 4842, }, ["auras"] = { }, ["role"] = "DAMAGER", ["time"] = 14, ["interrupts"] = 0, ["damage"] = 4842, ["damagespells"] = { ["Auto Shot"] = { ["min"] = 162, ["critical"] = 1, ["hit"] = 5, ["totalhits"] = 6, ["id"] = 75, ["max"] = 340, ["damage"] = 1172, }, ["Steady Shot"] = { ["min"] = 120, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 56641, ["max"] = 129, ["damage"] = 373, }, ["Aimed Shot"] = { ["min"] = 842, ["critical"] = 1, ["hit"] = 2, ["totalhits"] = 3, ["id"] = 19434, ["max"] = 1611, ["damage"] = 3297, }, }, ["power"] = { [2] = { ["amount"] = 42, ["spells"] = { [77443] = 42, }, }, }, ["damagetaken"] = 0, ["shielding"] = 0, ["id"] = "Player-1403-06025D5B", ["first"] = 1447791027, ["ccbreaks"] = 0, ["damagetakenspells"] = { }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Jyggtvå", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 4176, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [1] { ["last"] = 1447791041, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Brother Korloff"] = 2753, }, ["auras"] = { ["Dragonhawk: Spry Attacks"] = { ["name"] = "Dragonhawk: Spry Attacks", ["active"] = 5, ["id"] = 34889, ["auratype"] = "BUFF", ["uptime"] = 15, }, ["Dragonhawk: Dash"] = { ["name"] = "Dragonhawk: Dash", ["active"] = 1, ["id"] = 61684, ["auratype"] = "BUFF", ["uptime"] = 5, }, ["Beast Cleave"] = { ["name"] = "Beast Cleave", ["active"] = 0, ["id"] = 118455, ["auratype"] = "BUFF", ["uptime"] = 3, }, ["Dragonhawk: Growl"] = { ["name"] = "Dragonhawk: Growl", ["active"] = 0, ["id"] = 2649, ["auratype"] = "DEBUFF", ["uptime"] = 3, }, ["Dragonhawk: Frenzy"] = { ["name"] = "Dragonhawk: Frenzy", ["active"] = 2, ["id"] = 19615, ["auratype"] = "BUFF", ["uptime"] = 14, }, ["Dragonhawk: Roar of Sacrifice"] = { ["name"] = "Dragonhawk: Roar of Sacrifice", ["active"] = 0, ["id"] = 53480, ["auratype"] = "BUFF", ["uptime"] = 12, }, ["Revive Pet"] = { ["name"] = "Revive Pet", ["active"] = 0, ["id"] = 982, ["auratype"] = "BUFF", ["uptime"] = 3, }, }, ["role"] = "DAMAGER", ["time"] = 14, ["interrupts"] = 0, ["damage"] = 2753, ["damagespells"] = { ["Steady Shot"] = { ["min"] = 105, ["multistrike"] = 1, ["hit"] = 5, ["totalhits"] = 5, ["id"] = 56641, ["max"] = 116, ["damage"] = 615, }, ["Dragonhawk: Attack"] = { ["max"] = 140, ["min"] = 58, ["multistrike"] = 1, ["critical"] = 1, ["hit"] = 4, ["totalhits"] = 6, ["PARRY"] = 1, ["id"] = 6603, ["damage"] = 418, }, ["Auto Shot"] = { ["min"] = 135, ["multistrike"] = 1, ["critical"] = 2, ["hit"] = 2, ["totalhits"] = 4, ["id"] = 75, ["max"] = 291, ["damage"] = 864, }, ["Dragonhawk: Kill Command"] = { ["min"] = 278, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 83381, ["max"] = 278, ["damage"] = 278, }, ["Multi-Shot"] = { ["min"] = 69, ["multistrike"] = 1, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 2643, ["max"] = 69, ["damage"] = 90, }, ["Dragonhawk: Bite"] = { ["min"] = 110, ["hit"] = 4, ["totalhits"] = 4, ["id"] = 17253, ["max"] = 132, ["damage"] = 488, }, }, ["power"] = { [2] = { ["amount"] = 85, ["spells"] = { [77443] = 70, [34953] = 15, }, }, }, ["damagetaken"] = 0, ["shielding"] = 0, ["id"] = "Player-1596-08D87980", ["first"] = 1447791027, ["ccbreaks"] = 0, ["damagetakenspells"] = { }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Elelise", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 2712, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [2] { ["last"] = 1447791042, ["healingabsorbed"] = 0, ["class"] = "PRIEST", ["damaged"] = { ["Brother Korloff"] = 1531, }, ["auras"] = { ["Borrowed Time"] = { ["name"] = "Borrowed Time", ["active"] = 0, ["id"] = 59889, ["auratype"] = "BUFF", ["uptime"] = 6, }, ["Power Word: Shield"] = { ["name"] = "Power Word: Shield", ["active"] = 1, ["id"] = 17, ["auratype"] = "BUFF", ["uptime"] = 6, }, ["Shadow Word: Pain"] = { ["name"] = "Shadow Word: Pain", ["active"] = 0, ["id"] = 589, ["auratype"] = "DEBUFF", ["uptime"] = 13, }, ["Focused Will"] = { ["name"] = "Focused Will", ["active"] = 1, ["id"] = 45242, ["auratype"] = "BUFF", ["uptime"] = 4, }, ["Weakened Soul"] = { ["name"] = "Weakened Soul", ["active"] = 1, ["id"] = 6788, ["auratype"] = "DEBUFF", ["uptime"] = 6, }, ["Body and Soul"] = { ["name"] = "Body and Soul", ["active"] = 0, ["id"] = 65081, ["auratype"] = "BUFF", ["uptime"] = 4, }, }, ["role"] = "HEALER", ["time"] = 14, ["interrupts"] = 0, ["damage"] = 1531, ["damagespells"] = { ["Shadow Word: Pain"] = { ["min"] = 84, ["critical"] = 1, ["hit"] = 4, ["totalhits"] = 5, ["id"] = 589, ["max"] = 172, ["damage"] = 508, }, ["Holy Fire"] = { ["min"] = 4, ["hit"] = 10, ["totalhits"] = 10, ["id"] = 14914, ["max"] = 7, ["damage"] = 66, }, ["Penance"] = { ["min"] = 211, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 47666, ["max"] = 211, ["damage"] = 633, }, ["Smite"] = { ["min"] = 162, ["hit"] = 2, ["totalhits"] = 2, ["id"] = 585, ["max"] = 162, ["damage"] = 324, }, }, ["power"] = { }, ["damagetaken"] = 333, ["shielding"] = 388, ["id"] = "Player-1092-071A5C1A", ["first"] = 1447791028, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Firestorm Kick"] = { ["crushing"] = 0, ["id"] = 113766, ["min"] = 153, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Firestorm Kick", ["blocked"] = 0, ["totalhits"] = 2, ["resisted"] = 0, ["max"] = 180, ["damage"] = 333, }, }, ["overhealing"] = 1018, ["healingspells"] = { ["Power Word: Shield"] = { ["shielding"] = 388, ["id"] = 17, ["healing"] = 388, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Power Word: Shield", ["max"] = 146, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 1018, ["hits"] = 4, }, ["Flash Heal"] = { ["shielding"] = 0, ["id"] = 2061, ["healing"] = 1043, ["min"] = 1043, ["multistrike"] = 0, ["name"] = "Flash Heal", ["max"] = 1043, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 1, }, }, ["name"] = "Gwah", ["healing"] = 1431, ["healed"] = { ["Player-1403-06025CCB"] = { ["role"] = "TANK", ["name"] = "Tjago", ["amount"] = 1431, ["class"] = "DRUID", ["shielding"] = 388, }, }, ["maxhp"] = 3555, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [3] { ["last"] = 1447791041, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Brother Korloff"] = 3218, }, ["auras"] = { ["Thrash"] = { ["name"] = "Thrash", ["active"] = 0, ["id"] = 77758, ["auratype"] = "DEBUFF", ["uptime"] = 12, }, ["Faerie Fire"] = { ["name"] = "Faerie Fire", ["active"] = 0, ["id"] = 770, ["auratype"] = "DEBUFF", ["uptime"] = 7, }, }, ["role"] = "TANK", ["time"] = 12, ["interrupts"] = 0, ["damage"] = 3218, ["damagespells"] = { ["Faerie Fire"] = { ["min"] = 60, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 770, ["max"] = 60, ["damage"] = 60, }, ["Maul"] = { ["min"] = 204, ["hit"] = 2, ["totalhits"] = 2, ["id"] = 6807, ["max"] = 207, ["damage"] = 411, }, ["Mangle"] = { ["min"] = 1072, ["critical"] = 1, ["totalhits"] = 1, ["id"] = 33917, ["max"] = 1072, ["damage"] = 1072, }, ["Thrash"] = { ["min"] = 70, ["critical"] = 2, ["hit"] = 8, ["totalhits"] = 10, ["id"] = 77758, ["max"] = 208, ["damage"] = 1009, }, ["Attack"] = { ["min"] = 131, ["hit"] = 5, ["totalhits"] = 5, ["id"] = 6603, ["max"] = 136, ["damage"] = 666, }, }, ["power"] = { { ["amount"] = 36, ["spells"] = { [33917] = 10, [16959] = 16, [158723] = 10, }, }, -- [1] }, ["damagetaken"] = 2218, ["shielding"] = 0, ["id"] = "Player-1403-06025CCB", ["first"] = 1447791029, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 243, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 5, ["resisted"] = 0, ["max"] = 606, ["damage"] = 2218, }, }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Tjago", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 4968, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [4] { ["last"] = 1447791041, ["healingabsorbed"] = 0, ["class"] = "WARLOCK", ["damaged"] = { ["Brother Korloff"] = 1294, }, ["auras"] = { ["Immolate"] = { ["name"] = "Immolate", ["active"] = 0, ["id"] = 157736, ["auratype"] = "DEBUFF", ["uptime"] = 10, }, }, ["role"] = "DAMAGER", ["time"] = 11, ["interrupts"] = 0, ["damage"] = 1294, ["damagespells"] = { ["Immolate"] = { ["min"] = 97, ["hit"] = 4, ["totalhits"] = 4, ["id"] = 348, ["max"] = 98, ["damage"] = 390, }, ["Geltai: Firebolt"] = { ["min"] = 170, ["multistrike"] = 1, ["critical"] = 1, ["hit"] = 3, ["totalhits"] = 4, ["id"] = 3110, ["max"] = 341, ["damage"] = 904, }, }, ["power"] = { }, ["damagetaken"] = 1922, ["shielding"] = 0, ["id"] = "Player-1596-07BCD133", ["first"] = 1447791030, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Firestorm Kick"] = { ["crushing"] = 0, ["id"] = 113766, ["min"] = 180, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Firestorm Kick", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 180, ["damage"] = 720, }, ["Scorched Earth"] = { ["crushing"] = 0, ["id"] = 114465, ["min"] = 299, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Scorched Earth", ["blocked"] = 0, ["totalhits"] = 4, ["resisted"] = 0, ["max"] = 303, ["damage"] = 1202, }, }, ["overhealing"] = 84.3000030517578, ["healingspells"] = { ["Soul Leech"] = { ["shielding"] = 0, ["id"] = 108366, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Soul Leech", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 84.3000030517578, ["hits"] = 2, }, }, ["name"] = "Demonroids", ["healing"] = 0, ["healed"] = { ["Player-1596-07BCD133"] = { ["role"] = "DAMAGER", ["name"] = "Demonroids-TheMaelstrom", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, ["Pet-0-3687-1-101-416-0201C20B47"] = { ["role"] = "NONE", ["name"] = "Geltai", ["amount"] = 0, ["class"] = "WARLOCK", ["shielding"] = 0, }, }, ["maxhp"] = 3504, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [5] }, ["deaths"] = 0, ["mobs"] = { ["Brother Korloff"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 1531, ["done"] = 333, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Jyggtvå"] = { ["taken"] = 4842, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 3218, ["done"] = 2218, ["role"] = "TANK", ["class"] = "DRUID", }, ["Demonroids-TheMaelstrom"] = { ["taken"] = 1294, ["done"] = 720, ["role"] = "DAMAGER", ["class"] = "WARLOCK", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 2753, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 13638, ["done"] = 3271, ["htaken"] = 0, ["hdonespell"] = { }, }, }, ["mobtaken"] = 13638, ["starttime"] = 1447791027, ["healing"] = 1431, ["power"] = { 36, -- [1] 127, -- [2] }, ["multistrikes"] = 0, ["overhealing"] = 1102.30000305176, ["shielding"] = 388, ["name"] = "Brother Korloff", ["mobname"] = "Brother Korloff", ["damagetaken"] = 4473, ["mobhdone"] = 0, ["last_action"] = 1447791027, ["mobdone"] = 3271, }, -- [8] { ["healingabsorbed"] = 0, ["dispells"] = 0, ["ccbreaks"] = 0, ["time"] = 25, ["interrupts"] = 0, ["endtime"] = 1447790794, ["gotboss"] = true, ["damage"] = 20481, ["players"] = { { ["last"] = 1447790788, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Thalnos the Soulrender"] = 3925, ["Fallen Crusader"] = 6518, }, ["auras"] = { ["Thrash"] = { ["name"] = "Thrash", ["active"] = 4, ["id"] = 77758, ["auratype"] = "DEBUFF", ["uptime"] = 20, }, ["Growl"] = { ["name"] = "Growl", ["active"] = 0, ["id"] = 6795, ["auratype"] = "DEBUFF", ["uptime"] = 3, }, ["Savage Defense"] = { ["name"] = "Savage Defense", ["active"] = 0, ["id"] = 132402, ["auratype"] = "BUFF", ["uptime"] = 6, }, }, ["role"] = "TANK", ["time"] = 19, ["interrupts"] = 0, ["damage"] = 10443, ["damagespells"] = { ["Mangle"] = { ["min"] = 413, ["multistrike"] = 1, ["hit"] = 2, ["totalhits"] = 2, ["id"] = 33917, ["max"] = 418, ["damage"] = 956, }, ["Maul"] = { ["min"] = 155, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 6807, ["max"] = 155, ["damage"] = 155, }, ["Thrash"] = { ["min"] = 70, ["multistrike"] = 8, ["critical"] = 16, ["hit"] = 61, ["totalhits"] = 77, ["id"] = 77758, ["max"] = 208, ["damage"] = 8477, }, ["Attack"] = { ["min"] = 100, ["critical"] = 1, ["hit"] = 6, ["totalhits"] = 7, ["id"] = 6603, ["max"] = 222, ["damage"] = 855, }, }, ["power"] = { { ["amount"] = 161, ["spells"] = { [33917] = 20, [16959] = 64, [158723] = 77, }, }, -- [1] }, ["damagetaken"] = 2663, ["shielding"] = 0, ["id"] = "Player-1403-06025CCB", ["first"] = 1447790769, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Spirit Gale"] = { ["crushing"] = 0, ["id"] = 115291, ["min"] = 198, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Spirit Gale", ["blocked"] = 0, ["totalhits"] = 9, ["resisted"] = 0, ["max"] = 598, ["damage"] = 2215, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 14, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 18, ["resisted"] = 0, ["max"] = 109, ["damage"] = 448, }, }, ["overhealing"] = 0, ["healingspells"] = { ["Heal"] = { ["shielding"] = 0, ["id"] = 181867, ["healing"] = 787, ["min"] = 787, ["multistrike"] = 0, ["name"] = "Heal", ["max"] = 787, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 1, }, }, ["name"] = "Tjago", ["healing"] = 787, ["healed"] = { ["Player-1403-06025CCB"] = { ["role"] = "TANK", ["name"] = "Tjago", ["amount"] = 787, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 4968, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [1] { ["last"] = 1447790787, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Thalnos the Soulrender"] = 2884, }, ["auras"] = { ["Dragonhawk: Growl"] = { ["name"] = "Dragonhawk: Growl", ["active"] = 0, ["id"] = 2649, ["auratype"] = "DEBUFF", ["uptime"] = 8, }, }, ["role"] = "DAMAGER", ["time"] = 18, ["interrupts"] = 0, ["damage"] = 2884, ["damagespells"] = { ["Steady Shot"] = { ["min"] = 78, ["multistrike"] = 1, ["hit"] = 7, ["totalhits"] = 7, ["id"] = 56641, ["max"] = 92, ["damage"] = 606, }, ["Dragonhawk: Attack"] = { ["min"] = 43, ["critical"] = 2, ["hit"] = 7, ["totalhits"] = 9, ["id"] = 6603, ["max"] = 88, ["damage"] = 482, }, ["Dragonhawk: Kill Command"] = { ["min"] = 207, ["critical"] = 1, ["hit"] = 2, ["totalhits"] = 3, ["id"] = 83381, ["max"] = 414, ["damage"] = 828, }, ["Auto Shot"] = { ["min"] = 91, ["hit"] = 7, ["totalhits"] = 7, ["id"] = 75, ["max"] = 102, ["damage"] = 687, }, ["Dragonhawk: Bite"] = { ["min"] = 35, ["hit"] = 5, ["totalhits"] = 5, ["id"] = 17253, ["max"] = 82, ["damage"] = 281, }, }, ["power"] = { [2] = { ["amount"] = 98, ["spells"] = { [77443] = 98, }, }, }, ["damagetaken"] = 0, ["shielding"] = 0, ["id"] = "Player-1596-08D87980", ["first"] = 1447790769, ["ccbreaks"] = 0, ["damagetakenspells"] = { }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Elelise", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 2664, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [2] { ["last"] = 1447790794, ["healingabsorbed"] = 0, ["class"] = "PRIEST", ["damaged"] = { ["Thalnos the Soulrender"] = 3088, }, ["auras"] = { ["Borrowed Time"] = { ["name"] = "Borrowed Time", ["active"] = 0, ["id"] = 59889, ["auratype"] = "BUFF", ["uptime"] = 6, }, ["Holy Fire"] = { ["name"] = "Holy Fire", ["active"] = 0, ["id"] = 14914, ["auratype"] = "DEBUFF", ["uptime"] = 4, }, ["Power Word: Shield"] = { ["name"] = "Power Word: Shield", ["active"] = 1, ["id"] = 17, ["auratype"] = "BUFF", ["uptime"] = 6, }, ["Weakened Soul"] = { ["name"] = "Weakened Soul", ["active"] = 1, ["id"] = 6788, ["auratype"] = "DEBUFF", ["uptime"] = 6, }, ["Body and Soul"] = { ["name"] = "Body and Soul", ["active"] = 0, ["id"] = 65081, ["auratype"] = "BUFF", ["uptime"] = 4, }, }, ["role"] = "HEALER", ["time"] = 25, ["interrupts"] = 0, ["damage"] = 3088, ["damagespells"] = { ["Shadow Word: Pain"] = { ["min"] = 84, ["multistrike"] = 1, ["hit"] = 6, ["totalhits"] = 6, ["max"] = 85, ["id"] = 589, ["damage"] = 530, }, ["Holy Fire"] = { ["min"] = 4, ["hit"] = 13, ["totalhits"] = 13, ["id"] = 14914, ["max"] = 242, ["damage"] = 322, }, ["Penance"] = { ["min"] = 211, ["hit"] = 6, ["totalhits"] = 6, ["id"] = 47666, ["max"] = 211, ["damage"] = 1266, }, ["Smite"] = { ["min"] = 161, ["hit"] = 6, ["totalhits"] = 6, ["id"] = 585, ["max"] = 162, ["damage"] = 970, }, }, ["power"] = { }, ["damagetaken"] = 0, ["shielding"] = 0, ["id"] = "Player-1092-071A5C1A", ["first"] = 1447790769, ["ccbreaks"] = 0, ["damagetakenspells"] = { }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Gwah", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 3555, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [3] { ["last"] = 1447790786, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Thalnos the Soulrender"] = 4066, }, ["auras"] = { }, ["role"] = "DAMAGER", ["time"] = 16, ["interrupts"] = 0, ["damage"] = 4066, ["damagespells"] = { ["Auto Shot"] = { ["min"] = 113, ["critical"] = 1, ["hit"] = 6, ["totalhits"] = 7, ["id"] = 75, ["max"] = 237, ["damage"] = 965, }, ["Steady Shot"] = { ["min"] = 94, ["critical"] = 2, ["hit"] = 3, ["totalhits"] = 5, ["id"] = 56641, ["max"] = 216, ["damage"] = 721, }, ["Aimed Shot"] = { ["min"] = 540, ["critical"] = 1, ["hit"] = 2, ["totalhits"] = 3, ["id"] = 19434, ["max"] = 1274, ["damage"] = 2380, }, }, ["power"] = { [2] = { ["amount"] = 70, ["spells"] = { [77443] = 70, }, }, }, ["damagetaken"] = 0, ["shielding"] = 0, ["id"] = "Player-1403-06025D5B", ["first"] = 1447790770, ["ccbreaks"] = 0, ["damagetakenspells"] = { }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Jyggtvå", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 4176, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [4] }, ["deaths"] = 0, ["mobs"] = { ["Thalnos the Soulrender"] = { ["players"] = { ["Gwah-Drak'thul"] = { ["taken"] = 3088, ["done"] = 0, ["role"] = "HEALER", ["class"] = "PRIEST", }, ["Jyggtvå"] = { ["taken"] = 4066, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Elelise-TheMaelstrom"] = { ["taken"] = 2884, ["done"] = 0, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 3925, ["done"] = 707, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 13963, ["done"] = 707, ["htaken"] = 0, ["hdonespell"] = { }, }, ["Fallen Crusader"] = { ["players"] = { ["Tjago"] = { ["taken"] = 6518, ["done"] = 339, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 6518, ["done"] = 339, ["htaken"] = 0, ["hdonespell"] = { }, }, }, ["mobtaken"] = 20481, ["starttime"] = 1447790769, ["healing"] = 787, ["power"] = { 161, -- [1] 168, -- [2] }, ["multistrikes"] = 0, ["overhealing"] = 0, ["shielding"] = 0, ["name"] = "Thalnos the Soulrender", ["mobname"] = "Thalnos the Soulrender", ["damagetaken"] = 2663, ["mobhdone"] = 0, ["last_action"] = 1447790769, ["mobdone"] = 1046, }, -- [9] { ["healingabsorbed"] = 0, ["dispells"] = 0, ["ccbreaks"] = 0, ["time"] = 28, ["interrupts"] = 0, ["endtime"] = 1447790601, ["gotboss"] = true, ["damage"] = 26341, ["players"] = { { ["last"] = 1447790600, ["healingabsorbed"] = 0, ["class"] = "DRUID", ["damaged"] = { ["Flameweaver Koegler"] = 5934, }, ["auras"] = { ["Growl"] = { ["name"] = "Growl", ["active"] = 0, ["id"] = 6795, ["auratype"] = "DEBUFF", ["uptime"] = 3, }, ["Faerie Fire"] = { ["name"] = "Faerie Fire", ["active"] = 0, ["id"] = 770, ["auratype"] = "DEBUFF", ["uptime"] = 7, }, ["Thrash"] = { ["name"] = "Thrash", ["active"] = 0, ["id"] = 77758, ["auratype"] = "DEBUFF", ["uptime"] = 22, }, ["Bear Form"] = { ["name"] = "Bear Form", ["active"] = 1, ["id"] = 5487, ["auratype"] = "BUFF", ["uptime"] = 25, }, ["Cat Form"] = { ["name"] = "Cat Form", ["active"] = 0, ["id"] = 768, ["auratype"] = "BUFF", ["uptime"] = 3, }, }, ["role"] = "TANK", ["time"] = 27, ["interrupts"] = 0, ["damage"] = 5934, ["damagespells"] = { ["Faerie Fire"] = { ["min"] = 61, ["hit"] = 1, ["totalhits"] = 1, ["id"] = 770, ["max"] = 61, ["damage"] = 61, }, ["Mangle"] = { ["min"] = 405, ["critical"] = 1, ["hit"] = 2, ["totalhits"] = 3, ["id"] = 33917, ["max"] = 863, ["damage"] = 1679, }, ["Thrash"] = { ["min"] = 72, ["multistrike"] = 2, ["critical"] = 5, ["hit"] = 12, ["totalhits"] = 17, ["id"] = 77758, ["max"] = 213, ["damage"] = 1849, }, ["Maul"] = { ["min"] = 150, ["critical"] = 1, ["hit"] = 4, ["totalhits"] = 5, ["id"] = 6807, ["max"] = 327, ["damage"] = 961, }, ["Attack"] = { ["min"] = 76, ["multistrike"] = 1, ["critical"] = 3, ["hit"] = 7, ["totalhits"] = 10, ["id"] = 6603, ["max"] = 219, ["damage"] = 1384, }, }, ["power"] = { { ["amount"] = 105, ["spells"] = { [17057] = 10, [16959] = 48, [158723] = 17, [33917] = 30, }, }, -- [1] }, ["damagetaken"] = 3590, ["shielding"] = 0, ["id"] = "Player-1403-06025CCB", ["first"] = 1447790573, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Book Burner"] = { ["crushing"] = 0, ["id"] = 113364, ["min"] = 677, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Book Burner", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 84, ["max"] = 677, ["damage"] = 677, }, ["Pyroblast"] = { ["crushing"] = 0, ["id"] = 113690, ["min"] = 76, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Pyroblast", ["blocked"] = 0, ["totalhits"] = 10, ["resisted"] = 231, ["max"] = 611, ["damage"] = 1784, }, ["Fireball Volley"] = { ["crushing"] = 0, ["id"] = 113691, ["min"] = 426, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fireball Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 203, ["max"] = 426, ["damage"] = 426, }, ["Attack"] = { ["crushing"] = 0, ["id"] = 6603, ["min"] = 198, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Attack", ["blocked"] = 0, ["totalhits"] = 3, ["resisted"] = 0, ["max"] = 269, ["damage"] = 703, }, }, ["overhealing"] = 0, ["healingspells"] = { ["Heal"] = { ["shielding"] = 0, ["id"] = 181867, ["healing"] = 777, ["min"] = 777, ["multistrike"] = 0, ["name"] = "Heal", ["max"] = 777, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 0, ["hits"] = 1, }, }, ["name"] = "Tjago", ["healing"] = 777, ["healed"] = { ["Player-1403-06025CCB"] = { ["role"] = "TANK", ["name"] = "Tjago", ["amount"] = 777, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 4896, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [1] { ["last"] = 1447790600, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Flameweaver Koegler"] = 8683, }, ["auras"] = { ["MFJones: Spry Attacks"] = { ["name"] = "MFJones: Spry Attacks", ["active"] = 5, ["id"] = 34889, ["auratype"] = "BUFF", ["uptime"] = 15, }, ["MFJones: Growl"] = { ["name"] = "MFJones: Growl", ["active"] = 0, ["id"] = 2649, ["auratype"] = "DEBUFF", ["uptime"] = 9, }, ["MFJones: Dash"] = { ["name"] = "MFJones: Dash", ["active"] = 0, ["id"] = 61684, ["auratype"] = "BUFF", ["uptime"] = 3, }, ["Revive Pet"] = { ["name"] = "Revive Pet", ["active"] = 0, ["id"] = 982, ["auratype"] = "BUFF", ["uptime"] = 3, }, }, ["role"] = "DAMAGER", ["time"] = 27, ["interrupts"] = 0, ["damage"] = 8683, ["damagespells"] = { ["Steady Shot"] = { ["min"] = 111, ["multistrike"] = 1, ["critical"] = 3, ["hit"] = 4, ["totalhits"] = 7, ["id"] = 56641, ["max"] = 240, ["damage"] = 1237, }, ["Aimed Shot"] = { ["min"] = 618, ["critical"] = 1, ["hit"] = 4, ["totalhits"] = 5, ["id"] = 19434, ["max"] = 1275, ["damage"] = 3892, }, ["MFJones: Bite"] = { ["min"] = 63, ["multistrike"] = 1, ["critical"] = 3, ["hit"] = 3, ["totalhits"] = 6, ["id"] = 17253, ["max"] = 315, ["damage"] = 1043, }, ["MFJones: Attack"] = { ["min"] = 63, ["multistrike"] = 2, ["critical"] = 3, ["hit"] = 8, ["totalhits"] = 11, ["id"] = 6603, ["max"] = 127, ["damage"] = 945, }, ["Auto Shot"] = { ["min"] = 123, ["critical"] = 2, ["hit"] = 8, ["totalhits"] = 10, ["id"] = 75, ["max"] = 276, ["damage"] = 1566, }, }, ["power"] = { [2] = { ["amount"] = 98, ["spells"] = { [77443] = 98, }, }, }, ["damagetaken"] = 667, ["shielding"] = 0, ["id"] = "Player-3674-06F71B65", ["first"] = 1447790573, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Fireball Volley"] = { ["crushing"] = 0, ["id"] = 113691, ["min"] = 667, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fireball Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 667, ["damage"] = 667, }, }, ["overhealing"] = 76, ["healingspells"] = { ["Swift Hand of Justice"] = { ["shielding"] = 0, ["id"] = 59913, ["healing"] = 0, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Swift Hand of Justice", ["max"] = 0, ["critical"] = 0, ["absorbed"] = 0, ["overhealing"] = 76, ["hits"] = 1, }, }, ["name"] = "Weaboojones", ["healing"] = 0, ["healed"] = { ["Player-3674-06F71B65"] = { ["role"] = "DAMAGER", ["name"] = "Weaboojones-TwistingNether", ["amount"] = 0, ["class"] = "HUNTER", ["shielding"] = 0, }, }, ["maxhp"] = 3744, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [2] { ["last"] = 1447790601, ["healingabsorbed"] = 0, ["class"] = "MONK", ["damaged"] = { }, ["auras"] = { ["Soothing Mist"] = { ["name"] = "Soothing Mist", ["active"] = 1, ["id"] = 115175, ["auratype"] = "BUFF", ["uptime"] = 22, }, ["Renewing Mist"] = { ["name"] = "Renewing Mist", ["active"] = 0, ["id"] = 119611, ["auratype"] = "BUFF", ["uptime"] = 16, }, }, ["role"] = "HEALER", ["time"] = 28, ["interrupts"] = 0, ["damage"] = 0, ["damagespells"] = { }, ["power"] = { [12] = { ["amount"] = 6, ["spells"] = { [116694] = 6, }, }, }, ["damagetaken"] = 690, ["shielding"] = 0, ["id"] = "Player-1403-06028B17", ["first"] = 1447790573, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Fireball Volley"] = { ["crushing"] = 0, ["id"] = 113691, ["min"] = 690, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fireball Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 690, ["damage"] = 690, }, }, ["overhealing"] = 4773, ["healingspells"] = { ["Surging Mist"] = { ["shielding"] = 0, ["id"] = 116995, ["healing"] = 2363, ["min"] = 0, ["multistrike"] = 0, ["name"] = "Surging Mist", ["max"] = 818, ["critical"] = 3, ["absorbed"] = 0, ["overhealing"] = 1320, ["hits"] = 6, }, ["Soothing Mist"] = { ["shielding"] = 0, ["id"] = 115175, ["healing"] = 3473, ["min"] = 0, ["multistrike"] = 2, ["name"] = "Soothing Mist", ["max"] = 515, ["critical"] = 3, ["absorbed"] = 0, ["overhealing"] = 3391, ["hits"] = 25, }, ["Renewing Mist"] = { ["shielding"] = 0, ["id"] = 119611, ["healing"] = 817, ["min"] = 0, ["multistrike"] = 3, ["name"] = "Renewing Mist", ["max"] = 62, ["critical"] = 6, ["absorbed"] = 0, ["overhealing"] = 62, ["hits"] = 25, }, }, ["name"] = "Summerwalker", ["healing"] = 6653, ["healed"] = { ["Pet-0-1469-1001-20649-42710-0101BE4967"] = { ["role"] = "NONE", ["name"] = "MFJones", ["amount"] = 70, ["class"] = "WARRIOR", ["shielding"] = 0, }, ["Player-1403-06028B17"] = { ["role"] = "HEALER", ["name"] = "Summerwalker", ["amount"] = 690, ["class"] = "MONK", ["shielding"] = 0, }, ["Player-1403-06025D5B"] = { ["role"] = "DAMAGER", ["name"] = "Jyggtvå", ["amount"] = 667, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Pet-0-1469-1001-20649-510-01029214D5"] = { ["role"] = "NONE", ["name"] = "Water Elemental", ["amount"] = 390, ["class"] = "MAGE", ["shielding"] = 0, }, ["Player-3674-06F71B65"] = { ["role"] = "DAMAGER", ["name"] = "Weaboojones-TwistingNether", ["amount"] = 667, ["class"] = "HUNTER", ["shielding"] = 0, }, ["Player-1403-06025CCB"] = { ["role"] = "TANK", ["name"] = "Tjago", ["amount"] = 4169, ["class"] = "DRUID", ["shielding"] = 0, }, }, ["maxhp"] = 3504, ["dispells"] = 0, ["multistrikes"] = 5, }, -- [3] { ["last"] = 1447790599, ["healingabsorbed"] = 0, ["class"] = "MAGE", ["damaged"] = { ["Flameweaver Koegler"] = 7805, }, ["auras"] = { ["Fingers of Frost"] = { ["name"] = "Fingers of Frost", ["active"] = 0, ["id"] = 44544, ["auratype"] = "BUFF", ["uptime"] = 4, }, }, ["role"] = "DAMAGER", ["time"] = 25, ["interrupts"] = 0, ["damage"] = 7805, ["damagespells"] = { ["Water Elemental: Waterbolt"] = { ["min"] = 86, ["critical"] = 1, ["hit"] = 10, ["totalhits"] = 11, ["id"] = 31707, ["max"] = 175, ["damage"] = 1133, }, ["Ice Lance"] = { ["min"] = 967, ["critical"] = 1, ["totalhits"] = 1, ["id"] = 30455, ["max"] = 967, ["damage"] = 967, }, ["Frostbolt"] = { ["min"] = 378, ["multistrike"] = 1, ["critical"] = 1, ["hit"] = 11, ["totalhits"] = 12, ["id"] = 116, ["max"] = 756, ["damage"] = 5028, }, ["Water Elemental: Freeze"] = { ["id"] = 33395, ["totalhits"] = 1, ["IMMUNE"] = 1, ["max"] = 0, ["damage"] = 0, }, ["Elemental Force"] = { ["min"] = 112, ["critical"] = 1, ["hit"] = 4, ["totalhits"] = 5, ["id"] = 116616, ["max"] = 209, ["damage"] = 677, }, }, ["power"] = { }, ["damagetaken"] = 666, ["shielding"] = 0, ["id"] = "Player-633-063FDE1D", ["first"] = 1447790574, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Fireball Volley"] = { ["crushing"] = 0, ["id"] = 113691, ["min"] = 666, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fireball Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 666, ["damage"] = 666, }, }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Sebster", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 3672, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [4] { ["last"] = 1447790599, ["healingabsorbed"] = 0, ["class"] = "HUNTER", ["damaged"] = { ["Flameweaver Koegler"] = 3919, }, ["auras"] = { }, ["role"] = "DAMAGER", ["time"] = 19, ["interrupts"] = 0, ["damage"] = 3919, ["damagespells"] = { ["Steady Shot"] = { ["min"] = 97, ["multistrike"] = 2, ["critical"] = 2, ["hit"] = 2, ["totalhits"] = 4, ["id"] = 56641, ["max"] = 212, ["damage"] = 666, }, ["Aimed Shot"] = { ["min"] = 604, ["hit"] = 3, ["totalhits"] = 3, ["id"] = 19434, ["max"] = 686, ["damage"] = 1917, }, ["Auto Shot"] = { ["min"] = 116, ["multistrike"] = 2, ["critical"] = 2, ["hit"] = 6, ["totalhits"] = 8, ["id"] = 75, ["max"] = 273, ["damage"] = 1336, }, }, ["power"] = { [2] = { ["amount"] = 56, ["spells"] = { [77443] = 56, }, }, }, ["damagetaken"] = 667, ["shielding"] = 0, ["id"] = "Player-1403-06025D5B", ["first"] = 1447790580, ["ccbreaks"] = 0, ["damagetakenspells"] = { ["Fireball Volley"] = { ["crushing"] = 0, ["id"] = 113691, ["min"] = 667, ["absorbed"] = 0, ["critical"] = 0, ["glancing"] = 0, ["multistrike"] = 0, ["name"] = "Fireball Volley", ["blocked"] = 0, ["totalhits"] = 1, ["resisted"] = 0, ["max"] = 667, ["damage"] = 667, }, }, ["overhealing"] = 0, ["healingspells"] = { }, ["name"] = "Jyggtvå", ["healing"] = 0, ["healed"] = { }, ["maxhp"] = 4128, ["dispells"] = 0, ["multistrikes"] = 0, }, -- [5] }, ["deaths"] = 0, ["mobs"] = { ["Flameweaver Koegler"] = { ["players"] = { ["Sebster-ShatteredHand"] = { ["taken"] = 7805, ["done"] = 666, ["role"] = "DAMAGER", ["class"] = "MAGE", }, ["Weaboojones-TwistingNether"] = { ["taken"] = 8683, ["done"] = 667, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Summerwalker"] = { ["taken"] = 0, ["done"] = 690, ["role"] = "HEALER", ["class"] = "MONK", }, ["Jyggtvå"] = { ["taken"] = 3919, ["done"] = 667, ["role"] = "DAMAGER", ["class"] = "HUNTER", }, ["Tjago"] = { ["taken"] = 5934, ["done"] = 3590, ["role"] = "TANK", ["class"] = "DRUID", }, }, ["hdone"] = 0, ["htakenspell"] = { }, ["taken"] = 26341, ["done"] = 6280, ["htaken"] = 0, ["hdonespell"] = { }, }, }, ["mobtaken"] = 26341, ["starttime"] = 1447790573, ["healing"] = 7430, ["power"] = { 105, -- [1] 154, -- [2] [12] = 6, }, ["multistrikes"] = 5, ["overhealing"] = 4849, ["shielding"] = 0, ["name"] = "Flameweaver Koegler", ["mobname"] = "Flameweaver Koegler", ["damagetaken"] = 6280, ["mobhdone"] = 0, ["last_action"] = 1447790573, ["mobdone"] = 6280, }, -- [10] }, }
AddCSLuaFile( "cl_init.lua" ) AddCSLuaFile( "shared.lua" ) include('shared.lua') ENT.delayTime = 0 ENT.range = 256 ENT.radiationamount = 1 ENT.geigerHeavy = {"geiger/heavy/geiger_heavy_1.wav", "geiger/heavy/geiger_heavy_2.wav", "geiger/heavy/geiger_heavy_3.wav", "geiger/heavy/geiger_heavy_4.wav", "geiger/heavy/geiger_heavy_5.wav", } ENT.geigerLight = {"geiger/light/geiger_light_1.wav", "geiger/light/geiger_light_2.wav", "geiger/light/geiger_light_3.wav", "geiger/light/geiger_light_4.wav", "geiger/light/geiger_light_5.wav", } function ENT:SpawnFunction( ply, tr ) if ( !tr.Hit ) then return end local SpawnPos = tr.HitPos + tr.HitNormal * 16 local ent = ents.Create( self.ClassName ) ent:SetPos( SpawnPos ) ent:Spawn() ent:Activate() return ent end function ENT:OnRemove() end function ENT:Initialize() self.Entity:SetModel( "models/props_junk/watermelon01.mdl" ) --Set its model. //self.Entity:PhysicsInit( SOLID_NONE ) -- Make us work with physics, self.Entity:SetMoveType( MOVETYPE_NONE ) -- after all, gmod is a physics self.Entity:SetSolid( SOLID_NONE ) -- Toolbox self.Entity:SetKeyValue("rendercolor", "150 255 150") self.Entity:SetKeyValue("renderamt", "0") self.Entity:SetMaterial("models/props_combine/portalball001_sheet") self.Entity:SetPersistent(true) local phys = self.Entity:GetPhysicsObject() if (phys:IsValid()) then phys:Wake() end end function ENT:Think() if self.delayTime < CurTime() then self.delayTime = CurTime() + 0.2 for k, v in pairs( ents.FindInSphere( self.Entity:GetPos(), 2560 ) ) do if (v:IsPlayer() and v:GetCharacter() and v:GetMoveType() != MOVETYPE_NOCLIP) then if v:GetPos( ):Distance( self:GetPos( ) ) <= self.range then local TEMP_TargetDamage = DamageInfo() TEMP_TargetDamage:SetDamage(self.radiationamount) TEMP_TargetDamage:SetInflictor(self) TEMP_TargetDamage:SetDamageType(DMG_RADIATION) TEMP_TargetDamage:SetAttacker(self) v:TakeDamageInfo(TEMP_TargetDamage) if v:hasGeiger() then local randomsound = table.Random(self.geigerHeavy) v:EmitSound(randomsound) end elseif v:GetPos( ):Distance( self:GetPos( ) ) <= self.range + 256 then if v:hasGeiger() then local randomsound = table.Random(self.geigerLight) v:EmitSound(randomsound) end end end end end end function ENT:Use( activator, caller, type, value ) end function ENT:KeyValue( key, value ) end function ENT:OnTakeDamage( dmginfo ) end function ENT:StartTouch( entity ) end function ENT:EndTouch( entity ) end function ENT:Touch( entity ) end
local E, C, L, _ = select(2, shCore()):unpack() if C.main.autoLoot ~= true then return end ---------------------------------------------------------------------------------------- -- Loot roll confirmation (tekKrush by Tekkub) ---------------------------------------------------------------------------------------- local frame = CreateFrame('frame') frame:RegisterEvent('CONFIRM_LOOT_ROLL') frame:RegisterEvent('LOOT_BIND_CONFIRM') frame:SetScript('OnEvent', function(self, event, id) for i = 1, STATICPOPUP_NUMDIALOGS do local frame = _G['StaticPopup'..i] if (frame.which == 'CONFIRM_LOOT_ROLL' or frame.which == 'LOOT_BIND') and frame:IsVisible() then StaticPopup_OnClick(frame, 1) end end end);
function create(x, y, width, height) entity = getNewEntity("baseLuaEntity") sizeMultiplier = getGlobalValue("sizeMultiplier") setEntityX(entity, x * sizeMultiplier) setEntityY(entity, y * sizeMultiplier) addEntityValue(entity, "orientation", "bool") setEntityValue(entity, "orientation", true) startEntityAnimation(entity, "electricFieldUp") setEntityRenderWidth(entity, width * sizeMultiplier) setEntityRenderHeight(entity, height * sizeMultiplier) addEntityCollisionBox(entity, 0, 0, width * sizeMultiplier, height * sizeMultiplier) addEntityToGroup(entity, "ElectricFields") addEntityToRenderGroup(entity, "550ElectricFields") return entity end
ITEM.name = "Soda Bottle" ITEM.model = "models/props_junk/garbage_plasticbottle003a.mdl" ITEM.hungerAmount = 8 ITEM.cookable = false ITEM.foodDesc = "A Pet Bottle of Soda." ITEM.price = 3 ITEM.quantity = 10
local uv = require 'luv' local helper = require'helper' local ssl = require 'luv.ssl' ----------------------------------------------- ---[[ local count = 0 local function setInterval (fn, ms) local handle = uv.new_timer() uv.timer_start(handle, ms, ms, fn) return handle end setInterval(function () print(os.date(), count) print(ssl.error()) collectgarbage() end, 1000) --]] -------------------------------------------------------------- host = arg[1] or "127.0.0.1" --only ip port = arg[2] or "8383" local address = { port = tonumber(port), address = host, } local ctx = ssl.new_ctx { protocol = helper.sslProtocol(true), key = "../luasec/certs/serverAkey.pem", certificate = "../luasec/certs/serverA.pem", cafile = "../luasec/certs/rootA.pem", verify = ssl.none, -- options = {"all", "no_sslv2"} } function create_server (host, port, on_connection) local server = uv.new_tcp() uv.tcp_bind(server, host, port) uv.listen(server, 64, function (self) local client = uv.new_tcp() uv.accept(server, client) on_connection(client) end) return server end local p = print local server = create_server(address.address, address.port, function (client) local scli = ssl.new_ssl(ctx, client, true) scli:handshake(function (scli) print 'CONNECTED' count = count + 1 end) function scli:ondata (chunk) print("ondata", chunk) self:close() end function scli:onerror (err) print('onerr', err, ssl.error()) end function scli:onend () print "onend" uv.shutdown(client, function () print "onshutdown" uv.close(client) end) end end) local address = uv.tcp_getsockname(server) p("server", server, address) uv.run 'default' print "done"
local rbxDebug = {} rbxDebug.traceback = debug.traceback rbxDebug.profilebegin = function() end rbxDebug.profileend = function() end -- debug.loadmodule will be added by createEnvironment since it needs access to -- the environment. return rbxDebug
FogVolume = { type = "FogVolume", --ENTITY_DETAIL_ID=1, Properties = { bActive = 1, VolumeType = 0, Size = { x = 1, y = 1, z = 1 }, color_Color = { x = 1, y = 1, z = 1 }, fHDRDynamic = 0, -- -1=darker..0=normal..1=brighter bUseGlobalFogColor = 0, GlobalDensity = 1.0, DensityOffset = 0.0, NearCutoff = 0.0, -- Depth bounds min for improving performance FallOffDirLong = 0.0, FallOffDirLati = 90.0, FallOffShift = 0.0, FallOffScale = 1.0, SoftEdges = 1.0, }, Fader = { fadeTime = 0.0, fadeToValue = 0.0, }, Editor = { Model = "Editor/Objects/invisiblebox.cgf", Icon = "FogVolume.bmp", ShowBounds = 1, }, } function FogVolume:OnSpawn() self:SetFlags(ENTITY_FLAG_CLIENT_ONLY, 0); end ------------------------------------------------------- function FogVolume:InitFogVolumeProperties() --System.Log( "FogVolume:InitFogVolumeProperties" ) local props = self.Properties; self:LoadFogVolume( 0, self.Properties ); end; ------------------------------------------------------- function FogVolume:CreateFogVolume() --System.Log( "FogVolume:CreateFogVolume" ) self:InitFogVolumeProperties() end ------------------------------------------------------- function FogVolume:DeleteFogVolume() --System.Log( "FogVolume:DeleteFogVolume" ) self:FreeSlot( 0 ); end ------------------------------------------------------- function FogVolume:OnInit() if( self.Properties.bActive == 1 ) then self:CreateFogVolume(); end end ------------------------------------------------------- function FogVolume:CheckMove() end ------------------------------------------------------- function FogVolume:OnShutDown() end ------------------------------------------------------- function FogVolume:OnPropertyChange() --System.Log( "FogVolume:OnPropertyChange" ) if( self.Properties.bActive == 1 ) then self:CreateFogVolume(); else self:DeleteFogVolume(); end end ------------------------------------------------------- function FogVolume:OnReset() if( self.Properties.bActive == 1 ) then self:CreateFogVolume(); end end ------------------------------------------------------- -- Hide Event ------------------------------------------------------- function FogVolume:Event_Hide() self:DeleteFogVolume(); end ------------------------------------------------------- -- Show Event ------------------------------------------------------- function FogVolume:Event_Show() self:CreateFogVolume(); end ------------------------------------------------------- -- Fade Event ------------------------------------------------------- function FogVolume:Event_Fade() --System.Log("Do Fading"); self:FadeGlobalDensity(0, self.Fader.fadeTime, self.Fader.fadeToValue); end ------------------------------------------------------- -- Fade Time Event ------------------------------------------------------- function FogVolume:Event_FadeTime(i, time) --System.Log("Fade time "..tostring(time)); self.Fader.fadeTime = time; end ------------------------------------------------------- -- Fade Value Event ------------------------------------------------------- function FogVolume:Event_FadeValue(i, val) --System.Log("Fade val "..tostring(val)); self.Fader.fadeToValue = val; end FogVolume.FlowEvents = { Inputs = { Hide = { FogVolume.Event_Hide, "bool" }, Show = { FogVolume.Event_Show, "bool" }, x_Time = { FogVolume.Event_FadeTime, "float" }, y_Value = { FogVolume.Event_FadeValue, "float" }, z_Fade = { FogVolume.Event_Fade, "bool" }, }, Outputs = { Hide = "bool", Show = "bool", }, }
ITEM.ID = "bugbait"; ITEM.Name = "Antlion Pheromone Pod"; ITEM.Description = "A bit of an antlion guard that smells disgusting."; ITEM.Model = "models/weapons/w_bugbait.mdl"; ITEM.Weight = 1; ITEM.FOV = 7; ITEM.CamPos = Vector( 50, 50, 50 ); ITEM.LookAt = Vector( 0, 0, 0 ); ITEM.BulkPrice = 3500; ITEM.License = LICENSE_BLACK;
-- add all elements of array `a' function add (a) local sum = 0 for i,v in ipairs(a) do sum = sum + v end return sum end
local _, XB = ... XB.Locale = {} local locale = GetLocale() function XB.Locale:TA(gui, index) if XB.Locale[locale] and XB.Locale[locale][gui] then if XB.Locale[locale][gui][index] then return XB.Locale[locale][gui][index] end end return XB.Locale.zhCN[gui][index] or 'INVALID STRING' end
-- Required by gamemode -- component list. comment out things to disable them -- require('components/filters/index') -- require('components/abilities/index') -- require('components/reflexfilters/index') -- require('components/minimap/index') -- require('components/creeps/index') -- require('components/points/index') -- require('components/gold/index') -- require('components/zonecontrol/index') -- require('components/duels/index') -- require('components/surrender/index') -- require('components/boss/index') -- require('components/progression/index') -- require('components/courier/index') -- require('components/cave/index') -- must be after creeps -- require('components/doors/index') -- require('components/glyph/index') -- require('components/devcheats/index') -- require('components/player/index') -- require('components/capturepoints/index') -- require('components/statprovider/index') -- require('components/heroselection/index') -- require('components/music/index') -- require('components/items/index') -- require('components/bottlepass/index') require('components/lane_creeps/index') require('components/buildings/index') -- should be last -- require('components/saveload/index')
for i,v in pairs(file.list()) do print(i,v) end --assert(l1=="line 1\n") os.exit(0)
local component = require("component"); local computer = require("computer"); local fs = require("filesystem") function getFileFromUrl(url, path, overwrite) local continue = true if fs.exists(path) then if overwrite == true then continue = true else continue = false end end if continue == true then local success, response = internetRequest(url) if success then fs.makeDirectory(fs.path(path) or "") local file = io.open(path, "w") file:write(response) file:close() else print("Could not connect to to URL address \"" .. url .. "\"") return end end end function internetRequest(url) local success, response = pcall(component.internet.request, url) if success then local responseData = "" while true do local data, responseChunk = response.read() if data then responseData = responseData .. data else if responseChunk then return false, responseChunk else return true, responseData end end end else return false, reason end end local baseUri = "https://raw.githubusercontent.com/L00Cyph3r/" getFileFromUrl(baseUri .. "OpenComputers-Collection/master/ATC/Robot/etc/atc.example.cfg","/etc/atc.cfg", false) getFileFromUrl(baseUri .. "OpenComputers-Collection/master/ATC/Robot/etc/atc.example.cfg","/etc/atc.example.cfg", true) getFileFromUrl(baseUri .. "OpenComputers-Collection/master/ATC/Robot/lib/config.lua","/usr/lib/config.lua", true) getFileFromUrl(baseUri .. "OpenComputers-Collection/master/ATC/Robot/lib/atc.lua","/usr/lib/atc.lua", true) getFileFromUrl(baseUri .. "OpenComputers-Collection/master/ATC/Robot/lib/wp.lua","/usr/lib/wp.lua", true) getFileFromUrl(baseUri .. "OpenComputers-Collection/master/ATC/Robot/lib/json.min.lua","/usr/lib/json.lua", true) getFileFromUrl(baseUri .. "OpenComputers-Collection/master/ATC/Robot/autorun.lua","/autorun.lua", true) getFileFromUrl(baseUri .. "OpenComputers-Collection/master/ATC/Robot/listener.lua","/listener.lua", true) computer.shutdown(true)
local ItemPurchaseSystem = dofile(GetScriptDirectory() .. "/constants/ItemPurchaseSystem") local ItemsToBuy = { "item_tango", "item_tango", "item_branches", "item_branches", "item_slippers", "item_slippers", "item_magic_stick", "item_recipe_magic_wand", --大魔棒7.14 "item_circlet", "item_recipe_wraith_band", "item_circlet", "item_recipe_wraith_band", "item_boots", "item_gloves", "item_boots_of_elves", -- "item_lifesteal", -- "item_quarterstaff", --疯狂面具7.06 "item_boots_of_elves", "item_boots_of_elves", "item_ogre_axe", "item_boots_of_elves", "item_blade_of_alacrity", "item_recipe_yasha", --夜叉 "item_ultimate_orb", "item_recipe_manta", --分身 "item_ring_of_health", "item_void_stone", "item_ultimate_orb", "item_recipe_sphere", "item_ring_of_regen", "item_staff_of_wizardry", "item_recipe_force_staff", --推推7.14 "item_recipe_hurricane_pike", --大推推7.20 "item_ogre_axe", "item_mithril_hammer", "item_recipe_black_king_bar", "item_point_booster", "item_staff_of_wizardry", "item_ogre_axe", "item_blade_of_alacrity", --蓝杖 "item_recipe_ultimate_scepter_2", "item_lifesteal", "item_claymore", "item_reaver", "item_quarterstaff", "item_eagle", "item_talisman_of_evasion", --蝴蝶 "item_hyperstone", "item_hyperstone", }; ItemPurchaseSystem.checkItemBuild(ItemsToBuy) function ItemPurchaseThink() ItemPurchaseSystem.ItemPurchase(ItemsToBuy) end
--[[ GD50 Legend of Zelda Author: Colton Ogden [email protected] ]] EntityWalkState = Class{__includes = BaseState} function EntityWalkState:init(entity, dungeon) self.entity = entity self.entity:changeAnimation('walk-down') self.dungeon = dungeon -- used for AI control self.moveDuration = 0 self.movementTimer = 0 -- keeps track of whether we just hit a wall self.bumped = false end function EntityWalkState:update(dt) -- assume we didn't hit a wall self.bumped = false -- boundary checking on all sides, allowing us to avoid collision detection on tiles if self.entity.direction == 'left' then self.entity.x = self.entity.x - self.entity.walkSpeed * dt if self.entity.x <= MAP_RENDER_OFFSET_X + TILE_SIZE then self.entity.x = MAP_RENDER_OFFSET_X + TILE_SIZE self.bumped = true end elseif self.entity.direction == 'right' then self.entity.x = self.entity.x + self.entity.walkSpeed * dt if self.entity.x + self.entity.width >= VIRTUAL_WIDTH - TILE_SIZE * 2 then self.entity.x = VIRTUAL_WIDTH - TILE_SIZE * 2 - self.entity.width self.bumped = true end elseif self.entity.direction == 'up' then self.entity.y = self.entity.y - self.entity.walkSpeed * dt if self.entity.y <= MAP_RENDER_OFFSET_Y + TILE_SIZE - self.entity.height / 2 then self.entity.y = MAP_RENDER_OFFSET_Y + TILE_SIZE - self.entity.height / 2 self.bumped = true end elseif self.entity.direction == 'down' then self.entity.y = self.entity.y + self.entity.walkSpeed * dt local bottomEdge = VIRTUAL_HEIGHT - (VIRTUAL_HEIGHT - MAP_HEIGHT * TILE_SIZE) + MAP_RENDER_OFFSET_Y - TILE_SIZE if self.entity.y + self.entity.height >= bottomEdge then self.entity.y = bottomEdge - self.entity.height self.bumped = true end end end function EntityWalkState:processAI(params, dt) local room = params.room local directions = {'left', 'right', 'up', 'down'} if self.moveDuration == 0 or self.bumped then -- set an initial move duration and direction self.moveDuration = math.random(5) self.entity.direction = directions[math.random(#directions)] self.entity:changeAnimation('walk-' .. tostring(self.entity.direction)) elseif self.movementTimer > self.moveDuration then self.movementTimer = 0 -- chance to go idle if math.random(3) == 1 then self.entity:changeState('idle') else self.moveDuration = math.random(5) self.entity.direction = directions[math.random(#directions)] self.entity:changeAnimation('walk-' .. tostring(self.entity.direction)) end end self.movementTimer = self.movementTimer + dt end function EntityWalkState:render() local anim = self.entity.currentAnimation love.graphics.draw(gTextures[anim.texture], gFrames[anim.texture][anim:getCurrentFrame()], math.floor(self.entity.x - self.entity.offsetX), math.floor(self.entity.y - self.entity.offsetY)) -- debug code -- love.graphics.setColor(255/255, 0, 255/255, 255/255) -- love.graphics.rectangle('line', self.entity.x, self.entity.y, self.entity.width, self.entity.height) -- love.graphics.setColor(255/255, 255/255, 255/255, 255/255) end
--------------------------------- -- GLOBAL VARIABLES --------------------------------- local WIDGET_START_X = 173 local WIDGET_START_Y = 43 local WIDGET_WIDTH = 40 local WIDGET_HEIGHT = 24 local function layout() lcd.drawFilledRectangle(WIDGET_START_X, WIDGET_START_Y, WIDGET_WIDTH, WIDGET_HEIGHT, ERASE) lcd.drawRectangle(WIDGET_START_X, WIDGET_START_Y, WIDGET_WIDTH, WIDGET_HEIGHT, GREY_DEFAULT) end local function redraw(flightMode) -- draw flight mode lcd.drawText(WIDGET_START_X + 8, WIDGET_START_Y + 7, flightMode) end return { layout = layout, redraw = redraw }
object_draft_schematic_weapon_tusken_elite = object_draft_schematic_weapon_shared_tusken_elite:new { } ObjectTemplates:addTemplate(object_draft_schematic_weapon_tusken_elite, "object/draft_schematic/weapon/tusken_elite.iff")
demo_start_clock = nil demo_is_starting = true function demo_open_screen() gsplus = gs.GetPlus() gsplus:RenderInit(SCR_WIDTH, SCR_HEIGHT) end function demo_close_screen() if gsplus ~= nil then gsplus:RenderUninit() gsplus = nil end end function demo_init() frame_count = 0 logo_phase = 0 -- logo_tex = gsplus:GetRenderer():LoadTexture("assets/ua_logo.png") DEMO_STATE = demo_start demo_is_starting = false end function demo_start() print("demo_start()") play_music() -- gsplus:ResetClock() demo_start_clock = gsplus:GetClock() DEMO_STATE = start_demo end function start_demo(dt) DEMO_STATE = start_fx_hello_outline end function demo_update(dt) gsplus:SetBlend2D(gs.BlendAlpha) gsplus:SetDepthTest2D(true) -- gsplus:Image2D((SCR_WIDTH - 1024 * (ZOOM_RATIO / 2)) / 2, 0, ZOOM_RATIO / 2, "assets/background.png", gs.Color.White) -- logo_draw(dt_sec:to_sec()) end
--NOTE:session:ExpectNotification("notification_name", { argument_to_check }) is chanegd to session:ExpectNotification("notification_name", {{ argument_to_check }}) due to defect APPLINK-17030 --After this defect is done, please reverse to session:ExpectNotification("notification_name", { argument_to_check }) ------------------------------------------------------------------------------------------------------------------- --Set "AppHMILevelNoneTimeScaleMaxRequests" = 1 ------------------------------------------------------------------------------------------------------------------- Test = require('connecttest') require('cardinalities') local events = require('events') local mobile_session = require('mobile_session') local mobile = require('mobile_connection') local tcp = require('tcp_connection') local file_connection = require('file_connection') local module = require('testbase') -------------------------------------------------------------------------------------------------- local commonFunctions = require('user_modules/shared_testcases/commonFunctions') local commonSteps = require('user_modules/shared_testcases/commonSteps') local commonTestCases = require('user_modules/shared_testcases/commonTestCases') require('user_modules/AppTypes') function DelayedExp() local event = events.Event() event.matches = function(self, e) return self == e end EXPECT_EVENT(event, "Delayed event") RUN_AFTER(function() RAISE_EVENT(event, event) end, 8000) end --------------------------------------------------------------------------------------------------------------- -- Requirement Id: APPLINK-16147 and SDLAQ-CRS-886 --------------------------------------------------------------------------------------------------------------- --APPLINK-18426 --Verification: OnAppInterfaceUnregistered notification with REQUEST_WHILE_IN_NONE_HMI_LEVEL reason. -------------------------------------------------------------------------------------------------------------- --NOTE: TC will be run correctly (returns OnAppInterfaceUnregistered(REQUEST_WHILE_IN_NONE_HMI_LEVEL)) when APPLINK-22795 is completed commonFunctions:newTestCasesGroup("TC_APPLINK_ APPLINK-18426: OnAppInterfaceUnregistered(REQUEST_WHILE_IN_NONE_HMI_LEVEL)") function Test:APPLINK_18426() local AppNotRegisteredReqCount = 0 for i = 1,10 do local cid = self.mobileSession:SendRPC("ListFiles", {} ) end EXPECT_RESPONSE("ListFiles") :ValidIf(function(exp,data) if data.payload.resultCode == "APPLICATION_NOT_REGISTERED" then AppNotRegisteredReqCount = AppNotRegisteredReqCount+1 print(" \27[32m ListFiles response came with resultCode APPLICATION_NOT_REGISTERED \27[0m") return true elseif exp.occurences ==10 and AppNotRegisteredReqCount == 0 then print(" \27[36m Response ListFiles with resultCode APPLICATION_NOT_REGISTERED did not came \27[0m") return false elseif data.payload.resultCode == "SUCCESS" then print(" \27[32m ListFiles response came with resultCode SUCCESS \27[0m") return true else print(" \27[36m ListFiles response came with resultCode "..tostring(data.payload.resultCode .. "\27[0m" )) return false end end) :Times(AtMost(10)) --hmi side: expect BasicCommunication.OnAppUnregistered EXPECT_HMINOTIFICATION("BasicCommunication.OnAppUnregistered", {appID = self.applications[config.application1.registerAppInterfaceParams.appName], unexpectedDisconnect = false}) --mobile side: expect notification self.mobileSession:ExpectNotification("OnAppInterfaceUnregistered", {{reason = "REQUEST_WHILE_IN_NONE_HMI_LEVEL"}}) DelayedExp() end --NOTE: function RegisterAgain_AfterAppIsUnregistered should work after APPLINK-16147 is implemeted -- function Test:RegisterAgain_AfterAppIsUnregistered() -- local cid= self.mobileSession:SendRPC("RegisterAppInterface", config.application1.registerAppInterfaceParams) -- EXPECT_RESPONSE(cid, { success = false, resultCode = "TOO_MANY_PENDING_REQUESTS"}) -- end
client_script 'afterStart_client.lua' server_script 'afterStart_server.lua'
-- ----------------------------------------- -- FlightFactor B757/767 Strobe Lights LUA Script -- Created by SGRA -- v1.0 24-Nov-2021 -- ----------------------------------------- if PLANE_ICAO == "B752" or PLANE_ICAO == "B753" or PLANE_ICAO == "B762" or PLANE_ICAO == "B763" then -- Defines the Landing Light DataRefs dataref("FF757_767StrobeLights", "anim/45/button", "writeable") -- Creates the custom command to turn on all landing lights create_command("FlyWithLua/FF757_767/StrobeLightsOn", "Strobe lights ON", "FF757_767StrobeLights=1", "", "") create_command("FlyWithLua/FF757_767/StrobeLightsOff", "Strobe lights OFF", "FF757_767StrobeLights=0", "", "") end
slot0 = class("GuildChatBubble", import(".ChatBubble")) slot0.init = function (slot0) slot0.nameTF = findTF(slot0.tf, "name_bg/name"):GetComponent("Text") slot0.face = findTF(slot0.tf, "face/content") slot0.circle = findTF(slot0.tf, "shipicon/frame") slot0.timeTF = findTF(slot0.tf, "time"):GetComponent("Text") slot0.headTF = findTF(slot0.tf, "shipicon/icon"):GetComponent("Image") slot0.stars = findTF(slot0.tf, "shipicon/stars") slot0.star = findTF(slot0.stars, "star") slot0.frame = findTF(slot0.tf, "shipicon/frame"):GetComponent("Image") slot0.dutyTF = findTF(slot0.tf, "name_bg/duty") slot0.chatBgWidth = 550 end slot0.OnChatFrameLoaded = function (slot0, slot1) slot2 = tf(slot1):Find("Text"):GetComponent(typeof(Text)) if not slot0.prevChatFrameColor then slot0.prevChatFrameColor = slot2.color end if slot0.data.isSelf then slot2.color = Color.New(0, 0, 0, 1) else slot2.color = Color.New(0, 0, 0, 1) end slot0.charFrameTxt = slot2 end slot0.dispose = function (slot0) slot0.super.dispose(slot0) if slot0.charFrameTxt and slot0.prevChatFrameColor then slot0.charFrameTxt.color = slot0.prevChatFrameColor end end return slot0
local Mcts = require('Mcts') local Tree = require('Mcts.Tree') local Rule = require('Rule') local ThreadPool = require('ThreadPool') local ParallelMap = require('ThreadPool.ParallelMap') love.timer = require('love.timer') local m = {} local function checkNumIterations(cfg) cfg.numIterations = cfg.numIterations - 1 return cfg.numIterations > 0 end local function checkThinkTime(cfg) return love.timer.getTime() - cfg.startTime < cfg.thinkTime end function m.new(cfg) return cfg end function m.update(ai) if ai.reqHandle == nil then return end local finished, success, resultOrErrors = ParallelMap.collect(ai.threadPool, ai.reqHandle) if not finished then return end for i, v in ipairs(success) do if not v then return error(resultOrErrors[i], 0) end end local totalScores = {} for i, moves in ipairs(resultOrErrors) do for move, numVisits in pairs(moves) do local currentNumVisits = totalScores[move] or 0 totalScores[move] = currentNumVisits + numVisits end end local bestMove, bestScore for move, score in pairs(totalScores) do if bestScore == nil or score > bestScore then bestMove = move bestScore = score end end ai.reqHandle = nil ai.endTime = love.timer.getTime() Rule.play(ai.game, bestMove) end function m.think(ai) local args = {} for i = 1, love.system.getProcessorCount() do args[i] = { ai.mcts, ai.game, math.random() } end ai.startTime = love.timer.getTime() ai.reqHandle = ParallelMap.execute(ai.threadPool, 'AI', '_think', args) end function m._think(args) local cfg, game, seed = unpack(args) math.randomseed(seed) cfg.startTime = love.timer.getTime() cfg.rule = Rule if cfg.limit == 'time' then cfg.canKeepThinking = checkThinkTime else cfg.canKeepThinking = checkNumIterations end local tree = Mcts.buildTree(cfg, game) local moves = {} Tree.forEachChild(tree, Tree.getRoot(tree), function(child) local numWins, numVisits = Tree.getStats(tree, child) local move = Tree.getMove(tree, child) moves[move] = numVisits end) return moves end return m
local __exports = LibStub:NewLibrary("ovale/scripts/ovale_rogue_spells", 10000) if not __exports then return end local __Scripts = LibStub:GetLibrary("ovale/Scripts") local OvaleScripts = __Scripts.OvaleScripts __exports.register = function() local name = "ovale_rogue_spells" local desc = "[7.0] Ovale: Rogue spells" local code = [[ # Rogue spells and functions. # Items Define(bleeding_hollow_toxin_vessel 124520) Define(denial_of_the_halfgiants 137100) Define(duskwalkers_footpads 137030) Define(greenskins_waterlogged_wristcuffs 137099) Define(greenskins_waterlogged_wristcuffs_buff 209423) Define(insignia_of_ravenholdt 137049) Define(mantle_of_the_master_assassin 144236) Define(master_assassins_initiative 235022) SpellInfo(master_assassins_initiative duration=6) Define(the_dreadlords_deceit 137021) Define(the_dreadlords_deceit_buff 208692) Define(thraxis_tricksy_treads 137031) Define(shadow_satyrs_walk 137032) Define(shivarran_symmetry 141321) # Learned spells. Define(blindside 121152) SpellInfo(blindside learn=1 level=40 specialization=assassination) Define(adrenaline_rush 13750) SpellInfo(adrenaline_rush cd=180 gcd=0) SpellInfo(adrenaline_rush buff_cdr=cooldown_reduction_agility_buff) SpellAddBuff(adrenaline_rush adrenaline_rush_aura=1) Define(adrenaline_rush_aura 13750) SpellInfo(adrenaline_rush_aura duration=15) Define(adrenaline_rush_t20_aura 246558) SpellInfo(adrenaline_rush_t20_aura duration=8) SpellList(adrenaline_rush_buff adrenaline_rush_aura adrenaline_rush_t20_aura) Define(alacrity_buff 193538) Define(alacrity_talent 17) Define(ambush 8676) SpellInfo(ambush combopoints=-2 energy=60 stealthed=1) Define(anticipation 114015) Define(anticipation_talent 8) Define(backstab 53) SpellInfo(backstab combopoints=-1 energy=35) Define(bag_of_tricks 192657) Define(between_the_eyes 199804) SpellInfo(between_the_eyes combopoints=1 max_combopoints=5 energy=35 cd=20) Define(blade_flurry 13877) SpellInfo(blade_flurry cd=10 gcd=0 offgcd=1) SpellAddBuff(blade_flurry blade_flurry_buff=toggle) Define(blade_flurry_buff 13877) Define(blunderbuss_buff 202895) Define(broadsides_buff 193356) Define(cannonball_barrage 185767) SpellInfo(cannonball_barrage cd=60) Define(cheap_shot 1833) SpellInfo(cheap_shot combopoints=-2 energy=40 interrupt=1) Define(crippling_poison 3408) SpellAddBuff(crippling_poison crippling_poison_buff=1) Define(crippling_poison_buff 3408) SpellInfo(crippling_poison_buff duration=3600) Define(curse_of_the_dreadblades 202665) SpellInfo(curse_of_the_dreadblades cd=90 tag=cd) Define(curse_of_the_dreadblades_buff 202665) Define(deadly_poison 2823) SpellAddBuff(deadly_poison deadly_poison_buff=1) Define(deadly_poison_buff 2823) SpellInfo(deadly_poison_buff duration=3600) Define(deadly_poison_dot_debuff 2818) SpellInfo(deadly_poison_dot_debuff duration=12 tick=3) Define(death_from_above 152150) SpellInfo(death_from_above combopoints=1 max_combopoints=5 energy=25) SpellAddBuff(death_from_above envenom_buff=1 specialization=assassination) SpellAddBuff(death_from_above surge_of_toxins_debuff=1 trait=surge_of_toxins) Define(death_from_above_buff 152150) Define(death_from_above_talent 21) Define(deceit_buff 166878) #TODO SpellInfo(deceit_buff duration=10) Define(deeper_stratagem_talent 7) Define(elaborate_planning_buff 193640) SpellInfo(elaborate_planning_buff duration=5) Define(envenom 32645) SpellInfo(envenom combopoints=1 max_combopoints=5 energy=35) SpellAddBuff(envenom envenom_buff=1) SpellAddBuff(envenom surge_of_toxins_debuff=1 trait=surge_of_toxins) Define(envenom_buff 32645) SpellInfo(envenom_buff duration=1 add_duration_combopoints=1 tick=1) Define(eviscerate 196819) SpellInfo(eviscerate combopoints=1 max_combopoints=5 energy=35) SpellRequire(eviscerate energy_percent 0=buff,goremaws_bite_buff) Define(exsanguinate 200806) SpellInfo(exsanguinate cd=45 tag=main) SpellAddTargetDebuff(exsanguinate rupture_debuff_exsanguinated=1 if_target_debuff=rupture_debuff) #TODO if_target_debuff is not implemented here SpellAddTargetDebuff(exsanguinate garrote_debuff_exsanguinated=1 if_target_debuff=garrote_debuff) Define(exsanguinate_talent 18) SpellList(exsanguinated rupture_debuff_exsanguinated garrote_debuff_exsanguinated) Define(fan_of_knives 51723) SpellInfo(fan_of_knives combopoints=-1 energy=35) Define(faster_than_light_trigger_buff 197270) #Remove? Define(feeding_frenzy_buff 242705) Define(finality 197406) Define(finality_eviscerate_buff 197496) Define(finality_nightblade_buff 197498) Define(find_weakness 91023) Define(find_weakness_debuff 91021) SpellInfo(find_weakness_debuff duration=10) Define(garrote 703) SpellInfo(garrote cd=15 combopoints=-1 energy=45) SpellInfo(garrote add_cd=-12 add_energy=-20 itemset=T20 itemcount=4) SpellAddTargetDebuff(garrote garrote_debuff=1) Define(garrote_debuff 703) SpellInfo(garrote_debuff duration=18 tick=2) Define(garrote_debuff_exsanguinated -703) #TODO negative number for hidden auras? SpellInfo(garrote_debuff_exsanguinated duration=garrote_debuff) #TODO use an aura as a duration to mirror the duration Define(ghostly_strike 196937) SpellInfo(ghostly_strike combopoints=-1 energy=30) SpellAddTargetDebuff(ghostly_strike ghostly_strike_debuff=1) Define(ghostly_strike_debuff 196937) SpellInfo(ghostly_strike_debuff duration=15) Define(ghostly_strike_talent 1) Define(gloomblade 200758) SpellInfo(gloomblade combopoints=-1 energy=35) SpellInfo(gloomblade replace=backstab talent=gloomblade_talent) Define(goremaws_bite 209782) SpellInfo(goremaws_bite cd=60 combopoints=-3) SpellAddBuff(goremaws_bite goremaws_bite_buff=1) Define(goremaws_bite_buff 242705) Define(gouge 1776) SpellInfo(gouge combopoints=-1 cd=10 energy=25 tag=main) SpellInfo(gouge combopoints=-1 cd=10 energy=0 talent=dirty_tricks_talent) Define(hemorrhage 16511) SpellInfo(hemorrhage combopoints=-1 energy=30) SpellAddTargetDebuff(hemorrhage hemorrhage_debuff=1) Define(hemorrhage_debuff 16511) SpellInfo(hemorrhage_debuff duration=20) Define(hemorrhage_talent 3) Define(hidden_blade_buff 202754) Define(internal_bleeding 154904) Define(internal_bleeding_talent 15) Define(internal_bleeding_debuff 154953) SpellInfo(internal_bleeding_debuff duration=12 tick=2) Define(kick 1766) SpellInfo(kick cd=15 gcd=0 interrupt=1 offgcd=1) Define(kidney_shot 408) SpellInfo(kidney_shot cd=20 combopoints=1 max_combopoints=5 energy=25 interrupt=1) SpellAddTargetDebuff(kidney_shot internal_bleeding_debuff=1 if_spell=internal_bleeding) SpellAddBuff(kidney_shot surge_of_toxins_debuff=1 trait=surge_of_toxins) Define(killing_spree 51690) SpellInfo(killing_spree cd=120) SpellAddBuff(killing_spree killing_spree_buff=1) Define(killing_spree_buff 51690) SpellInfo(killing_spree_buff duration=3) Define(kingsbane 192759) SpellAddTargetDebuff(kingsbane kingsbane_debuff=1) Define(kingsbane_debuff 192759) SpellInfo(kingsbane_debuff duration=14) Define(leeching_poison 108211) SpellAddBuff(leeching_poison leeching_poison_buff=1) Define(leeching_poison_buff 108211) SpellInfo(leeching_poison_buff duration=3600) SpellList(lethal_poison_buff deadly_poison_buff wound_poison_buff) Define(marked_for_death 137619) SpellInfo(marked_for_death cd=60 combopoints=-6 gcd=0 offgcd=1) Define(marked_for_death_talent 20) Define(master_assassin 192349) Define(master_of_shadows_talent 19) Define(master_of_subtlety_buff 31665) Define(mutilate 1329) SpellInfo(mutilate combopoints=-2 energy=55) Define(mutilated_flesh_debuff 211672) #Remove? Define(nightblade 195452) SpellInfo(nightblade energy=25 combopoints=1 max_combopoints=5) SpellAddTargetDebuff(nightblade nightblade_debuff=1) SpellRequire(nightblade energy_percent 0=buff,goremaws_bite_buff) Define(nightblade_debuff 195452) SpellInfo(nightblade_debuff duration=6 add_duration_combopoints=2 tick=2) Define(nightstalker_talent 4) SpellList(non_lethal_poison_buff crippling_poison_buff leeching_poison_buff) Define(opportunity_buff 195627) SpellInfo(opportunity_buff duration=10) Define(pistol_shot 185763) SpellInfo(pistol_shot combopoints=-1 energy=40) SpellAddBuff(pistol_shot opportunity_buff=-1) SpellRequire(pistol_shot energy_percent 0=buff,opportunity_buff) Define(quick_draw_talent 3) Define(roll_the_bones 193316) SpellInfo(roll_the_bones energy=25 combopoints=1 max_combopoints=5) Define(grand_melee_buff 193358) SpellInfo(grand_melee_buff duration=12 add_duration_combopoints=6) Define(jolly_roger_buff 199603) SpellInfo(grand_melee_buff duration=12 add_duration_combopoints=6) Define(true_bearing_buff 193359) SpellInfo(true_bearing_buff duration=12 add_duration_combopoints=6) Define(buried_treasure_buff 199600) SpellInfo(buried_treasure_buff duration=12 add_duration_combopoints=6) Define(broadside_buff 193356) SpellInfo(broadside_buff duration=12 add_duration_combopoints=6) Define(shark_infested_waters_buff 193357) SpellInfo(shark_infested_waters_buff duration=12 add_duration_combopoints=6) SpellList(roll_the_bones_buff grand_melee_buff broadside_buff jolly_roger_buff shark_infested_waters_buff true_bearing_buff buried_treasure_buff) Define(run_through 2098) SpellInfo(run_through energy=35 combopoints=1 max_combopoints=5) Define(rupture 1943) SpellInfo(rupture combopoints=1 max_combopoints=5 energy=25) SpellAddTargetDebuff(rupture rupture_debuff=1) SpellAddBuff(rupture surge_of_toxins_debuff=1 trait=surge_of_toxins) Define(rupture_debuff 1943) SpellInfo(rupture_debuff add_duration_combopoints=4 duration=4 tick=2) Define(rupture_debuff_exsanguinated -1943) SpellInfo(rupture_debuff_exsanguinated duration=rupture_debuff) Define(saber_slash 193315) SpellInfo(saber_slash combopoints=-1 energy=50) Define(shadow_blades 121471) SpellInfo(shadow_blades cd=180) SpellAddBuff(shadow_blades shadow_blades_buff=1) Define(shadow_blades_buff 121471) SpellInfo(shadow_blades_buff duration=15) Define(shadow_dance 185313) SpellInfo(shadow_dance cd=60 gcd=0) SpellInfo(shadow_dance energy=-60 itemset=T17 itemcount=2 specialization=subtlety) SpellInfo(shadow_dance buff_cdr=cooldown_reduction_agility_buff) SpellAddBuff(shadow_dance shadow_dance_buff=1) Define(shadow_dance_buff 185422) SpellInfo(shadow_dance_buff duration=4) Define(shadow_focus 108209) Define(shadow_focus_talent 6) SpellRequire(ambush energy_percent 75=buff,stealthed_buff talent=shadow_focus_talent specialization=subtlety) SpellRequire(ambush energy_percent 25=buff,stealthed_buff talent=shadow_focus_talent specialization=assassination) SpellRequire(backstab energy_percent 75=buff,stealthed_buff talent=shadow_focus_talent specialization=subtlety) SpellRequire(cheap_shot energy_percent 75=buff,stealthed_buff talent=shadow_focus_talent specialization=subtlety) SpellRequire(cheap_shot energy_percent 25=buff,stealthed_buff talent=shadow_focus_talent specialization=assassination) SpellRequire(death_from_above energy_percent 75=buff,stealthed_buff talent=shadow_focus_talent specialization=subtlety) SpellRequire(death_from_above energy_percent 25=buff,stealthed_buff talent=shadow_focus_talent specialization=assassination) SpellRequire(eviscerate energy_percent 75=buff,stealthed_buff talent=shadow_focus_talent specialization=subtlety) SpellRequire(fan_of_knives energy_percent 25=buff,stealthed_buff talent=shadow_focus_talent specialization=assassination) SpellRequire(hemorrhage energy_percent 25=buff,stealthed_buff talent=shadow_focus_talent specialization=assassination) SpellRequire(kidney_shot energy_percent 75=buff,stealthed_buff talent=shadow_focus_talent specialization=subtlety) SpellRequire(kidney_shot energy_percent 25=buff,stealthed_buff talent=shadow_focus_talent specialization=assassination) SpellRequire(mutilate energy_percent 25=buff,stealthed_buff talent=shadow_focus_talent specialization=assassination) SpellRequire(rupture energy_percent 25=buff,stealthed_buff talent=shadow_focus_talent specialization=assassination) SpellRequire(shiv energy_percent 75=buff,stealthed_buff talent=shadow_focus_talent specialization=subtlety) SpellRequire(shiv energy_percent 25=buff,stealthed_buff talent=shadow_focus_talent specialization=assassination) SpellRequire(shuriken_toss energy_percent 75=buff,stealthed_buff talent=shadow_focus_talent specialization=subtlety) Define(shadowstep 36554) SpellInfo(shadowstep cd=30 gcd=0 offgcd=1) Define(shadowstrike 185438) SpellInfo(shadowstrike combopoints=-2 energy=40 stealthed=1) Define(shiv 5938) SpellInfo(shiv cd=10 energy=20) Define(shuriken_storm 197835) SpellInfo(shuriken_storm energy=35 combopoints=-1) Define(shuriken_toss 114014) SpellInfo(shuriken_toss combopoints=-1 energy=40 travel_time=1) SpellInfo(shuriken_toss buff_energy=silent_blades_buff buff_energy_amount=-6 itemset=T16_melee itemcount=2 specialization=assassination) SpellAddBuff(shuriken_toss silent_blades_buff=0 itemset=T16_melee itemcount=2) Define(silent_blades_buff 145193) SpellInfo(silent_blades_buff duration=30 stacking=1) Define(sinister_circulation 238138) Define(sinister_strike 1752) SpellInfo(sinister_strike combopoints=-1 energy=50) SpellInfo(sinister_strike buff_energy=silent_blades_buff buff_energy_amount=-15 itemset=T16_melee itemcount=2 specialization=combat) SpellAddBuff(sinister_strike bandits_guile_buff=1 if_spell=bandits_guile) SpellAddBuff(sinister_strike silent_blades_buff=0 itemset=T16_melee itemcount=2) Define(sleight_of_hand_buff 145211) SpellInfo(sleight_of_hand_buff duration=10) Define(slice_and_dice 5171) SpellInfo(slice_and_dice combopoints=1 max_combopoints=5 energy=25) SpellAddBuff(slice_and_dice slice_and_dice_buff=1) SpellInfo(slice_and_dice replace=roll_the_bones talent=slice_and_dice_talent) Define(slice_and_dice_buff 5171) SpellInfo(slice_and_dice add_duration_combopoints=6 duration=6 tick=3) #SpellInfo(roll_the_bones unusable=1 talent=slice_and_dice_talent) Define(slice_and_dice_talent 19) Define(sprint 2983) SpellInfo(sprint cd=60) SpellAddBuff(sprint sprint_buff=1) Define(sprint_buff 2983) SpellInfo(sprint_buff duration=8) Define(stealth 1784) SpellInfo(stealth cd=6 to_stance=rogue_stealth) SpellRequire(stealth unusable 1=stealthed,1) SpellRequire(stealth unusable 1=combat,1) SpellAddBuff(stealth stealth_buff=1) Define(stealth_buff 1784) Define(subterfuge 108208) Define(subterfuge_buff 115192) SpellInfo(subterfuge_buff duration=3) Define(subterfuge_talent 5) Define(surge_of_toxins 192424) Define(surge_of_toxins_debuff 192425) SpellInfo(surge_of_toxins_debuff duration=5) Define(symbols_of_death 212283) SpellInfo(symbols_of_death cd=30 energy=35 tag=shortcd) SpellAddBuff(symbols_of_death symbols_of_death_buff=1) SpellAddBuff(symbols_of_death death_buff=1) Define(symbols_of_death_buff 212283) SpellInfo(symbols_of_death_buff duration=35) Define(the_first_of_the_dead 151818) Define(the_first_of_the_dead_buff 248210) Define(t18_class_trinket 124520) Define(toxic_blade 245388) SpellInfo(toxic_blade energy=20 cd=25 combopoints=-1 tag=main) SpellAddTargetDebuff(toxic_blade toxic_blade_debuff=1) Define(toxic_blade_debuff 245389) SpellInfo(toxic_blade_debuff duration=9) Define(urge_to_kill 192384) Define(vanish 1856) SpellInfo(vanish cd=120 gcd=0) SpellAddBuff(vanish vanish_aura=1 if_spell=!subterfuge) SpellAddBuff(vanish vanish_subterfuge_buff=1 if_spell=subterfuge) SpellRequire(vanish unusable 1=stealthed,1) Define(vanish_aura 11327) SpellInfo(vanish_aura duration=3) Define(vanish_buff 1856) Define(vanish_subterfuge_buff 115193) SpellInfo(vanish_subterfuge_buff duration=3) SpellList(vanish_buff vanish_aura vanish_subterfuge_buff) Define(vendetta 79140) SpellInfo(vendetta cd=120) SpellAddTargetDebuff(vendetta vendetta_debuff=1) Define(vendetta_debuff 79140) SpellInfo(vendetta_debuff duration=20) Define(wound_poison 8679) SpellAddBuff(wound_poison wound_poison_buff=1) Define(wound_poison_buff 8679) SpellInfo(wound_poison_buff duration=3600) # Talents Define(dark_shadow_talent 16) Define(deeper_strategem_talent 7) Define(dirty_tricks_talent 15) Define(elaborate_planning_talent 2) Define(enveloping_shadows_talent 18) Define(master_poisoner_talent 1) Define(venom_rush_talent 19) Define(vigor_talent 9) Define(gloomblade_talent 3) #Artifact traits Define(loaded_dice_buff 240837) #Legendaries Define(the_first_of_the_dead 151818) # Non-default tags for OvaleSimulationCraft. SpellInfo(vanish tag=shortcd) SpellInfo(goremaws_bite tag=main) ]] OvaleScripts:RegisterScript("ROGUE", nil, name, desc, code, "include") end
return { whitelist_globals = { ['.'] = { '_', 'love', } } }
function Strong(elem) return pandoc.SmallCaps(elem.c) end
ModifyEvent(-2, 2, 0, -1, -1, -1, -1, -1, -1, -1, -2, -2, -2); ModifyEvent(11, 94, 1, 1, 109, -1, -1, 5294, 5294, 5294, -2, -2, -2); do return end;
local chatExpression_pin2_map = require("qnFiles/qnPlist/games/chatExpression_pin2"); chatExpress= { name="chatExpress",type=0,typeName="View",time=0,report=0,x=0,y=0,width=1280,height=800,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignRight, { name="touchView",type=0,typeName="View",time=88137617,report=0,x=0,y=0,width=1280,height=800,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignTopLeft }, { name="bg",type=1,typeName="Image",time=31043519,report=0,x=12,y=0,width=1150,height=682,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignRight,file="isolater/popupWindow/popupWindow_bg_55_55_55_55.png",gridLeft=55,gridRight=55,gridTop=55,gridBottom=55, { name="mainViews",type=0,typeName="View",time=31044888,report=0,x=0,y=0,width=971,height=681,visible=1,fillParentWidth=1,fillParentHeight=1,nodeAlign=kAlignCenter, { name="recentlyUsedView",type=0,typeName="View",time=31044918,report=0,x=0,y=0,width=10,height=10,visible=1,fillParentWidth=1,fillParentHeight=1,nodeAlign=kAlignTopLeft, { name="recentlyUsedExpress",type=0,typeName="View",time=97349876,report=0,x=25,y=40,width=597,height=540,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignTopLeft } }, { name="classicView",type=0,typeName="View",time=97327992,x=0,y=0,width=0,height=0,nodeAlign=kAlignCenter,visible=1,fillParentWidth=1,fillParentHeight=1, { name="normalExpress",type=0,typeName="View",time=65096417,report=0,x=25,y=40,width=597,height=540,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignTopLeft } }, { name="vipView",type=0,typeName="View",time=97328120,x=0,y=0,width=0,height=0,nodeAlign=kAlignCenter,visible=0,fillParentWidth=1,fillParentHeight=1, { name="vipExpress",type=0,typeName="View",time=97328565,report=0,x=10,y=110,width=807,height=440,fillTopLeftX=20,fillTopLeftY=50,fillBottomRightX=20,fillBottomRightY=50,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignTopLeft, { name="tipView",type=0,typeName="View",time=97328566,report=0,x=0,y=0,width=200,height=80,visible=1,fillParentWidth=1,fillParentHeight=0,nodeAlign=kAlignTop, { name="tips",type=4,typeName="Text",time=97328567,report=0,x=30,y=0,width=0,height=0,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,fontSize=28,textAlign=kAlignLeft,colorRed=85,colorGreen=85,colorBlue=85,string=[[你的VIP使用权限还有]] }, { name="num",type=4,typeName="Text",time=97328568,report=0,x=310,y=0,width=45,height=33,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,fontSize=28,textAlign=kAlignLeft,colorRed=200,colorGreen=100,colorBlue=30,string=[[3天]] }, { name="renewalBtn",type=2,typeName="Button",time=97328569,report=0,x=10,y=0,width=114,height=54,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignRight,file="isolater/btns/114x54_green.png",gridLeft=20,gridRight=20,gridTop=15,gridBottom=15, { name="Text1",type=4,typeName="Text",time=97328570,report=0,x=0,y=0,width=89,height=60,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignCenter,fontSize=26,textAlign=kAlignCenter,colorRed=255,colorGreen=255,colorBlue=219,string=[[续费]] } } }, { name="faceView",type=0,typeName="View",time=97328571,report=0,x=0,y=70,width=807,height=370,fillTopLeftX=0,fillTopLeftY=80,fillBottomRightX=0,fillBottomRightY=0,visible=1,fillParentWidth=1,fillParentHeight=1,nodeAlign=kAlignTopLeft } }, { name="vipExpress_preView",type=0,typeName="View",time=65171642,report=0,x=10,y=110,width=807,height=440,fillTopLeftX=20,fillTopLeftY=50,fillBottomRightX=20,fillBottomRightY=50,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignTopLeft, { name="tips",type=4,typeName="Text",time=65171643,report=0,x=0,y=40,width=0,height=0,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignTop,fontSize=30,textAlign=kAlignLeft,colorRed=143,colorGreen=92,colorBlue=31,string=[[您还不是VIP,无法使用该套表情]] }, { name="purchaseBtn",type=2,typeName="Button",time=65173218,report=0,x=0,y=120,width=293,height=121,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignTop,file="games/common/btns/293x121_green.png", { name="Text2",type=4,typeName="Text",time=65173344,report=0,x=0,y=0,width=0,height=0,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignCenter,fontSize=40,textAlign=kAlignLeft,colorRed=255,colorGreen=255,colorBlue=200,string=[[开通VIP]] } }, { name="div",type=1,typeName="Image",time=65173427,report=0,x=0,y=230,width=498,height=43,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignBottom,file=chatExpression_pin2_map['title_split.png'], { name="Text3",type=4,typeName="Text",time=65173630,report=0,x=0,y=0,width=0,height=0,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignCenter,fontSize=26,textAlign=kAlignLeft,colorRed=255,colorGreen=250,colorBlue=200,string=[[表情包预览]] } }, { name="preViewFace",type=0,typeName="ListView",time=77969541,report=0,x=0,y=20,width=518,height=180,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignBottom } } }, { name="commonView",type=0,typeName="View",time=97340874,x=0,y=0,width=64,height=64,nodeAlign=kAlignCenter,visible=1,fillParentWidth=1,fillParentHeight=1, { name="chat",type=0,typeName="View",time=31045782,report=0,x=0,y=0,width=0,height=0,visible=1,fillParentWidth=1,fillParentHeight=1,nodeAlign=kAlignTopLeft,fillTopLeftY=560,fillTopLeftX=50,fillBottomRightX=50,fillBottomRightY=0, { name="inputBg",type=1,typeName="Image",time=31045117,report=0,x=0,y=0,width=758,height=65,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,file="isolater/input_bg_l25_r25_t25_b25.png",gridLeft=25,gridRight=25,gridTop=25,gridBottom=25, { name="input",type=7,typeName="EditTextView",time=31045071,report=0,x=70,y=0,width=670,height=60,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,fontSize=28,textAlign=kAlignLeft,colorRed=215,colorGreen=171,colorBlue=127 }, { name="horn",type=0,typeName="Image",time=97349675,x=20,y=0,width=42,height=36,nodeAlign=kAlignLeft,visible=1,fillParentWidth=0,fillParentHeight=0,file="isolater/laba_blue.png" } }, { name="send",type=2,typeName="Button",time=31046730,report=0,x=20,width=248,height=89,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignRight,file="isolater/btns/btn_green_164x89_l25_r25_t25_b25.png",gridLeft=30,gridRight=30,gridTop=30,gridBottom=30, { name="text",type=4,typeName="Text",time=31045546,report=0,x=0,y=0,width=0,height=0,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignCenter,fontSize=36,textAlign=kAlignCenter,colorRed=255,colorGreen=245,colorBlue=204,string=[[发送]] } } }, { name="commonPhraseView",type=0,typeName="View",time=97345504,x=0,y=30,width=510,height=548,nodeAlign=kAlignTopRight,visible=1,fillParentWidth=0,fillParentHeight=0, { name="line",type=0,typeName="Image",time=97339409,x=-1,y=0,width=2,height=60,nodeAlign=kAlignLeft,visible=1,fillParentWidth=0,fillParentHeight=1,file="isolater/line_v.png" }, { name="commonPhrase",type=0,typeName="View",time=31045851,report=0,x=0,y=0,width=470,height=637,visible=1,fillParentWidth=0,fillParentHeight=1,nodeAlign=kAlignCenter } } } }, { name="recentlyUsedTabBtn",type=2,typeName="Button",time=31043827,report=0,x=-100,y=-195,width=100,height=195,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,file="isolater/bg_blank.png", { name="btnBg",type=0,typeName="Image",time=97324492,x=0,y=0,width=113,height=220,nodeAlign=kAlignTopRight,visible=1,fillParentWidth=0,fillParentHeight=0,file="isolater/popupWindow/tab_selected.png" }, { name="text1",type=0,typeName="Text",time=97326228,x=8,y=-35,width=40,height=40,nodeAlign=kAlignCenter,visible=1,fillParentWidth=0,fillParentHeight=0,string=[[常]],fontSize=40,textAlign=kAlignCenter,colorRed=118,colorGreen=72,colorBlue=18 }, { name="text2",type=0,typeName="Text",time=97326409,x=8,y=35,width=40,height=40,nodeAlign=kAlignCenter,visible=1,fillParentWidth=0,fillParentHeight=0,string=[[用]],fontSize=40,textAlign=kAlignCenter,colorRed=118,colorGreen=72,colorBlue=18 } }, { name="classicTabBtn",type=2,typeName="Button",time=31044148,report=0,x=-100,y=0,width=100,height=195,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,file="isolater/bg_blank.png", { name="btnBg",type=0,typeName="Image",time=97324649,x=0,y=0,width=113,height=220,nodeAlign=kAlignTopRight,visible=1,fillParentWidth=0,fillParentHeight=0,file="isolater/popupWindow/tab_unselect.png" }, { name="text1",type=0,typeName="Text",time=97326822,x=8,y=-35,width=40,height=40,nodeAlign=kAlignCenter,visible=1,fillParentWidth=0,fillParentHeight=0,string=[[经]],fontSize=40,textAlign=kAlignCenter,colorRed=118,colorGreen=72,colorBlue=18 }, { name="text2",type=0,typeName="Text",time=97326827,x=8,y=35,width=40,height=40,nodeAlign=kAlignCenter,visible=1,fillParentWidth=0,fillParentHeight=0,string=[[典]],fontSize=40,textAlign=kAlignCenter,colorRed=118,colorGreen=72,colorBlue=18 } }, { name="vipTabBtn",type=2,typeName="Button",time=31044175,report=0,x=-100,y=195,width=100,height=195,visible=1,fillParentWidth=0,fillParentHeight=0,nodeAlign=kAlignLeft,file="isolater/bg_blank.png", { name="btnBg",type=0,typeName="Image",time=97324876,x=0,y=0,width=113,height=220,nodeAlign=kAlignTopRight,visible=1,fillParentWidth=0,fillParentHeight=0,file="isolater/popupWindow/tab_unselect.png" }, { name="text1",type=0,typeName="Text",time=97326925,x=8,y=-42,width=40,height=40,nodeAlign=kAlignCenter,visible=1,fillParentWidth=0,fillParentHeight=0,string=[[V]],fontSize=40,textAlign=kAlignCenter,colorRed=118,colorGreen=72,colorBlue=18 }, { name="text2",type=0,typeName="Text",time=97326929,x=8,y=0,width=40,height=40,nodeAlign=kAlignCenter,visible=1,fillParentWidth=0,fillParentHeight=0,string=[[I]],fontSize=40,textAlign=kAlignCenter,colorRed=118,colorGreen=72,colorBlue=18 }, { name="text3",type=0,typeName="Text",time=97326932,x=8,y=42,width=40,height=40,nodeAlign=kAlignCenter,visible=1,fillParentWidth=0,fillParentHeight=0,string=[[P]],fontSize=40,textAlign=kAlignCenter,colorRed=118,colorGreen=72,colorBlue=18 } }, { name="closeBtn",type=0,typeName="Button",time=97327235,x=-15,y=-15,width=60,height=60,nodeAlign=kAlignTopRight,visible=1,fillParentWidth=0,fillParentHeight=0,file="isolater/popupWindow/popupWindow_close.png" } } } return chatExpress;
local Candlestick = {} setmetatable(Candlestick, { __call = function(self) local item = { open = self.open, close = self.close, high = self.high, low = self.low, volume = self.volume } setmetatable(item, { __tostring = function() return "C" end }) return item end }) function Candlestick:open(open) self.open = open return self end function Candlestick:close(close) self.close = close return self end function Candlestick:high(high) self.high = high return self end function Candlestick:low(low) self.low = low return self end function Candlestick:volume(volume) self.volume = volume return self end return Candlestick
-- SendCmpct Packet local packet = {} packet.name = "sendcmpct" packet.type = 22 packet.fields = { mode = ProtoField.uint8("handshake.sendcmpct.mode", "Mode", base.DEC), version = ProtoField.uint64("handshake.sendcmpct.version", "Version", base.DEC) } function packet.parse(protocol, tree, buffer, offset) -- Mode local mode_buf = buffer(offset, 1) local mode = constants.SENDCMPCT_MODE_BY_VAL[mode_buf:le_uint()] tree:add_le(packet.fields.mode, mode_buf) -- :append_text(" (" .. mode .. ")") offset = offset + 1 -- Version local version_buf = buffer(offset, 8) tree:add_le(packet.fields.version, version_buf) offset = offset + 8 -- Info column string local info = "version=" .. version_buf:le_uint64() .. " mode=" .. mode return offset, info end return packet
local screen = require 'hs.screen' local drawing = require 'hs.drawing' local log = require'hs.logger'.new('ColorShade') local colorShade = {} colorShade.__index = colorShade colorShade.name = "ColorShade" colorShade.version = "0.1" colorShade.author = "Brad Parks" colorShade.homepage = "https://github.com/bradparks/ColorShade.spoon" colorShade.license = "MIT - https://opensource.org/licenses/MIT" -- global variables colorShade.shades = {} colorShade.shadeColor = {} colorShade.shadeTransparency = {} function colorShade:startWatchingForMonitorChanges() local screenWatcher = hs.screen.watcher.new(function() colorShade:reloadShades() end) screenWatcher:start() end function colorShade:setT(index, value) colorShade.shadeTransparency[index] = value end function colorShade:setC(index, value) colorShade.shadeColor[index] = value end function colorShade:getTCurrent() return colorShade:getT(colorShade:getCurrentScreenIndex()) end function colorShade:getCCurrent() return colorShade:getC(colorShade:getCurrentScreenIndex()) end function colorShade:setCCurrent(value) colorShade.shadeColor[colorShade:getCurrentScreenIndex()] = value colorShade:reloadShades() end function colorShade:setTCurrent(value) colorShade.shadeTransparency[colorShade:getCurrentScreenIndex()] = value colorShade:reloadShades() end function colorShade:deleteLayout(layoutName) local layouts = colorShade:getLayouts() layouts[layoutName] = nil colorShade:setSetting("layouts", layouts) end function colorShade:saveLayout(key) local layouts = colorShade:getLayouts() local layout = {} local screens=screen.allScreens() for index,screen in ipairs(screens) do local values = {} values["t"] = colorShade:getT(index) values["c"] = colorShade:getC(index) table.insert(layout, values) end layouts[key] = layout colorShade:setSetting("layouts", layouts) end function colorShade:reloadShades() colorShade:createShades() end function colorShade:loadLayout(layoutName) local layouts = colorShade:getLayouts() local layout = layouts[layoutName] local screens=screen.allScreens() for index,screen in ipairs(screens) do local t = layout[index]["t"] local c = layout[index]["c"] colorShade:setT(index,t) colorShade:setC(index,c) end colorShade:reloadShades() end function colorShade:setCAll(value) local screens=screen.allScreens() for index,screen in ipairs(screens) do colorShade:setC(index,value) end colorShade:reloadShades() end function colorShade:setTAll(value) local screens=screen.allScreens() for index,screen in ipairs(screens) do colorShade:setT(index,value) end colorShade:reloadShades() end function colorShade:getC(index) return colorShade:nvl(colorShade.shadeColor[index],hs.drawing.color.black) end function colorShade:getT(index) return colorShade:nvl(colorShade.shadeTransparency[index], 0) end function colorShade:createShades() for index,item in ipairs(colorShade.shades) do item:delete() end colorShade.shades = {} local screens=screen.allScreens() for index,screen in ipairs(screens) do local item = hs.drawing.rectangle(screen:fullFrame()) local c = colorShade:getC(index) local t = colorShade:getT(index) c["alpha"] = t --item:setFillColor({[c]=1, ["alpha"]=t }) item:setFillColor(c) item:setStroke(true):setFill(true) --set to cover the whole monitor, all spaces and expose item:bringToFront(true):setBehavior(17) if t == 0 then item:hide() else item:show() end table.insert(colorShade.shades, item) end end function colorShade:init() self.createShades() end function colorShade:stop() for index,item in ipairs(colorShade.shades) do item:hide() end end function colorShade:bindHotkeys(map) local callback = function() colorShade:chooseShade() end local def = {chooseShade = callback} hs.spoons.bindHotkeysToSpec(def, map) end function colorShade:n(msg, more) hs.alert.show(msg) end function colorShade:getCurrentScreenIndex(s) local screens=screen.allScreens() local currentScreen = colorShade:getCurrentScreen(s) for index,screen in ipairs(screens) do if (currentScreen == screen) then return index end end colorShade:n('problem: screen not found!') end function colorShade:getCurrentScreen(s) return s or hs.mouse.getCurrentScreen() or hs.screen.mainScreen() or hs.screen.primaryScreen() end function colorShade:createChoiceSpacer(shouldCreate) if false and shouldCreate then colorShade:createChoice("", "spacer", "spacer") end end function colorShade:createChoice(text, t, mode) local item = {} item["text"] = text item["value"] = t item["mode"] = mode table.insert(colorShade.choices, item) end function colorShade:getLayouts() return colorShade:getSetting("layouts", {}) end function colorShade:confirm(title, question, button1, button2) button1 = colorShade:nvl(button1, "OK") button2 = colorShade:nvl(button2, "Cancel") hs.application.launchOrFocus("Hammerspoon") local btn = hs.dialog.blockAlert(title, question, button1, button2, "NSWarningAlertStyle") local result = (btn == button1) return result end function colorShade:prompt(title, question, defaultValue) hs.application.launchOrFocus("Hammerspoon") local btn,result = hs.dialog.textPrompt(title, question, defaultValue, "OK", "Cancel") if (btn == "Cancel") then return nil end return result end function colorShade:addLoadLayoutChoice(layoutName) colorShade:createChoice("load layout: " .. layoutName, layoutName, "colorShade:loadLayout") end function colorShade:addDeleteLayoutChoice(layoutName) colorShade:createChoice("delete layout: " .. layoutName, layoutName, "colorShade:deleteLayout") end function createChoices() if (colorShade.choices ~= nil) then return colorShade.choices; end return colorShade:recreateChoices() end function colorShade:tableHasItems(T) for _ in pairs(T) do return true end return false end function colorShade:recreateChoices() colorShade.choices = {} local layouts = colorShade:getLayouts() local hasLayouts = colorShade:tableHasItems(layouts) for layoutName,layout in pairs(layouts) do colorShade:addLoadLayoutChoice(layoutName) end colorShade:createChoiceSpacer(hasLayouts) colorShade:createChoice("save layout", nil, "colorShade:saveLayout") colorShade:createChoiceSpacer(true) colorShade:createChoice("set layout color for all monitors", nil, "colorShade:setLayoutColorAll") colorShade:createChoice("set layout color for current monitor", nil, "colorShade:setLayoutColorCurrent") colorShade:createChoiceSpacer(true) for i = 0, 100 do colorShade:createChoice(i .. "% - all monitors", i/100, "all") end colorShade:createChoiceSpacer(true) for i = 0, 100 do colorShade:createChoice(i .. "% - current monitor" , i/100, "current") end colorShade:createChoiceSpacer(hasLayouts) for layoutName,layout in pairs(layouts) do colorShade:addDeleteLayoutChoice(layoutName) end return colorShade.choices end function colorShade:startsWith(data, searchFor) local start,finish = self:find(data, searchFor) if (start == nil) then return false end if (start == 1) then return true end return false end function colorShade:find(input, searchFor, startIndex) local result = nil local callback = function() result = string.find(input, searchFor, startIndex) end pcall(callback) return result end function colorShade:matchesNotOperator(subject, searchFor) if (searchFor == nil) or (string.len(searchFor) == 1) then return false end if not self:startsWith(searchFor, "!") then return false end local realSearchFor = searchFor:sub(2) local result = not self:stringContains(subject, realSearchFor) return result end function colorShade:stringContains(subject, searchFor) local result = nil local callback = function() result = string.match(subject, searchFor) ~= nil end pcall(callback) return result end function colorShade:splitSpace(pString) local result = {} for w in pString:gmatch("%S+") do table.insert(result, w) end return result end function colorShade:getSetting(key, defaultValue) local result = hs.settings.get(key) if result == nil then return defaultValue end return result end function colorShade:setSetting(key, value) return hs.settings.set(key, value) end function colorShade:matchesQuery(subject, query) if colorShade:isMissing(query) then return true end local result = {} local keywords = self:splitSpace("" .. query) for _, v in ipairs(keywords) do if not self:matchesNotOperator(subject, v) then if v ~= "!" then if not self:stringContains(subject, v) then return false end end end end return true end function colorShade:tableToString(tt) return hs.json.encode(tt) end function colorShade:isMissing(v) return not colorShade:isDefined(v) end function colorShade:nvl(v, defaultValue) if colorShade:isDefined(v) then return v end return defaultValue end function colorShade:isDefined(v) if (v == nil) then return false end return (type(v) ~= "string" or string.len(v .. "") > 0) end function colorShade:chooseShade() local itemSelectedCallback = function(input) if colorShade:isMissing(input) then return end local value = input["value"] local mode = input["mode"] if mode == "all" then colorShade:setTAll(value) end if mode == "current" then colorShade:setTCurrent(value) end if mode == "colorShade:setLayoutColorAll" then local callback = function(a) colorShade:setCAll(a) end colorShade:chooseColor(callback) end if mode == "colorShade:setLayoutColorCurrent" then local callback = function(a) colorShade:setCCurrent(a) end colorShade:chooseColor(callback) end if mode == "colorShade:saveLayout" then local key = colorShade:prompt("Save Layout", "name", "") if colorShade:isMissing(key) then return end colorShade:n("Saved layout " .. key) colorShade:saveLayout(key) colorShade:recreateChoices() end if mode == "colorShade:loadLayout" then colorShade:loadLayout(value) end if mode == "colorShade:deleteLayout" then if colorShade:confirm("Delete layout " .. value, "Proceed?") then colorShade:n("Deleted layout " .. value) colorShade:deleteLayout(value) colorShade:recreateChoices() end end end local chooser local queryChangedCallback = function (query) local choices = createChoices() if colorShade:isMissing(query) then chooser:choices(choices) return end local pickedChoices = {} local q = query:lower() for i,j in pairs(choices) do local fullText = (j["text"]):lower() if colorShade:matchesQuery(fullText, q) then table.insert(pickedChoices, j) end end chooser:choices(pickedChoices) end local choices = createChoices() chooser = hs.chooser.new(itemSelectedCallback) chooser:queryChangedCallback(queryChangedCallback) chooser:choices(choices) chooser:placeholderText("ColorShade: " .. (colorShade:getTCurrent() * 100) .. "%") chooser:show(); end function colorShade:colorChoices(list) local result = {} for k,v in pairs(list) do local item = {} item["text"] = hs.styledtext.new(k, {font={size=18}, color=v}) item["value"] = v table.insert(result, item) end return result end function colorShade:chooseColor(callback) local colors = hs.drawing.color.colorsFor("x11") local choices = colorShade:colorChoices(colors) local localCallback = function(input) if (input ~= nil) then callback(input["value"]) end end local rightClickCallback = function (index) callback(choices[index]["value"]) end local chooser = hs.chooser.new(localCallback) chooser:choices(choices) chooser:placeholderText("Choose a color, or right click to apply") chooser:rightClickCallback(rightClickCallback) chooser:show(); end colorShade:startWatchingForMonitorChanges() return colorShade
if mods["Krastorio2"] then local matter = require("__Krastorio2__/lib/public/data-stages/matter-util") local silica_matter = { item_name = "silica", minimum_conversion_quantity = 10, matter_value = .65, energy_required = 2, only_deconversion = false, need_stabilizer = false, unlocked_by_technology = "kr-matter-stone-processing" } matter.createMatterRecipe(silica_matter) end
local skynet = require "skynet" local log = require "chestnut.skynet.log" local context = require "chestnut.agent.AgentContext" local REQUEST = require "chestnut.agent.request" local RESPONSE = require "chestnut.agent.response" local traceback = debug.traceback local assert = assert local login_type = skynet.getenv 'login_type' local client = require("client") local service = require("service") local client_mod = {} client_mod.request = REQUEST client_mod.response = RESPONSE client.init(client_mod) local mod = {} mod.require = {} mod.init = function ( ... ) -- body end mod.command = context service.init(mod)
local defaultdata = {Wallet = 8000, Bank = 0, Clothes = {}, Cars = {}, Property = {}, Inventory={}} local currentdatabuff = {Wallet = 0, Bank = 0, Clothes = {}, Cars = {}, Property = {}, Inventory={}} local NetIDBuffer = {} function FetchDiscordID(source) for k,v in pairs(GetPlayerIdentifiers(source))do if string.sub(v, 1, string.len("discord:")) == "discord:" then return v else end end end function FetchSteamID(source) for k,v in pairs(GetPlayerIdentifiers(source))do if string.sub(v, 1, string.len("steam:")) == "steam:" then return v else end end end function FetchROSLicense(source) for k,v in pairs(GetPlayerIdentifiers(source))do if string.sub(v, 1, string.len("license:")) == "license:" then return v else end end end function exists(name) if type(name)~="string" then return false end return os.rename(name,name) and true or false end RegisterNetEvent("econ:CreateData") AddEventHandler("econ:CreateData", function(source) local ROSLicense = string.gsub(FetchROSLicense(source), "license:", "") local file = io.open('D:\fivem_player_data\' .. ROSLicense ..'.data', "w") local newFile = json.encode(defaultdata) file:write(newFile) file:flush() file:close() end) RegisterNetEvent("econ:SaveData") AddEventHandler("econ:SaveData", function(source, wallet, bank, clothes, cars, property, inventory) Citizen.Trace("\nSAVING STAT DATA") local ROSLicense = string.gsub(FetchROSLicense(source), "license:", "") local file = io.open('D:\fivem_player_data\' .. ROSLicense ..'.data', "w") currentdatabuff.Wallet = wallet currentdatabuff.Bank = bank currentdatabuff.Clothes = clothes currentdatabuff.Cars = cars currentdatabuff.Property = property currentdatabuff.Inventory = inventory local newFile = json.encode(currentdatabuff) file:write(newFile) file:flush() file:close() currentdatabuff = {Wallet = 0, Bank = 0, Clothes = {}, Cars = {}, Property = {}, Inventory={}} Citizen.Trace("\nSAVE COMPLETED\n") end) RegisterNetEvent("econ:LoadData") AddEventHandler("econ:LoadData", function(source) local ROSLicense = string.gsub(FetchROSLicense(source), "license:", "") if exists('D:\fivem_player_data\' .. ROSLicense ..'.data', "r") then Citizen.Trace("\nBEGIN STAT LOAD") Citizen.Trace("\n" .. ROSLicense) local file = io.open('D:\fivem_player_data\' .. ROSLicense ..'.data', "r") local filecontents = file:read() local currentdatabuff = json.decode(filecontents) TriggerClientEvent("econ:LoadDataClient", source, currentdatabuff.Wallet, currentdatabuff.Bank, currentdatabuff.Clothes, currentdatabuff.Cars, currentdatabuff.Property, currentdatabuff.Inventory) file:flush() file:close() currentdatabuff = {Wallet = 0, Bank = 0, Clothes = {}, Cars = {}, Property = {}, Inventory={}} Citizen.Trace("\nSTAT LOAD COMPLETE\n") else Citizen.Trace("\nCREATING DATA FOR NEW CLIENT\n") TriggerEvent("econ:CreateData", source) Citizen.Trace("\nDATA CREATED\n") end end) RegisterNetEvent("Econ:GetNetIDValue") AddEventHandler("Econ:GetNetIDValue", function(ID) for i=1, #NetIDBuffer do if NetIDBuffer[i].ID == ID then TriggerClientEvent("Econ:ReturnNetIDValue", NetIDBuffer[i].Owner, ID, NetIDBuffer[i].Amount) end end end) RegisterNetEvent("INV:SyncInventory") AddEventHandler("INV:SyncInventory", function(jsondata) local json = json.decode(jsondata) currentdatabuff.Inventory = json end) RegisterNetEvent("Econ:AssignNetIDValue") AddEventHandler("Econ:AssignNetIDValue", function(ID, Owner, Amount) table.insert(NetIDBuffer, {ID = ID, Owner = Owner, Amount = tonumber(Amount)}) end) RegisterNetEvent("Econ:RemoveNetIDValue") AddEventHandler("Econ:RemoveNetIDValue", function(ID) for i=0, #NetIDBuffer do if NetIDBuffer[i].ID == ID then table.remove(NetIDBuffer[i]) end end end)
fprp.declareChatCommand({ command = "sleep", description = "Go to sleep or wake up", delay = 1.5 }); fprp.declareChatCommand({ command = "wake", description = "Go to sleep or wake up", delay = 1.5 }); fprp.declareChatCommand({ command = "wakeup", description = "Go to sleep or wake up", delay = 1.5 });
--- Actions with time like delay or get time info -- @submodule Actions local const = require("adam.const") local ActionInstance = require("adam.system.action_instance") local M = {} --- Trigger event after time elapsed. Trigger event is optional -- @function actions.time.delay -- @tparam number|variable seconds Amount of seconds for delay -- @tparam[opt] string trigger_event Name of trigger event -- @treturn ActionInstance function M.delay(seconds, trigger_event) local action = ActionInstance(function(self) self:finish(trigger_event) end) action:set_delay(seconds) action:set_name("time.delay") return action end --- Trigger event after random time elapsed. Trigger event is optional -- @function actions.time.random_delay -- @tparam number|variable min_seconds Minimum amount of seconds for delay -- @tparam number|variable max_seconds Maximum amount of seconds for delay -- @tparam[opt] string trigger_event Name of trigger event -- @treturn ActionInstance function M.random_delay(min_seconds, max_seconds, trigger_event) local action = ActionInstance(function(self) self:finish(trigger_event) end) action:set_delay(min_seconds) -- Dirty hack here! ---@override action._get_delay_seconds = function(self) local delay_min = self:get_param(min_seconds) local delay_max = self:get_param(max_seconds) if delay_min > delay_max then delay_min, delay_max = delay_max, delay_min end assert(delay_min >= 0 and delay_max >= 0, const.ERROR.TIME_DELAY_WRONG) return math.random() * (delay_max - delay_min) + delay_min end action:set_name("time.random_delay") return action end --- Trigger event after amount of frames. Trigger event is optional -- @function actions.time.frames -- @tparam number frames Amount of frames to wait -- @tparam[opt] string trigger_event Name of trigger event -- @treturn ActionInstance function M.frames(frames, trigger_event) local action = ActionInstance(function(self, context) if frames <= 0 then self:force_finish() end if context.frames == nil then context.frames = frames end if context.frames >= 0 then context.frames = context.frames - 1 if context.frames < 0 then self:event(trigger_event) self:force_finish() end end end, function(self, context) context.frames = nil end) action:set_every_frame() action:set_name("time.frames") return action end return M
return { binary_bytes = request('binary_bytes'), binary_units = request('binary_units'), frequency = request('frequency'), general_number = request('general_number'), general_time = request('general_time'), }
--setfenv(1,_G) local meta = {} local co = setmetatable({},meta) _G.co = co -- todo -- error handler wrapper? -- select() polling support (epoll() please :c) -- co.make steal parameters -- ? local waitticks = {} local -- internal identifiers for error control SLEEP, CO_RET, SLEEP_TICK, CO_END, CALLBACK, CALL_OUTSIDE, ENDED = {},{},{},{},{},{},{},{} local extra_state = setmetatable({},{__mode = 'k'}) local function check_coroutine(thread) if thread == nil then thread = coroutine.running() end if not thread then error("Can not call outside coroutine",2) end end local function __re(thread,ok,t,val,...) if not ok then ErrorNoHalt("[CO] " .. tostring(t) .. '\n') return end if t == SLEEP then --Msg"[CO] Sleep "print(val) timer.Simple(val,function() co._re(thread,SLEEP) end) return elseif t == SLEEP_TICK then table.insert(waitticks,thread) elseif t == CALLBACK then -- wait for callback --elseif t == CB_ONE then -- wait for any one callback elseif t == CALL_OUTSIDE then co._re(thread,CALL_OUTSIDE,val(...)) elseif t == CO_END then --Msg"[CO] END "print("OK") extra_state[thread] = ENDED elseif t == CO_RET then -- return some stuff to the callback, continue coroutine co._re(thread,CO_RET) return val,... else ErrorNoHalt("[CO] Unhandled " .. tostring(t) .. '\n') end end co._re = function(thread,...) local status = coroutine.status(thread) if status == "running" then -- uhoh? elseif status == "dead" then -- we can do nothing return elseif status == "suspended" then -- all ok else error"Unknown coroutine status!?" end -- do we need this if extra_state[thread] == ENDED then return end return __re(thread,coroutine.resume(thread,...)) end hook.Add(MENU_DLL and "Think" or "Tick","colib",function() local count = #waitticks for i = count,1,-1 do local thread = table.remove(waitticks,i) co._re(thread,SLEEP_TICK) end end) function meta:__call(func,...) assert(isfunction(func),"invalid parameter supplied") local thread = coroutine.create(function(...) func(...) return CO_END end) return thread,co._re(thread,...) end function co.wrap(func,...) assert(isfunction(func),"invalid parameter supplied") local thread = coroutine.create(function(...) func(...) return CO_END end) return function(...) return co._re(thread,...) end end --- make a thread out of this function --- If we are already in a thread, reuse it. It has to be a co thread though! function co.make(...) local thread = coroutine.running() if thread then return false,thread end local func = debug.getinfo(2).func return true,co(func,...) end --[[ -- TODO function co.cox(...) local t = {...} local tc = #t local func = t[tc-1] local err = t[tc] t[tc] = nil t[tc-1] = nil assert(isfunction(func),"invalid parameter supplied") local thread = coroutine.create(function(unpack(t)) xpcall(func,err,...) end) co._re(thread,...) return thread end --]] function co.wait(delay) check_coroutine() local ret = coroutine.yield(SLEEP,tonumber(delay) or 0) if ret ~= SLEEP then error("Invalid return value from yield: " .. tostring(ret)) end --Msg"[CO] End wait "print(ret) end function co.waittick() check_coroutine() local ret = coroutine.yield(SLEEP_TICK) if ret ~= SLEEP_TICK then error("Invalid return value from yield: " .. tostring(ret)) end --Msg"[CO] End wait "print(ret) end co.sleep = co.wait local function wrap(ret, ...) if ret ~= CALL_OUTSIDE then error("Invalid return value from yield: " .. tostring(ret)) end return ... end function co.extern(func, ...) check_coroutine() return wrap(coroutine.yield(CALL_OUTSIDE, func, ...)) end function co.expcall(...) return co.extern(xpcall, ...) end function co.newcb() local thread = coroutine.running() check_coroutine(thread) local CB = function(...) return co._re(thread,CALLBACK,CB,...) end return CB end function co.ret(...) local ret = coroutine.yield(CO_RET,...) if ret ~= CO_RET then error("Invalid return value from yield: " .. tostring(ret)) end end local function _waitonewrap(caller, ...) return ... end function co.waitcb(cb) if cb == nil then return _waitonewrap(co.waitone()) end check_coroutine() local function wrap(ret,caller,...) if ret ~= CALLBACK then error("Invalid return value from yield: " .. tostring(ret)) end if caller ~= cb then error("Wrong callback returned") end return ... end return wrap(coroutine.yield(CALLBACK)) end --same as above but returns the CB too local function wrap(ret,caller,...) if ret ~= CALLBACK then error("Invalid return value from yield: " .. tostring(ret)) end return caller,... end function co.waitone() check_coroutine() return wrap(coroutine.yield(CALLBACK)) end -- extensions -- function co.fetch(url) local ok,err = co.newcb(),co.newcb() http.Fetch(url,ok,err) local cb,a,b,c,d = co.waitone() if cb == ok then return true,a,b,c,d elseif cb == err then return false,a,b,c,d end error("Invalid fetch callback called") end co.PlayURL = function(url,params) local cb = co.newcb() sound.PlayURL(url,params or '',cb) return co.waitcb(cb) end co.PlayFile = function(url,params) local cb = co.newcb() sound.PlayFile(url,params or '',cb) return co.waitcb(cb) end -- testing -- --[[ co.wrap(function() local w = co.extern(function(...) return ... end,"extern") assert(w == "extern") local ct = CurTime() co.waittick() assert(ct ~= CurTime()) local ct = CurTime() co.sleep(0.2) assert(ct ~= CurTime()) local ok,dat,a,b,c,d = co.fetch("http://iriz.uk.to/404") assert(isstring(dat)) end)() co.wrap(function() for i = 1,5 do local ok,body,size,headers,code = co.fetch("http://iriz.uk.to/404") PrintTable({i,ok,body,size,headers,code}) end end)() --]]
ESX = nil local dataCache = {} TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end) function reloadServerData() print("esx_business: Syncing businesses from database") dataCahe = {} for key,val in ipairs(MySQL.Sync.fetchAll('SELECT * FROM businesses;')) do dataCache[val["id"]] = { id = val["id"], name = val["name"], address = val["address"], description = val["description"], owner = val["owner"], owner_name = val["owner"]~=nil and MySQL.Sync.fetchAll("SELECT name FROM users WHERE identifier = @identifier",{["@identifier"]=val["owner"]})[1]["name"] or "None", price = val["price"], earnings = val["earnings"], position = json.decode(val["position"]), stock_price = val["stock_price"] } end print("esx_business: Synced "..tostring(#dataCache).." business(es) from database") end function addMoney(identifier,money,business) if not identifier or identifier==nil then return end local xPlayer = ESX.GetPlayerFromIdentifier(tostring(identifier)) if xPlayer ~= nil then print("esx_business: Adding money to "..xPlayer.getName().." - "..identifier.." ("..tostring(money).."$)") TriggerClientEvent('esx:showNotification', xPlayer.source, 'You received ~g~'..tostring(money)..'$~s~ from ~b~'..business) xPlayer.addBank(tonumber(money)) else print("esx_business: An error occured while adding money to "..identifier.." ("..tostring(money).."$). Forcing adding money") MySQL.Sync.execute('UPDATE `users` SET `bank` = `bank` + @bank WHERE `identifier` = @identifier',{['@bank'] = tonumber(money), ['@identifier'] = identifier}) end end function noStock(identifier,business) if not identifier or identifier==nil then return end print("esx_business: Player "..identifier.." has no stock at "..business) local xPlayer = ESX.GetPlayerFromIdentifier(tostring(identifier)) if xPlayer ~= nil then TriggerClientEvent('esx:showNotification', xPlayer.source, '~r~'..business..'~s~ is out of stock!') end end function getStock(business) return MySQL.Sync.fetchAll('SELECT stock FROM businesses WHERE id='..tonumber(business))[1].stock end function runMoneyCoroutines(d,h,m) Citizen.CreateThread(function() print("esx_business: Running money coroutines "..h..":"..m) local businesses = MySQL.Async.fetchAll('SELECT * FROM businesses',{},function(data) for _,business in ipairs(data) do if tostring(business["owner"])~=nil then local xPlayer = ESX.GetPlayerFromIdentifier(business["owner"]) if business["stock"]>0 then MySQL.Async.execute('UPDATE businesses SET stock = stock - 1 WHERE id = @business', {["@business"] = tonumber(business["id"])}, nil) addMoney(business["owner"],business["earnings"],business["name"]) else noStock(business["owner"],business["name"]) end end end end) end) end MySQL.ready(function() reloadServerData() Citizen.CreateThread(function() Citizen.Wait(2000) -- just wait for clients to load their shit reloadPlayersData() end) end) function reloadPlayersData() local xPlayers = ESX.GetPlayers() if #xPlayers<1 then return end for _,id in ipairs(xPlayers) do TriggerClientEvent("esx_business:syncServer",id,dataCache) end end AddEventHandler('es:playerLoaded', function(source, user) local _source = source TriggerClientEvent("esx_business:syncServer",_source,dataCache) end) TriggerEvent('es:addAdminCommand', 'business', 10, function(source, args, user) if args[1]=="business" then table.remove(args,1) end if #args>0 then if args[1]=="reload" then reloadServerData() reloadPlayersData() TriggerClientEvent('chat:addMessage', source, { args = { '^4Business', 'Data loaded from database and synced' } }) elseif args[1]=="list" then TriggerClientEvent('chat:addMessage', source, { args = { '^4Business', 'Business list will appear in F8 console' } }) TriggerClientEvent("esx_business:businessList", source) elseif args[1]=="create" then TriggerClientEvent("esx_business:businessCreate", source) end else TriggerClientEvent('chat:addMessage', source, { args = { '^4Business', 'Wrong parameters, possible parameters are: ^2reload^7, ^2list^7, ^2create^7' } }) end end, function(source, args, user) TriggerClientEvent('chat:addMessage', source, { args = { '^1SYSTEM', 'Insufficient permissions' } }) end, {}) ESX.RegisterServerCallback("esx_business:getStock", function(source,cb,business) local identifier = ESX.GetPlayerFromId(source).getIdentifier() if dataCache[business]["owner"]~=nil and dataCache[business]["owner"]==identifier then cb(getStock(tonumber(business))) else cb(0) end end) ESX.RegisterServerCallback("esx_business:buyStock", function(source,cb,business,amt) local xPlayer = ESX.GetPlayerFromId(source) local identifier = xPlayer.getIdentifier() if dataCache[business]["owner"]==identifier then if xPlayer.getMoney()>=dataCache[business]["stock_price"]*amt then xPlayer.removeMoney(dataCache[business]["stock_price"]*amt) local time = math.random(300,900) Citizen.CreateThread(function() print("esx_business: Player "..identifier.." bought stock, delivering in: "..time.."s") Citizen.Wait(time*1000) MySQL.Async.execute('UPDATE businesses SET stock = stock + @amt WHERE id = @business', {["@amt"] = tonumber(amt), ["@business"] = tonumber(business)}, nil) TriggerClientEvent('esx:showNotification', source, 'Your stock for ~b~'..dataCache[business]["name"]..'~s~ has been delivered!') end) cb(true,time) else cb(false,0) end else cb(false,0) end end) ESX.RegisterServerCallback("esx_business:buyBusiness", function(source,cb,business) local xPlayer = ESX.GetPlayerFromId(source) local identifier = xPlayer.getIdentifier() if dataCache[business]["owner"]==nil then if xPlayer.getMoney()>=dataCache[business]["price"] then dataCache[business]["owner"]=identifier -- counteract the loading time from db (player can accidentally buy twice) xPlayer.removeMoney(dataCache[business]["price"]) MySQL.Sync.execute('UPDATE businesses SET owner = @identifier WHERE id = @business', {["@identifier"] = identifier, ["@business"] = tonumber(business)}, nil) Citizen.CreateThread(function() reloadServerData();reloadPlayersData() end) cb(0) else cb(2) end else cb(1) end end) ESX.RegisterServerCallback("esx_business:sellBusiness", function(source,cb,business) local xPlayer = ESX.GetPlayerFromId(source) local identifier = xPlayer.getIdentifier() if dataCache[business]["owner"]==identifier then xPlayer.addMoney(math.floor(dataCache[business]["price"]*Config.sell_percentage)) dataCache[business]["owner"]=nil -- counteract the loading time from db (dupe bug) MySQL.Sync.execute('UPDATE businesses SET owner = NULL WHERE id = @business', {["@business"] = tonumber(business)}, nil) Citizen.CreateThread(function() reloadServerData();reloadPlayersData() end) cb(true) else cb(false) end end) ESX.RegisterServerCallback("esx_business:createBusiness", function(source,cb,business) local xPlayer = ESX.GetPlayerFromId(source) if xPlayer.getPermissions()>=10 then if not business then cb(false) end local bx,by,bz = table.unpack(business["buy_position"]) local ax,ay,az = table.unpack(business["actions_position"]) local id = MySQL.Sync.fetchAll("SELECT MAX(id) FROM businesses")[1]["MAX(id)"]+1 MySQL.Async.execute("INSERT INTO businesses(id,name,address,description,price,earnings,position,stock_price) VALUES (@id,@name,@address,@description,@price,@earnings,@position,@stock_price)", { ["@id"] = id, ["@name"] = business["name"], ["@address"] = business["address"], ["@description"] = business["description"], ["@price"] = business["price"], ["@earnings"] = business["earnings"], ["@position"] = json.encode({buy = {x = bx, y = by, z = bz}, actions = {x = ax, y = ay, z = az}}), ["@stock_price"] = business["stock_price"] }, function(rowsChanged) if rowsChanged>0 then cb(true);reloadServerData();reloadPlayersData() else cb(false) end end) else cb(false) end end) Citizen.CreateThread(function() print("esx_business: Started!") print("********************") print("WARNING: PLEASE DON\'T RESTART THIS SCRIPT, USE THE BUILTIN COMMAND /business reload TO RELOAD DATA FROM DATABASE") print("********************") for i=0,23 do TriggerEvent("cron:runAt",i,0,runMoneyCoroutines) end end)
-- Autogenerated from KST: please remove this line if doing any edits by hand! local luaunit = require("luaunit") require("process_xor_value") TestProcessXorValue = {} function TestProcessXorValue:test_process_xor_value() local r = ProcessXorValue:from_file("src/process_xor_1.bin") luaunit.assertEquals(r.key, 255) luaunit.assertEquals(r.buf, "\102\111\111\032\098\097\114") end
local PossessBarFrame = _G.PossessBarFrame if not PossessBarFrame then return end -------------------------------------------------------------------------------- -- Possess bar -- Lets you move around the bar for displaying possess abilities -------------------------------------------------------------------------------- local AddonName, Addon = ... local L = LibStub('AceLocale-3.0'):GetLocale(AddonName) -------------------------------------------------------------------------------- -- Button setup -------------------------------------------------------------------------------- local function getPossessButton(id) return _G[('PossessButton%d'):format(id)] end for id = 1, _G.NUM_POSSESS_SLOTS do local button = getPossessButton(id) -- add quick binding support Addon.BindableButton:AddQuickBindingSupport(button) end -------------------------------------------------------------------------------- -- Bar setup -------------------------------------------------------------------------------- local PossessBar = Addon:CreateClass('Frame', Addon.ButtonBar) function PossessBar:New() return PossessBar.proto.New(self, 'possess') end PossessBar:Extend( 'OnCreate', function(self) -- set display states for when the PossessBarFrame is shown/hidden local watcher = _G.CreateFrame('Frame', nil, PossessBarFrame, 'SecureHandlerShowHideTemplate') watcher:SetFrameRef('owner', self) watcher:SetAttribute('_onshow', [[ self:GetFrameRef('owner'):SetAttribute('state-display', 'show') ]]) watcher:SetAttribute('_onhide', [[ self:GetFrameRef('owner'):SetAttribute('state-display', 'hide') ]]) self.watcher = watcher -- also check when entering/leaving combat -- this works as a delayed initializer as well self:SetFrameRef('PossessBarFrame', PossessBarFrame) self:SetAttribute('_onstate-combat', [[ if self:GetFrameRef('PossessBarFrame'):IsShown() then self:SetAttribute('state-display', 'show') else self:SetAttribute('state-display', 'hide') end ]]) RegisterStateDriver(self, 'combat', '[combat]1;0') end ) function PossessBar:GetDisplayName() return L.PossessBarDisplayName end -- disable UpdateDisplayConditions as we're not using showstates for this function PossessBar:UpdateDisplayConditions() end function PossessBar:GetDefaults() return { point = 'CENTER', x = 244, y = 0, spacing = 4, padW = 2, padH = 2 } end function PossessBar:NumButtons() return _G.NUM_POSSESS_SLOTS end function PossessBar:AcquireButton(index) return getPossessButton(index) end function PossessBar:OnAttachButton(button) button:UpdateHotkeys() Addon:GetModule('ButtonThemer'):Register(button, L.PossessBarDisplayName) Addon:GetModule('Tooltips'):Register(button) end function PossessBar:OnDetachButton(button) Addon:GetModule('ButtonThemer'):Unregister(button, L.PossessBarDisplayName) Addon:GetModule('Tooltips'):Unregister(button) end -- export Addon.PossessBar = PossessBar -------------------------------------------------------------------------------- -- Module -------------------------------------------------------------------------------- local PossessBarModule = Addon:NewModule('PossessBar', 'AceEvent-3.0') function PossessBarModule:Load() if not self.initialized then self:DisablePossessBarFrame() self.initialized = true end self.bar = PossessBar:New() self:RegisterEvent('UPDATE_BINDINGS') end function PossessBarModule:Unload() self:UnregisterAllEvents() if self.bar then self.bar:Free() end end function PossessBarModule:UPDATE_BINDINGS() self.bar:ForButtons('UpdateHotkeys') end function PossessBarModule:DisablePossessBarFrame() -- make the bar not movable/clickable PossessBarFrame.ignoreFramePositionManager = true PossessBarFrame:EnableMouse(false) PossessBarFrame:SetParent(nil) -- hide artwork hooksecurefunc('PossessBar_UpdateState', function() _G.PossessBackground1:Hide() _G.PossessBackground2:Hide() end) -- note, don't clear points on the possess bar because the stock UI has -- logic that depends on the bar having a position -- PossessBarFrame:ClearAllPoints() end
include("names") r = math.random(#zensko_ime_nom) ime = zensko_ime_nom[r] bank = math.random(289000) + 711000 car = math.random(199999) + 600001 salary = math.random(99990) + 100010 cost = math.random(39990) + 20010 rest = bank - car - cost + salary
function f(x) return x*5; end for i=1, f(5) do print(i); end for i=10,1,-1 do print(i); end for i=1,10 do print(i); end tbl = {"alpha", "beta", ["one"] = "uno", ["two"] = "dos"}; for key, value in pairs(tbl) do print(key, value); end
function dewPoint(data) node.egc.setmode(node.egc.ALWAYS) local c local a, b,temp, rh =17.27, 237.7, data.temp, data.rh/100 c=((a*temp)/(b+temp))+ln(rh) local dp = round((((b*c)/(a-c))*10)/10,2) c,a,b,temp,rh=nil,nil,nil,nil,nil return dp end function round(n, dec) node.egc.setmode(node.egc.ALWAYS) local m = 10^(dec or 0) return math.floor(n * m + 0.5) / m end function ln(x) node.egc.setmode(node.egc.ALWAYS) local y = (x-1)/(x+1) local y2 = y*y local r = 0 for i=33, 0, -2 do r = 1/i + y2 * r end local ln = 2*y*r y,y2,r,i=nil,nil,nil,nil return ln end
local coverage = require('charon.coverage') local test = {} test.should_return_a_table = function() local data = coverage.analyze("@lib/charon/coverage.lua") assert( type(data) == 'table' ) end test.should_return_a_total_coverage = function() local data = coverage.analyze("@lib/charon/coverage.lua") assert(type(data.coverage) == 'number') end test.should_return_a_lines = function() local data = coverage.analyze("@lib/charon/coverage.lua") assert(type(data.lines) == 'table') end test.should_return_a_lines = function() local data = coverage.analyze("@lib/charon/coverage.lua") assert(data.file_name == os.abspath("lib/charon/coverage.lua")) end return test
objects = {} types = {} lookup = {} function lookup.__index(self, i) return self.base[i] end object = {} object.speed_x = 0; object.speed_y = 0; object.remainder_x = 0; object.remainder_y = 0; object.hit_x = 0 object.hit_y = 0 object.hit_w = 8 object.hit_h = 8 object.facing = 1 object.solid = true object.freeze = 0 function object.init(self) end function object.update(self) end function object.draw(self) spr(self.spr, self.x, self.y, 1, 1, self.flip_x, self.flip_y) end function object.move_x(self, x, on_collide) self.remainder_x += x local mx = flr(self.remainder_x + 0.5) self.remainder_x -= mx local total = mx local mxs = sgn(mx) while mx != 0 do if self:check_solid(mxs, 0) then if on_collide then on_collide(self, total - mx, total) end return true else self.x += mxs mx -= mxs end end return false end function object.move_y(self, y, on_collide) self.remainder_y += y local my = flr(self.remainder_y + 0.5) self.remainder_y -= my local total = my local mys = sgn(my) while my != 0 do if self:check_solid(0, mys) then if on_collide then on_collide(self, total - my, total) end return true else self.y += mys my -= mys end end return false end function object.overlaps(self, b, ox, oy) if self == b then return false end ox = ox or 0 oy = oy or 0 return ox + self.x + self.hit_x + self.hit_w > b.x + b.hit_x and oy + self.y + self.hit_y + self.hit_h > b.y + b.hit_y and ox + self.x + self.hit_x < b.x + b.hit_x + b.hit_w and oy + self.y + self.hit_y < b.y + b.hit_y + b.hit_h end function object.contains(self, px, py) return px >= self.x + self.hit_x and px < self.x + self.hit_x + self.hit_w and py >= self.y + self.hit_y and py < self.y + self.hit_y + self.hit_h end function object.check_solid(self, ox, oy) ox = ox or 0 oy = oy or 0 -- map collisions for i = flr((ox + self.x + self.hit_x) / 8),flr((ox + self.x + self.hit_x + self.hit_w - 1) / 8) do for j = flr((oy + self.y + self.hit_y)/8),flr((oy + self.y + self.hit_y + self.hit_h - 1)/8) do if fget(mget(i, j), 0) then return true end end end -- object collisions if not self.ghost then for o in all(objects) do if o != self and not o.destroyed and o.solid and self:overlaps(o, ox, oy) then return true end end end -- border collisions return self.x + ox < 0 or self.x + ox > 127 - self.hit_w or self.y + oy > 127 - self.hit_h or self.y + oy < 0 end function create(type, x, y, hit_w, hit_h) local obj = {} obj.base = type obj.x = x obj.y = y obj.hit_w = hit_w or 8 obj.hit_h = hit_h or 8 setmetatable(obj, lookup) add(objects, obj) obj:init() return obj end function new_type(spr) local obj = {} obj.spr = spr obj.base = object setmetatable(obj, lookup) types[spr] = obj return obj end
-- _PCC_SHALLOW_COPY function _PCC_SHALLOW_COPY(_PCC_t) local _PCC_t2 = {} for _PCC_k,_PCC_v in pairs(_PCC_t) do _PCC_t2[_PCC_k] = _PCC_v end return _PCC_t2 end -- END -- _PCC_SHALLOW_COPY function _PCC_NEW_MULTI_DIM_ARRAY(_PCC_dim) local MT = {}; for _PCC_i=0, _PCC_dim do MT[_PCC_i] = {__index = function(_PCC_t, _PCC_k) if _PCC_i < _PCC_dim then _PCC_t[_PCC_k] = setmetatable({}, MT[_PCC_i+1]) return _PCC_t[_PCC_k]; end end} end return setmetatable({}, MT[0]); end -- END
local greenCode = greenCode; local table = table; local pairs = pairs; --[[ Define the territory class metatable. --]] TERRITORY_CLASS = TERRITORY_CLASS or {__index = TERRITORY_CLASS}; function TERRITORY_CLASS:__call( parameter, failSafe ) return self:Query( parameter, failSafe ); end; function TERRITORY_CLASS:__tostring() return "TERRITORY ["..self("uid").."]["..self("name").."]"; end; function TERRITORY_CLASS:IsValid() return self.data != nil; end; function TERRITORY_CLASS:Query( key, failSafe ) if ( self.data and self.data[key] != nil ) then return self.data[key]; else return failSafe; end; end; function TERRITORY_CLASS:SetData( key, value ) if ( self:IsValid() and self.data[key] != nil ) then self.data[key] = value; greenCode.plugin:Call( "OnTerrytoryChangeData", self, key, value ); return true; end; end; function TERRITORY_CLASS:GetPlayerData( uid ) if ( self:IsValid() ) then return self("plyData", {})[uid]; end; end; function TERRITORY_CLASS:SetPlayerData( uid, tData ) if ( self:IsValid() ) then local tPlayerData = self("plyData", {}); tPlayerData[uid] = tData; self:SetData("plyData", tPlayerData); end; end; function TERRITORY_CLASS:IsInside( vPointPosition ) if ( self:IsValid() and vPointPosition ) then return greenCode.math:IsInPolygon( vPointPosition, self:GetCords(), self( "vertex", 150 ) ); else return false; end; end; function TERRITORY_CLASS:AddCord( vPosition ) if ( self:IsValid() ) then table.insert( self.data.cords, vPosition ); greenCode.plugin:Call( "OnTerrytoryChangeData", self, "cords", vPosition ); return true; end; end; function TERRITORY_CLASS:RemoveCord( nCordID ) if ( self:IsValid() and self.data.cords[ nCordID ] ) then self.data.cords[ nCordID ] = nil; table.ClearKeys( self.data.cords ); greenCode.plugin:Call( "OnTerrytoryChangeData", self, "cords", nil ); return true; end; end; function TERRITORY_CLASS:Remove() local PLUGIN = gc.plugin.stored["Territory"]; if ( self:IsValid() and PLUGIN and PLUGIN.stored[ self("uid") ] ) then local uid = self("uid"); local name = self("name"); PLUGIN.stored[ uid ] = nil; greenCode.plugin:Call( "OnTerrytoryRemove", uid, name ); return true; end; end; function TERRITORY_CLASS:GetName() return self( "name", "Unknown" ); end; TERRITORY_CLASS.Name = TERRITORY_CLASS.GetName; function TERRITORY_CLASS:UniqueID() return self( "uid", -1 ); end; function TERRITORY_CLASS:GetColor() return self( "color", Color(255,255,255,255) ); end; function TERRITORY_CLASS:GetCords() return self( "cords", {} ); end; function TERRITORY_CLASS:GetPerm() return self( "permissions", {} ); end; function TERRITORY_CLASS:IsGlobal() return self( "global", false ); end; function TERRITORY_CLASS:GetCenter() return greenCode.math:GetPolygonCenter( self:GetCords() ); end; function TERRITORY_CLASS:GetVertex() return self("vertex", 150); end; function TERRITORY_CLASS:SetName( sNewName ) return self:SetData( "name", sNewName ); end; function TERRITORY_CLASS:SetColor( cNewColor ) return self:SetData( "color", cNewColor ); end; function TERRITORY_CLASS:SetGlobal( bGlobal ) return self:SetData( "global", bGlobal ); end; function TERRITORY_CLASS:Register() return gc.plugin.stored["Territory"]:RegisterTerritory( self ); end; function TERRITORY_CLASS:SetPermission( sCharterName, sPermissionName, player, bValue, nTime ) local PLUGIN = gc.plugin.stored["Territory"]; local PERM = PLUGIN.PERMISSION:FindByID( sPermissionName ); local CHARTER = PLUGIN.CHARTER:FindByID( sCharterName ); if ( !PERM or !PERM:IsValid() ) then return false, "Permission is not valid."; elseif ( !CHARTER or !CHARTER:IsValid() ) then return false, "Charter is not valid."; end; local tPermissions = self:GetPerm(); if ( !tPermissions[ sCharterName ] ) then tPermissions[ sCharterName ] = {}; end; local sessionID, sessionName, SID; if ( CHARTER:StoreID() != 0 ) then SID = CHARTER:GetPlayerSID( player ); if ( !tPermissions[ sCharterName ][ SID ] ) then tPermissions[ sCharterName ][ SID ] = {}; end; sessionName = sCharterName.."_"..SID.."_"..sPermissionName.."_"..self:UniqueID(); tPermissions[ sCharterName ][ SID ][ sPermissionName ] = bValue; else sessionName = sCharterName.."_"..sPermissionName.."_"..self:UniqueID(); tPermissions[ sCharterName ][ sPermissionName ] = bValue; end; sessionID = tonumber(util.CRC(sessionName)); local SESSION = greenCode.session:FindByID( sessionID ); local bSessionIsExist = (SESSION and SESSION:IsValid()); if ( (!nTime or !bValue) and bSessionIsExist ) then SESSION:Close( nil, "Permission change to false or time not set", false ); elseif ( nTime and !bSessionIsExist ) then SESSION = SESSION_CLASS:New{ uid = sessionID, name = sessionName, timeout = nTime, territoryData = { uid = self:UniqueID(), charter = sCharterName, permission = sPermissionName, sid = SID }, returnValue = !bValue }:Register(); elseif ( nTime and bSessionIsExist ) then SESSION:SetTimeOut(nTime); SESSION:SetData("returnValue", !bValue); end; greenCode.plugin:Call("OnTerritoryChangePermission", self, sPermissionName, sCharterName, player, bValue ); return true, "All done :)", SESSION; end; function TERRITORY_CLASS:GetPermission( sPermissionName, player, bDefault ) local bSuccess, sMsg = greenCode.plugin:Call("OnTerritoryGetPermission", self, sPermissionName, player ); if ( bSuccess != nil ) then return bSuccess, sMsg or "Pre getting return value."; end; local PLUGIN = gc.plugin.stored["Territory"]; local PERM = PLUGIN.PERMISSION:FindByID( sPermissionName ); if ( !PERM or !PERM:IsValid() ) then return bDefault or false, "Permission is not valid."; end; local tPermissions = self:GetPerm(); local tCharter = PLUGIN.CHARTER:SortByPriority(); local bSuccess; for nPriority = 1, #tCharter do for sCharterName, CHARTER in pairs( tCharter[ nPriority ] ) do if ( CHARTER:StoreID() != 0 ) then local SID = CHARTER:GetPlayerSID( player ); bSuccess = ( tPermissions[ sCharterName ][ SID ] or {} )[ sPermissionName ]; else bSuccess = tPermissions[ sCharterName ][ sPermissionName ]; end; if ( bSuccess != nil ) then return bSuccess, nPriority, sCharterName; end; end; end; if ( bDefault != nil ) then return bDefault; else return PERM:GetDefault(); end; end; function TERRITORY_CLASS:New( tMergeTable ) local object = { data = { uid = -1; name = "Unknown", cords = {}, vertex = 150, color = Color(math.random(0,255), math.random(0,255), math.random(0,255), 255), global = false, permissions = {}, plyData = {} } }; greenCode.plugin:Call( "OnTerrytoryCreate", object.data ); if ( tMergeTable ) then table.Merge( object.data, tMergeTable ); end; setmetatable( object, self ); self.__index = self; return object; end;
----------------------------------- -- Area: Northern San d'Oria -- NPC: Taumila -- Starts and Finishes Quest: Tiger's Teeth (R) -- !pos -140 -5 -8 230 ----------------------------------- require("scripts/globals/settings") require("scripts/globals/titles") require("scripts/globals/shop") require("scripts/globals/quests") local ID = require("scripts/zones/Southern_San_dOria/IDs") ----------------------------------- function onTrade(player, npc, trade) if (player:getQuestStatus(SANDORIA, tpz.quest.id.sandoria.TIGER_S_TEETH) ~= QUEST_AVAILABLE) then if (trade:hasItemQty(884, 3) and trade:getItemCount() == 3) then player:startEvent(572) end end end function onTrigger(player, npc) local tigersTeeth = player:getQuestStatus(SANDORIA, tpz.quest.id.sandoria.TIGER_S_TEETH) if (player:getFameLevel(SANDORIA) >= 3 and tigersTeeth == QUEST_AVAILABLE) then player:startEvent(574) elseif (tigersTeeth == QUEST_ACCEPTED) then player:startEvent(575) elseif (tigersTeeth == QUEST_COMPLETED) then player:startEvent(573) else player:startEvent(571) end end function onEventUpdate(player, csid, option) end function onEventFinish(player, csid, option) if (csid == 574 and option == 0) then player:addQuest(SANDORIA, tpz.quest.id.sandoria.TIGER_S_TEETH) elseif (csid == 572) then player:tradeComplete() player:addTitle(tpz.title.FANG_FINDER) player:addGil(GIL_RATE*2100) player:messageSpecial(ID.text.GIL_OBTAINED, GIL_RATE*2100) if (player:getQuestStatus(SANDORIA, tpz.quest.id.sandoria.TIGER_S_TEETH) == QUEST_ACCEPTED) then player:addFame(SANDORIA, 30) player:completeQuest(SANDORIA, tpz.quest.id.sandoria.TIGER_S_TEETH) else player:addFame(SANDORIA, 5) end end end
workspace "Shaderer" architecture "x86_64" startproject "Shaderer" configurations { "Debug", "Release" } outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}" IncludeDir = {} IncludeDir["GLFW"] = "3rdparty/GLFW/include" IncludeDir["Glad"] = "3rdparty/Glad/include" IncludeDir["ImGui"] = "3rdparty/imgui" group "Dependencies" include "3rdparty/GLFW/" include "3rdparty/Glad/" include "3rdparty/imgui/" group "" project "Shaderer" location "Shaderer" kind "ConsoleApp" language "C++" cppdialect "C++17" staticruntime "on" targetdir ("bin/" .. outputdir .. "/%{prj.name}") objdir ("bin-int/" .. outputdir .. "/%{prj.name}") files { "%{prj.name}/src/**.h", "%{prj.name}/src/**.cpp", "%{prj.name}/ImGuiColorTextEdit/TextEditor.h", "%{prj.name}/ImGuiColorTextEdit/TextEditor.cpp", } defines { "GLFW_INCLUDE_NONE" } includedirs { "%{prj.name}/src", "%{prj.name}/", "%{IncludeDir.GLFW}", "%{IncludeDir.Glad}", "%{IncludeDir.ImGui}", } links { "GLFW", "Glad", "ImGui" } filter "system:windows" systemversion "latest" links { "opengl32.lib" } defines { "PLATFORM_WINDOWS" } filter "system:linux" systemversion "latest" links { "Xrandr", "Xi", "X11", "dl", "pthread" } defines { "PLATFORM_LINUX" } filter { "configurations:Debug" } defines { "DEBUG" } symbols "On" filter { "configurations:Release" } defines { "NDEBUG" } optimize "On"
-- Copyright 2012 by Till Tantau -- -- This file may be distributed an/or modified -- -- 1. under the LaTeX Project Public License and/or -- 2. under the GNU Public License -- -- See the file doc/generic/pgf/licenses/LICENSE for more information -- @release $Header: /cvsroot/pgf/pgf/generic/pgf/graphdrawing/lua/pgf/gd/force/library.lua,v 1.4 2013/05/23 20:01:27 tantau Exp $ --- -- Nature creates beautiful graph layouts all the time. Consider a -- spider's web: Nodes are connected by edges in a visually most pleasing -- manner (if you ignore the spider in the middle). The layout of a -- spider's web is created just by the physical forces exerted by the -- threads. The idea behind force-based graph drawing algorithms is to -- mimic nature: We treat edges as threads that exert forces and simulate -- into which configuration the whole graph is ``pulled'' by these -- forces. -- -- When you start thinking about for a moment, it turns out that there -- are endless variations of the force model. All of these models have -- the following in common, however: -- \begin{itemize} -- \item ``Forces'' pull and push at the nodes in different -- directions. -- \item The effect of these forces is simulated by iteratively moving -- all the nodes simultaneously a little in the direction of the forces -- and by then recalculating the forces. -- \item The iteration is stopped either after a certain number of -- iterations or when a \emph{global energy minimum} is reached (a very -- scientific way of saying that nothing happens anymore). -- \end{itemize} -- -- The main difference between the different force-based approaches is -- how the forces are determined. Here are some ideas what could cause a -- force to be exerted between two nodes (and there are more): -- \begin{itemize} -- \item If the nodes are connected by an edge, one can treat the edge as -- a ``spring'' that has a ``natural spring dimension.'' If the nodes -- are nearer than the spring dimension, they are push apart; if they -- are farther aways than the spring dimension, they are pulled -- together. -- \item If two nodes are connected by a path of a certain length, the -- nodes may ``wish to be at a distance proportional to the path -- length''. If they are nearer, they are pushed apart; if they are -- farther, they are pulled together. (This is obviously a -- generalization of the previous idea.) -- \item There may be a general force field that pushes nodes apart (an -- electrical field), so that nodes do not tend to ``cluster''. -- \item There may be a general force field that pulls nodes together (a -- gravitational field), so that nodes are not too loosely scattered. -- \item There may be highly nonlinear forces depending on the distance of -- nodes, so that nodes very near to each get pushed apart strongly, -- but the effect wears of rapidly at a distance. (Such forces are -- known as strong nuclear forces.) -- \item There rotational forces caused by the angles between the edges -- leaving a node. Such forces try to create a \emph{perfect angular -- resolution} (a very scientific way of saying that all angles -- at a node are equal). -- \end{itemize} -- -- Force-based algorithms combine one or more of the above ideas into a -- single algorithm that uses ``good'' formulas for computing the -- forces. -- -- Currently, three algorithms are implemented in this library, two of -- which are from the first of the following paper, while the third is -- from the third paper: -- -- \begin{itemize} -- \item -- Y. Hu. -- \newblock Efficient, high-quality force-directed graph drawing. -- \newblock \emph{The Mathematica Journal}, 2006. -- \item -- C. Walshaw. -- \newblock A multilevel algorithm for force-directed graph -- drawing. -- \newblock In J. Marks, editor, \emph{Graph Drawing}, Lecture Notes in -- Computer Science, 1984:31--55, 2001. -- \end{itemize} -- -- Our implementation is described in detail in the following -- diploma thesis: -- -- \begin{itemize} -- \item -- Jannis Pohlmann, -- \newblock \emph{Configurable Graph Drawing Algorithms -- for the \tikzname\ Graphics Description Language,} -- \newblock Diploma Thesis, -- \newblock Institute of Theoretical Computer Science, Univerist\"at -- zu L\"ubeck, 2011.\\[.5em] -- \newblock Online at -- \url{http://www.tcs.uni-luebeck.de/downloads/papers/2011/}\\ \url{2011-configurable-graph-drawing-algorithms-jannis-pohlmann.pdf} -- \end{itemize} -- -- In the future, I hope that most, if not all, of the force-based -- algorithms become ``just configuration options'' of a general -- force-based algorithm similar to the way the modular Sugiyama method -- is implemented in the |layered| graph drawing library. -- -- @library local force -- Library name -- Load declarations from: require "pgf.gd.force.Control" require "pgf.gd.force.ControlStart" require "pgf.gd.force.ControlIteration" require "pgf.gd.force.ControlSprings" require "pgf.gd.force.ControlElectric" require "pgf.gd.force.ControlCoarsening" require "pgf.gd.force.SpringLayouts" require "pgf.gd.force.SpringElectricalLayouts" -- Load algorithms from: require "pgf.gd.force.SpringHu2006" require "pgf.gd.force.SpringElectricalHu2006" require "pgf.gd.force.SpringElectricalWalshaw2000"
local args = { ... } local ui = args[1] assert(ui, 'Imevul UI library not found') local gfx = ui.lib.cobalt.graphics ---@class Bar : Object Basic "progress bar" style meter ---@field public value number ---@field public minValue number ---@field public maxValue number ---@field public color string ---@field public gradient number Keep at 0 for no gradient, 1 for red->green, and -1 for green->red ---@field public reverse boolean True to reverse fill direction ---@field public direction number local Bar = ui.lib.class(ui.modules.Object, function(this, data) ui.modules.Object.init(this, data) data = data or {} data.value = data.value or 0 data.minValue = 0 data.maxValue = data.maxValue or 100 data.color = data.color or nil data.gradient = data.gradient or 0 assert(data.maxValue >= data.minValue, 'maxValue (' .. data.maxValue .. ') must be >= minValue (' .. data.minValue .. ')') data.reverse = data.reverse or false this.value = data.value this.minValue = data.minValue this.maxValue = data.maxValue this:setMaxValue(this.maxValue) this.color = data.color this.gradient = data.gradient this.direction = data.direction or ui.modules.Direction.HORIZONTAL this.reverse = data.reverse this.type = 'Bar' end) ---@see Object#_draw function Bar:_draw() local fillPercent = math.min(1.0, math.max(0.0, self.value * 1.0 / self.maxValue)) gfx.setBackgroundColor(self.background or self.config.theme.blurredBackground or colors.lightGray) gfx.clear() local color = self.color or self.config.theme.primary if self.gradient > 0 then if fillPercent < 0.3 then color = colors.red elseif fillPercent < 0.5 then color = colors.orange elseif fillPercent < 0.8 then color = colors.yellow else color = colors.lime end elseif self.gradient < 0 then if fillPercent > 0.7 then color = colors.red elseif fillPercent > 0.5 then color = colors.orange elseif fillPercent > 0.3 then color = colors.yellow else color = colors.lime end end gfx.setColor(color) if self.direction == ui.modules.Direction.HORIZONTAL then if self.reverse then gfx.rect('fill', self.width - math.floor(self.width * fillPercent), 0, math.floor(self.width * fillPercent), self.height) else gfx.rect('fill', 0, 0, math.floor(self.width * fillPercent), self.height) end else if self.reverse then gfx.rect('fill', 0, self.height - math.floor(self.height * fillPercent), self.width, math.floor(self.height * fillPercent)) else gfx.rect('fill', 0, 0, self.width, math.floor(self.height * fillPercent)) end end gfx.setBackgroundColor(self.config.theme.background or colors.black) end ---Set the value of the Bar ---@public ---@param value number The new value. It will be clamped to [minValue, maxValue] ---@param noEvent boolean True to not trigger an onChange event function Bar:setValue(value, noEvent) self.value = math.min(self.maxValue, math.max(self.minValue, value)) if self.callbacks.onChange and not noEvent then self.callbacks.onChange(self, self.value) end end ---Set the maxValue of the Bar ---@public ---@param maxValue number The new maxValue. Also clamps the current Bar value between the new [minValue, maxValue] function Bar:setMaxValue(maxValue) self.maxValue = math.max(self.minValue, maxValue) self:setValue(self.value) end return Bar
require 'torch' require 'nn' require 'cunn' require 'optim' require 'pl' local adversarial = {} function rmsprop(opfunc, x, config, state) -- (0) get/update state local config = config or {} local state = state or config local lr = config.learningRate or 1e-2 local alpha = config.alpha or 0.9 local epsilon = config.epsilon or 1e-8 -- (1) evaluate f(x) and df/dx local fx, dfdx = opfunc(x) if config.optimize == true then -- (2) initialize mean square values and square gradient storage if not state.m then state.m = torch.Tensor():typeAs(x):resizeAs(dfdx):zero() state.tmp = torch.Tensor():typeAs(x):resizeAs(dfdx) end -- (3) calculate new (leaky) mean squared values state.m:mul(alpha) state.m:addcmul(1.0-alpha, dfdx, dfdx) -- (4) perform update state.tmp:sqrt(state.m):add(epsilon) -- only opdate when optimize is true if config.numUpdates < 10 then io.write(" ", lr/50.0, " ") x:addcdiv(-lr/50.0, dfdx, state.tmp) elseif config.numUpdates < 30 then io.write(" ", lr/5.0, " ") x:addcdiv(-lr /5.0, dfdx, state.tmp) else io.write(" ", lr, " ") x:addcdiv(-lr, dfdx, state.tmp) end end config.numUpdates = config.numUpdates +1 -- return x*, f(x) before optimization return x, {fx} end function adam(opfunc, x, config, state) --print('ADAM') -- (0) get/update state local config = config or {} local state = state or config local lr = config.learningRate or 0.001 local beta1 = config.beta1 or 0.9 local beta2 = config.beta2 or 0.999 local epsilon = config.epsilon or 1e-8 -- (1) evaluate f(x) and df/dx local fx, dfdx = opfunc(x) if config.optimize == true then -- Initialization state.t = state.t or 0 -- Exponential moving average of gradient values state.m = state.m or x.new(dfdx:size()):zero() -- Exponential moving average of squared gradient values state.v = state.v or x.new(dfdx:size()):zero() -- A tmp tensor to hold the sqrt(v) + epsilon state.denom = state.denom or x.new(dfdx:size()):zero() state.t = state.t + 1 -- Decay the first and second moment running average coefficient state.m:mul(beta1):add(1-beta1, dfdx) state.v:mul(beta2):addcmul(1-beta2, dfdx, dfdx) state.denom:copy(state.v):sqrt():add(epsilon) local biasCorrection1 = 1 - beta1^state.t local biasCorrection2 = 1 - beta2^state.t local fac = 1 if config.numUpdates < 10 then fac = 50.0 elseif config.numUpdates < 30 then fac = 5.0 else fac = 1.0 end io.write(" ", lr/fac, " ") local stepSize = (lr/fac) * math.sqrt(biasCorrection2)/biasCorrection1 -- (2) update x x:addcdiv(-stepSize, state.m, state.denom) end config.numUpdates = config.numUpdates +1 -- return x*, f(x) before optimization return x, {fx} end -- training function function adversarial.train(dataset, N) model_G:training() model_D:training() epoch = epoch or 1 local N = N or dataset:size()[1] local dataBatchSize = opt.batchSize / 2 local time = sys.clock() -- do one epoch print('\n<trainer> on training set:') print("<trainer> online epoch # " .. epoch .. ' [batchSize = ' .. opt.batchSize .. ' lr = ' .. sgdState_D.learningRate .. ', momentum = ' .. sgdState_D.momentum .. ']') for t = 1,N,dataBatchSize do local inputs = torch.Tensor(opt.batchSize, opt.geometry[1], opt.geometry[2], opt.geometry[3]) local targets = torch.Tensor(opt.batchSize) local noise_inputs = torch.Tensor(opt.batchSize, opt.noiseDim) ---------------------------------------------------------------------- -- create closure to evaluate f(X) and df/dX of discriminator local fevalD = function(x) collectgarbage() if x ~= parameters_D then -- get new parameters parameters_D:copy(x) end gradParameters_D:zero() -- reset gradients -- forward pass local outputs = model_D:forward(inputs) -- err_F = criterion:forward(outputs:narrow(1, 1, opt.batchSize / 2), targets:narrow(1, 1, opt.batchSize / 2)) -- err_R = criterion:forward(outputs:narrow(1, (opt.batchSize / 2) + 1, opt.batchSize / 2), targets:narrow(1, (opt.batchSize / 2) + 1, opt.batchSize / 2)) err_R = criterion:forward(outputs:narrow(1, 1, opt.batchSize / 2), targets:narrow(1, 1, opt.batchSize / 2)) err_F = criterion:forward(outputs:narrow(1, (opt.batchSize / 2) + 1, opt.batchSize / 2), targets:narrow(1, (opt.batchSize / 2) + 1, opt.batchSize / 2)) local margin = 0.3 sgdState_D.optimize = true sgdState_G.optimize = true if err_F < margin or err_R < margin then sgdState_D.optimize = false end if err_F > (1.0-margin) or err_R > (1.0-margin) then sgdState_G.optimize = false end if sgdState_G.optimize == false and sgdState_D.optimize == false then sgdState_G.optimize = true sgdState_D.optimize = true end --print(monA:size(), tarA:size()) io.write("v1_lfw| R:", err_R," F:", err_F, " ") local f = criterion:forward(outputs, targets) -- backward pass local df_do = criterion:backward(outputs, targets) model_D:backward(inputs, df_do) -- penalties (L1 and L2): if opt.coefL1 ~= 0 or opt.coefL2 ~= 0 then local norm,sign= torch.norm,torch.sign -- Loss: f = f + opt.coefL1 * norm(parameters_D,1) f = f + opt.coefL2 * norm(parameters_D,2)^2/2 -- Gradients: gradParameters_D:add( sign(parameters_D):mul(opt.coefL1) + parameters_D:clone():mul(opt.coefL2) ) end -- update confusion (add 1 since targets are binary) for i = 1,opt.batchSize do local c if outputs[i][1] > 0.5 then c = 2 else c = 1 end confusion:add(c, targets[i]+1) end --print('grad D', gradParameters_D:norm()) return f,gradParameters_D end ---------------------------------------------------------------------- -- create closure to evaluate f(X) and df/dX of generator local fevalG = function(x) collectgarbage() if x ~= parameters_G then -- get new parameters parameters_G:copy(x) end gradParameters_G:zero() -- reset gradients -- forward pass local samples = model_G:forward(noise_inputs) local outputs = model_D:forward(samples) local f = criterion:forward(outputs, targets) io.write("G:",f, " G:", tostring(sgdState_G.optimize)," D:",tostring(sgdState_D.optimize)," ", sgdState_G.numUpdates, " ", sgdState_D.numUpdates , "\n") io.flush() -- backward pass local df_samples = criterion:backward(outputs, targets) model_D:backward(samples, df_samples) local df_do = model_D.modules[1].gradInput model_G:backward(noise_inputs, df_do) print('gradParameters_G', gradParameters_G:norm()) return f,gradParameters_G end ---------------------------------------------------------------------- -- (1) Update D network: maximize log(D(x)) + log(1 - D(G(z))) -- Get half a minibatch of real, half fake for k=1,opt.K do -- (1.1) Real data local k = 1 for i = t,math.min(t+dataBatchSize-1,dataset:size()[1]) do local idx = math.random(dataset:size()[1]) local sample = dataset[idx] inputs[k] = sample:clone() k = k + 1 end targets[{{1,dataBatchSize}}]:fill(1) -- (1.2) Sampled data noise_inputs:normal(0, 1) local samples = model_G:forward(noise_inputs[{{dataBatchSize+1,opt.batchSize}}]) for i = 1, dataBatchSize do inputs[k] = samples[i]:clone() k = k + 1 end targets[{{dataBatchSize+1,opt.batchSize}}]:fill(0) rmsprop(fevalD, parameters_D, sgdState_D) end -- end for K ---------------------------------------------------------------------- -- (2) Update G network: maximize log(D(G(z))) noise_inputs:normal(0, 1) targets:fill(1) rmsprop(fevalG, parameters_G, sgdState_G) -- display progress xlua.progress(t, dataset:size()[1]) end -- end for loop over dataset -- time taken time = sys.clock() - time time = time / dataset:size()[1] print("<trainer> time to learn 1 sample = " .. (time*1000) .. 'ms') -- print confusion matrix print(confusion) trainLogger:add{['% mean class accuracy (train set)'] = confusion.totalValid * 100} confusion:zero() -- save/log current net if epoch % opt.saveFreq == 0 then local filename = paths.concat(opt.save, 'adversarial.net') os.execute('mkdir -p ' .. sys.dirname(filename)) if paths.filep(filename) then os.execute('mv ' .. filename .. ' ' .. filename .. '.old') end print('<trainer> saving network to '..filename) torch.save(filename, {D = model_D, G = model_G, opt = opt}) end -- next epoch epoch = epoch + 1 end -- test function function adversarial.test(dataset) model_G:evaluate() model_D:evaluate() local time = sys.clock() local N = N or dataset:size()[1] print('\n<trainer> on testing Set:') for t = 1,N,opt.batchSize do -- display progress xlua.progress(t, dataset:size()[1]) ---------------------------------------------------------------------- --(1) Real data local inputs = torch.Tensor(opt.batchSize,opt.geometry[1],opt.geometry[2], opt.geometry[3]) local targets = torch.ones(opt.batchSize) local k = 1 for i = t,math.min(t+opt.batchSize-1,dataset:size()[1]) do local idx = math.random(dataset:size()[1]) local sample = dataset[idx] local input = sample:clone() inputs[k] = input k = k + 1 end local preds = model_D:forward(inputs) -- get predictions from D -- add to confusion matrix for i = 1,opt.batchSize do local c if preds[i][1] > 0.5 then c = 2 else c = 1 end confusion:add(c, targets[i] + 1) end ---------------------------------------------------------------------- -- (2) Generated data (don't need this really, since no 'validation' generations) local noise_inputs = torch.Tensor(opt.batchSize, opt.noiseDim):normal(0, 1) local inputs = model_G:forward(noise_inputs) local targets = torch.zeros(opt.batchSize) local preds = model_D:forward(inputs) -- get predictions from D -- add to confusion matrix for i = 1,opt.batchSize do local c if preds[i][1] > 0.5 then c = 2 else c = 1 end confusion:add(c, targets[i] + 1) end end -- end loop over dataset -- timing time = sys.clock() - time time = time / dataset:size()[1] print("<trainer> time to test 1 sample = " .. (time*1000) .. 'ms') -- print confusion matrix print(confusion) testLogger:add{['% mean class accuracy (test set)'] = confusion.totalValid * 100} confusion:zero() end return adversarial
return { id = "face_chill", price = 50, onSale = true, }
function PlayerManager:_dodge_T5_boost() local bonus = self:upgrade_value("player", "dodge_T5_boost") local stamina_regen = self:player_unit():movement():_max_stamina() * bonus.stamina local armor_regen = self:player_unit():character_damage():_max_armor() * bonus.armor mx_log_chat('self:player_unit():character_damage():_max_armor()', self:player_unit():character_damage():_max_armor()) mx_log_chat('armor_regen', armor_regen) self:player_unit():character_damage():change_armor(armor_regen) self:player_unit():movement():add_stamina(stamina_regen) end Hooks:PostHook(PlayerManager, "init", "TIER5_PlayerManager_init", function(self) if self:has_category_upgrade("player", "dodge_T5_boost") then self:register_message(Message.OnPlayerDodge, "dodge_T5_boost", callback(self, self, "_dodge_T5_boost")) else self:unregister_message(Message.OnPlayerDodge, "dodge_T5_boost") end end)
-- Function to convert a table to a string -- Metatables not followed -- Unless key is a number it will be taken and converted to a string function t2s(t) -- local levels = 0 local rL = {cL = 1} -- Table to track recursion into nested tables (cL = current recursion level) rL[rL.cL] = {} local result = {} do rL[rL.cL]._f,rL[rL.cL]._s,rL[rL.cL]._var = pairs(t) --result[#result + 1] = "{\n"..string.rep("\t",levels+1) result[#result + 1] = "{" -- Non pretty version rL[rL.cL].t = t while true do local k,v = rL[rL.cL]._f(rL[rL.cL]._s,rL[rL.cL]._var) rL[rL.cL]._var = k if not k and rL.cL == 1 then break elseif not k then -- go up in recursion level -- If condition for pretty printing -- if result[#result]:sub(-1,-1) == "," then -- result[#result] = result[#result]:sub(1,-3) -- remove the tab and the comma -- else -- result[#result] = result[#result]:sub(1,-2) -- just remove the tab -- end result[#result + 1] = "}," -- non pretty version -- levels = levels - 1 rL.cL = rL.cL - 1 rL[rL.cL+1] = nil --rL[rL.cL].str = rL[rL.cL].str..",\n"..string.rep("\t",levels+1) else -- Handle the key and value here if type(k) == "number" then result[#result + 1] = "["..tostring(k).."]=" else result[#result + 1] = "["..[["]]..tostring(k)..[["]].."]=" end if type(v) == "table" then -- Check if this is not a recursive table local goDown = true for i = 1, rL.cL do if v==rL[i].t then -- This is recursive do not go down goDown = false break end end if goDown then -- Go deeper in recursion -- levels = levels + 1 rL.cL = rL.cL + 1 rL[rL.cL] = {} rL[rL.cL]._f,rL[rL.cL]._s,rL[rL.cL]._var = pairs(v) --result[#result + 1] = "{\n"..string.rep("\t",levels+1) result[#result + 1] = "{" -- non pretty version rL[rL.cL].t = v else --result[#result + 1] = "\""..tostring(v).."\",\n"..string.rep("\t",levels+1) result[#result + 1] = "\""..tostring(v).."\"," -- non pretty version end elseif type(v) == "number" or type(v) == "boolean" then --result[#result + 1] = tostring(v)..",\n"..string.rep("\t",levels+1) result[#result + 1] = tostring(v).."," -- non pretty version else --result[#result + 1] = string.format("%q",tostring(v))..",\n"..string.rep("\t",levels+1) result[#result + 1] = string.format("%q",tostring(v)).."," -- non pretty version end -- if type(v) == "table" then ends end -- if not rL[rL.cL]._var and rL.cL == 1 then ends end -- while true ends here end -- do ends -- If condition for pretty printing -- if result[#result]:sub(-1,-1) == "," then -- result[#result] = result[#result]:sub(1,-3) -- remove the tab and the comma -- else -- result[#result] = result[#result]:sub(1,-2) -- just remove the tab -- end result[#result + 1] = "}" -- non pretty version return table.concat(result) end -- Function to convert a table to a string with indentation for pretty printing -- Metatables not followed -- Unless key is a number it will be taken and converted to a string function t2spp(t) local levels = 0 local rL = {cL = 1} -- Table to track recursion into nested tables (cL = current recursion level) rL[rL.cL] = {} local result = {} do rL[rL.cL]._f,rL[rL.cL]._s,rL[rL.cL]._var = pairs(t) result[#result + 1] = "{\n"..string.rep("\t",levels+1) --result[#result + 1] = "{" -- Non pretty version rL[rL.cL].t = t while true do local k,v = rL[rL.cL]._f(rL[rL.cL]._s,rL[rL.cL]._var) rL[rL.cL]._var = k if not k and rL.cL == 1 then break elseif not k then -- go up in recursion level -- If condition for pretty printing if result[#result]:sub(-1,-1) == "," then result[#result] = result[#result]:sub(1,-3) -- remove the tab and the comma else result[#result] = result[#result]:sub(1,-2) -- just remove the tab end --result[#result + 1] = "}," -- non pretty version levels = levels - 1 rL.cL = rL.cL - 1 rL[rL.cL+1] = nil result[#result + 1] = "},\n"..string.rep("\t",levels+1) -- for pretty printing else -- Handle the key and value here if type(k) == "number" then result[#result + 1] = "["..tostring(k).."]=" else result[#result + 1] = "["..[["]]..tostring(k)..[["]].."]=" end if type(v) == "table" then -- Check if this is not a recursive table local goDown = true for i = 1, rL.cL do if v==rL[i].t then -- This is recursive do not go down goDown = false break end end if goDown then -- Go deeper in recursion levels = levels + 1 rL.cL = rL.cL + 1 rL[rL.cL] = {} rL[rL.cL]._f,rL[rL.cL]._s,rL[rL.cL]._var = pairs(v) result[#result + 1] = "{\n"..string.rep("\t",levels+1) -- For pretty printing --result[#result + 1] = "{" -- non pretty version rL[rL.cL].t = v else result[#result + 1] = "\""..tostring(v).."\",\n"..string.rep("\t",levels+1) -- For pretty printing --result[#result + 1] = "\""..tostring(v).."\"," -- non pretty version end elseif type(v) == "number" or type(v) == "boolean" then result[#result + 1] = tostring(v)..",\n"..string.rep("\t",levels+1) -- For pretty printing --result[#result + 1] = tostring(v).."," -- non pretty version else result[#result + 1] = string.format("%q",tostring(v))..",\n"..string.rep("\t",levels+1) -- For pretty printing --result[#result + 1] = string.format("%q",tostring(v)).."," -- non pretty version end -- if type(v) == "table" then ends end -- if not rL[rL.cL]._var and rL.cL == 1 then ends end -- while true ends here end -- do ends -- If condition for pretty printing if result[#result]:sub(-1,-1) == "," then result[#result] = result[#result]:sub(1,-3) -- remove the tab and the comma else result[#result] = result[#result]:sub(1,-2) -- just remove the tab end result[#result + 1] = "}" return table.concat(result) end -- Function to convert a table to string following the recursive tables also -- Metatables are not followed function t2sr(t) if type(t) ~= 'table' then return nil, 'Expected table parameter' end local rL = {cL = 1} -- Table to track recursion into nested tables (cL = current recursion level) rL[rL.cL] = {} local tabIndex = {} -- Table to store a list of tables indexed into a string and their variable name local latestTab = 0 local result = {} do rL[rL.cL]._f,rL[rL.cL]._s,rL[rL.cL]._var = pairs(t) result[#result + 1] = 't0={}' -- t0 would be the main table --rL[rL.cL].str = 't0={}' rL[rL.cL].t = t rL[rL.cL].tabIndex = 0 tabIndex[t] = rL[rL.cL].tabIndex while true do local key local k,v = rL[rL.cL]._f(rL[rL.cL]._s,rL[rL.cL]._var) rL[rL.cL]._var = k if not k and rL.cL == 1 then break elseif not k then -- go up in recursion level --rL[rL.cL-1].str = rL[rL.cL-1].str..'\\n'..rL[rL.cL].str rL.cL = rL.cL - 1 if rL[rL.cL].vNotDone then key = 't'..rL[rL.cL].tabIndex..'[t'..tostring(rL[rL.cL+1].tabIndex)..']' --rL[rL.cL].str = rL[rL.cL].str..'\\n'..key..'=' result[#result + 1] = "\n"..key.."=" v = rL[rL.cL].vNotDone end rL[rL.cL+1] = nil else -- Handle the key and value here if type(k) == 'number' then key = 't'..rL[rL.cL].tabIndex..'['..tostring(k)..']' --rL[rL.cL].str = rL[rL.cL].str..'\\n'..key..'=' result[#result + 1] = "\n"..key.."=" elseif type(k) == 'string' then key = 't'..rL[rL.cL].tabIndex..'.'..tostring(k) --rL[rL.cL].str = rL[rL.cL].str..'\\n'..key..'=' result[#result + 1] = "\n"..key.."=" else -- Table key -- Check if the table already exists if tabIndex[k] then key = 't'..rL[rL.cL].tabIndex..'[t'..tabIndex[k]..']' --rL[rL.cL].str = rL[rL.cL].str..'\\n'..key..'=' result[#result + 1] = "\n"..key.."=" else -- Go deeper to stringify this table latestTab = latestTab + 1 --rL[rL.cL].str = rL[rL.cL].str..'\\nt'..tostring(latestTab)..'={}' result[#result + 1] = "\nt"..tostring(latestTab).."={}" rL[rL.cL].vNotDone = v rL.cL = rL.cL + 1 rL[rL.cL] = {} rL[rL.cL]._f,rL[rL.cL]._s,rL[rL.cL]._var = pairs(k) rL[rL.cL].tabIndex = latestTab rL[rL.cL].t = k --rL[rL.cL].str = '' tabIndex[k] = rL[rL.cL].tabIndex end -- if tabIndex[k] then ends end -- if type(k)ends end -- if not k and rL.cL == 1 then ends if key then rL[rL.cL].vNotDone = nil if type(v) == 'table' then -- Check if this table is already indexed if tabIndex[v] then --rL[rL.cL].str = rL[rL.cL].str..'t'..tabIndex[v] result[#result + 1] = 't'..tabIndex[v] else -- Go deeper in recursion latestTab = latestTab + 1 --rL[rL.cL].str = rL[rL.cL].str..'{}' --rL[rL.cL].str = rL[rL.cL].str..'\\nt'..tostring(latestTab)..'='..key result[#result + 1] = "{}\nt"..tostring(latestTab)..'='..key -- New table rL.cL = rL.cL + 1 rL[rL.cL] = {} rL[rL.cL]._f,rL[rL.cL]._s,rL[rL.cL]._var = pairs(v) rL[rL.cL].tabIndex = latestTab rL[rL.cL].t = v --rL[rL.cL].str = '' tabIndex[v] = rL[rL.cL].tabIndex end elseif type(v) == 'number' then --rL[rL.cL].str = rL[rL.cL].str..tostring(v) result[#result + 1] = tostring(v) elseif type(v) == 'boolean' then --rL[rL.cL].str = rL[rL.cL].str..tostring(v) result[#result + 1] = tostring(v) else --rL[rL.cL].str = rL[rL.cL].str..string.format('%q',tostring(v)) result[#result + 1] = string.format('%q',tostring(v)) end -- if type(v) == "table" then ends end -- if key then ends end -- while true ends here end -- do ends --return rL[rL.cL].str return table.concat(result) end -- Function to convert a string containing a lua table to a lua table object function s2t(str) local safeenv = {} local fileFunc = load("t="..str,"stringToTable","t",safeenv) local err,msg = pcall(fileFunc) if not err or not safeenv.t or type(safeenv.t) ~= "table" then return nil,msg or type(safeenv.t) ~= "table" and "Not a table" end return safeenv.t end function compareTables(t1,t2) for k,v in pairs(t1) do --print(k,v) if type(v) == "number" or type(v) == "string" or type(v) == "boolean" or type(v) == "function" or type(v) == "thread" or type(v) == "userdata" then if v ~= t2[k] then --print("Value "..tostring(v).." does not match") return nil end else -- type(v) = ="table" --print("-------->Going In "..tostring(v)) if not compareTables(v,t2[k]) then return nil end end end return true end -- Copy table t1 to t2 overwriting any common keys -- If full is true then copy is recursively going down into nested tables -- returns t2 function copyTable(t1,t2,full) for k,v in pairs(t1) do if type(v) == "number" or type(v) == "string" or type(v) == "boolean" or type(v) == "function" or type(v) == "thread" or type(v) == "userdata" then if type(k) == "table" and full then local kp = {} copyTables(k,kp,true) t2[kp] = v else t2[k] = v end else -- type(v) = ="table" if full then if type(k) == "table" then local kp = {} copyTables(k,kp,true) t2[kp] = {} copyTables(v,t2[kp],true) else t2[k] = {} copyTables(v,t2[k],true) end else t2[k] = v end end end return t2 end function emptyTable(t) for k,v in pairs(t) do t[k] = nil end return true end
require("sdurw") require("sdurws") function openpackage (ns) for n,v in pairs(ns) do if _G[n] ~= nil then print("name clash: " .. n .. " is already defined") else _G[n] = v end end end openpackage(sdurw) openpackage(sdurws) rwstudio = getRobWorkStudioInstance() -- load workcell wc = rwstudio:getWorkcell() -- load device, gripper, object and state arm = wc:findDevice("PA10") -- robot arm gripper = wc:findFrame("Tool") -- the end effector frame which is the gripper object = wc:findFrame("Bottle") -- the object which is to be grasped state = wc:getDefaultState() -- the state -- function for creating timed state path function add_to_state_path(path, dev, state, tpath) t_last = path[0]:getTime() for qidx=0, path:size()-1 do q = path[qidx]:getValue() -- get the next configuration t = path[qidx]:getTime() -- get the next configuration dev:setQ(q, state) -- set the device configuration in state tpath:add( t, state) end end -- we store everything in a timed state path timedstatepath = TimedStatePath:new() -- create a time q path and add samples in it, this could be put in a file and called with: dofile "pathfile.lua" path = TimedQPath:new() -- samples are int the form add(time, Q) path:add( 1, {0,0.1,0,0,0,0,0} ) path:add( 2, {0,0.2,0,0,0,0,0} ) path:add( 3, {0,0.3,0,0,0,0,0} ) path:add( 4, {0,0.4,0,0,0,0,0} ) path:add( 5, {0,0.5,0,0,0,0,0} ) path:add( 6, {0,0.6,0,0,0,0,0} ) path:add( 7, {0,0.7,0,0,0,0,0} ) -- now move the robot from start to end of path add_to_state_path(path, arm, state, timedstatepath) -- now pick up the object rw.gripFrame(state, object, gripper) timedstatepath:add(path[path:size()-1]:getTime(), state) path = TimedQPath:new() -- samples are int the form add(time, Q) path:add( 8, {0,0.7,0,0,0,0,0} ) path:add( 9, {0,0.6,0,0,0,0,0} ) path:add( 10, {0,0.5,0,0,0,0,0} ) path:add( 11, {0,0.4,0,0,0,0,0} ) path:add( 12, {0,0.3,0,0,0,0,0} ) path:add( 13, {0,0.2,0,0,0,0,0} ) path:add( 14, {0,0.1,0,0,0,0,0} ) add_to_state_path(path, arm, state, timedstatepath) rwstudio:setTimedStatePath( timedstatepath )
Class = require "lib.hump.class" vector = require "lib.hump.vector" SimpleParticle = require "game.particles.simpleParticle" Entity = require "entity" MindRayProjectile = Class{__includes = Entity, init = function(self, x, y, dx, dy) Entity.init(self, x, y) self.velocity = vector(dx, dy) self.type = "playerray" self.damageOnHit = 0.8 self.alpha = 160 self.l = x-8 self.t = y-8 self.w = 16 self.h = 16 end, image = love.graphics.newImage("data/img/projectiles/mindshot.png") } function MindRayProjectile:update(dt) self:move(self.velocity * dt) self:getState():addParticle( SimpleParticle( self.position.x, -- x self.position.y, -- y 12, -- size 0, -- dx 0, -- dy 255, -- red 255, -- green 255, -- blue 100, -- alpha 400 -- decay ) ) if self.damageOnHit > 0 then self.damageOnHit = self.damageOnHit - (0.8 * dt) elseif self.damageOnHit < 0 then self.damageOnHit = 0 end end function MindRayProjectile:draw() local x,y = self.position:unpack() love.graphics.setColor(255, 255, 255, 100) love.graphics.circle("fill", x, y, 12) Entity.draw(self) end function MindRayProjectile:onHit(enemy) enemy:takeDamage(self.damageOnHit) if math.random(1, 10) > 8 then self:destroy() end end function MindRayProjectile:destroy() Entity.destroy(self) for i = 0, 5, 1 do self:getState():addParticle( SimpleParticle( self.position.x, -- x self.position.y, -- y 1, -- size math.random(-200, 200), -- dx math.random(-200, 200), -- dy 255, -- red 255, -- green 255, -- blue 160, -- alpha 400 -- decay ) ) end end return MindRayProjectile
---@class DeepCoreStatePolicy local DeepCoreStatePolicy = {} ---@param previous_state_context table<string, any> ---@return table<string, any> function DeepCoreStatePolicy:on_enter(previous_state_context) end ---@param state_context table<string, any> function DeepCoreStatePolicy:on_update(state_context) end ---@param state_context table<string, any> function DeepCoreStatePolicy:on_exit(state_context) end ---@class DeepCoreTransitionPolicy local DeepCoreTransitionPolicy = {} ---@type fun() : nil DeepCoreTransitionPolicy.transition_function = nil ---@param state_context table<string, any> function DeepCoreTransitionPolicy:on_origin_entered(state_context) end ---@param state_context table<string, any> ---@return boolean function DeepCoreTransitionPolicy:should_transition(state_context) end ---@param state_context table<string, any> function DeepCoreTransitionPolicy:on_transition(state_context) end
-- Dialogue for NPC "npc_jana" loadDialogue = function(DL) if (not DL:isConditionFulfilled("npc_jana", "talked")) then DL:setRoot(1) else DL:setRoot(2) end if (not DL:isConditionFulfilled("npc_jana", "talked")) then DL:createNPCNode(1, 5, "DL_Jana_Hello") -- Hello there! You look like you're freezing. DL:addConditionProgress("npc_jana", "talked") DL:addNode() DL:createNPCNode(5, -2, "DL_Jana_Hello2") -- Come, sit down and warm yourself on our fire. And why not have a little chat. DL:addNode() end DL:createChoiceNode(2) if (not DL:isConditionFulfilled("npc_jana", "who_are_you")) then DL:addChoice(6, "DL_Choice_WhoAreYou") -- Who are you guys? end if (DL:isConditionFulfilled("npc_jana", "who_are_you") and not DL:isConditionFulfilled("npc_jana", "plans")) then DL:addChoice(8, "DL_Choice_Plans") -- How's the hunt going? end if (DL:isConditionFulfilled("npc_jana", "who_are_you") and not DL:isConditionFulfilled("npc_jana", "yasha")) then DL:addChoice(11, "DL_Choice_Yasha") -- Do you know Yasha? end if (not DL:isConditionFulfilled("npc_jana", "mages")) then DL:addChoice(16, "DL_Choice_Mages") -- Have you seen some mages passing through here? end if (not DL:isConditionFulfilled("npc_jana", "trade")) then DL:addChoice(4, "DL_Choice_UnlockTrade") -- Do you sell something? end if (DL:isConditionFulfilled("npc_jana", "trade")) then DL:addChoice(3, "DL_Choice_Trade") -- Show me your wares. end DL:addChoice(-1, "") -- DL:addNode() if (not DL:isConditionFulfilled("npc_jana", "who_are_you")) then DL:createNPCNode(6, 7, "DL_Jana_WhoAreYou") -- Jason and I are demon hunters. We make sure that the demons of this valley stay here and don't create any problems. DL:addConditionProgress("npc_jana", "who_are_you") DL:addNode() DL:createNPCNode(7, -2, "DL_Jana_WhoAreYou2") -- We also hunt them for trophies like fur and teeth. They can be used to craft fine armour and the merchants in Gandria will gladly buy them. DL:addNode() end if (DL:isConditionFulfilled("npc_jana", "who_are_you") and not DL:isConditionFulfilled("npc_jana", "plans")) then DL:createNPCNode(8, 9, "DL_Jana_Plans") -- Pretty well. We found some cat demons and even a gargoyle recently. DL:addConditionProgress("npc_jana", "plans") DL:addNode() DL:createNPCNode(9, 10, "DL_Jana_Plans2") -- But the really fat booty would be in that temple in the North. DL:addNode() DL:createNPCNode(10, -2, "DL_Jana_Plans3") -- Unfortunately, the spells guarding it are too strong and we can't get in. But there are still a lot of demons left in the ruins surrounding it. DL:addNode() end if (DL:isConditionFulfilled("npc_jana", "who_are_you") and not DL:isConditionFulfilled("npc_jana", "yasha")) then DL:createNPCNode(11, 12, "DL_Jana_Yasha") -- Yes, of course. She's guarding the valley. We wouldn't dare to fight her. Anyway, she's sleeping at the moment. DL:addConditionProgress("npc_jana", "yasha") DL:addNode() DL:createChoiceNode(12) if (DL:isConditionFulfilled("npc_yasha", "unfriendly")) then DL:addChoice(13, "DL_Choice_KilledYasha") -- I killed her. end if (not DL:isConditionFulfilled("npc_yasha", "unfriendly")) then DL:addChoice(14, "DL_Choice_BefriendedYasha") -- She's not sleeping anymore, I made friends with her. end DL:addChoice(-2, "DL_Choice_Mhm") -- Mhm... DL:addNode() if (DL:isConditionFulfilled("npc_yasha", "unfriendly")) then DL:createNPCNode(13, 15, "DL_Jana_KilledYasha") -- (Jana looks shocked) What? This can't be! And if it's true; you shouldn't have! DL:addNode() DL:createNPCNode(15, -2, "DL_Jana_KilledYasha2") -- The other demons will be far more aggressive now. More work for us I guess. (Sighs) DL:addNode() end if (not DL:isConditionFulfilled("npc_yasha", "unfriendly")) then DL:createNPCNode(14, -2, "DL_Jana_BefriendedYasha") -- Oh, really? Very interesting news. We won't do her any harm of course, she's like a goddess for this valley. DL:addNode() end end if (not DL:isConditionFulfilled("npc_jana", "mages")) then DL:createNPCNode(16, 17, "DL_Jana_Mages") -- Hm, yes. There were four of them and they were heading for the old temple in the North. DL:addConditionProgress("npc_jana", "mages") DL:addNode() DL:createNPCNode(17, -2, "DL_Jana_Mages2") -- We offered to escort them, but their leader was very unfriendly. I don't know whether they made it. DL:addQuestDescription("find_velius", 2) DL:addNode() end if (not DL:isConditionFulfilled("npc_jana", "trade")) then DL:createNPCNode(4, -2, "DL_Jana_UnlockTrade") -- Yes, I got some trophies and spare armour, if you're interested. DL:addConditionProgress("npc_jana", "trade") DL:addNode() end if (DL:isConditionFulfilled("npc_jana", "trade")) then DL:createTradeNode(3, -2) DL:addNode() end end
srv = net.createServer(net.TCP) srv:listen(502, function(conn) local cc = function(data) if (data ~= nil and #data == 13) then print("TCP response: ", dataToString(data)) conn:send(data) end end conn:on("receive", function(sck, payload) --payload:gsub(".", function(c) -- table.insert(arr, string.byte(c)) --end) --print (table.concat(arr, " ")) print("TCP request: ", dataToString(payload)) sUart:on("data", 13, cc) --send data gpio.write(RW_pin, gpio.HIGH) sUart:write(payload) gpio.write(RW_pin, gpio.LOW) end) end) return srv
-- vim:sw=2 -- https://github.com/solutionroute/dotfiles/blob/master/config/nvim/lua/solutionroute/settings.lua -- -- Include in here only nvim-specific configuration not tied to or dependent on -- plugins; at the end; organizing plugin-specific settings in a relevant config/* file. local vim = vim local api = vim.api local set = vim.opt -- visual vim.cmd [[colorscheme nord]] -- lualine picks up on this automatically set.termguicolors = true -- enable true color set.title = true -- set terminal title with fn, path & info set.number = true -- display LH number ruler by default set.laststatus = 3 -- global status line rather than per window (nvim 0.7+) set.cursorline = true -- vim.g.markdown_fenced_languages = { "go", -- enable ```go ... ``` code block highlighting "python", "c", "html", "javascript", "typescript", "css", "scss", "lua", "vim" } -- text handling set.expandtab = true -- expand with spaces by default set.shiftwidth = 4 -- defaults set.tabstop = 4 set.clipboard = "unnamedplus" -- always use clipboard rather than +/* registers -- UI set.completeopt = { "menu", "menuone", "noselect" } -- searching set.ignorecase = true -- case-insensitive searching set.smartcase = true -- auto-toggle ignorecase if searching w/mixed case -- navigation set.mouse = "a" -- move cursor with pointer, too. Vimmer: What's a mouse? -- files and dirs set.autochdir = true -- make cwd that of file in buffer -- Autocommands not associated with plugins -- -- Open with cursor restored to the previous line and column position within buffer vim.api.nvim_create_autocmd({ 'BufReadPost' }, { group = vim.api.nvim_create_augroup('LastPosition', { clear = true }), callback = function() local prev_pos = vim.api.nvim_buf_get_mark(0, '\"') local prev_line = prev_pos[1] local last_line = vim.api.nvim_buf_line_count(0) if prev_line > 0 and prev_line <= last_line then vim.api.nvim_win_set_cursor(0, prev_pos) else -- put it at the end of the file; comment out if you prefer start of file vim.api.nvim_win_set_cursor(0, { last_line, 0 }) end end, }) -- show cursor line only in active window local cursorGrp = api.nvim_create_augroup("CursorLine", { clear = true }) api.nvim_create_autocmd({ "InsertLeave", "WinEnter" }, { pattern = "*", command = "set cursorline", group = cursorGrp }) api.nvim_create_autocmd( { "InsertEnter", "WinLeave" }, { pattern = "*", command = "set nocursorline", group = cursorGrp } )
local mLibs = exports["meta_libs"] local progBar = (Config.UseProgBars and exports["progbars"] or false) local Vector = mLibs:Vector() local Scenes = mLibs:SynchronisedScene() local sceneObjects = {} local SlingNextFrame = false local MarketAccess = false local StopInfluence = false local _print = print local print = function(...) if Config.Debug then _print(...) end end vDist = function(v1,v2) if not v1 or not v2 or not v1.x or not v2.x or not v1.z or not v2.z then return 0; end return math.sqrt( ((v1.x - v2.x)*(v1.x-v2.x)) + ((v1.y - v2.y)*(v1.y-v2.y)) + ((v1.z-v2.z)*(v1.z-v2.z)) ) end HelpNotification = function(msg) AddTextEntry('TerritoriesHelp', msg) BeginTextCommandDisplayHelp('TerritoriesHelp') EndTextCommandDisplayHelp(0, false, true, -1) end ShowNotification = function(msg) AddTextEntry('TerritoriesNotify', msg) SetNotificationTextEntry('TerritoriesNotify') DrawNotification(false, true) end Start = function() GetFramework() PlayerData = GetPlayerData() Wait(5000) TriggerServerEvent('Territories:PlayerLogin') while not ModStart do Wait(0); end for k,v in pairs(Territories) do local count = 0 Territories[k].blips = {} for _,area in pairs(Territories[k].areas) do local blipHandle = mLibs:AddAreaBlip(area.location.x,area.location.y,area.location.z,area.height,area.width,area.heading,BlipColors[v.control],math.floor(v.influence),true,area.display) local blip = TableCopy(mLibs:GetBlip(blipHandle)) Territories[k].blips[blipHandle] = blip end end Update() end TableCopy = function(tab) local r = {} for k,v in pairs(tab) do if type(v) == "table" then r[k] = TableCopy(v) else r[k] = v end end return r end Update = function() if Config.ShowDebugText then testText = Utils.drawTextTemplate() testText.x = 0.95 testText.y = 0.90 end while true do local closest = GetClosestZone() local area = Territories[closest] local dead = DeathCheck(lastZone) if not dead then CheckLocation(closest) UpdateBlips() if Config.ShowDebugText and area then testText.colour1 = colorsRGB[TextColors[area.control]][1] testText.colour2 = colorsRGB[TextColors[area.control]][2] testText.colour3 = colorsRGB[TextColors[area.control]][3] testText.colour4 = math.floor(area.influence*2.5) testText.text = "Zone: "..closest.."\nControl: "..area.control:sub(1,1):upper()..area.control:sub(2).."\nInfluence: "..math.floor(area.influence).."%" Utils.drawText(testText) end else if lastZone then if PlayerData.job and PlayerData.job.name and GangLookup[PlayerData.job.name] then TriggerServerEvent('Territories:LeaveZone',lastZone,PlayerData.job.name) lastZone = false elseif PlayerData.job2 and PlayerData.job2.name and GangLookup[PlayerData.job2.name] then TriggerServerEvent('Territories:LeaveZone',lastZone,PlayerData.job2.name) lastZone = false end end end Wait(0) end end local GetKeyUp = function(key) return IsControlJustReleased(0,key); end CheckLocation = function(closest) local area = Territories[closest] local plyPed = GetPlayerPed(-1) local plyPos = GetEntityCoords(plyPed) local plyHp = GetEntityHealth(plyPed) if closest then if plyHp > 100 then if not lastZone or lastZone ~= closest then if lastZone then TriggerServerEvent('Territories:LeaveZone',lastZone,PlayerData.job.name) end if not StopInfluence then lastZone = closest if PlayerData.job and PlayerData.job.name and GangLookup[PlayerData.job.name] then TriggerServerEvent('Territories:EnterZone',closest,PlayerData.job.name) elseif PlayerData.job2 and PlayerData.job2.name and GangLookup[PlayerData.job2.name] then TriggerServerEvent('Territories:EnterZone',closest,PlayerData.job2.name) end end else if lastZone and StopInfluence then if PlayerData.job and PlayerData.job.name and GangLookup[PlayerData.job.name] then TriggerServerEvent('Territories:LeaveZone',lastZone,PlayerData.job.name) elseif PlayerData.job2 and PlayerData.job2.name and GangLookup[PlayerData.job2.name] then TriggerServerEvent('Territories:LeaveZone',lastZone,PlayerData.job2.name) end end end end if area.control == PlayerData.job.name or (PlayerData.job2 and PlayerData.job2.name == area.control) then if area.actions and area.actions.entry then if vDist(plyPos,area.actions.entry.location) < Config.InteractDist then HelpNotification(area.actions.entry.helpText) if GetKeyUp(Config.InteractControl) then InsideInterior = area mLibs:TeleportPlayer(InsideInterior.actions.exit.location) end end end if ((Config.SlingByHotkey and GetKeyUp(Config.SlingDrugsControl)) or SlingNextFrame) and not CurSlinging then SlingNextFrame = false SlingDrugs(area,closest) end end if not InsideInterior then if vDist(plyPos,area.actions.exit.location) < Config.InteractDist then HelpNotification(area.actions.exit.helpText) if GetKeyUp(Config.InteractControl) then InsideInterior = area mLibs:TeleportPlayer(InsideInterior.actions.entry.location) end end end else if lastZone then if PlayerData.job and PlayerData.job.name and GangLookup[PlayerData.job.name] then TriggerServerEvent('Territories:LeaveZone',lastZone,PlayerData.job.name) elseif PlayerData.job2 and PlayerData.job2.name and GangLookup[PlayerData.job2.name] then TriggerServerEvent('Territories:LeaveZone',lastZone,PlayerData.job2.name) end lastZone = false end if not InsideInterior then local closestExit,exitDist for k,v in pairs(Territories) do local exit = v.actions.exit.location local dist = vDist(plyPos,exit) if not exitDist or dist < exitDist then closestExit = k exitDist = dist end end if exitDist and exitDist < Config.InteractDist then HelpNotification(Territories[closestExit].actions.exit.helpText) if GetKeyUp(Config.InteractControl) then mLibs:TeleportPlayer(Territories[closestExit].actions.entry.location) InsideInterior = nil end end end end if InsideInterior then local exitDist = vDist(plyPos,InsideInterior.actions.exit.location) if exitDist and exitDist < Config.InteractDist then HelpNotification(InsideInterior.actions.exit.helpText) if GetKeyUp(Config.InteractControl) then mLibs:TeleportPlayer(InsideInterior.actions.entry.location) InsideInterior = nil end else local closestAct,actDist = GetClosestAction(InsideInterior) if actDist < Config.InteractDist then HelpNotification(InsideInterior.actions[closestAct].helpText) if GetKeyUp(Config.InteractControl) then SceneHandler(InsideInterior.actions[closestAct]) end end end end end local soldPeds = {} SlingDrugs = function(area,key) if CurSlinging then return; end CurSlinging = true Wait(0) local allPeds local lastEntCheck = false local playerSellables = {} local sellableDrugs = area.canSell if not sellableDrugs then ShowNotification(_U["cant_sell_here"]) CurSlinging = false return end local sellableLookup = {}; for k,v in pairs(sellableDrugs) do sellableLookup[v] = true; end local plyInventory = ESX.GetPlayerData().inventory local hasSellable = 0 for k,v in pairs(plyInventory) do if sellableLookup[v.name] and v.count and v.count > Config.MinSellAmount then playerSellables[v.name] = v.count hasSellable = hasSellable + 1 end end if hasSellable == 0 then ShowNotification(_U["no_drugs"]) CurSlinging = false return end mLibs:LoadAnimDict('amb@world_human_drug_dealer_hard@male@base') TaskPlayAnim(GetPlayerPed(-1),'amb@world_human_drug_dealer_hard@male@base','base',8.0,8.0,-1,1,1.0,false,false,false) while CurSlinging do for i=30,35,1 do DisableControlAction(0,i,true) end local plyPed = GetPlayerPed(-1) local now = GetGameTimer() if not lastEntCheck or (now - lastEntCheck) > 5000 then lastEntCheck = now allPeds = ESX.Game.GetPeds({plyPed}) end local plyPos = GetEntityCoords(plyPed) if not curSelling then local closestPed,closestDist for k,v in pairs(allPeds) do if not IsPedInAnyVehicle(v,false) and GetPedType(v) ~= 28 then local dist = vDist(plyPos,GetEntityCoords(v)) if not closestDist or dist < closestDist then closestDist = dist closestPed = v end end end if closestDist and closestDist < Config.DrugSellDist and not soldPeds[closestPed] then math.randomseed(GetGameTimer()) if math.random(100) <= Config.DrugBuyChance then curSelling = closestPed else soldPeds[closestPed] = true if math.random(100) <= Config.SalesReportChance then TaskTurnPedToFaceEntity(closestPed,plyPed,3000) SetPedKeepTask(closestPed,true) ShowNotification(_U["being_reported"]) Citizen.CreateThread(function() local _closest = closestPed Wait(3000) local hp = GetEntityHealth(_closest) if hp > 100 then TriggerServerEvent("Territories:Reported",GetEntityCoords(_closest)) end end) end end TaskTurnPedToFaceEntity(plyPed,closestPed,3000) end else if not soldPeds[curSelling] then local sellItem = false local inventory = ESX.GetPlayerData().inventory for k,v in pairs(inventory) do if sellableLookup[v.name] and v.count > Config.MinSellAmount then sellItem = v end end if sellItem then ClearPedTasksImmediately(plyPed) TaskTurnPedToFaceEntity(plyPed,curSelling,5000) TaskTurnPedToFaceEntity(curSelling,plyPed,5000) SetPedKeepTask(curSelling,true) soldPeds[curSelling] = true SetPedTalk(curSelling) SetPedTalk(plyPed) if progBar then progBar:StartProg(Config.SellDrugsTimer,_U["selling_drugs"]) else ShowNotification(_U["selling_drugs"]) end Wait(Config.SellDrugsTimer) TaskPlayAnim(plyPed,'amb@world_human_drug_dealer_hard@male@base','base',8.0,8.0,-1,1,1.0,false,false,false) local amountToSell = math.random(math.min(Config.MinSellAmount,math.max(Config.MinSellAmount,sellItem.count))) TriggerServerEvent("Territories:SoldDrugs",sellItem.name,amountToSell,key) else ShowNotification(_U["no_drugs"]) break end else curSelling = false end end HelpNotification(_U["cancel_selling"]) if GetKeyUp(Config.SlingDrugsControl) then ClearPedTasksImmediately(plyPed) break end Wait(0) end CurSlinging = false end local startTime SceneHandler = function(action) local hasItem,itemLabel = not action.requireItem,'' if action.requireItem then local plyData = ESX.GetPlayerData() for k,v in pairs(plyData.inventory) do if v.name == action.requireItem then hasItem = (v.count >= action.requireRate) itemLabel = v.label end end elseif action.requireCash then hasItem = false itemLabel = "Dirty Money" local plyData = ESX.GetPlayerData() for k,v in pairs(plyData.accounts) do if v.name == Config.DirtyAccount then hasItem = (v.money and v.money >= action.requireCash) end end end if hasItem then local plyPed = GetPlayerPed(-1) local sceneType = action.act local doScene = action.scene local actPos = action.location - action.offset local actRot = action.rotation local animDict = SceneDicts[sceneType][doScene] local actItems = SceneItems[sceneType][doScene] local actAnims = SceneAnims[sceneType][doScene] local plyAnim = PlayerAnims[sceneType][doScene] while not HasAnimDictLoaded(animDict) do RequestAnimDict(animDict); Wait(0); end local count = 1 local objectCount = 0 for k,v in pairs(actItems) do local hash = GetHashKey(v) while not HasModelLoaded(hash) do RequestModel(hash); Wait(0); end sceneObjects[k] = CreateObject(hash,actPos,true) SetModelAsNoLongerNeeded(hash) objectCount = objectCount + 1 while not DoesEntityExist(sceneObjects[k]) do Wait(0); end SetEntityCollision(sceneObjects[k],false,false) end local scenes = {} local sceneConfig = Scenes.SceneConfig(actPos,actRot,2,false,false,1.0,0,1.0) for i=1,math.max(1,math.ceil(objectCount/3)),1 do scenes[i] = Scenes.Create(sceneConfig) end local pedConfig = Scenes.PedConfig(plyPed,scenes[1],animDict,plyAnim) Scenes.AddPed(pedConfig) for k,animation in pairs(actAnims) do local targetScene = scenes[math.ceil(count/3)] local entConfig = Scenes.EntityConfig(sceneObjects[k],targetScene,animDict,animation) Scenes.AddEntity(entConfig) count = count + 1 end local extras = {} if action.extraProps then for k,v in pairs(action.extraProps) do mLibs:LoadModel(v.model) local obj = CreateObject(GetHashKey(v.model), actPos + v.pos, true,true,true) while not DoesEntityExist(obj) do Wait(0); end SetEntityRotation(obj,v.rot) FreezeEntityPosition(obj,true) extras[#extras+1] = obj end end startTime = GetGameTimer() for i=1,#scenes,1 do Scenes.Start(scenes[i]) end if progBar then progBar:StartProg(action.time,action.progText) else ShowNotification(action.progText) end Wait(action.time) for i=1,#scenes,1 do Scenes.Stop(scenes[i]) end for k,v in pairs(extras) do DeleteObject(v) end RemoveAnimDict(animDict) TriggerServerEvent('Territories:RewardPlayer',action) for k,v in pairs(sceneObjects) do NetworkFadeOutEntity(v,false,false); end else local str = _U["not_enough"] local label = (itemLabel:len() > 0 and itemLabel or 'UNKNOWN') local amount = (action.requireRate or (action.requireCash and "$"..action.requireCash or 'UNKNOWN')) ShowNotification(string.format(str,label,amount)) end end GetClosestAction = function(interior) local plyPos = GetEntityCoords(GetPlayerPed(-1)) local closest,closestDist for k,v in pairs(interior.actions) do if k ~= "entry" and k ~= "exit" then local dist = vDist(plyPos,v.location) if not closestDist or dist < closestDist then closestDist = dist closest = k end end end return (closest or false),(closestDist or 9999) end DeathCheck = function(zone) local plyPed = GetPlayerPed(-1) local plyHp = GetEntityHealth(plyPed) local dead = IsPedFatallyInjured(plyPed) if isDead then if not dead then isDead = false end else if dead and zone then isDead = true local killer = NetworkGetEntityKillerOfPlayer(PlayerId()) local killerId = GetPlayerByEntityID(killer) if killer ~= plyPed and killerId ~= nil and NetworkIsPlayerActive(killerId) then local serverId = GetPlayerServerId(killerId) if serverId and serverId ~= -1 then TriggerServerEvent('Territories:GotMurdered',serverId,zone) end end end end return isDead end Switch = function(cond,...) local args = {...} local even = (#args%2 == 0) for i=1,#args-(even and 0 or 1),2 do if cond == args[i] then return args[i+1]((even and nil or args[#args])) end end end UpdateBlips = function() for k,v in pairs(Territories) do if Config.DrugProcessBlip then if not v.blip and PlayerData and (PlayerData.job and PlayerData.job.name and PlayerData.job.name == v.control or PlayerData.job2 and PlayerData.job2.name and PlayerData.job2.name == v.control) then v.blip = mLibs:AddBlip(v.blipData.pos.x,v.blipData.pos.y,v.blipData.pos.z,v.blipData.sprite,v.blipData.color,v.blipData.text,v.blipData.scale,v.blipData.display,v.blipData.shortRange,true) elseif v.blip then local inControl = false inControl = (PlayerData and PlayerData.job and PlayerData.job.name and PlayerData.job.name == v.control) inControl = (inControl == false and PlayerData.job2 and PlayerData.job2.name and PlayerData.job2.name == v.control or true) if not inControl then mLibs:RemoveBlip(v.blip) v.blip = false end end end if v.blips then for handle,blip in pairs(v.blips) do if Config.DisplayZoneForAll or PlayerInGang() then if blip.color ~= BlipColors[v.control] or blip.alpha ~= math.floor(v.influence) then mLibs:SetBlip(handle,"alpha",math.floor(v.influence)) mLibs:SetBlip(handle,"color",BlipColors[v.control]) local b = TableCopy(mLibs:GetBlip(handle)) Territories[k].blips[handle] = b end else if blip.alpha ~= 0 then mLibs:SetBlip(handle,"alpha",0) local b = TableCopy(mLibs:GetBlip(handle)) Territories[k].blips[handle] = b end end end end end end GetClosestZone = function() local closest local thisZone = GetNameOfZone(GetEntityCoords(GetPlayerPed(-1))) for k,v in pairs(Territories) do if v.zone == thisZone then closest = k end end return (closest or false) end Sync = function(tab) for k,v in pairs(tab) do Territories[k].influence = v.influence Territories[k].control = v.control end end GetPlayerByEntityID = function(id) for i=0,Config.MaxPlayerCount do if(NetworkIsPlayerActive(i) and GetPlayerPed(i) == id) then return i end end return nil end PlayerInGang = function() if not PlayerData or (not PlayerData.job and not PlayerData.job2) or (not PlayerData.job.name and not PlayerData.job2.name) then return false; end if GangLookup[PlayerData.job.name] then return true else if PlayerData.job2 and PlayerData.job2.name and GangLookup[PlayerData.job2.name] then return true else return false end end end if Config.StartEvent == "Thread" then Citizen.CreateThread(Start) else AddEventHandler(Config.StartEvent,Start) end local isCuffed = false GotCuffed = function() isCuffed = not isCuffed local zone = (isCuffed and GetClosestZone()) if zone then TriggerServerEvent('Territories:CuffSuccess',zone) end end PlayerReported = function(pos) local job = ESX.GetPlayerData().job if job and job.name and PoliceLookup[job.name] then local started = GetGameTimer() ShowNotification(_U["drug_deal_reported"]) while (GetGameTimer() - started) < 8000 do if IsControlJustReleased(0, 101) or IsDisabledControlJustReleased(0, 101) then SetNewWaypoint(pos.x,pos.y) return end Wait(0) end else local job2 = ESX.GetPlayerData().job2 if job2 and job2.name and PoliceLookup[job2.name] then local started = GetGameTimer() ShowNotification(_U["drug_deal_reported"]) while (GetGameTimer() - started) < 8000 do if IsControlJustReleased(0, 101) or IsDisabledControlJustReleased(0, 101) then SetNewWaypoint(pos.x,pos.y) return end Wait(0) end end end end EnterHouse = function(...) if not Config.InfluenceInHouse then StopInfluence = true end end LeaveHouse = function(...) if not Config.InfluenceInHouse then lastZone = false StopInfluence = false end end StartRet = function(start,territories) ModStart = start Territories = territories end RegisterCommand('slingdrugs', function(...) if not CurSlinging then SlingNextFrame = true; end; end) -- THINGS YOU MIGHT WANT TO CHANGE GetFramework = function() while not ESX do Wait(0) end while not ESX.IsPlayerLoaded() do Citizen.Wait(0); end end GetPlayerData = function() return ESX.GetPlayerData() end SetJob = function(job) PlayerData.job = job if lastZone then TriggerServerEvent('Territories:LeaveZone',lastZone,PlayerData.job.name) lastZone = false end end SetJob2 = function(job2) PlayerData.job2 = job2 if lastZone then TriggerServerEvent('Territories:LeaveZone',lastZone,PlayerData.job2.name) lastZone = false end end Smack = function() ShowNotification("Cheater cheater, pumpkin eater!") local plyPed = GetPlayerPed(-1) while GetEntityHealth(plyPed) > 80 do SetEntityHealth(plyPed,GetEntityHealth(plyPed) - 10) Wait(500) end end Utils.event(1,Sync,'Territories:Sync') Utils.event(1,StartRet,'Territories:StartRet') Utils.event(1,SetJob,Config.SetJobEvent) Utils.event(1,SetJob2,Config.SetJob2Event) Utils.event(1,GotCuffed,'Territories:GotCuffed') Utils.event(1,PlayerReported,'Territories:PlayerReported') Utils.event(1,GotMarketAccess,'Territories:GotMarketAccess') Utils.event(1,LostMarketAccess,'Territories:LostMarketAccess') Utils.event(1,Smack,'Territories:Smacked') Utils.event(1,EnterHouse,'playerhousing:Entered') Utils.event(1,LeaveHouse,'playerhousing:Leave')
local config = {} function config.nvim_treesitter() vim.api.nvim_command('set foldmethod=expr') vim.api.nvim_command('set foldexpr=nvim_treesitter#foldexpr()') require'nvim-treesitter.configs'.setup { ensure_installed = "maintained", highlight = { enable = true, }, textobjects = { select = { enable = true, keymaps = { ["af"] = "@function.outer", ["if"] = "@function.inner", ["ac"] = "@class.outer", ["ic"] = "@class.inner", }, }, }, rainbow = { enable = true, extended_mode = true, -- Highlight also non-parentheses delimiters, boolean or table: lang -> boolean max_file_lines = 3000, -- Do not enable for files with more than 1000 lines, int }, } end return config
-- SPDX-License-Identifier: MIT -- Copyright (c) 2019 oO (https://github.com/oocytanb) describe('Test cytanb_fake_vci', function () local RoundVector3 = function (vec, decimalPlaces) return Vector3.__new( vci.fake.Round(vec.x, decimalPlaces), vci.fake.Round(vec.y, decimalPlaces), vci.fake.Round(vec.z, decimalPlaces) ) end local RoundQuaternion = function (vec, decimalPlaces) return Quaternion.__new( vci.fake.Round(vec.x, decimalPlaces), vci.fake.Round(vec.y, decimalPlaces), vci.fake.Round(vec.z, decimalPlaces), vci.fake.Round(vec.w, decimalPlaces) ) end setup(function () math.randomseed(os.time() - os.clock() * 10000) require('cytanb_fake_vci').vci.fake.Setup(_G) end) teardown(function () vci.fake.Teardown(_G) end) it('_MOONSHARP', function () assert.same('2.0.0.0', _MOONSHARP.version) end) it('string.contains', function () assert.is_true(string.contains('abcdefg', 'ab')) assert.is_true(string.contains('abcdefg', 'cde')) assert.is_true(string.contains('abcdefg', 'fg')) assert.is_true(string.contains('abcdefg', '')) assert.is_false(string.contains('abcdefg', 'ag')) assert.is_false(string.contains('abcdefg', 'fgh')) end) it('string.startsWith', function () assert.is_true(string.startsWith('abcdefg', '')) assert.is_true(string.startsWith('abcdefg', 'a')) assert.is_true(string.startsWith('abcdefg', 'abc')) assert.is_false(string.startsWith('abcdefg', 'bc')) assert.is_false(string.startsWith('abcdefg', 'abcdefgh')) assert.is_false(string.startsWith('幡a', 'a')) end) it('string.endsWith', function () assert.is_true(string.endsWith('abcdefg', '')) assert.is_true(string.endsWith('abcdefg', 'g')) assert.is_true(string.endsWith('abcdefg', 'efg')) assert.is_false(string.endsWith('abcdefg', 'ef')) assert.is_false(string.endsWith('abcdefg', 'zabcdefg')) assert.is_false(string.endsWith('a幡', 'a')) end) it('json', function () local table1 = {foo = "apple"} local table2 = {bar = 1234.5} local table3 = {qux = true, quux = table1} local table4 = {baz = nil} local table5 = {baz = json.null()} local table20 = {negativeNumber = -567} local table21 = {[-90] = "negativeNumberIndex"} local table22 = {[92] = "someNumberIndex"} local arr40 = {arr = {100, 200, 300}} local arr41 = {arr = {{101, 102}}} local arr42 = {arr = {{{111, 112}}}} local arr43 = {arr = {100, {201, 202}}} local arr44 = {arr = {100, {{211, 212}, 202}}} local arr45 = {arr = {100, {201, {{2111}}, 203}}} local arr46 = {arr = {100, {201, {211, {2111}}, 203}}} local arr47 = {arr = {[1] = 100, [2] = 200, [4040] = 4040}} local arr48 = {arr = {[1] = 100, [2] = 200, foo = "apple"}} local arr49 = {arr = {[0] = 0, [1] = 100, [2] = 200}} local jstr1 = json.serialize(table1) local jstr2 = json.serialize(table2) local jstr3 = json.serialize(table3) local jstr4 = json.serialize(table4) local jstr5 = json.serialize(table5) local jstr20 = json.serialize(table20) local jstr21 = json.serialize(table21) local jstr22 = json.serialize(table22) local jarr40 = json.serialize(arr40) local jarr41 = json.serialize(arr41) local jarr42 = json.serialize(arr42) local jarr43 = json.serialize(arr43) local jarr44 = json.serialize(arr44) local jarr45 = json.serialize(arr45) local jarr46 = json.serialize(arr46) local jarr47 = json.serialize(arr47) local jarr48 = json.serialize(arr48) local jarr49 = json.serialize(arr49) assert.is_true(json.isnull(json.null())) assert.is_false(json.isnull(nil)) assert.are.same('{"foo":"apple"}', jstr1) assert.are.same('{"bar":1234.5}', jstr2) -- assert.are.same('{"baz":null}', jstr4) -- VCAS 2.0.0a assert.are.same('{"baz":null}', jstr5) assert.are.same('{"negativeNumber":-567}', jstr20) assert.are.same('{"-90":"negativeNumberIndex"}', jstr21) -- VCAS 2.0.0a: '{}' assert.are.same('{"92":"someNumberIndex"}', jstr22) -- VCAS 2.0.0a: '{}' assert.are.same('{"arr":[100,200,300]}', jarr40) assert.are.same('{"arr":[[101,102]]}', jarr41) assert.are.same('{"arr":[[[111,112]]]}', jarr42) assert.are.same('{"arr":[100,[201,202]]}', jarr43) assert.are.same('{"arr":[100,[[211,212],202]]}', jarr44) assert.are.same('{"arr":[100,[201,[[2111]],203]]}', jarr45) assert.are.same('{"arr":[100,[201,[211,[2111]],203]]}', jarr46) -- assert.are.same('{"arr":{"1":100,"2":200,"4040":4040}}', jarr47) -- VCAS 2.0.0a: '{"arr":[100,200]}' -- assert.are.same('{"arr":{"1":100,"2":200,"foo":"apple"}}', jarr48) -- VCAS 2.0.0a: '{"arr":[100,200]}' -- assert.are.same('{"arr":{"0":0,"1":100,"2":200}}', jarr49) -- VCAS 2.0.0a: '{"arr":[100,200]}' assert.are.same(table1, json.parse(jstr1)) assert.are.same(table2, json.parse(jstr2)) assert.are.same(table3, json.parse(jstr3)) assert.are.same(table4, json.parse(jstr4)) assert.are.same(table20, json.parse(jstr20)) assert.are.same({["-90"] = "negativeNumberIndex"}, json.parse(jstr21)) assert.are.same({["92"] = "someNumberIndex"}, json.parse(jstr22)) assert.are.same({solidas = "/"}, json.parse('{"solidas":"\\/"}')) assert.are.same(arr40, json.parse(jarr40)) assert.are.same(arr41, json.parse(jarr41)) assert.are.same(arr42, json.parse(jarr42)) assert.are.same(arr43, json.parse(jarr43)) assert.are.same(arr44, json.parse(jarr44)) assert.are.same(arr45, json.parse(jarr45)) assert.are.same(arr46, json.parse(jarr46)) assert.are.same({["1"] = 100, ["2"] = 200, ["4040"] = 4040}, json.parse(jarr47).arr) assert.are.same({["1"] = 100, ["2"] = 200, foo = "apple"}, json.parse(jarr48).arr) assert.are.same({["0"] = 0, ["1"] = 100, ["2"] = 200}, json.parse(jarr49).arr) end) it('Vector2', function () local vOne = Vector2.one vOne.x = 0.5 vOne.y = 0.75 assert.are.equal(Vector2.__new(0.5, 0.75), vOne) assert.are.equal(Vector2.__new(1, 1), Vector2.one) assert.is_true(Vector2.kEpsilon <= 1E-05) assert.are_not.equal(0, 0 + Vector2.kEpsilon) assert.are_not.equal(0, 0 - Vector2.kEpsilon) assert.are.equal(0, math.floor(Vector2.kEpsilon * 10000) / 10000) assert.are.equal(0, math.floor(Vector2.kEpsilonNormalSqrt * 100000000) / 100000000) assert.are.equal(Vector2.__new(1, 1), Vector2.__new(1 + 1e-8, 1)) assert.are_not.equal(Vector2.__new(1, 0), Vector2.__new(1, 1e-8)) assert.are_not.equal(Vector2.__new(0, 0), Vector2.__new(1e-9, 0)) assert.are.equal('(0.0, -1.0)', tostring(Vector2.down)) assert.are.equal(Vector2.__new(0, -1), Vector2.down) assert.are.equal(Vector2.__new(-1, 0), Vector2.left) assert.are.equal(Vector2.__new(1, 0), Vector2.right) assert.are.equal(Vector2.__new(0, 1), Vector2.up) assert.are.equal(Vector2.zero, Vector2.__new()) assert.are.equal(Vector2.zero, Vector2.__new(500)) assert.are.equal(Vector2.__new(3.0, 4.0), Vector2.__toVector2(Vector3.__new(3, 4, 5))) assert.are.equal(Vector3.__new(30.0, 40.0, 0.0), Vector2.__toVector3(Vector2.__new(30, 40))) local v12 = Vector2.__new(0, 0) v12.Set(120, 240) assert.are.equal(Vector2.__new(120, 240), v12) local v1 = Vector2.__new(10, 200) v1.set_Item(0, -0.5) v1.set_Item(1, 987) assert.are.equal(Vector2.__new(-0.5, 987), v1) local v2 = Vector2.__new(3, 5) assert.are.equal(5.83095, vci.fake.Round(v2.magnitude, 5)) assert.are.equal(34, v2.sqrMagnitude) assert.are.equal(34, v2.SqrMagnitude()) assert.are.equal(v2.magnitude, math.sqrt(v2.sqrMagnitude)) assert.are.equal(v2.magnitude, Vector2.__new(-3, -5).magnitude) assert.are.equal(0, Vector2.zero.magnitude) assert.are.equal('(0.5, 0.9)', tostring(v2.normalized)) assert.are.equal(Vector2.__new(0.51449579000473, 0.857492983341217), v2.normalized) local v3 = Vector2.__new(3, 5) v3.Normalize() assert.are.equal(v2.normalized, v3) assert.are.equal(Vector2.__new(-0.51449579000473, -0.857492983341217), Vector2.__new(-3, -5).normalized) assert.are.equal(Vector2.zero, Vector2.__new(Vector2.kEpsilon, -Vector2.kEpsilonNormalSqrt).normalized) assert.are.equal(Vector2.zero, Vector2.zero.normalized) assert.are.equal(Vector2.__new(3.0, 5.0), Vector2.__new(1, 2) + Vector2.__new(2, 3)) assert.are.equal(Vector2.__new(-1.0, -1.0), Vector2.__new(1, 2) - Vector2.__new(2, 3)) assert.are.equal(Vector2.__new(2.0, 6.0), Vector2.__new(1, 2) * Vector2.__new(2, 3)) assert.are.equal(Vector2.__new(2.0, 6.0), Vector2.Scale(Vector2.__new(1, 2), Vector2.__new(2, 3))) assert.are.equal(Vector2.__new(5.0, 10.0), Vector2.__new(1, 2) * 5) assert.are.equal(Vector2.__new(-5.0, -10.0), -5 * Vector2.__new(1, 2)) assert.are.equal(Vector2.__new(0.5, 0.666666686534882), Vector2.__new(1, 2) / Vector2.__new(2, 3)) assert.are.equal(Vector2.__new(0.2, 0.4), Vector2.__new(1, 2) / 5) assert.are.equal(Vector2.__new(-3, 5), - Vector2.__new(3, -5)) assert.are.equal(2.82843, vci.fake.Round(Vector2.Distance(Vector2.__new(1, 2), Vector2.__new(3, 4)), 5)) assert.are.equal(11, Vector2.Dot(Vector2.__new(1, 2), Vector2.__new(3, 4))) assert.are.equal(Vector2.__new(4.0, 2.0), Vector2.Lerp(Vector2.__new(4, 2), Vector2.__new(-1, -2), -0.5)) assert.are.equal(Vector2.__new(4.0, 2.0), Vector2.Lerp(Vector2.__new(4, 2), Vector2.__new(-1, -2), -0)) assert.are.equal(Vector2.__new(2.75, 1.0), Vector2.Lerp(Vector2.__new(4, 2), Vector2.__new(-1, -2), 0.25)) assert.are.equal(Vector2.__new(0.25, -1.0), Vector2.Lerp(Vector2.__new(4, 2), Vector2.__new(-1, -2), 0.75)) assert.are.equal(Vector2.__new(-1.0, -2.0), Vector2.Lerp(Vector2.__new(4, 2), Vector2.__new(-1, -2), 1)) assert.are.equal(Vector2.__new(-1.0, -2.0), Vector2.Lerp(Vector2.__new(4, 2), Vector2.__new(-1, -2), 1.5)) assert.are.equal(Vector2.__new(6.5, 4.0), Vector2.LerpUnclamped(Vector2.__new(4, 2), Vector2.__new(-1, -2), -0.5)) assert.are.equal(Vector2.__new(4.0, 2.0), Vector2.LerpUnclamped(Vector2.__new(4, 2), Vector2.__new(-1, -2), -0)) assert.are.equal(Vector2.__new(2.75, 1.0), Vector2.LerpUnclamped(Vector2.__new(4, 2), Vector2.__new(-1, -2), 0.25)) assert.are.equal(Vector2.__new(0.25, -1.0), Vector2.LerpUnclamped(Vector2.__new(4, 2), Vector2.__new(-1, -2), 0.75)) assert.are.equal(Vector2.__new(-1.0, -2.0), Vector2.LerpUnclamped(Vector2.__new(4, 2), Vector2.__new(-1, -2), 1)) assert.are.equal(Vector2.__new(-3.5, -4.0), Vector2.LerpUnclamped(Vector2.__new(4, 2), Vector2.__new(-1, -2), 1.5)) assert.are.equal(Vector2.__new(1, 2), Vector2.Min(Vector2.__new(1, 3), Vector2.__new(4, 2))) assert.are.equal(Vector2.__new(-4, -3), Vector2.Min(Vector2.__new(-1, -3), Vector2.__new(-4, 2))) assert.are.equal(Vector2.__new(4, 3), Vector2.Max(Vector2.__new(1, 3), Vector2.__new(4, 2))) assert.are.equal(Vector2.__new(-1, 2), Vector2.Max(Vector2.__new(-1, -3), Vector2.__new(-4, 2))) local angleTargets = { [{2, 0}] = 0, [{2, 1}] = 26.56505, [{0, 2}] = 90, [{-1, 2}] = 116.56505, [{-2, 0}] = 180, [{-2, -1}] = 153.43495, [{0, -2}] = 90, [{1, -2}] = 63.43495 } local angleMap = {} local angleBase = Vector2.__new(4, 0) local angleConflictCount = 0 for iv, angle in pairs(angleTargets) do local vec = Vector2.__new(iv[1], iv[2]) assert.are.equal(angle, vci.fake.Round(Vector2.Angle(angleBase, vec), 5)) local hashCode = vec.GetHashCode() if angleMap[hashCode] then angleConflictCount = angleConflictCount + 1 else angleMap[hashCode] = vec end end assert.are.equal(0, angleConflictCount) end) it('Vector3', function () local vForward = Vector3.forward vForward.x = 0.5 vForward.y = 0.75 assert.are.equal(Vector3.__new(0.5, 0.75, 1), vForward) assert.are.equal(Vector3.__new(0, 0, 1), Vector3.forward) assert.is_true(Vector3.kEpsilon <= 1E-05) assert.is_true(Vector3.kEpsilonNormalSqrt < Vector3.kEpsilon) assert.are.equal(Vector3.__new(0, 0, -1), Vector3.back) assert.are.equal('(0.0, -1.0, 0.0)', tostring(Vector3.down)) assert.are.equal(Vector3.__new(0, -1, 0), Vector3.down) assert.are.equal(Vector3.__new(0, 0, 1), Vector3.forward) assert.are.equal(Vector3.__new(-1, 0, 0), Vector3.left) assert.are.equal(Vector3.__new(1, 1, 1), Vector3.one) assert.are.equal(Vector3.__new(1, 0, 0), Vector3.right) assert.are.equal(Vector3.__new(0, 1, 0), Vector3.up) assert.are.equal(Vector3.zero, Vector3.__new()) assert.are.equal(Vector3.zero, Vector3.__new(500)) assert.are.equal(Vector3.__new(500, 600, 0), Vector3.__new(500, 600)) local v12 = Vector3.__new(0, 0, 0) v12.Set(120, 240, 360) assert.are.equal(Vector3.__new(120, 240, 360), v12) local v1 = Vector3.__new(10, 200, 3000) v1.set_Item(0, -0.5) v1.set_Item(1, 987) v1.set_Item(2, 6.5) assert.are.equal(Vector3.__new(-0.5, 987, 6.5), v1) local v2 = Vector3.__new(3, 4, 5) assert.are.equal(7.07107, vci.fake.Round(v2.magnitude, 5)) assert.are.equal(50, v2.sqrMagnitude) assert.are.equal(50, Vector3.SqrMagnitude(v2)) assert.are.equal(Vector3.Magnitude(v2), math.sqrt(v2.sqrMagnitude)) assert.are.equal(v2.magnitude, Vector3.__new(-3, -4, -5).magnitude) assert.are.equal(0, Vector3.zero.magnitude) assert.are.equal('(0.4, 0.6, 0.7)', tostring(v2.normalized)) assert.are.equal(Vector3.__new(0.424264073371887, 0.565685451030731, 0.70710676908493), v2.normalized) local v3 = Vector3.__new(5, 12, 13) v3.Normalize() assert.are.equal(Vector3.__new (0.271964132785797, 0.6527139544487, 0.70710676908493), v3) assert.are.equal(v3, Vector3.Normalize(Vector3.__new(5, 12, 13))) assert.are.equal(Vector3.__new(-0.271964132785797, -0.6527139544487, -0.70710676908493), Vector3.__new(-5, -12, -13).normalized) assert.are.equal(Vector3.zero, Vector3.__new(Vector3.kEpsilon, -Vector3.kEpsilonNormalSqrt).normalized) assert.are.equal(Vector3.zero, Vector3.zero.normalized) assert.are.equal(Vector3.__new(1, 1, 0), Vector3.__new(1 + 1e-8, 1 - 1e-8, 0)) assert.are_not.equal(Vector3.__new(1, 1, 0), Vector3.__new(1 + 1e-8, 1 - 1e-8, 1e-8)) assert.are_not.equal(Vector3.__new(0, 0, 0), Vector3.__new(1e-8, 0, 0)) assert.are_not.equal(Vector3.__new(4.4408920985006261617e-16, 3, -2), Vector3.__new(0, 3, -2)) assert.are.equal(Vector3.__new(11.0, 19.0, 22.0), Vector3.__new(3, 4, 5) + Vector3.__new(8, 15, 17)) assert.are.equal(Vector3.__new(-5.0, -11.0, -12.0), Vector3.__new(3, 4, 5) - Vector3.__new(8, 15, 17)) assert.are.equal(Vector3.__new(24.0, 60.0, 85.0), Vector3.Scale(Vector3.__new(3, 4, 5), Vector3.__new(8, 15, 17))) assert.are.equal(Vector3.__new(15.0, 20.0, 25.0), Vector3.__new(3, 4, 5) * 5) assert.are.equal(Vector3.__new(-15.0, -20.0, -25.0), -5 * Vector3.__new(3, 4, 5)) assert.are.equal(Vector3.__new(0.6, 0.8, 1.0), Vector3.__new(3, 4, 5) / 5) assert.are.equal(Vector3.__new(-3, 0, 5), - Vector3.__new(3, 0, -5)) assert.are.equal(17.02939, vci.fake.Round(Vector3.Distance(Vector3.__new(3, 4, 5), Vector3.__new(8, 15, 17)), 5)) assert.are.equal(169, Vector3.Dot(Vector3.__new(3, 4, 5), Vector3.__new(8, 15, 17))) assert.are.equal(Vector3.__new(3.0, 4.0, -5.0), Vector3.Lerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), -0.5)) assert.are.equal(Vector3.__new(3.0, 4.0, -5.0), Vector3.Lerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), -0)) assert.are.equal(Vector3.__new(4.25, -0.75, -8.0), Vector3.Lerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 0.25)) assert.are.equal(Vector3.__new(6.75, -10.25, -14.0), Vector3.Lerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 0.75)) assert.are.equal(Vector3.__new(8.0, -15.0, -17.0), Vector3.Lerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 1)) assert.are.equal(Vector3.__new(8.0, -15.0, -17.0), Vector3.Lerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 1.5)) assert.are.equal(Vector3.__new(0.5, 13.5, 1.0), Vector3.LerpUnclamped(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), -0.5)) assert.are.equal(Vector3.__new(3.0, 4.0, -5.0), Vector3.LerpUnclamped(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), -0)) assert.are.equal(Vector3.__new(4.25, -0.75, -8.0), Vector3.LerpUnclamped(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 0.25)) assert.are.equal(Vector3.__new(6.75, -10.25, -14.0), Vector3.LerpUnclamped(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 0.75)) assert.are.equal(Vector3.__new(8.0, -15.0, -17.0), Vector3.LerpUnclamped(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 1)) assert.are.equal(Vector3.__new(10.5, -24.5, -23.0), Vector3.LerpUnclamped(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 1.5)) assert.are.equal(Vector3.__new(3.0, 4.0, -5.0), Vector3.Slerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), -0.5)) assert.are.equal(Vector3.__new(3.0, 4.0, -5.0), Vector3.Slerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), -0)) assert.are.equal(Vector3.__new(5.33822870254517, 3.15452098846436, -9.46320724487305), Vector3.Slerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 0.25)) assert.are.equal(Vector3.__new(7.33673048019409, -0.564363121986389, -13.705979347229), Vector3.Slerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 0.5)) assert.are.equal(Vector3.__new(8.38769912719727, -6.88422679901123, -16.5606155395508), Vector3.Slerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 0.75)) assert.are.equal(Vector3.__new(8.35148143768311, -11.6094493865967, -17.1683864593506), Vector3.Slerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 0.9)) assert.are.equal(Vector3.__new(8.0, -15.0, -17.0), Vector3.Slerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 1)) assert.are.equal(Vector3.__new(8.0, -15.0, -17.0), Vector3.Slerp(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 1.5)) --assert.are.equal(Vector3.__new(0, 0, -2), Vector3.Slerp(Vector3.__new(2, 0, 0), Vector3.__new(-2, 0, 0), 0.5)) --assert.are.equal(Vector3.__new(-1.41421353816986, 0, -1.41421353816986), Vector3.Slerp(Vector3.__new(2, 0, 0), Vector3.__new(-2, 0, 0), 0.75)) assert.are.equal(Vector3.__new(3.5, 0, 0), Vector3.Slerp(Vector3.__new(2, 0, 0), Vector3.__new(4, 0, 0), 0.75)) assert.are.equal(Vector3.__new(-0.296107739210129, -1.33541643619537, 0.359140545129776), Vector3.SlerpUnclamped(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), -0.5)) assert.are.equal(Vector3.__new(3.0, 4.0, -5.0), Vector3.SlerpUnclamped(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), -0)) assert.are.equal(Vector3.__new (5.33822870254517, 3.15452098846436, -9.46320724487305), Vector3.SlerpUnclamped(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 0.25)) assert.are.equal(Vector3.__new(8.0, -15.0, -17.0), Vector3.SlerpUnclamped(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 1)) assert.are.equal(Vector3.__new(2.03282833099365, -31.3948421478271, -8.26023197174072), Vector3.SlerpUnclamped(Vector3.__new(3, 4, -5), Vector3.__new(8, -15, -17), 1.5)) local v103 = Vector3.zero local v103t = Vector3.zero Vector3.OrthoNormalize(v103, v103t) assert.are.equal(Vector3.__new(1, 0, 0), v103) assert.are.equal(Vector3.__new(0, 1, 0), v103t) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v103, v103t), 5)) local v104 = Vector3.left local v104t = Vector3.zero Vector3.OrthoNormalize(v104, v104t) assert.are.equal(Vector3.__new(0, -1, 0), v104t) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v104, v104t), 5)) local v105 = Vector3.right local v105t = Vector3.zero Vector3.OrthoNormalize(v105, v105t) assert.are.equal(Vector3.__new(0, 1, 0), v105t) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v105, v105t), 5)) local v106 = Vector3.up local v106t = Vector3.zero Vector3.OrthoNormalize(v106, v106t) -- assert.are.equal(Vector3.__new(-1, 0, 0), v106t) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v106, v106t), 5)) local v107 = Vector3.down local v107t = Vector3.zero Vector3.OrthoNormalize(v107, v107t) -- assert.are.equal(Vector3.__new(1, 0, 0), v107t) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v107, v107t), 5)) local v108 = Vector3.forward local v108t = Vector3.zero Vector3.OrthoNormalize(v108, v108t) -- assert.are.equal(Vector3.__new(0, -1, 0), v108t) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v108, v108t), 5)) local v109 = Vector3.back local v109t = Vector3.zero Vector3.OrthoNormalize(v109, v109t) -- assert.are.equal(Vector3.__new(0, 1, 0), v108t) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v109, v109t), 5)) local v110 = Vector3.__new(1, 1, 0) local v110t = Vector3.zero Vector3.OrthoNormalize(v110, v110t) -- assert.are.equal(Vector3.__new(-0.707106828689575, 0.707106828689575, 0), v110t) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v110, v110t), 5)) local v111 = Vector3.__new(0, 1, 1) local v111t = Vector3.zero Vector3.OrthoNormalize(v111, v111t) -- assert.are.equal(Vector3.__new(-1, 0, 0), v111t) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v111, v111t), 5)) local v112 = Vector3.__new(1, 0, 1) local v112t = Vector3.zero Vector3.OrthoNormalize(v112, v112t) -- assert.are.equal(Vector3.__new(0, 1, 0), v112t) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v112, v112t), 5)) local v113 = Vector3.__new(1, 1, 1) local v113t = Vector3.zero Vector3.OrthoNormalize(v113, v113t) -- assert.are.equal(Vector3.__new(-0.70711, 0.70711, 0), v113t) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v113, v113t), 5)) local v150 = Vector3.__new(4, 0, 0) local v151 = Vector3.__new(0, 2, 0) Vector3.OrthoNormalize(v150, v151) assert.are.equal(Vector3.__new(1, 0, 0), v150) assert.are.equal(Vector3.__new(0, 1, 0), v151) local v152 = Vector3.__new(4, 0, 0) local v153 = Vector3.__new(0, -2, 0) Vector3.OrthoNormalize(v152, v153) assert.are.equal(Vector3.__new(1, 0, 0), v152) assert.are.equal(Vector3.__new(0, -1, 0), v153) local v154 = Vector3.__new(4, 0, 0) local v155 = Vector3.__new(-3, -4, -5) Vector3.OrthoNormalize(v154, v155) assert.are.equal(Vector3.__new(1, 0, 0), v154) assert.are.equal(Vector3.__new(0, -0.624695062637329, -0.780868768692017), v155) local v156 = Vector3.__new(3, 4, 5) local v157 = Vector3.__new(3, 4, 5) Vector3.OrthoNormalize(v156, v157) -- assert.are.equal(Vector3.__new(-0.8, 0.6, 0), v157) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v156, v157), 5)) local v158 = Vector3.__new(3, 4, 5) local v159 = Vector3.__new(-3, -4, -5) Vector3.OrthoNormalize(v158, v159) -- assert.are.equal(Vector3.__new(-0.8, 0.6, 0), v159) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v158, v159), 5)) local v160 = Vector3.__new(3, 4, 5) local v161 = Vector3.zero Vector3.OrthoNormalize(v160, v161) assert.are.equal(Vector3.__new(0.424264073371887, 0.565685451030731, 0.70710676908493), v160) -- assert.are.equal(Vector3.__new(-0.8, 0.6, 0), v161) assert.are.equal(0, vci.fake.Round(Vector3.Dot(v160, v161), 5)) local v162 = Vector3.__new(3, 4, 5) local v163 = Vector3.__new(-2, -1, -9) Vector3.OrthoNormalize(v162, v163) assert.are.equal(Vector3.__new(0.257438361644745, 0.673300385475159, -0.693103313446045), v163) local v164 = Vector3.__new(4, 0, 0) local v165 = Vector3.__new(8, -15, -17) Vector3.OrthoNormalize(v164, v165) assert.are.equal(Vector3.__new(0, -0.661621630191803, -0.749837875366211), v165) assert.are.equal(Vector3.__new(3.0, 4.0, 5.0), Vector3.MoveTowards(Vector3.__new(3, 4, 5), Vector3.__new(8, -15, -17), 0)) assert.are.equal(Vector3.__new(3.08476, 3.67792, 4.62707), Vector3.MoveTowards(Vector3.__new(3, 4, 5), Vector3.__new(8, -15, -17), 0.5)) assert.are.equal(Vector3.__new(2.49145, 5.93248, 7.23761), Vector3.MoveTowards(Vector3.__new(3, 4, 5), Vector3.__new(8, -15, -17), -3)) assert.are.equal(Vector3.__new(8.0, -15.0, -17.0), Vector3.MoveTowards(Vector3.__new(3, 4, 5), Vector3.__new(8, -15, -17), 100)) assert.are.equal(Vector3.zero, Vector3.Cross(Vector3.__new(2, 0, 0), Vector3.__new(-2, 0, 0))) assert.are.equal(Vector3.__new(7, 91, -77), Vector3.Cross(Vector3.__new(3, 4, 5), Vector3.__new(8, -15, -17))) assert.are.equal(Vector3.__new(3, 0, 0), Vector3.Project(Vector3.__new(3, 4, 5), Vector3.__new(2, 0, 0))) assert.are.equal(Vector3.__new(-1.67474043369293, 3.14013838768005, 3.55882358551025), Vector3.Project(Vector3.__new(3, 4, 5), Vector3.__new(8, -15, -17))) assert.are.equal(Vector3.__new(0, 4, 5), Vector3.ProjectOnPlane(Vector3.__new(3, 4, 5), Vector3.__new(2, 0, 0))) assert.are.equal(Vector3.__new(4.67474031448364, 0.859861612319946, 1.44117641448975), Vector3.ProjectOnPlane(Vector3.__new(3, 4, 5), Vector3.__new(8, -15, -17))) assert.are.equal(6.48074, vci.fake.Round(Vector3.Distance(Vector3.__new(3, 4, 5), Vector3.__new(2, 0, 0)), 5)) assert.are.equal(29.49576, vci.fake.Round(Vector3.Distance(Vector3.__new(3, 4, 5), Vector3.__new(8, -15, -17)), 5)) assert.are.equal(Vector3.__new(-0.848528146743774, -1.13137090206146, -1.41421353816986), Vector3.ClampMagnitude(Vector3.__new(3, 4, 5), -2)) assert.are.equal(Vector3.zero, Vector3.ClampMagnitude(Vector3.__new(3, 4, 5), 0)) assert.are.equal(Vector3.__new(0.848528146743774, 1.13137090206146, 1.41421353816986), Vector3.ClampMagnitude(Vector3.__new(3, 4, 5), 2)) assert.are.equal(Vector3.__new(3, 4, 5), Vector3.ClampMagnitude(Vector3.__new(3, 4, 5), 1000)) assert.are.equal(Vector3.__new(1, 2, 2), Vector3.Min(Vector3.__new(1, 2, 3), Vector3.__new(4, 3, 2))) assert.are.equal(Vector3.__new(4, 3, 3), Vector3.Max(Vector3.__new(1, 2, 3), Vector3.__new(4, 3, 2))) local angleTargets = { [{2, 0, 0}] = 0, [{2, 1, 1}] = 35.26439, [{0, 2, 2}] = 90, [{-1, 2, -1}] = 114.09484, [{-2, 0, -2}] = 135, [{-2, -1, 0.5}] = 150.79407, [{0, -2, -0.25}] = 90, [{1, -2, 0}] = 63.43495 } local angleMap = {} local angleBase = Vector3.__new(4, 0, 0) local angleConflictCount = 0 for iv, angle in pairs(angleTargets) do local vec = Vector3.__new(iv[1], iv[2], iv[3]) assert.are.equal(angle, vci.fake.Round(Vector3.Angle(angleBase, vec), 5)) local hashCode = vec.GetHashCode() if angleMap[hashCode] then angleConflictCount = angleConflictCount + 1 else angleMap[hashCode] = vec end end assert.are.equal(0, angleConflictCount) end) it('Vector4', function () local vOne = Vector4.one vOne.x = 0.5 vOne.y = 0.75 vOne.z = -0.25 vOne.w = -0.125 assert.are.equal(Vector4.__new(0.5, 0.75, -0.25, -0.125), vOne) assert.are.equal(Vector4.__new(1, 1, 1, 1), Vector4.one) assert.are.equal('(3.0, -2.0, 1.1, -0.5)', tostring(Vector4.__new(3, -2, 1.125, -0.5))) assert.is_true(Vector4.kEpsilon <= 1E-05) assert.are.equal(Vector4.__new(100, 200, 300, 0), Vector4.__toVector4(Vector3.__new(100, 200, 300))) assert.are.equal(Vector4.__new(100, 200, 0, 0), Vector4.__toVector4(Vector2.__new(100, 200))) assert.are.equal(Vector3.__new(100, 200, 300), Vector4.__toVector3(Vector4.__new(100, 200, 300, 400))) assert.are.equal(Vector2.__new(100, 200), Vector4.__toVector2(Vector4.__new(100, 200, 300, 400))) assert.are.equal(Vector4.zero, Vector4.__new()) assert.are.equal(Vector4.zero, Vector4.__new(500)) assert.are.equal(Vector4.zero, Vector4.__new(500, 600)) assert.are.equal(Vector4.__new(500, 600, 700, 0), Vector4.__new(500, 600, 700)) local v19 = Vector4.__new(10, 200, 3000, 40000) v19.set_Item(0, -0.5) v19.set_Item(1, 987) v19.set_Item(2, 6.5) v19.set_Item(3, 33) assert.are.equal(Vector4.__new(-0.5, 987, 6.5, 33), v19) local v20 = Vector4.__new(3, 4, 5, 6) assert.are.equal(9.27362, vci.fake.Round(v20.magnitude, 5)) assert.are.equal(86, v20.sqrMagnitude) assert.are.equal(9.27362, vci.fake.Round(Vector4.Magnitude(v20), 5)) assert.are.equal(86, v20.SqrMagnitude()) assert.are.equal(86, Vector4.SqrMagnitude(v20)) assert.are.equal(0, Vector4.zero.magnitude) local v21 = v20.normalized assert.are.equal(Vector4.__new(0.3234983086586, 0.431331098079681, 0.539163827896118, 0.6469966173172), v21) local v22 = Vector4.__new(5, 12, 13, 17) v22.Normalize() assert.are.equal(Vector4.__new(0.199680760502815, 0.479233831167221, 0.519169986248016, 0.678914606571198), v22) assert.are.equal(Vector4.__new(-0.199680760502815, -0.479233831167221, -0.519169986248016, 0.678914606571198), Vector4.Normalize(Vector4.__new(-5, -12, -13, 17))) assert.are.equal(Vector4.__new(0.70710676908493, 0, 0, -0.70710676908493), Vector4.__new(Vector4.kEpsilon, 0, 0, -Vector4.kEpsilon).normalized) assert.are.equal(Vector4.__new(0, 0, 0, 0), Vector4.zero.normalized) assert.are.equal(-6, Vector4.Dot(Vector4.__new(1, 0, -3, -4), Vector4.__new(2, -3, -4, 5))) assert.are.equal(-2, Vector4.Dot(Vector4.__new(1, 0, -1, 0), Vector4.__new(-1, 0, 1, 0))) assert.are.equal(0, Vector4.Dot(Vector4.zero, Vector4.__new(2, -3, -4, 5))) assert.are.equal(0, Vector4.Dot(Vector4.__new(1, 0, -3, -4), Vector4.zero)) assert.are.equal(Vector4.__new(0.5, 0, 1, -3.5), Vector4.LerpUnclamped(Vector4.__new(3, 0, -5, 4), Vector4.__new(8, 0, -17, 19), -0.5)) assert.are.equal(Vector4.__new(3, 0, -5, 4), Vector4.LerpUnclamped(Vector4.__new(3, 0, -5, 4), Vector4.__new(8, 0, -17, 19), 0)) assert.are.equal(Vector4.__new(4.25, 0, -8, 7.75), Vector4.LerpUnclamped(Vector4.__new(3, 0, -5, 4), Vector4.__new(8, 0, -17, 19), 0.25)) assert.are.equal(Vector4.__new(6.75, 0, -14, 15.25), Vector4.LerpUnclamped(Vector4.__new(3, 0, -5, 4), Vector4.__new(8, 0, -17, 19), 0.75)) assert.are.equal(Vector4.__new(8, 0, -17, 19), Vector4.LerpUnclamped(Vector4.__new(3, 0, -5, 4), Vector4.__new(8, 0, -17, 19), 1)) assert.are.equal(Vector4.__new(10.5, 0, -23, 26.5), Vector4.LerpUnclamped(Vector4.__new(3, 0, -5, 4), Vector4.__new(8, 0, -17, 19), 1.5)) assert.are.equal(Vector4.__new(-4, 0, 8.5, -9.5), Vector4.LerpUnclamped(Vector4.zero, Vector4.__new(8, 0, -17, 19), -0.5)) assert.are.equal(Vector4.__new(2, 0, -4.25, 4.75), Vector4.LerpUnclamped(Vector4.zero, Vector4.__new(8, 0, -17, 19), 0.25)) assert.are.equal(Vector4.__new(8, 0, -17, 19), Vector4.LerpUnclamped(Vector4.zero, Vector4.__new(8, 0, -17, 19), 1)) assert.are.equal(Vector4.__new(4.5, 0, -7.5, 6), Vector4.LerpUnclamped(Vector4.__new(3, 0, -5, 4), Vector4.zero, -0.5)) assert.are.equal(Vector4.__new(3, 0, -5, 4), Vector4.LerpUnclamped(Vector4.__new(3, 0, -5, 4), Vector4.zero, 0)) assert.are.equal(Vector4.__new(2.25, 0, -3.75, 3), Vector4.LerpUnclamped(Vector4.__new(3, 0, -5, 4), Vector4.zero, 0.25)) -- [email protected] では非実装 -- assert.are.equal(Vector4.__new(2, -6, 12, -20), Vector4.Scale(Vector4.__new(1, 2, -3, -4), Vector4.__new(2, -3, -4, 5))) local hashMap = {} local hashTargets = { {2, 0, 0, 0}, {0, 2, 0, 0}, {0, 0, 2, 0}, {0, 0, 0, 2}, {-2, 0, 0, 0}, {0, -2, 0, 0}, {0.5, -0.25, -0.125, 0.75}, {0.5, 0.25, 0.125, 0.75}, {-0.25, 0.5, -0.125, 0.75}, {-0.25, 0.5, 0.75, -0.125} } local hashConflictCount = 0 for i, iv in pairs(hashTargets) do local vec = Vector4.__new(iv[1], iv[2], iv[3], iv[4]) local hashCode = vec.GetHashCode() if hashMap[hashCode] then hashConflictCount = hashConflictCount + 1 else hashMap[hashCode] = vec end end assert.are.equal(0, hashConflictCount) end) it('Quaternion', function () local qIdentity = Quaternion.identity qIdentity.x = 0.5 qIdentity.y = 0.75 qIdentity.z = -0.25 qIdentity.w = -0.125 assert.are.equal(Quaternion.__new(0.5, 0.75, -0.25, -0.125), qIdentity) assert.are.equal(Quaternion.__new(0, 0, 0, 1), Quaternion.identity) assert.are.equal('(3.0, -2.0, 1.1, -0.5)', tostring(Quaternion.__new(3, -2, 1.125, -0.5))) assert.is_true(Quaternion.kEpsilon < 1E-5) assert.are.equal(Quaternion.__new(0, 0, 0, 0), Quaternion.__new()) assert.are.equal(Quaternion.__new(0, 0, 0, 0), Quaternion.__new(500)) assert.are.equal(Quaternion.__new(0, 0, 0, 0), Quaternion.__new(500, 600)) assert.are.equal(Quaternion.__new(0, 0, 0, 0), Quaternion.__new(500, 600, 700)) assert.are.equal(Quaternion.__new(500, 600, 700, 800), Quaternion.__new(500, 600, 700, 800)) assert.are.equal(Quaternion.__new(0.3234983086586, -0.431331098079681, -0.539163827896118, 0.6469966173172), Quaternion.__new(3, -4, -5, 6).normalized) local q22 = Quaternion.__new(3, -4, -5, 6) q22.Normalize() assert.are.equal(Quaternion.__new(0.3234983086586, -0.431331098079681, -0.539163827896118, 0.6469966173172), q22) assert.are.equal(Quaternion.__new(0.3234983086586, -0.431331098079681, -0.539163827896118, 0.6469966173172), Quaternion.Normalize(Quaternion.__new(3, -4, -5, 6))) assert.are.equal(Quaternion.__new(0.70710676908493, 0, 0, -0.70710676908493), Quaternion.__new(Quaternion.kEpsilon, 0, 0, -Quaternion.kEpsilon).normalized) assert.are.equal(Quaternion.__new(0, 0, 0, 1), Quaternion.__new(0, 0, 0, 0).normalized) assert.are.equal(Quaternion.__new(-30, 54, -172, 150), Quaternion.__new(3, 4, 5, -6) * Quaternion.__new(8, -15, 0, -19)) -- assert.are.equal(Vector3.__new(-1908, 717, 564), Quaternion.__new(3, 4, 5, -6) * Vector3.__new(8, -15, 0)) assert.are.equal(Vector3.__new(-14.2790679931641, -6.48837280273438, 6.55813884735107), Quaternion.__new(3, 4, 5, -6).normalized * Vector3.__new(8, -15, 0)) assert.are.equal(Vector3.__new(12.4615592956543, -11.5089797973633, -1.11933636665344), Quaternion.AngleAxis(25, Vector3.__new(-7, 16, 22)) * Vector3.__new(8, -15, 0)) assert.are.equal(Quaternion.__new(1, 1, 0, 1), Quaternion.__new(1 + 1e-8, 1 - 1e-8, 0, 1)) assert.are_not.equal(Quaternion.__new(1, 1, 0, 1), Quaternion.__new(1 + 1e-8, 1 - 1e-8, 1e-8, 1)) assert.are_not.equal(Quaternion.__new(0, 0, 0, 0), Quaternion.__new(1e-8, 0, 0, 0)) local q50 = Quaternion.__new(3, -4, -5, 6) assert.are.equal(Vector3.__new(357.334, 294.775, 282.095), RoundVector3(q50.eulerAngles, 3)) assert.are.equal(Vector3.__new(357.334, 294.775, 282.095), RoundVector3(q50.normalized.eulerAngles, 3)) assert.are.equal(Vector3.__new(0.658846855163574, 0.543501675128937, 0.52012175321579), q50.eulerAngles.normalized) assert.are.equal(Vector3.__new(-0.0465284362435341, -1.13838863372803, -1.35970294475555), q50.ToEulerAngles()) assert.are.equal(Vector3.__new(-0.0465284362435341, -1.13838863372803, -1.35970294475555), q50.ToEuler()) assert.are.equal(Vector3.__new(90, 0, 0), Quaternion.__new(0.70710676908493, 0, 0, 0.70710676908493).eulerAngles) assert.are.equal(Vector3.__new(90, 30.0000019073486, 0), Quaternion.__new(0.683012664318085, 0.183012694120407, -0.183012694120407, 0.683012664318085).eulerAngles) assert.are.equal(Vector3.__new(270, 30.0000019073486, 0), Quaternion.__new(-0.683012664318085, 0.183012694120407, 0.183012694120407, 0.683012664318085).eulerAngles) local q54 = Quaternion.__new(0.0491540282964706, -0.139000475406647, 0.155192941427231, 0.976820409297943) assert.are.equal(Vector3.__new(7.99999761581421, 345, 16.9999980926514), q54.eulerAngles) assert.are.equal(Vector3.__new(0.139626294374466, -0.261799395084381, 0.296705931425095), q54.ToEulerAngles()) assert.are.equal(Vector3.__new(0.139626294374466, -0.261799395084381, 0.296705931425095), q54.ToEuler()) assert.are.equal(Quaternion.__new(0.0491540282964706, -0.139000475406647, 0.155192941427231, 0.976820409297943), Quaternion.Euler(8, -15, 17)) assert.are.equal(Quaternion.__new(0.70710676908493, 0, 0, 0.70710676908493), Quaternion.Euler(90, 0, 0)) assert.are.equal(Quaternion.__new(0.683012664318085, 0.183012694120407, -0.183012694120407, 0.683012664318085), Quaternion.Euler(90, 30, 0)) assert.are.equal(Quaternion.__new(-0.683012664318085, 0.183012694120407, 0.183012694120407, 0.683012664318085), Quaternion.Euler(-90, 30, 0)) local q60 = Quaternion.Euler(0, 179, 0) assert.are.equal(Vector3.__new(0, 179, 0), q60.eulerAngles) assert.are.equal(Vector3.__new(0, 3.12413930892944, 0), q60.ToEulerAngles()) assert.are.equal(Vector3.__new(0, 3.12413930892944, 0), q60.ToEuler()) local q61 = Quaternion.Euler(0, 180, 0) assert.are.equal(Vector3.__new(0, 180, 0), q61.eulerAngles) assert.are.equal(Vector3.__new(0, -3.14159250259399, 0), q61.ToEulerAngles()) assert.are.equal(Vector3.__new(0, -3.14159250259399, 0), q61.ToEuler()) local q62 = Quaternion.Euler(0, -1, 0) assert.are.equal(Vector3.__new(0, 359, 0), q62.eulerAngles) assert.are.equal(Vector3.__new(0, -0.0174532923847437, 0), q62.ToEulerAngles()) assert.are.equal(Vector3.__new(0, -0.0174532923847437, 0), q62.ToEuler()) local q63 = Quaternion.Euler(0, -181, 0) assert.are.equal(Vector3.__new(0, 179, 0), q63.eulerAngles) assert.are.equal(Vector3.__new(0, 3.12413930892944, 0), q63.ToEulerAngles()) assert.are.equal(Vector3.__new(0, 3.12413930892944, 0), q63.ToEuler()) assert.are.equal(-6, Quaternion.Dot(Quaternion.__new(1, 0, -3, -4), Quaternion.__new(2, -3, -4, 5))) assert.are.equal(-2, Quaternion.Dot(Quaternion.__new(1, 0, -1, 0), Quaternion.__new(-1, 0, 1, 0))) assert.are.equal(0, Quaternion.Dot(Quaternion.__new(0, 0, 0, 0), Quaternion.__new(2, -3, -4, 5))) assert.are.equal(0, Quaternion.Dot(Quaternion.__new(1, 0, -3, -4), Quaternion.__new(0, 0, 0, 0))) assert.are.equal(Quaternion.__new(-1, 0, 3, -4), Quaternion.Inverse(Quaternion.__new(1, 0, -3, -4))) assert.are.equal(Quaternion.__new(0, 0, 0, 0), Quaternion.Inverse(Quaternion.__new(0, 0, 0, 0))) assert.are.equal(Quaternion.__new(- Quaternion.kEpsilon, 0, 0, 0), Quaternion.Inverse(Quaternion.__new(Quaternion.kEpsilon, 0, 0, 0))) assert.are.equal(Quaternion.__new(0.70710676908493, 0, 0, 0.70710676908493), Quaternion.AngleAxis(90.0, Vector3.right)) assert.are.equal(Quaternion.__new(0, 0, 0.70710676908493, 0.70710676908493), Quaternion.AngleAxis(90.0, Vector3.forward)) assert.are.equal(Quaternion.__new(-0.109807625412941, 0.146410167217255, -0.183012709021568, 0.965925812721252), Quaternion.AngleAxis(-30.0, Vector3.__new(3, -4, 5))) assert.are.equal(Quaternion.identity, Quaternion.AngleAxis(0, Vector3.__new(3, -4, 5))) assert.are.equal(Quaternion.identity, Quaternion.AngleAxis(30.0, Vector3.zero)) assert.are.equal(Quaternion.identity, Quaternion.AngleAxis(0, Vector3.zero)) assert.are.equal(Quaternion.identity, Quaternion.AngleAxis(30, Vector3.__new(Quaternion.kEpsilon, 0, 0))) -- assert.are.equal(0, Quaternion.Angle(Quaternion.__new(1, 0, -3, -4), Quaternion.__new(2, -3, -4, 5))) assert.are.equal(180, Quaternion.Angle(Quaternion.__new(1, 2, -3, -4), Quaternion.__new(0, 0, 0, 0))) assert.are.equal(180, Quaternion.Angle(Quaternion.AngleAxis(30, Vector3.right), Quaternion.__new(0, 0, 0, 0))) assert.are.equal(180, Quaternion.Angle(Quaternion.__new(0, 0, 0, 0), Quaternion.AngleAxis(30, Vector3.right))) assert.are.equal(120, vci.fake.Round(Quaternion.Angle(Quaternion.AngleAxis(90.0, Vector3.right), Quaternion.AngleAxis(90.0, Vector3.forward)), 5)) assert.are.equal(90, vci.fake.Round(Quaternion.Angle(Quaternion.AngleAxis(0, Vector3.right), Quaternion.AngleAxis(270.0, Vector3.right)), 5)) local q120s = Quaternion.__new(3, 0, -5, 4) local q120e = Quaternion.__new(8, 0, -17, 19) assert.are.equal(Quaternion.__new(0.424264073371887, 0, -0.70710676908493, 0.565685451030731), Quaternion.Lerp(q120s, q120e, -0.5)) assert.are.equal(Quaternion.__new(0.424264073371887, 0, -0.70710676908493, 0.565685451030731), Quaternion.Lerp(q120s, q120e, 0)) assert.are.equal(Quaternion.__new(0.356495201587677, 0, -0.671049773693085, 0.650079488754272), Quaternion.Lerp(q120s, q120e, 0.25)) assert.are.equal(Quaternion.__new(0.309996873140335, 0, -0.642956495285034, 0.700363337993622), Quaternion.Lerp(q120s, q120e, 0.75)) assert.are.equal(Quaternion.__new(0.299392491579056, 0, -0.636209011077881, 0.711057126522064), Quaternion.Lerp(q120s, q120e, 1)) assert.are.equal(Quaternion.__new(0.299392491579056, 0, -0.636209011077881, 0.711057126522064), Quaternion.Lerp(q120s, q120e, 1.5)) local q130s = Quaternion.__new(3, 0, -5, 4) local q130e = Quaternion.__new(8, 0, -17, 19) assert.are.equal(Quaternion.__new(0.136082768440247, 0, 0.272165536880493, -0.952579319477081), Quaternion.LerpUnclamped(q130s, q130e, -0.5)) assert.are.equal(Quaternion.__new(0.424264073371887, 0, -0.70710676908493, 0.565685451030731), Quaternion.LerpUnclamped(q130s, q130e, 0)) assert.are.equal(Quaternion.__new(0.356495201587677, 0, -0.671049773693085, 0.650079488754272), Quaternion.LerpUnclamped(q130s, q130e, 0.25)) assert.are.equal(Quaternion.__new(0.309996873140335, 0, -0.642956495285034, 0.700363337993622), Quaternion.LerpUnclamped(q130s, q130e, 0.75)) assert.are.equal(Quaternion.__new(0.299392491579056, 0, -0.636209011077881, 0.711057126522064), Quaternion.LerpUnclamped(q130s, q130e, 1)) assert.are.equal(Quaternion.__new(0.286677747964859, 0, -0.627960801124573, 0.723520040512085), Quaternion.LerpUnclamped(q130s, q130e, 1.5)) local q140s = Quaternion.AngleAxis(30, Vector3.__new(3, 0, -5)) local q140e = Quaternion.AngleAxis(-160, Vector3.__new(8, -17, 19)) assert.are.equal(Quaternion.__new(0.133161306381226, 0, -0.221935525536537, 0.965925872325897), Quaternion.Slerp(q140s, q140e, -0.5)) assert.are.equal(Quaternion.__new(0.133161306381226, 0, -0.221935525536537, 0.965925872325897), Quaternion.Slerp(q140s, q140e, 0)) assert.are.equal(Quaternion.__new(0.0169980637729168, 0.206004470586777, -0.420142501592636, 0.883602619171143), Quaternion.Slerp(q140s, q140e, 0.25)) assert.are.equal(Quaternion.__new(-0.208504676818848, 0.536110818386078, -0.672153949737549, 0.466176092624664), Quaternion.Slerp(q140s, q140e, 0.75)) assert.are.equal(Quaternion.__new (-0.294844090938568, 0.626543641090393, -0.700254678726196, 0.173648118972778), Quaternion.Slerp(q140s, q140e, 1)) assert.are.equal(Quaternion.__new (-0.294844090938568, 0.626543641090393, -0.700254678726196, 0.173648118972778), Quaternion.Slerp(q140s, q140e, 1.5)) local q150s = Quaternion.AngleAxis(30, Vector3.__new(3, 0, -5)) local q150e = Quaternion.AngleAxis(-160, Vector3.__new(8, -17, 19)) assert.are.equal(Quaternion.__new(0.314279705286026, -0.390997529029846, 0.219862401485443, 0.836665868759155), Quaternion.SlerpUnclamped(q150s, q150e, -0.5)) assert.are.equal(Quaternion.__new(0.133161306381226, 0, -0.221935525536537, 0.965925872325897), Quaternion.SlerpUnclamped(q150s, q150e, 0)) assert.are.equal(Quaternion.__new(0.0169980637729168, 0.206004470586777, -0.420142501592636, 0.883602619171143), Quaternion.SlerpUnclamped(q150s, q150e, 0.25)) assert.are.equal(Quaternion.__new(-0.208504676818848, 0.536110818386078, -0.672153949737549, 0.466176092624664), Quaternion.SlerpUnclamped(q150s, q150e, 0.75)) assert.are.equal(Quaternion.__new(-0.294844090938568, 0.626543641090393, -0.700254678726196, 0.173648118972778), Quaternion.SlerpUnclamped(q150s, q150e, 1)) assert.are.equal(Quaternion.__new(-0.371566206216812, 0.612990856170654, -0.546607434749603, -0.432898700237274), Quaternion.SlerpUnclamped(q150s, q150e, 1.5)) local q160s = Quaternion.AngleAxis(0, Vector3.__new(4, 4, 4)) local q160e = Quaternion.Inverse(q160s) q160e.w = - q160e.w assert.are.equal(Quaternion.__new(0, 0, 0, 1), Quaternion.SlerpUnclamped(q160s, q160e, -0.5)) assert.are.equal(Quaternion.__new(0, 0, 0, 1), Quaternion.SlerpUnclamped(q160s, q160e, 0)) assert.are.equal(Quaternion.__new(0, 0, 0, 1), Quaternion.SlerpUnclamped(q160s, q160e, 0.25)) -- assert.are.equal(Quaternion.__new(0, 0, 0, 1), Quaternion.SlerpUnclamped(q160s, q160e, 1)) -- assert.are.equal(Quaternion.__new(0, 0, 0, 1), Quaternion.SlerpUnclamped(q160s, q160e, 1.5)) local q200s = Quaternion.AngleAxis(30, Vector3.__new(3, 0, -5)) local q200e = Quaternion.AngleAxis(-15, Vector3.__new(8, -17, 19)) -- assert.are.equal(Quaternion.__new(0.617034733295441, -0.258086025714874, -0.537521719932556, 0.513546586036682), Quaternion.RotateTowards(q200s, q200e, -135)) -- assert.are.equal(Quaternion.__new (0.253553628921509, -0.060201957821846, -0.30808761715889, 0.914969027042389), Quaternion.RotateTowards(q200s, q200e, -20)) assert.are.equal(Quaternion.__new(0.133161306381226, 0, -0.221935510635376, 0.965925812721252), Quaternion.RotateTowards(q200s, q200e, 0)) assert.are.equal(RoundQuaternion(Quaternion.__new(0.00397309381514788, 0.0626121386885643, -0.125707641243935, 0.990081608295441), 2), RoundQuaternion(Quaternion.RotateTowards(q200s, q200e, 20), 2)) assert.are.equal(Quaternion.__new(-0.039078563451767, 0.0830419510602951, -0.0928115844726563, 0.991444885730743), Quaternion.RotateTowards(q200s, q200e, 45)) assert.are.equal(Quaternion.__new(-0.039078563451767, 0.0830419510602951, -0.0928115844726563, 0.991444885730743), Quaternion.RotateTowards(q200s, q200e, 90)) assert.are.equal(Quaternion.__new(-0.039078563451767, 0.0830419510602951, -0.0928115844726563, 0.991444885730743), Quaternion.RotateTowards(q200s, q200e, 180)) assert.are.equal(Quaternion.__new(0.707106828689575, 0, 0, 0.707106828689575), Quaternion.FromToRotation(Vector3.up, Vector3.forward)) -- assert.are.equal(Quaternion.__new(-0.522868275642395, -0.59668505191803, -0.313721001148224, 0.521684587001801), Quaternion.FromToRotation(Vector3.__new(3, 0, -5), Vector3.__new(8, -17, 19))) -- assert.are.equal(Quaternion.__new(0.905538499355316, -0.265035688877106, -0.331294596195221, 0), Quaternion.FromToRotation(Vector3.__new(3, 4, 5), Vector3.__new(-3, -4, -5))) assert.are.equal(Quaternion.__new(0, 0, 0, 1), Quaternion.FromToRotation(Vector3.__new(3, 4, 5), Vector3.__new(3, 4, 5))) assert.are.equal(Quaternion.__new(-0.0790454521775246, 0.920491874217987, 0.285379141569138, 0.254961490631104), Quaternion.LookRotation(Vector3.__new(3, 4, -5))) assert.are.equal(Quaternion.__new(-0.0790454521775246, 0.920491874217987, 0.285379141569138, 0.254961490631104), Quaternion.LookRotation(Vector3.__new(3, 4, -5), Vector3.up)) assert.are.equal(Quaternion.__new(0.920491874217987, 0.0790454521775246, 0.254961490631104, -0.285379141569138), Quaternion.LookRotation(Vector3.__new(3, 4, -5), Vector3.down)) assert.are.equal(Quaternion.__new(-0.600431323051453, 0.702164947986603, 0.0834529176354408, 0.373473197221756), Quaternion.LookRotation(Vector3.__new(3, 4, -5), Vector3.left)) assert.are.equal(Quaternion.__new(0.724966704845428, 0.572692573070526, 0.369948267936707, -0.0979026407003403), Quaternion.LookRotation(Vector3.__new(3, 4, -5), Vector3.__new(8, -17, 19))) -- assert.are.equal(Quaternion.__new(0, 0, 0, 1), Quaternion.LookRotation(Vector3.__new(0, 0, 1), Vector3.up)) assert.are.equal(Quaternion.__new(0, 0, 1, 0), Quaternion.LookRotation(Vector3.__new(0, 0, 1), Vector3.down)) -- assert.are.equal(Quaternion.__new(0, 0, 0.707106828689575, 0.707106828689575), Quaternion.LookRotation(Vector3.__new(0, 0, 1), Vector3.left)) -- assert.are.equal(Quaternion.__new(-0.707106828689575, 0, 0, 0.707106828689575), Quaternion.LookRotation(Vector3.__new(0, 1, 0), Vector3.up)) -- assert.are.equal(Quaternion.__new(-0.707106828689575, 0, 0, 0.707106828689575), Quaternion.LookRotation(Vector3.__new(0, 1, 0), Vector3.down)) -- assert.are.equal(Quaternion.__new(0.5, -0.5, -0.5, -0.5), Quaternion.LookRotation(Vector3.__new(0, 1, 0), Vector3.left)) end) it('Color', function () local cCyan = Color.cyan cCyan.r = 0.5 cCyan.a = 0.75 assert.are.equal(Color.__new(0.5, 1, 1, 0.75), cCyan) assert.are.equal(Color.__new(0, 1, 1, 1), Color.cyan) assert.are.equal(Vector4.__new(0.5, 0.25, 1.0, 0.75), Color.__toVector4(Color.__new(0.5, 0.25, 1, 0.75))) assert.are.equal(Color.__new(-0.5, -0.25, -1.0, -0.75), Color.__toColor(Vector4.__new(-0.5, -0.25, -1, -0.75))) assert.are.equal('RGBA(1.000, 0.000, 1.000, 1.000)', tostring(Color.magenta)) assert.are.equal(Color.__new(1, 0, 1), Color.magenta) assert.are_not.equal(Color.__new(1, 0, 1, 0.5), Color.magenta) assert.are.equal(Color.__new(0, 0, 1, 1), Color.blue) assert.are.equal('RGBA(1.000, 0.922, 0.016, 1.000)', tostring(Color.yellow)) assert.are.equal(Color.__new(0, 0, 0, 0), Color.clear) assert.are.equal(Color.clear, Color.__new()) assert.are.equal(Color.clear, Color.__new(0.25)) assert.are.equal(Color.clear, Color.__new(0.25, 0.5)) assert.are.equal('RGBA(0.250, 1234.500, 0.200, 1.000)', tostring(Color.__new(0.25, 1234.5, 0.2))) assert.are.equal(Color.__new(1, 0, 0, 0), Color.magenta - Color.blue) assert.are.equal(Color.__new(1.000, 0.000, -1.000, -1.000), Color.magenta - Color.blue - Color.blue) local c2 = Color.magenta - (Color.blue + Color.blue) c2.g = 0.25 c2.r = 0.75 c2.a = 0.95 assert.are.equal(Color.__new(0.750, 0.250, -1.000, 0.950), c2) assert.are.equal(0.75, c2.maxColorComponent) assert.are.equal(Color.__new(1.000, 0.500, 2.000, 2.000), Color.__new(0.5, 0.25, 1) * 2) assert.are.equal(Color.__new(0.000, 0.500, 3.000, 1.000), Color.__new(0.5, 0.25, 1) * Color.__new(0, 2, 3)) assert.are.equal(Color.__new(0.250, 0.125, 0.500, 0.500), Color.__new(0.5, 0.25, 1) / 2) assert.are.equal(Color.__new(-0.500, 2.250, 4.000, 0.800), Color.__new(0.5, 0.25, 1) + Color.__new(-1, 2, 3, -0.2)) local lpa = Color.__new(0.33, 1.0, -2.0, 1.0) local lpb = Color.__new(1.5, 3.0, 1.0, -3.0) assert.are.equal(Color.__new(1.266, 2.600, 0.400, -2.200), Color.Lerp(lpa, lpb, 0.8)) assert.are.equal(Color.__new(0.330, 1.000, -2.000, 1.000), Color.Lerp(lpa, lpb, -123)) assert.are.equal(Color.__new(0.330, 1.000, -2.000, 1.000), Color.Lerp(lpa, lpb, -5.7)) assert.are.equal(Color.__new(0.6225, 1.500, -1.250, 0.000), Color.Lerp(lpa, lpb, 0.25)) assert.are.equal(Color.__new(0.330, 1.000, -2.000, 1.000), Color.Lerp(lpa, lpb, -0.25)) assert.are.equal(Color.__new(1.266, 2.600, 0.400, -2.200), Color.LerpUnclamped(lpa, lpb, 0.8)) assert.are.equal(Color.__new(-143.580, -245.000, -371.000, 493.000), Color.LerpUnclamped(lpa, lpb, -123)) assert.are.equal(Color.__new(-6.33899974822998, -10.400, -19.100, 23.800), Color.LerpUnclamped(lpa, lpb, -5.7)) assert.are.equal(Color.__new(0.6225, 1.500, -1.250, 0.000), Color.LerpUnclamped(lpa, lpb, 0.25)) assert.are.equal(Color.__new(0.0375, 0.500, -2.750, 2.000), Color.LerpUnclamped(lpa, lpb, -0.25)) assert.are.equal(Color.__new(0, 0, 0), Color.HSVToRGB(0, 0, 0)) assert.are.equal(Color.__new(0.21875, 0.25, 0.1875), Color.HSVToRGB(0.25, 0.25, 0.25)) assert.are.equal(Color.__new(0.25, 0.5, 0.5), Color.HSVToRGB(0.5, 0.5, 0.5)) assert.are.equal(Color.__new(0.46875, 0.1875, 0.75), Color.HSVToRGB(0.75, 0.75, 0.75)) assert.are.equal(Color.__new(1, 0, 0), Color.HSVToRGB(1, 1, 1)) local dictSize = 0 local dict = {} dict[Color.__new(0.5, 0.25, 1).GetHashCode()] = 'one' dict[Color.__new(0.9, 0.8, 0.7).GetHashCode()] = 'car' dict[Color.__new(0.5, 0.25, 1).GetHashCode()] = 'two' for k, v in pairs(dict) do dictSize = dictSize + 1 end assert.are.equal(2, dictSize) assert.are.equal('two', dict[Color.__new(0.5, 0.25, 1).GetHashCode()]) assert.are.equal('car', dict[Color.__new(0.9, 0.8, 0.7).GetHashCode()]) end) it('vci.state', function () assert.is_nil(vci.state.Get('foo')) vci.state.Set('foo', 12345) assert.are.same(12345, vci.state.Get('foo')) vci.state.Set('foo', false) assert.is_false(vci.state.Get('foo')) vci.state.Set('foo', 'orange') assert.are.same('orange', vci.state.Get('foo')) vci.state.Set('foo', {'table-data', 'not supported'}) assert.is_nil(vci.state.Get('foo')) vci.state.Set('bar', 100) vci.state.Add('bar', 20) assert.are.same(120, vci.state.Get('bar')) vci.fake.ClearState() assert.is_nil(vci.state.Get('bar')) end) it('vci.studio.shared', function () local cbMap = { cb1 = function (value) end, cb2 = function (value) end, cb3 = function (value) end } for key, val in pairs(cbMap) do stub(cbMap, key) end vci.studio.shared.Bind('foo', cbMap.cb1) vci.studio.shared.Bind('foo', cbMap.cb2) vci.studio.shared.Bind('bar', cbMap.cb3) assert.is_nil(vci.studio.shared.Get('foo')) vci.studio.shared.Set('foo', 12345) assert.are.same(12345, vci.studio.shared.Get('foo')) assert.stub(cbMap.cb1).was.called(1) assert.stub(cbMap.cb1).was.called_with(12345) assert.stub(cbMap.cb2).was.called(1) assert.stub(cbMap.cb2).was.called_with(12345) assert.stub(cbMap.cb3).was.called(0) assert.stub(cbMap.cb3).was_not.called_with(12345) vci.studio.shared.Set('foo', 12345) assert.stub(cbMap.cb1).was.called(1) assert.stub(cbMap.cb2).was.called(1) assert.stub(cbMap.cb3).was.called(0) vci.studio.shared.Set('foo', false) assert.is_false(vci.studio.shared.Get('foo')) assert.stub(cbMap.cb1).was.called(2) assert.stub(cbMap.cb1).was.called_with(false) assert.stub(cbMap.cb2).was.called(2) assert.stub(cbMap.cb2).was.called_with(false) assert.stub(cbMap.cb3).was.called(0) vci.fake.UnbindStudioShared('foo', cbMap.cb1) vci.studio.shared.Set('foo', 'orange') assert.are.same('orange', vci.studio.shared.Get('foo')) assert.stub(cbMap.cb1).was.called(2) assert.stub(cbMap.cb2).was.called(3) assert.stub(cbMap.cb3).was.called(0) vci.studio.shared.Set('foo', {'table-data', 'not supported'}) assert.is_nil(vci.studio.shared.Get('foo')) assert.stub(cbMap.cb1).was.called(2) assert.stub(cbMap.cb2).was.called(4) assert.stub(cbMap.cb3).was.called(0) vci.studio.shared.Set('bar', 100) assert.stub(cbMap.cb3).was.called(1) vci.studio.shared.Add('bar', 20) assert.are.same(120, vci.studio.shared.Get('bar')) assert.stub(cbMap.cb1).was.called(2) assert.stub(cbMap.cb2).was.called(4) assert.stub(cbMap.cb3).was.called(2) vci.fake.ClearStudioShared() assert.is_nil(vci.studio.shared.Get('bar')) vci.studio.shared.Set('bar', 404) assert.stub(cbMap.cb3).was.called(2) assert.stub(cbMap.cb3).was_not.called_with(404) for key, val in pairs(cbMap) do cbMap[key]:revert() end end) it('vci.message', function () local lastVciName = vci.fake.GetVciName() vci.fake.SetVciName('test-msg-vci') local cbMap = { cb1 = function (sender, name, message) end, cb2 = function (sender, name, message) end, cb3 = function (sender, name, message) end, cbComment = function (sender, name, message) end, cbNotification = function (sender, name, message) end } for key, val in pairs(cbMap) do stub(cbMap, key) end vci.message.On('foo', cbMap.cb1) vci.message.On('foo', cbMap.cb2) vci.message.On('bar', cbMap.cb3) vci.message.On('comment', cbMap.cbComment) vci.message.On('notification', cbMap.cbNotification) vci.message.Emit('foo', 12345) assert.stub(cbMap.cb1).was.called(1) assert.stub(cbMap.cb1).was.called_with({type = 'vci', name = 'test-msg-vci', commentSource = ''}, 'foo', 12345) assert.stub(cbMap.cb2).was.called(1) assert.stub(cbMap.cb2).was.called_with({type = 'vci', name = 'test-msg-vci', commentSource = ''}, 'foo', 12345) assert.stub(cbMap.cb3).was.called(0) assert.stub(cbMap.cb3).was_not.called_with({type = 'vci', name = 'test-msg-vci', commentSource = ''}, 'foo', 12345) vci.fake.EmitVciMessage('other-vci', 'foo', 12.345) assert.stub(cbMap.cb1).was.called(2) assert.stub(cbMap.cb1).was.called_with({type = 'vci', name = 'other-vci', commentSource = ''}, 'foo', 12.345) assert.stub(cbMap.cb2).was.called(2) assert.stub(cbMap.cb2).was.called_with({type = 'vci', name = 'other-vci', commentSource = ''}, 'foo', 12.345) assert.stub(cbMap.cb3).was.called(0) vci.message.Emit('foo', false) assert.stub(cbMap.cb1).was.called(3) assert.stub(cbMap.cb1).was.called_with({type = 'vci', name = 'test-msg-vci', commentSource = ''}, 'foo', false) assert.stub(cbMap.cb2).was.called(3) assert.stub(cbMap.cb2).was.called_with({type = 'vci', name = 'test-msg-vci', commentSource = ''}, 'foo', false) assert.stub(cbMap.cb3).was.called(0) vci.fake.OffMessage('foo', cbMap.cb1) vci.message.Emit('foo', 'orange') assert.stub(cbMap.cb1).was.called(3) assert.stub(cbMap.cb2).was.called(4) assert.stub(cbMap.cb2).was.called_with({type = 'vci', name = 'test-msg-vci', commentSource = ''}, 'foo', 'orange') assert.stub(cbMap.cb3).was.called(0) vci.message.Emit('foo', {'table-data', 'not supported'}) assert.stub(cbMap.cb1).was.called(3) assert.stub(cbMap.cb2).was.called(5) assert.stub(cbMap.cb2).was.called_with({type = 'vci', name = 'test-msg-vci', commentSource = ''}, 'foo', nil) assert.stub(cbMap.cb3).was.called(0) vci.message.Emit('bar', 100) assert.stub(cbMap.cb1).was.called(3) assert.stub(cbMap.cb2).was.called(5) assert.stub(cbMap.cb3).was.called(1) assert.stub(cbMap.cb3).was.called_with({type = 'vci', name = 'test-msg-vci', commentSource = ''}, 'bar', 100) vci.message.EmitWithId('bar', 200, vci.assets.GetInstanceId()) assert.stub(cbMap.cb1).was.called(3) assert.stub(cbMap.cb2).was.called(5) assert.stub(cbMap.cb3).was.called(2) assert.stub(cbMap.cb3).was.called_with({type = 'vci', name = 'test-msg-vci', commentSource = ''}, 'bar', 200) vci.message.EmitWithId('bar', 300, '') assert.stub(cbMap.cb3).was.called(3) assert.stub(cbMap.cb3).was.called_with({type = 'vci', name = 'test-msg-vci', commentSource = ''}, 'bar', 300) vci.message.EmitWithId('bar', 400, nil) assert.stub(cbMap.cb3).was.called(4) assert.stub(cbMap.cb3).was.called_with({type = 'vci', name = 'test-msg-vci', commentSource = ''}, 'bar', 400) vci.message.EmitWithId('bar', 502, 'INVALID_ID') assert.stub(cbMap.cb3).was.called(4) vci.message.EmitWithId('bar', 503, false) assert.stub(cbMap.cb3).was.called(4) vci.message.EmitWithId('bar', 504, 0) assert.stub(cbMap.cb3).was.called(4) assert.stub(cbMap.cbComment).was.called(0) vci.fake.EmitVciCommentMessage('TestUser', 'Hello, World!') assert.stub(cbMap.cbComment).was.called(1) assert.stub(cbMap.cbComment).was.called_with({type = 'comment', name = 'TestUser', commentSource = ''}, 'comment', 'Hello, World!') vci.fake.EmitVciNicoliveCommentMessage('NicoUser', 'NicoComment') assert.stub(cbMap.cbComment).was.called(2) assert.stub(cbMap.cbComment).was.called_with({type = 'comment', name = 'NicoUser', commentSource = 'Nicolive'}, 'comment', 'NicoComment') vci.fake.EmitVciTwitterCommentMessage('TwitterUser', 'TwitterComment') assert.stub(cbMap.cbComment).was.called(3) assert.stub(cbMap.cbComment).was.called_with({type = 'comment', name = 'TwitterUser', commentSource = 'Twitter'}, 'comment', 'TwitterComment') vci.fake.EmitVciShowroomCommentMessage('ShowroomUser', 'ShowroomComment') assert.stub(cbMap.cbComment).was.called(4) assert.stub(cbMap.cbComment).was.called_with({type = 'comment', name = 'ShowroomUser', commentSource = 'Showroom'}, 'comment', 'ShowroomComment') assert.stub(cbMap.cbNotification).was.called(0) vci.fake.EmitVciNotificationMessage('HiUser', 'HiRoom') assert.stub(cbMap.cbNotification).was.called(1) assert.stub(cbMap.cbNotification).was.called_with({type = 'notification', name = 'HiUser', commentSource = ''}, 'notification', 'HiRoom') vci.fake.EmitVciJoinedNotificationMessage('YeahUser') assert.stub(cbMap.cbNotification).was.called(2) assert.stub(cbMap.cbNotification).was.called_with({type = 'notification', name = 'YeahUser', commentSource = ''}, 'notification', 'joined') vci.fake.EmitVciLeftNotificationMessage('SeeYouUser') assert.stub(cbMap.cbNotification).was.called(3) assert.stub(cbMap.cbNotification).was.called_with({type = 'notification', name = 'SeeYouUser', commentSource = ''}, 'notification', 'left') assert.stub(cbMap.cb1).was.called(3) assert.stub(cbMap.cb2).was.called(5) assert.stub(cbMap.cb3).was.called(4) assert.stub(cbMap.cbComment).was.called(4) vci.fake.ClearMessageCallbacks() vci.message.Emit('bar', 404) assert.stub(cbMap.cb3).was.called(4) assert.stub(cbMap.cb3).was_not.called_with(404) for key, val in pairs(cbMap) do cbMap[key]:revert() end vci.fake.SetVciName(lastVciName) end) end) describe('Test Avatar', function () setup(function () math.randomseed(os.time() - os.clock() * 10000) require('cytanb_fake_vci').vci.fake.Setup(_G) end) teardown(function () vci.fake.Teardown(_G) end) it('vci.studio.GetLocalAvatar', function () local ava = vci.studio.GetLocalAvatar() assert.is_true(0 < string.len(ava.GetId())) assert.are.equal('cytanb_fake_user', ava.GetName()) assert.is_true(ava.IsOwner()) assert.is_nil(ava.GetPosition()) assert.is_nil(ava.GetRotation()) assert.is_nil(ava.GetRight()) assert.is_nil(ava.GetUp()) assert.is_nil(ava.GetForward()) assert.is_nil(ava.GetBoneTransform('Hips')) assert.is_true(0 < string.len(tostring(ava.IsOwner))) ava.SetPosition(Vector3.one) assert.are.equal(Vector3.one, ava.GetPosition()) local rot = Quaternion.AngleAxis(30, Vector3.__new(1, 1, 1)) ava.SetRotation(rot) assert.are.equal(rot, ava.GetRotation()) assert.are.equal(ava.GetRight(), rot * Vector3.right) assert.are.equal(ava.GetUp(), rot * Vector3.up) assert.are.equal(ava.GetForward(), rot * Vector3.forward) ava.SetBoneTransform('Hips', { position = Vector3.__new(0, 1, 0), rotation = Quaternion.identity }) assert.are.same( { position = Vector3.__new(0, 1, 0), rotation = Quaternion.identity }, ava.GetBoneTransform('Hips') ) end) it('vci.studio.GetOwner', function () local ava = vci.studio.GetOwner() assert.is_true(ava.IsOwner()) local la = vci.studio.GetLocalAvatar() assert.are.equal(la.GetId(), ava.GetId()) end) it('vci.studio.GetAvatars', function () local cb = spy.new(function (sender, name, message) end) vci.message.On('notification', cb) local avatars = vci.studio.GetAvatars() assert.are.same(1, #avatars) local la = vci.studio.GetLocalAvatar() assert.are.same(la.GetId(), avatars[1].GetId()) assert.are.same(la.GetName(), avatars[1].GetName()) assert.are.equal(la.GetId(), vci.studio.GetOwner().GetId()) assert.spy(cb).was.called(0) vci.fake.JoinUser('80801002', 'GuestB') assert.spy(cb).was.called(1) assert.spy(cb).was.called_with({type = 'notification', name = 'GuestB', commentSource = ''}, 'notification', 'joined') local avatarsB = vci.studio.GetAvatars() assert.are.same(2, #avatarsB) for k, ava in pairs(avatarsB) do assert.are.same('number', type(k)) assert.is_true(k >= 1 and k <= 2) local id = ava.GetId() local name = ava.GetName() if id == '80801002' then assert.are.same('GuestB', name) assert.is_false(ava.IsOwner()) else assert.are.same(la.GetId(), id) assert.are.same(la.GetName(), name) assert.is_true(ava.IsOwner()) end end vci.fake.LeaveUser(la.GetId()) assert.spy(cb).was.called(2) assert.spy(cb).was.called_with({type = 'notification', name = la.GetName(), commentSource = ''}, 'notification', 'left') assert.is_false(la.IsOwner()) assert.is_nil(vci.studio.GetOwner()) local avatarsC = vci.studio.GetAvatars() assert.are.same(1, #avatarsC) local b = avatarsC[1] assert.are.same('80801002', b.GetId()) assert.are.same('GuestB', b.GetName()) vci.fake.ClearMessageCallbacks() end) end) describe('Test cytanb_fake_vci setup and teardown', function () it('Setup/Teardown', function () assert.is.falsy(package.loaded['cytanb_fake_vci']) assert.is.falsy(vci) local startsWithExists = string.startsWith ~= nil require('cytanb_fake_vci').vci.fake.Setup(_G) assert.is.truthy(package.loaded['cytanb_fake_vci']) assert.is.truthy(vci) if startsWithExists then assert.is.truthy(string.startsWith) end vci.fake.Teardown(_G) assert.is.falsy(package.loaded['cytanb_fake_vci']) assert.is.falsy(vci) if startsWithExists then assert.is.falsy(string.startsWith) end end) end)
local mock = require "deftest.mock.mock" local unload = require "deftest.util.unload" local function wait_until(cb) local co = coroutine.running() timer.delay(0.01, true, function(self, handle, elapsed_time) if cb() then timer.cancel(handle) coroutine.resume(co) end end) coroutine.yield() end local function wait_seconds(seconds) local co = coroutine.running() timer.delay(seconds, false, function(self, handle, elapsed_time) coroutine.resume(co) end) coroutine.yield() end return function() local flow local MSG_RESUME = hash("FLOW_RESUME") local broadcast1 = msg.url("broadcast1") local broadcast2 = msg.url("broadcast2") describe("flow", function() before(function() unload.unload("ludobits.") flow = require "ludobits.m.flow" mock.mock(msg) msg.post.replace(function(url, message_id, message, sender) flow.on_message(type(message_id) == "string" and hash(message_id) or message_id, message, sender) end) end) after(function() mock.unmock(msg) package.loaded["ludobits.m.flow"] = nil end) it("should return a reference to the flow when started", function() local instance = flow.start(function() end) assert(instance) end) it("should run the flow immediately when started", function() local flow_finished = false flow.start(function() flow_finished = true end) assert(flow_finished) end) it("should run the flow on a timer", function() msg.url.replace(function() return broadcast1 end) local flow_finished = false local instance = flow.start(function() flow_finished = true end) wait_until(function() return flow_finished end) assert(flow_finished) end) it("should be able to pause for a specific number of seconds", function() msg.url.replace(function() return broadcast1 end) local flow_finished = false local instance = flow.start(function() flow.delay(1) flow_finished = true end) wait_seconds(0.5) assert(not flow_finished) wait_seconds(0.75) assert(flow_finished) end) it("should be able to pause for a specific number of frames", function() msg.url.replace(function() return broadcast1 end) local flow_finished = false local instance = flow.start(function() flow.frames(20) flow_finished = true end) wait_seconds(20 * 0.02) assert(flow_finished) end) it("should be able to pause until a condition is true", function() msg.url.replace(function() return broadcast1 end) local flow_finished = false local is_it_true_yet = false local instance = flow.start(function() flow.until_true(function() return is_it_true_yet end) flow_finished = true end) wait_seconds(0.25) assert(not flow_finished) is_it_true_yet = true wait_seconds(0.25) assert(flow_finished) end) it("should be able to pause until a message is received", function() msg.url.replace(function() return broadcast1 end) local flow_finished = false local instance = flow.start(function() flow.until_any_message() flow_finished = true end) wait_seconds(0.25) assert(not flow_finished) msg.post(broadcast1, "foobar", {}) wait_seconds(0.25) assert(flow_finished) end) it("should be able to pause until a specific message is received", function() msg.url.replace(function() return broadcast1 end) local flow_finished = false local instance = flow.start(function() flow.until_message("foo", "bar") flow.until_message("boo", "car") flow_finished = true end) wait_seconds(0.25) assert(not flow_finished) msg.post(broadcast1, "bar", {}) wait_seconds(0.25) assert(not flow_finished) msg.post(broadcast1, "boo", {}) wait_seconds(0.25) assert(flow_finished) end) it("should be possible to pause until a callback is invoked", function() msg.url.replace(function() return broadcast1 end) local callback local flow_finished = false local instance = flow.start(function() flow.until_callback(function(cb, foo, bar) assert(foo == "foo") assert(bar == "bar") callback = cb end, "foo", "bar") flow_finished = true end) wait_seconds(0.25) assert(not flow_finished) callback() wait_seconds(0.25) assert(flow_finished) end) end) end
local AmbientSound local AmbientSoundTimer local SpottedBy = {} AddEvent("OnPackageStop", function() DestroySound(AmbientSound) DestroyTimer(AmbientSoundTimer) end) AddEvent("OnPackageStart", function() AmbientSound = CreateSound("client/sounds/chased.mp3", true) SetSoundVolume(AmbientSound, 0.0) AmbientSoundTimer = CreateTimer(function() if next(SpottedBy) == nil then SetSafeAmbience() end end, 10000) end) AddEvent("OnNPCStreamIn", function(npc) local type = GetNPCPropertyValue(npc, "type") if type ~= "alien" then return end ApplyAlienSkin(npc) end) function ApplyAlienSkin(npc) SetNPCClothingPreset(npc, Random(23, 24)) -- SetNPCOutline(npc, true) end AddRemoteEvent("AlienMelee", function(npc) if Random(1, 2) == 1 then local x, y, z = GetNPCLocation(npc) SetSoundVolume(CreateSound3D("client/sounds/alien_3.mp3", x, y, z, 6000.0), 1.5) end end) AddRemoteEvent("AlienAttacking", function(npc) if next(SpottedBy) == nil then ShowMessage("You have been spotted!") SetSoundVolume(AmbientSound, 0.3) local x, y, z = GetNPCLocation(npc) SetSoundVolume(CreateSound3D("client/sounds/running.wav", x, y, z, 6000.0), 2.0) end SpottedBy[npc] = true -- debug("SpottedBy:"..dump(SpottedBy)) -- chance to make noises if Random(1, 2) == 1 then -- alien attack sound Delay(Random(1, 5000), function() local x, y, z = GetNPCLocation(npc) if x and y and z then if Random(1, 2) == 1 then SetSoundVolume(CreateSound3D("client/sounds/alien.wav", x, y, z, 6000.0), 0.5) else SetSoundVolume(CreateSound3D("client/sounds/alien_2.wav", x, y, z, 6000.0), 1) end end end) end end) function SetSafeAmbience() -- SetSoundFadeOut(AmbientSound, 5000, 0.0) SetSoundVolume(AmbientSound, 0.0) end AddRemoteEvent('AlienNoLongerAttacking', function(npc) SpottedBy[npc] = nil -- debug("SpottedBy:"..dump(SpottedBy)) if next(SpottedBy) == nil then -- ShowMessage("You are safe for now") SetSafeAmbience() end end) AddEvent("OnPlayerSpawn", function() SetSoundVolume(AmbientSound, 0.0) end)
fx_version 'cerulean' game 'gta5' name 'template' client_script 'dist/client/client.js' server_script 'dist/server/server.js'
local Cuboid = assert(foundation.com.Cuboid) local ng = Cuboid.new_fast_node_box local Groups = assert(foundation.com.Groups) local FakeMetaRef = assert(foundation.com.FakeMetaRef) local is_table_empty = assert(foundation.com.is_table_empty) local is_blank = assert(foundation.com.is_blank) local data_network = assert(yatm.data_network) local reader_node_box = { type = "fixed", fixed = { ng( 0, 0, 13, 16, 16, 3), } } local function card_reader_on_construct(pos) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() inv:set_size("access_card_slot", 1) end local function reader_on_rightclick(pos, node, clicker, itemstack, pointed_thing) local nodedef = minetest.registered_nodes[node.name] local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local access_card = inv:get_stack("access_card_slot", 1) if access_card:is_empty() then if not itemstack:is_empty() then local item = itemstack:get_definition() if Groups.has_group(item, 'access_card') then local leftover = inv:add_item("access_card_slot", itemstack) if leftover:is_empty() then -- take the access card away from player itemstack:take_item(1) if nodedef.on_access_card_inserted then nodedef.on_access_card_inserted(pos, node, inv:get_stack("access_card_slot", 1)) end end end end else if itemstack:is_empty() then local leftover = itemstack:add_item(access_card) if leftover:is_empty() then inv:remove_item("access_card_slot", access_card) if nodedef.on_access_card_removed then nodedef.on_access_card_removed(pos, node, access_card) end end end end end local function reader_on_dig(pos, node, digger) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local access_card = inv:get_stack("access_card_slot", 1) if not access_card:is_empty() then return false end return minetest.node_dig(pos, node, digger) end local function card_reader_refresh_infotext(pos, node) local meta = minetest.get_meta(pos) local infotext = meta:get_string("description") .. "\n" .. data_network:get_infotext(pos) meta:set_string("infotext", infotext) end local function data_card_reader_on_construct(pos) card_reader_on_construct(pos) local node = minetest.get_node(pos) data_network:add_node(pos, node) end local function data_card_reader_after_destruct(pos, node) data_network:remove_node(pos, node) end local function data_card_reader_preserve_metadata(pos, oldnode, old_meta_table, drops) local stack = drops[1] local old_meta = FakeMetaRef:new(old_meta_table) local new_meta = stack:get_meta() yatm_security.copy_chipped_object(old_meta, new_meta) new_meta:set_string("description", old_meta:get_string("description")) end local function data_card_reader_after_place_node(pos, _placer, itemstack, _pointed_thing) local new_meta = minetest.get_meta(pos) local old_meta = itemstack:get_meta() yatm_security.copy_chipped_object(assert(old_meta), new_meta) new_meta:set_string("description", old_meta:get_string("description")) new_meta:set_string("infotext", new_meta:get_string("description")) end yatm.register_stateful_node("yatm_data_card_readers:data_card_reader", { codex_entry_id = "yatm_data_card_readers:data_card_reader", basename = "yatm_data_card_readers:data_card_reader", description = "Card Reader (DATA)", drop = "yatm_data_card_readers:data_card_reader_off", groups = { cracky = 1, chippable_object = 1, yatm_data_device = 1, data_programmable = 1, }, sunlight_propagates = false, is_ground_content = false, sounds = yatm.node_sounds:build("metal"), paramtype = "light", paramtype2 = "facedir", drawtype = "nodebox", node_box = reader_node_box, data_network_device = { type = "device", }, data_interface = { on_load = function (self, pos, node) -- end, receive_pdu = function (self, pos, node, dir, port, value) -- end, get_programmer_formspec = { default_tab = "ports", tabs = { { tab_id = "ports", title = "Ports", header = "Port Configuration", render = { { component = "io_ports", mode = "io", } }, }, } }, receive_programmer_fields = { tabbed = true, -- notify the solver that tabs are in use tabs = { { components = { { component = "io_ports", mode = "io", } } }, } }, }, refresh_infotext = card_reader_refresh_infotext, on_construct = data_card_reader_on_construct, after_destruct = data_card_reader_after_destruct, on_rightclick = reader_on_rightclick, on_dig = reader_on_dig, preserve_metadata = data_card_reader_preserve_metadata, after_place_node = data_card_reader_after_place_node, use_texture_alpha = "opaque", }, { off = { tiles = { "yatm_card_reader_reader.side.png", "yatm_card_reader_reader.side.png", "yatm_card_reader_reader.side.png", "yatm_card_reader_reader.side.png", "yatm_card_reader_data.back.off.png", "yatm_card_reader_reader.data.front.off.png", }, use_texture_alpha = "opaque", on_access_card_inserted = function (pos, node, access_card) if yatm_security.is_chipped_node(pos) then if yatm_security.is_stack_an_access_card_for_chipped_node(access_card, pos) then node.name = "yatm_data_card_readers:data_card_reader_on" local prvkey = yatm_security.get_access_card_stack_prvkey(access_card) yatm_data_logic.emit_output_data_value(pos, prvkey) else node.name = "yatm_data_card_readers:data_card_reader_error" end else -- if the swiper isn't chipped, ANY access card should work local prvkey = yatm_security.get_access_card_stack_prvkey(access_card) if is_blank(prvkey) then node.name = "yatm_data_card_readers:data_card_reader_error" else node.name = "yatm_data_card_readers:data_card_reader_on" yatm_data_logic.emit_output_data_value(pos, prvkey) end end minetest.swap_node(pos, node) end, }, on = { groups = { cracky = 1, yatm_data_device = 1, not_in_creative_inventory = 1, }, tiles = { "yatm_card_reader_reader.side.png", "yatm_card_reader_reader.side.png", "yatm_card_reader_reader.side.png", "yatm_card_reader_reader.side.png", "yatm_card_reader_data.back.on.png", "yatm_card_reader_reader.data.front.on.png", }, use_texture_alpha = "opaque", on_access_card_removed = function (pos, node, access_card) node.name = "yatm_data_card_readers:data_card_reader_off" minetest.swap_node(pos, node) end, }, error = { groups = { cracky = 1, yatm_data_device = 1, not_in_creative_inventory = 1, }, tiles = { "yatm_card_reader_reader.side.png", "yatm_card_reader_reader.side.png", "yatm_card_reader_reader.side.png", "yatm_card_reader_reader.side.png", "yatm_card_reader_data.back.error.png", "yatm_card_reader_reader.data.front.error.png", }, use_texture_alpha = "opaque", on_access_card_removed = function (pos, node, access_card) node.name = "yatm_data_card_readers:data_card_reader_off" minetest.swap_node(pos, node) end, } })
--[[ desc: Vanish, A buff of vanish. author: Musoucrow since: 2018-9-30 alter: 2019-1-24 ]]-- local _Base = require("actor.buff.base") ---@class Actor.Buff.Vanish : Actor.Buff local _Vanish = require("core.class")(_Base) function _Vanish:Exit() if (_Base.Exit(self)) then self._entity.battle.deadProcess = 1 return true end return false end return _Vanish
require "ISUI/ISPanel" require "ISUI/ISButton" require "ISUI/ISInventoryPane" require "ISUI/ISResizeWidget" require "ISUI/ISMouseDrag" require "defines" ---@class CharacterInfoPage : ISPanel CharacterInfoPage = ISPanel:derive("CharacterInfoPage"); function CharacterInfoPage:initialise() ISPanel.initialise(self); end --************************************************************************-- --** ISPanel:instantiate --** --************************************************************************-- function CharacterInfoPage:createChildren() self.avatarPanel = ISPanel:new(16, 16, 96, 96); self.avatarPanel:initialise(); self:addChild(self.avatarPanel); self.avatarPanel.backgroundColor = {r=0, g=0, b=0, a=0.8}; self.avatarPanel.borderColor = {r=1, g=1, b=1, a=0.2}; self.avatarPanel.render = CharacterInfoPage.drawAvatar; self:createAvatar(); end function CharacterInfoPage:prerender() ISPanel.prerender(self); self:drawText(self.desc:getForename().." "..self.desc:getSurname(), 128, 18, 1, 1, 1, 1, UIFont.Medium); local obs = self.desc:getObservations(); local y = 128; for i=0, obs:size()-1 do local ob = obs:get(i); if ob ~= nil then self:drawText(StringReplacer.DoCharacter(ob:getDescription(), self.desc), 16, y, 1, 1, 1, 1, UIFont.Small); else --print("error: null observation"); end y = y + 21; end end function CharacterInfoPage:createAvatar() self.avatar = IsoSurvivor.new(self.desc, nil, 0, 0, 0, false); self.avatar:setDir(IsoDirections.SE); self.avatar:PlayAnimWithSpeed("Idle", 0.1); end function CharacterInfoPage:drawAvatar() local x = self:getAbsoluteX(); local y = self:getAbsoluteY(); x = x + 96/2; y = y + 105; MainScreen.instance.avatar:drawAt(x,y); end function CharacterInfoPage:new (x, y, width, height, desc) local o = {} --o.data = {} o = ISPanel:new(x, y, width, height); setmetatable(o, self) self.__index = self o.x = x; o.y = y; o.width = width; o.height = height; o.anchorLeft = true; o.anchorRight = false; o.anchorTop = true; o.anchorBottom = false; o.desc = desc; return o end CharacterInfoPage.doInfo = function (desc) ISInfoContainer.doInfo(desc:getForename().." "..desc:getSurname(), CharacterInfoPage:new(0, 0, 100, 100, desc)); end
#!/usr/bin/env lua ------------------------------------------------------------------------------- -- Description: unit test file for iptable ------------------------------------------------------------------------------- package.cpath = "./build/?.so;" describe("iptable.network(): ", function() expose("ipt: ", function() iptable = require("iptable"); assert.is_truthy(iptable); it("no mask -> network is itself", function() netw, mlen, af = iptable.network("10.10.10.10"); assert.are_equal(iptable.AF_INET, af); assert.are_equal(-1, mlen); -- -1 means no mask was provided assert.are_equal("10.10.10.10", netw); end) it("max mask -> network is itself", function() netw, mlen, af = iptable.network("10.10.10.10/32"); assert.are_equal(iptable.AF_INET, af); assert.are_equal(32, mlen); -- -1 means no mask was provided assert.are_equal("10.10.10.10", netw); end) it("zero mask -> network is all zeros", function() netw, mlen, af = iptable.network("10.10.10.10/0"); assert.are_equal(iptable.AF_INET, af); assert.are_equal(0, mlen); -- -1 means no mask was provided assert.are_equal("0.0.0.0", netw); end) it("normal mask -> network address", function() netw, mlen, af = iptable.network("10.10.10.10/8"); assert.are_equal(iptable.AF_INET, af); assert.are_equal(8, mlen); -- -1 means no mask was provided assert.are_equal("10.0.0.0", netw); end) it("normal mask -> network address", function() netw, mlen, af = iptable.network("10.10.10.10/30"); assert.are_equal(iptable.AF_INET, af); assert.are_equal(30, mlen); -- -1 means no mask was provided assert.are_equal("10.10.10.8", netw); end) it("yields nils when args absent", function() netw, mlen, af = iptable.network(); assert.are_equal(nil, af); assert.are_equal(nil, mlen); -- -1 means no mask was provided assert.are_equal(nil, netw); end) it("yields nils when args non-string", function() netw, mlen, af = iptable.network(true); assert.are_equal(nil, af); assert.are_equal(nil, mlen); -- -1 means no mask was provided assert.are_equal(nil, netw); end) it("yields nils for illegal prefixes", function() netw, mlen, af = iptable.network("10.10.10.10/-1"); assert.are_equal(nil, af); assert.are_equal(nil, mlen); -- -1 means no mask was provided assert.are_equal(nil, netw); end) it("yields nils for illegal prefixes", function() netw, mlen, af = iptable.network("10.10.10.10/33"); assert.are_equal(nil, af); assert.are_equal(nil, mlen); -- -1 means no mask was provided assert.are_equal(nil, netw); end) end) end)
bars = shader('Shaders/ZXSpectrumBars.mgfxo') title = text(_TEXT); function reset() x = 1920 i = 0 bombdone = false bombtime = 0 end function draw(time) bars.set("Time", time); bars.set("Rand", math.random(1, 100)); bars.on(); title.draw(); bars.off(); end
----------------------------------------- -- ID: 28540 -- Warp Ring -- Transports the user to their Home Point ----------------------------------------- require("scripts/globals/teleports") require("scripts/globals/status") ----------------------------------------- function onItemCheck(target) return 0 end function onItemUse(target) target:addStatusEffectEx(tpz.effect.TELEPORT,0,tpz.teleport.id.WARP,0,1) end
local polled = false return Def.ActorFrame { InitCommand = function(self) self:x(26) if SL.IsEtterna then self:SetUpdateFunction( function() polled = false end ):SetUpdateFunctionInterval(0.05) end end, Def.Quad { BeginCommand = function(self) self:diffuse(color("#000a11")):zoomto(_screen.w / 2.1675, _screen.h / 15):diffusealpha(0.5) self.top = SCREENMAN:GetTopScreen() self.wheel = self.top:GetMusicWheel() end, LeftClickMessageCommand = SL.IsEtterna and function(self) local mouse = getMousePosition() local mx, my = mouse.x, mouse.y if polled then return end local x, y, w, h = self:GetTrueX(), self:GetTrueY(), self:GetWidth() * self:GetZoomX(), self:GetHeight() * self:GetZoomY() local b = mx > x - w / 2 and my > y - h / 2 and mx < x + w / 2 and my < y + h / 2 if b then polled = true local n = math.floor(my / h) - 7 local doot = self.wheel:MoveAndCheckType(n) self.wheel:Move(0) if n == 0 or doot == "WheelItemDataType_Section" then self.top:SelectCurrent(0) end end end or nil }, Def.Quad { InitCommand = function(self) self:diffuse(ThemePrefs.Get("RainbowMode") and Color.White or color("#0a141b")):diffusealpha( ThemePrefs.Get("RainbowMode") and 0.5 or 1 ):zoomto(_screen.w / 2.1675, _screen.h / 15 - 1) end } }
return { { effect_list = { { type = "BattleBuffFixAmmo", trigger = { "onAttach" }, arg_list = { damage_rate = 1, index = { 2 } } } } }, { effect_list = { { type = "BattleBuffFixAmmo", trigger = { "onAttach" }, arg_list = { damage_rate = 1.016, index = { 2 } } } } }, { effect_list = { { type = "BattleBuffFixAmmo", trigger = { "onAttach" }, arg_list = { damage_rate = 1.032, index = { 2 } } } } }, { effect_list = { { type = "BattleBuffFixAmmo", trigger = { "onAttach" }, arg_list = { damage_rate = 1.05, index = { 2 } } } } }, { effect_list = { { type = "BattleBuffFixAmmo", trigger = { "onAttach" }, arg_list = { damage_rate = 1.066, index = { 2 } } } } }, { effect_list = { { type = "BattleBuffFixAmmo", trigger = { "onAttach" }, arg_list = { damage_rate = 1.082, index = { 2 } } } } }, { effect_list = { { type = "BattleBuffFixAmmo", trigger = { "onAttach" }, arg_list = { damage_rate = 1.1, index = { 2 } } } } }, { effect_list = { { type = "BattleBuffFixAmmo", trigger = { "onAttach" }, arg_list = { damage_rate = 1.116, index = { 2 } } } } }, { effect_list = { { type = "BattleBuffFixAmmo", trigger = { "onAttach" }, arg_list = { damage_rate = 1.132, index = { 2 } } } } }, { effect_list = { { type = "BattleBuffFixAmmo", trigger = { "onAttach" }, arg_list = { damage_rate = 1.15, index = { 2 } } } } }, time = 0, name = "", init_effect = "jinengchufared", color = "red", picture = "", desc = "对护甲伤害倍率提高", stack = 1, id = 2150, icon = 2150, last_effect = "", blink = { 1, 0, 0, 0.3, 0.3 }, effect_list = { { type = "BattleBuffFixAmmo", trigger = { "onAttach" }, arg_list = { damage_rate = 1, index = { 2 } } } } }
vim.opt.completeopt = { "menu", "menuone", "noselect" } -- Don't show the dumb matching stuff. vim.opt.shortmess:append("c") local cmp = require("cmp") -- TODO setup cmp highlights cmp.setup({ snippet = { expand = function(args) require("luasnip").lsp_expand(args.body) end, }, mapping = cmp.mapping.preset.insert({ ["<C-u>"] = cmp.mapping.scroll_docs(-4), ["<C-d>"] = cmp.mapping.scroll_docs(4), ["<C-Space>"] = cmp.mapping.complete(), ["<C-e>"] = cmp.mapping.close(), --["<CR>"] = cmp.mapping.confirm({ select = true }), ["<c-y>"] = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = true, }), }), sources = { { name = "emoji" }, { name = "nvim_lua" }, { name = "nvim_lsp" }, { name = "path" }, { name = "luasnip" }, { name = "buffer", keyword_length = 5 }, }, formatting = { -- Youtube: How to set up nice formatting for your sources. format = require("lspkind").cmp_format({ with_text = true, menu = { buffer = "[buf]", nvim_lsp = "[LSP]", nvim_lua = "[api]", path = "[path]", luasnip = "[snip]", gh_issues = "[issues]", }, }), }, experimental = { -- I like the new menu better! Nice work hrsh7th native_menu = false, -- Let's play with this for a day or two ghost_text = true, }, })
cflags{ '-I $outdir', '-I $srcdir', '-I $srcdir/mi', '-I $srcdir/parse', '-I $srcdir/util', } yacc('gram', '$srcdir/parse/gram.y') build('copy', '$outdir/gram.h', '$outdir/gram.tab.h') lib('libparse.a', [[ $outdir/gram.tab.c parse/( dump.c err.c export.c fold.c infer.c names.c node.c specialize.c stab.c tok.c type.c use.c ) ]], {'$outdir/gram.h'}) lib('libmi.a', 'mi/(cfg.c flatten.c dfcheck.c match.c reaching.c)') lib('libutil.a', 'util/(alloc.c bitset.c htab.c pack.c util.c)') exe('bin/6m', [[ 6/( blob.c gen.c gengas.c genp9.c isel.c locs.c main.c ra.c peep.c simp.c typeinfo.c ) libmi.a libparse.a libutil.a ]]) file('bin/6m', '755', '$outdir/bin/6m') exe('bin/muse', {'muse/muse.c', 'libparse.a', 'libutil.a'}) file('bin/muse', '755', '$outdir/bin/muse') build('cat', '$outdir/_myrrt.s', { '$srcdir/rt/start-linux.s', '$srcdir/rt/common.s', '$srcdir/rt/abort-linux.s', }) build('as', '$outdir/_myrrt.o', '$outdir/_myrrt.s') file('lib/myr/_myrrt.o', '644', '$outdir/_myrrt.o') set('mcflags', { '-I $outdir/lib/sys', '-I $outdir/lib/std', '-I $outdir/lib/bio', '-I $outdir/lib/iter', '-I $outdir/lib/regex', '-I $outdir/lib/thread', }) include '$dir/myr.ninja' local libs = { 'bio', 'crypto', 'date', 'escfmt', 'fileutil', 'flate', 'http', 'inifile', 'iter', 'json', 'math', 'regex', 'std', 'sys', 'testr', 'thread', } for _, lib in ipairs(libs) do file('lib/myr/lib'..lib..'.use', '644', '$outdir/lib/'..lib..'/lib'..lib..'.use') file('lib/myr/lib'..lib..'.a', '644', '$outdir/lib/'..lib..'/lib'..lib..'.a') end file('bin/mbld', '755', '$outdir/mbld/mbld') man{'doc/6m.1', 'doc/muse.1', 'mbld/mbld.1'} fetch 'git'
--ZFUNC-isabsolute-v1 local function isabsolute( path ) --> res --ZFUNC-rootprefix-v1 local function rootprefix( path ) local remote = path:match[[^//%w+/]] or path:match[[^\\%w+\]] if remote then return remote end local unix = path:sub( 1, 1 ) if unix == "/" then return unix end local win = path:match[=[^[a-zA-Z]:[\/]]=] if win then return win end return "" end return rootprefix( path ) ~= "" end return isabsolute
--[[ Copyright (c) 2009, Hendrik "Nevcairiel" Leppkes < h.leppkes at gmail dot com > All rights reserved. ]] --[[ Generic Bar Frame Template ]] local _, Bartender4 = ... local Bar = CreateFrame("Button") local Bar_MT = {__index = Bar} local table_concat, table_insert, tostring, assert, pairs, min, max = table.concat, table.insert, tostring, assert, pairs, min, max local setmetatable, tonumber = setmetatable, tonumber -- GLOBALS: SpellFlyout, UIParent, GameFontNormal -- GLOBALS: CreateFrame, MouseIsOver, RegisterStateDriver, UnregisterStateDriver --[[=================================================================================== Universal Bar Contructor ===================================================================================]]-- local defaults = { alpha = 1, fadeout = false, fadeoutalpha = 0.1, fadeoutdelay = 0.2, visibility = { vehicleui = true, overridebar = true, stance = {}, }, position = { scale = 1, growVertical = "DOWN", growHorizontal = "RIGHT", }, clickthrough = false, } local Sticky = LibStub("LibSimpleSticky-1.0") local LibWin = LibStub("LibWindow-1.1") local snapBars = { WorldFrame, UIParent } local barOnEnter, barOnLeave, barOnDragStart, barOnDragStop, barOnClick, barOnUpdateFunc, barOnAttributeChanged do function barOnEnter(self) if not self:GetParent().isMoving then self:SetBackdropBorderColor(0.5, 0.5, 0, 1) end end function barOnLeave(self) self:SetBackdropBorderColor(0, 0, 0, 0) end local function barReAnchorForSnap(self) local x,y,anchor = nil, nil, self:GetAnchor() x = (self.config.position.growHorizontal == "RIGHT") and self:GetLeft() or self:GetRight() y = (self.config.position.growVertical == "DOWN") and self:GetTop() or self:GetBottom() self:ClearSetPoint(anchor, UIParent, "BOTTOMLEFT", x, y) self:SetWidth(self.overlay:GetWidth()) self:SetHeight(self.overlay:GetHeight()) end local function barReAnchorNormal(self) local x,y,anchor = nil, nil, self:GetAnchor() x = (self.config.position.growHorizontal == "RIGHT") and self:GetLeft() or self:GetRight() y = (self.config.position.growVertical == "DOWN") and self:GetTop() or self:GetBottom() self:ClearSetPoint(anchor, UIParent, "BOTTOMLEFT", x, y) self:SetWidth(1) self:SetHeight(1) end function barOnDragStart(self) local parent = self:GetParent() if Bartender4.db.profile.snapping then local offset = 8 - (parent.config.padding or 0) -- we need to re-anchor the bar and set its proper width for snaping to work properly barReAnchorForSnap(parent) Sticky:StartMoving(parent, snapBars, offset, offset, offset, offset) else parent:StartMoving() end self:SetBackdropBorderColor(0, 0, 0, 0) parent.isMoving = true end function barOnDragStop(self) local parent = self:GetParent() if parent.isMoving then if Bartender4.db.profile.snapping then local sticky, stickTo = Sticky:StopMoving(parent) barReAnchorNormal(parent) --Bartender4:Print(sticky, stickTo and stickTo:GetName() or nil) else parent:StopMovingOrSizing() end parent:SavePosition() parent.isMoving = nil end end function barOnClick(self) -- TODO: Hide/Show bar on Click -- TODO: Once dropdown config is stable, show dropdown on rightclick end function barOnUpdateFunc(self, elapsed) self.elapsed = self.elapsed + elapsed if self.elapsed > self.config.fadeoutdelay then self:ControlFadeOut() self.elapsed = 0 end end function barOnAttributeChanged(self, attribute, value) if attribute == "fade" then if value then self:SetScript("OnUpdate", barOnUpdateFunc) self:ControlFadeOut(true) else self:SetScript("OnUpdate", nil) self.faded = nil self:SetConfigAlpha() end end end end local barregistry = {} Bartender4.Bar = {} Bartender4.Bar.defaults = defaults Bartender4.Bar.prototype = Bar Bartender4.Bar.barregistry = barregistry function Bartender4.Bar:Create(id, config, name) id = tostring(id) assert(not barregistry[id], "duplicated entry in barregistry.") local bar = setmetatable(CreateFrame("Frame", ("BT4Bar%s"):format(id), UIParent, "SecureHandlerStateTemplate"), Bar_MT) barregistry[id] = bar bar.id = id bar.name = name or id bar.config = config bar:SetMovable(true) bar:HookScript("OnAttributeChanged", barOnAttributeChanged) bar:SetWidth(1) bar:SetHeight(1) local overlay = CreateFrame("Button", bar:GetName() .. "Overlay", bar) bar.overlay = overlay overlay.bar = bar table_insert(snapBars, overlay) overlay:EnableMouse(true) overlay:RegisterForDrag("LeftButton") overlay:RegisterForClicks("LeftButtonUp") overlay:SetBackdrop({ bgFile = "Interface\\Tooltips\\UI-Tooltip-Background", tile = true, tileSize = 16, edgeFile = "Interface\\Tooltips\\UI-Tooltip-Border", edgeSize = 16, insets = {left = 5, right = 3, top = 3, bottom = 5} }) overlay:SetBackdropColor(0, 1, 0, 0.5) overlay:SetBackdropBorderColor(0.5, 0.5, 0, 0) overlay.Text = overlay:CreateFontString(nil, "ARTWORK") overlay.Text:SetFontObject(GameFontNormal) overlay.Text:SetText(name) overlay.Text:Show() overlay.Text:ClearAllPoints() overlay.Text:SetPoint("CENTER", overlay, "CENTER") overlay:SetScript("OnEnter", barOnEnter) overlay:SetScript("OnLeave", barOnLeave) overlay:SetScript("OnDragStart", barOnDragStart) overlay:SetScript("OnDragStop", barOnDragStop) overlay:SetScript("OnClick", barOnClick) overlay:SetFrameLevel(bar:GetFrameLevel() + 10) bar:AnchorOverlay() overlay:Hide() bar.elapsed = 0 bar.hidedriver = {} return bar end function Bartender4.Bar:GetAll() return pairs(barregistry) end function Bartender4.Bar:ForAll(method, ...) for _,bar in self:GetAll() do local func = bar[method] if func then func(bar, ...) end end end --[[=================================================================================== Universal Bar Prototype ===================================================================================]]-- Bar.BT4BarType = "Bar" function Bar:ApplyConfig(config) if config then self.config = config end LibWin.RegisterConfig(self, self.config.position) self:UpgradeConfig() if self.disabled then return end if Bartender4.Locked then self:Lock() else self:Unlock() end self:LoadPosition() self:SetConfigScale() self:SetConfigAlpha() self:SetClickThrough() self:InitVisibilityDriver() end function Bar:GetAnchor() return ((self.config.position.growVertical == "DOWN") and "TOP" or "BOTTOM") .. ((self.config.position.growHorizontal == "RIGHT") and "LEFT" or "RIGHT") end function Bar:AnchorOverlay() self.overlay:ClearAllPoints() local anchor = self:GetAnchor() self.overlay:SetPoint(anchor, self, anchor) end function Bar:UpgradeConfig() local version = self.config.version or 1 if version < 2 then -- LibWindow migration, move scale into position if self.config.scale then self.config.position.scale = self.config.scale self.config.scale = nil end -- LibWindow migration, update position data do local pos = self.config.position self:SetScale(pos.scale) local x, y, s = pos.x, pos.y, self:GetEffectiveScale() local point, relPoint = pos.point, pos.relPoint if x and y and point and relPoint then x, y = x/s, y/s self:ClearSetPoint(point, UIParent, relPoint, x, y) self:SavePosition() pos.relPoint = nil end end end if version < 3 then -- Size adjustment is done in first SetSize self.needSizeFix = true end self.config.version = Bartender4.CONFIG_VERSION end function Bar:Unlock() if self.disabled or self.unlocked then return end self.unlocked = true self:DisableVisibilityDriver() self:Show() self.overlay:Show() end function Bar:Lock() if self.disabled or not self.unlocked then return end self.unlocked = nil self:StopDragging() self:ApplyVisibilityDriver() self.overlay:Hide() end function Bar:StopDragging() barOnDragStop(self.overlay) end function Bar:LoadPosition() LibWin.RestorePosition(self) end function Bar:SavePosition() LibWin.SavePosition(self) end function Bar:SetSize(width, height) self.overlay:SetWidth(width) self.overlay:SetHeight(height or width) if self.needSizeFix then self:SetWidth(width) self:SetHeight(height or width) local x, y = self:GetLeft(), self:GetTop() self:ClearSetPoint("TOPLEFT", UIParent, "BOTTOMLEFT", x, y) self:SetWidth(1) self:SetHeight(1) self:SavePosition() self.needSizeFix = nil end end function Bar:GetConfigAlpha() return self.config.alpha end function Bar:SetConfigAlpha(alpha) if alpha then self.config.alpha = alpha end if not self.faded then self:SetAlpha(self.config.alpha) if self.ForAll then self:ForAll("UpdateAlpha") end end end function Bar:GetConfigScale() return self.config.position.scale end function Bar:SetConfigScale(scale) if scale then LibWin.SetScale(self, scale) end end function Bar:GetClickThrough() return self.config.clickthrough end function Bar:SetClickThrough(click) if click ~= nil then self.config.clickthrough = click end if self.ControlClickThrough then self:ControlClickThrough() end end function Bar:GetFadeOut() return self.config.fadeout end function Bar:SetFadeOut(fadeout) if fadeout ~= nil then self.config.fadeout = fadeout self:InitVisibilityDriver() end end function Bar:GetFadeOutAlpha() return self.config.fadeoutalpha end function Bar:SetFadeOutAlpha(fadealpha) if fadealpha ~= nil then self.config.fadeoutalpha = fadealpha end if self.faded then self:SetAlpha(self.config.fadeoutalpha) if self.ForAll then self:ForAll("UpdateAlpha") end end end function Bar:GetFadeOutDelay() return self.config.fadeoutdelay end function Bar:SetFadeOutDelay(delay) if delay ~= nil then self.config.fadeoutdelay = delay end end local function MouseIsOverBar(bar) if MouseIsOver(bar.overlay) or (SpellFlyout and SpellFlyout:IsShown() and SpellFlyout:GetParent() and SpellFlyout:GetParent():GetParent() == bar and MouseIsOver(SpellFlyout)) then return true end return false end function Bar:ControlFadeOut(refresh) local changed = false if self.faded and MouseIsOverBar(self) then self:SetAlpha(self.config.alpha) self.faded = nil changed = true elseif (not self.faded or refresh) and not MouseIsOverBar(self) then local fade = self:GetAttribute("fade") if tonumber(fade) then fade = min(max(fade, 0), 100) / 100 self:SetAlpha(fade) else self:SetAlpha(self.config.fadeoutalpha or 0) end self.faded = true changed = true end if changed and self.ForAll then self:ForAll("UpdateAlpha") end end local directVisCond = { pet = true, nopet = true, combat = true, nocombat = true, mounted = true, } function Bar:InitVisibilityDriver(returnOnly) local tmpDriver if returnOnly then tmpDriver = self.hidedriver else UnregisterStateDriver(self, 'vis') end self.hidedriver = {} self:SetAttribute("_onstate-vis", [[ if not newstate then return end if newstate == "show" then self:Show() self:SetAttribute("fade", false) elseif strsub(newstate, 1, 4) == "fade" then self:Show() self:SetAttribute("fade", (newstate == "fade") and true or strsub(newstate, 6)) elseif newstate == "hide" then self:Hide() end ]]) if self.config.visibility.custom and not returnOnly then table_insert(self.hidedriver, self.config.visibility.customdata or "") else for key, value in pairs(self.config.visibility) do if value then if key == "always" then table_insert(self.hidedriver, "hide") elseif key == "possess" then table_insert(self.hidedriver, "[possessbar]hide") elseif key == "overridebar" then table_insert(self.hidedriver, "[overridebar]hide") elseif key == "vehicleui" then table_insert(self.hidedriver, "[vehicleui]hide") elseif key == "vehicle" then table_insert(self.hidedriver, "[target=vehicle,exists]hide") elseif directVisCond[key] then table_insert(self.hidedriver, ("[%s]hide"):format(key)) elseif key == "stance" then for k,v in pairs(value) do if v then table_insert(self.hidedriver, ("[stance:%d]hide"):format(k)) end end elseif key == "custom" or key == "customdata" then -- do nothing else Bartender4:Print("Invalid visibility state: "..key) end end end end -- always hide in petbattles table_insert(self.hidedriver, 1, "[petbattle]hide") -- add fallback at the end table_insert(self.hidedriver, self.config.fadeout and "fade" or "show") if not returnOnly then self:ApplyVisibilityDriver() else self.hidedriver, tmpDriver = tmpDriver, self.hidedriver return table_concat(tmpDriver, ";") end end function Bar:ApplyVisibilityDriver() if self.unlocked then return end -- default state is shown local driver = table_concat(self.hidedriver, ";") RegisterStateDriver(self, "vis", driver) end function Bar:DisableVisibilityDriver() UnregisterStateDriver(self, "vis") self:SetAttribute("state-vis", "show") self:Show() end function Bar:GetVisibilityOption(option, index) if option == "stance" then return self.config.visibility.stance[index] else return self.config.visibility[option] end end function Bar:SetVisibilityOption(option, value, arg) if option == "stance" then self.config.visibility.stance[value] = arg else self.config.visibility[option] = value end self:InitVisibilityDriver() end function Bar:CopyCustomConditionals() self.config.visibility.customdata = self:InitVisibilityDriver(true) self:InitVisibilityDriver() end function Bar:Enable() if not self.disabled then return end self.disabled = nil end function Bar:Disable() if self.disabled then return end self:Lock() self.disabled = true self:UnregisterAllEvents() self:DisableVisibilityDriver() self:SetAttribute("state-vis", nil) self:Hide() end --[[ Lazyness functions ]] function Bar:ClearSetPoint(...) self:ClearAllPoints() self:SetPoint(...) end
#!/usr/bin/wpexec --[[ WP Virtual HSP/HFP mic This is a wireplumber standalone script or plugin that creates a virtual mic for every bluetooth device that supports both HSP/HFP and A2DP profiles. This virtual mic is automatically connected to the actual mic when it exists and the profile is automatically changed to HSP/HFP when the virtual mic is connected to a client. Thus, you only need to configure the virtual mic as a source in your applications, and when these applications connect to the virtual mic the profile is automatically changed. There are three moving cogs: Whenever a BT device that supports both profiles, a virtual node is created Whenever the HSP/HFP mic is detected, it's connected to the virtual node The BT profile is changed depending on whether or not the virtual node has clients Wireplumber's bt-profile-switch.lua example was really helpful to learn how to deal with its BT API Author: Jose Maria Perez Ramos <jose.m.perez.ramos+git gmail> License: MIT Copyright 2022 Jose Maria Perez Ramos THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ]] local default_config = {profile_debounce_time_ms = 1000} -- setmetatable unavailable :( local config = ... or {} for k, v in pairs(default_config) do if type(v) == "number" then config[k] = tonumber(config[k]) or v elseif type(v) == "boolean" then local config_v = config[k] if type(config_v) == "boolean" then elseif config_v == "true" then config[k] = true elseif config_v == "false" then config[k] = false else config[k] = v end end end -- BT Device Id to Virtual Source node items local virtual_sources = { -- BT Device Id = { -- node = Virtual Source node (keeps the reference alive) -- in_port_id = Virtual Source In Port id -- out_port_om = Virtual Source Out Port OM (keeps the reference alive) -- } } -- BT Device Id to debounce timers local debounce_timers = { -- BT Device Id = Profile change debounce timer (keeps the reference) } local real_sources = { -- BT Device Id = { -- node_id = Real Source Node id -- port_id = Real Source Out port id -- } } local links = { -- BT Device Id = Link (keeps the reference alive) } local function replace_destroy(table, key, value, level) -- setmetatable unavailable :( level = level or 0 if level > 10 then return end local obj = table[key] if type(obj) == "userdata" then if obj.request_destroy then obj:request_destroy() elseif obj.destroy then obj:destroy() end elseif type(obj) == "table" then for k in pairs(obj) do replace_destroy(obj, k, nil, level + 1) end end table[key] = value end local function get_bound_id(object) return object and object["bound-id"] end local function get_device_id(object) return object and object.properties and tonumber(object.properties['device.id']) end local function maybe_link(device_id) local virtual_source = virtual_sources[device_id] or {} local real_source = real_sources[device_id] or {} if virtual_source.node and virtual_source.in_port_id and real_source.node_id and real_source.port_id then if not links[device_id] then local link = Link("link-factory", { ["link.input.node"] = get_bound_id(virtual_source.node), ["link.input.port"] = virtual_source.in_port_id, ["link.output.node"] = real_source.node_id, ["link.output.port"] = real_source.port_id, }) links[device_id] = link link:activate(Feature.Proxy.BOUND) Log.debug(link, "Ready") end else replace_destroy(links, device_id, nil) end end do -- Device profile is changed based on links -- There's a debounce timer to avoid too frequent changes local function change_profile_in_device_node(device, index) local callback = function() Log.debug(device, "Execute the change") device:set_param("Profile", Pod.Object{"Spa:Pod:Object:Param:Profile", "Profile", index = index}) replace_destroy(debounce_timers, get_bound_id(device), nil) return false end local timeout = config.profile_debounce_time_ms if timeout > 0 then replace_destroy(debounce_timers, get_bound_id(device), Core.timeout_add(timeout, callback)) else callback() end end local function generate_change_profile_based_on_links_fun(device, profile_to_index, decreasing) -- Keeps a reference to device as upvalue, but with the device removal -- the om is removed too (and thus these callbacks) return function(om) if (virtual_sources[get_bound_id(device)] or {}).out_port_om ~= om then -- The active OM is not the one this callback is for, it's going to be -- deleted shortly return end local n_objects = om:get_n_objects() if n_objects == 0 then Log.debug(device, "Schedule change to a2dp") change_profile_in_device_node(device, profile_to_index["a2dp-sink"]) elseif n_objects == 1 and not decreasing then Log.debug(device, "Schedule change to HSP/HFP") change_profile_in_device_node(device, profile_to_index["headset-head-unit"]) end end end -- Virtual source node is created for those devices that support -- both a2dp and headset profiles -- The node is deleted when the device is removed bt_devices_om = ObjectManager { Interest { type = "device", Constraint{"media.class", "=", "Audio/Device"}, Constraint{"device.api", "=", "bluez5"}, } } bt_devices_om:connect("object-added", function(_, device) local profile_to_index = {} for profile in device:iterate_params("EnumProfile") do profile = profile:parse() profile_to_index[profile.properties.name] = profile.properties.index if profile_to_index["a2dp-sink"] and profile_to_index["headset-head-unit"] then Log.debug(device, "Creating dummy HSP/HFP node") local device_id = get_bound_id(device) local device_name = device.properties["device.name"] local properties = { ["factory.name"] = "support.null-audio-sink", ["media.class"] = "Audio/Source/Virtual", ["node.name"] = device_name..".virtual_hsphfp_mic", ["node.description"] = (device.properties["device.description"] or "").." virtual HSP/HFP mic", ["audio.position"] = "MONO", ["object.linger"] = false, -- Do not keep node if script terminates ["device.id"] = device_id, } local device_priority = config.device_priority device_priority = type(device_priority) == "table" and device_priority[device_name] or device_priority if device_priority then properties["priority.session"] = tonumber(config.device_priority) or 2011 -- bluez default highest priority is 2010 end local node = Node("adapter", properties) local virtual_source = {node = node} replace_destroy(virtual_sources, device_id, virtual_source) node:connect("ports-changed", function(node) -- Even if this triggers after the node destruction has been -- requested it does not matter because the globals have been -- removed (virtual_sources) or are no longer valid (device) Log.debug(device, "Dummy HSP/HFP node ports changed") -- Modify link status virtual_source.in_port_id = get_bound_id(node:lookup_port{Constraint{"port.direction", "=", "in"}}) maybe_link(device_id) -- Monitor number of links for clients in the virtual node local out_port = node:lookup_port{Constraint{"port.direction", "=", "out"}} if out_port then local om = ObjectManager{ Interest{ type = "Link", Constraint{"link.output.node", "=", get_bound_id(node)}, Constraint{"link.output.port", "=", get_bound_id(out_port)}, } } virtual_source.out_port_om = om om:connect("object-added", generate_change_profile_based_on_links_fun(device, profile_to_index)) om:connect("object-removed", generate_change_profile_based_on_links_fun(device, profile_to_index, true)) om:connect("installed", generate_change_profile_based_on_links_fun(device, profile_to_index)) om:activate() else virtual_source.out_port_om = nil replace_destroy(debounce_timers, device_id, nil) end end) node:activate(Features.ALL) break end end end) bt_devices_om:connect("object-removed", function(_, device) local device_id = get_bound_id(device) replace_destroy(virtual_sources, device_id, nil) maybe_link(device_id) replace_destroy(debounce_timers, device_id, nil) end) bt_devices_om:activate() end do -- When both the virtual node and the headset profile node exist, -- they are linked together local function ports_changed_callback(source) local device_id = get_device_id(source) local real_source = real_sources[device_id] if (real_source or {}).node_id == get_bound_id(source) then -- Protect against race conditions real_source.port_id = get_bound_id(source:lookup_port{Constraint{"port.direction", "=", "out"}}) Log.debug(source, "Real HSP/HFP node ports changed") maybe_link(device_id) end end sources_om = ObjectManager { Interest { type = "node", Constraint{"media.class", "=", "Audio/Source"}, } } sources_om:connect("object-added", function(_, source) local device_id = get_device_id(source) if not virtual_sources[device_id] then return end -- A Source was added with its device matching one of -- the interesting ones -- It's assumed that the device event is always triggered -- before this source's Log.debug(source, "Virtual source found") replace_destroy(real_sources, device_id, {node_id = get_bound_id(source)}) source:connect("ports-changed", ports_changed_callback) ports_changed_callback(source) end) sources_om:connect("object-removed", function(_, source) local device_id = get_device_id(source) if (real_source or {}).node_id == get_bound_id(source) then -- Protect against race conditions Log.debug(source, "Remove") replace_destroy(real_sources, device_id, nil) maybe_link(device_id) end end) sources_om:activate() end
local playsession = { {"rjdunlap", {14194}}, {"XaLpHa1989", {871}}, {"Ed9210", {343987}}, {"James_Hackett", {522444}}, {"Preums", {21565}}, {"adam1285", {3695}}, {"Dimon312", {28765}}, {"HYPPS", {262004}}, {"Cloudtv", {3133}}, {"Weizenbrot", {96983}}, {"jackazzm", {70063}}, {"yulingqixiao", {4898}}, {"beranabus", {39012}}, {"JackyChaing", {6882}}, {"thefunnykinger", {2067}}, {"EPO666", {25212}} } return playsession
local Zip_mt = {} local Zip = {} local status, ffi = pcall(require, "ffi") -- print(ffi.abi('le')) ffi.cdef([[ typedef struct __attribute__((packed)) { uint32_t header; // offset 0 uint16_t minVersion; // offset 4 uint16_t generalFlag; // offset 6 uint16_t compressionMethod; // offset 8 uint16_t lastModifiedTime; // offset 10 uint16_t lastModifiedData; // offset 12 uint32_t crc32; // offset 14 uint32_t compressedSize; // offset 18 uint32_t uncompressedSize; // offset 26 uint16_t fileNameLength; // offset 28 uint16_t extraFieldLength; // offset 30 // uint8_t fileName[fileNameLength]; // uint8_t extraField[extraFieldLength]; } lua_zip_file_entry; // File record typedef struct __attribute__((packed)) { uint32_t header; // offset 0 uint16_t version; // offset 4 uint16_t minVersion; // offset 6 uint16_t generalFlag; // offset 8 uint16_t compressionMethod; // offset 10 uint16_t lastModifiedTime; // offset 12 uint16_t lastModifiedData; // offset 14 uint32_t crc32; // offset 16 uint32_t compressedSize; // offset 20 uint32_t uncompressedSize; // offset 24 uint16_t fileNameLength; // offset 28 uint16_t extraFieldLength; // offset 30 uint16_t fileCommentLength; // offset 32 uint16_t diskNumberFileStarts; // offset 34 uint16_t internalFileAttributes; // offset 36 uint32_t externalFileAttributes; // offset 38 uint32_t fileHeaderOffset; // offset 42 // uint8_t fileName[fileNameLength]; // uint8_t extraField[extraFieldLength]; // uint8_t fileComment[fileCommentLength]; } lua_zip_central_directory; // Central Directory record typedef struct __attribute__((packed)) { uint32_t header; // offset 0 uint16_t numberOfDisk; // offset 4 uint16_t diskWhereCentralDir; // offset 6 uint16_t numberCentralDirsOnDisk; // offset 8 uint16_t totalCentralDirs; // offset 10 uint32_t sizeOfCentralDir; // offset 12 uint32_t offsetOfCentralDir; // offset 16 uint16_t commentLength; // offset 20 // uint8_t comment[commentLength]; } lua_zip_eocd; // End Of Central Directory record typedef struct { union { uint32_t h; uint8_t b[4]; }; } lua_zip_header; // just useful, not important // https://github.com/hamishforbes/lua-ffi-zlib mostly // MIT License // Copyright (c) 2016 Hamish Forbes // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. enum { Z_NO_FLUSH = 0, Z_PARTIAL_FLUSH = 1, Z_SYNC_FLUSH = 2, Z_FULL_FLUSH = 3, Z_FINISH = 4, Z_BLOCK = 5, Z_TREES = 6, /* Allowed flush values; see deflate() and inflate() below for details */ Z_OK = 0, Z_STREAM_END = 1, Z_NEED_DICT = 2, Z_ERRNO = -1, Z_STREAM_ERROR = -2, Z_DATA_ERROR = -3, Z_MEM_ERROR = -4, Z_BUF_ERROR = -5, Z_VERSION_ERROR = -6, /* Return codes for the compression/decompression functions. Negative values * are errors, positive values are used for special but normal events. */ Z_NO_COMPRESSION = 0, Z_BEST_SPEED = 1, Z_BEST_COMPRESSION = 9, Z_DEFAULT_COMPRESSION = -1, /* compression levels */ Z_FILTERED = 1, Z_HUFFMAN_ONLY = 2, Z_RLE = 3, Z_FIXED = 4, Z_DEFAULT_STRATEGY = 0, /* compression strategy; see deflateInit2() below for details */ Z_BINARY = 0, Z_TEXT = 1, Z_ASCII = Z_TEXT, /* for compatibility with 1.2.2 and earlier */ Z_UNKNOWN = 2, /* Possible values of the data_type field (though see inflate()) */ Z_DEFLATED = 8, /* The deflate compression method (the only one supported in this version) */ Z_NULL = 0, /* for initializing zalloc, zfree, opaque */ }; typedef void* (* z_alloc_func)( void* opaque, unsigned items, unsigned size ); typedef void (* z_free_func) ( void* opaque, void* address ); typedef struct z_stream_s { char* next_in; unsigned avail_in; unsigned long total_in; char* next_out; unsigned avail_out; unsigned long total_out; char* msg; void* state; z_alloc_func zalloc; z_free_func zfree; void* opaque; int data_type; unsigned long adler; unsigned long reserved; } z_stream; const char* zlibVersion(); const char* zError(int); int inflate(z_stream*, int flush); int inflateEnd(z_stream*); int inflateInit2_(z_stream*, int windowBits, const char* version, int stream_size); int deflate(z_stream*, int flush); int deflateEnd(z_stream* ); int deflateInit2_(z_stream*, int level, int method, int windowBits, int memLevel,int strategy, const char *version, int stream_size); uint32_t adler32(unsigned long adler, const char *buf, unsigned len); uint32_t crc32(unsigned long crc, const char *buf, unsigned len); uint32_t compressBound(uint32_t sourceLen); int compress2(uint8_t *dest, uint32_t *destLen, const uint8_t *source, uint32_t sourceLen, int level); int uncompress(uint8_t *dest, uint32_t *destLen, const uint8_t *source, uint32_t sourceLen); ]]) local FileEntry = ffi.typeof("lua_zip_file_entry") local EOCD = ffi.typeof("lua_zip_eocd") local CentralDirectory = ffi.typeof("lua_zip_central_directory") local LuaZipHeader = ffi.typeof("lua_zip_header") local function findBackwards(contents, start, header) for index=start,0,-1 do local all = true for i=0,3 do if header.b[i] ~= contents[index + i] then all = false break end end if all then return index end end return -1 end local function compress(txt) local n = ffi.C.compressBound(#txt) local buf = ffi.new("uint8_t[?]", n) local stream = ffi.new('z_stream') stream.next_in = ffi.cast('uint8_t*', txt) stream.avail_in = #txt stream.next_out = buf stream.avail_out = n local version = ffi.C.zlibVersion() local windowBits = -15 local level = ffi.C.Z_DEFAULT_COMPRESSION local method = ffi.C.Z_DEFLATED local strategy = ffi.C.Z_DEFAULT_STRATEGY local ret = ffi.C.deflateInit2_(stream, level, method, windowBits, 8, strategy, version, ffi.sizeof(stream)) assert(ret == ffi.C.Z_OK, 'deflateInit2 error: ' .. ffi.string(ffi.C.zError(ret))) ret = ffi.C.deflate(stream, ffi.C.Z_FINISH) if ret ~= ffi.C.Z_STREAM_END then ffi.C.deflateEnd(stream) assert(false, 'deflate error: ' .. ffi.string(ffi.C.zError(ret))) end local compressedSize = stream.total_out local compressed = ffi.string(buf, compressedSize) ffi.C.deflateEnd(stream) return compressed, compressedSize end function Zip.new() return setmetatable({ entries = {} }, {__index = Zip_mt, __tostring = Zip_mt.compress}) end function Zip_mt:add(filename, contents) self.entries[filename] = contents end function Zip_mt:remove(filename) self.entries[filename] = nil end function Zip_mt:compress() local centralDirectories = {} local files = {} local filesSize = 0 for fileName,uncompressed in pairs(self.entries) do local uncompressedSize = #uncompressed local crc32, compressed, compressedSize = 0, nil, 0 local compressionMethod = 0 if uncompressed then -- file crc32 = ffi.C.crc32(0, uncompressed, uncompressedSize) compressed, compressedSize = compress(uncompressed) compressionMethod = 8 else -- directory uncompressedSize = 0 end local fileEntry = FileEntry() fileEntry.header = 0x04034b50 fileEntry.minVersion = 788 -- is this good? fileEntry.generalFlag = 0 -- probably fileEntry.compressionMethod = compressionMethod -- https://love2d.org/wiki/love.filesystem.getLastModified fileEntry.lastModifiedTime = 0 fileEntry.lastModifiedData = 0 fileEntry.crc32 = crc32 fileEntry.compressedSize = compressedSize fileEntry.uncompressedSize = uncompressedSize fileEntry.fileNameLength = #fileName fileEntry.extraFieldLength = 0 table.insert(files, { record = fileEntry, fileName = fileName, compressed = compressed, offset = filesSize }) local cd = CentralDirectory() cd.header = 0x02014b50 cd.version = 800 -- eh? cd.minVersion = 788 -- plz cd.generalFlag = 0 cd.compressionMethod = compressionMethod cd.lastModifiedTime = 0 cd.lastModifiedData = 0 cd.crc32 = crc32 cd.compressedSize = compressedSize cd.uncompressedSize = uncompressedSize cd.fileNameLength = #fileName cd.extraFieldLength = 0 cd.fileCommentLength = 0 cd.diskNumberFileStarts = 0 cd.internalFileAttributes = 0 cd.externalFileAttributes = 0 cd.fileHeaderOffset = filesSize table.insert(centralDirectories, { record = cd, fileName = fileName, }) filesSize = filesSize + ffi.sizeof(FileEntry) + #fileName + compressedSize end local centralDirectoriesSize = 0 for i,directory in ipairs(centralDirectories) do local fileName = directory.fileName local cd = directory.record directory.offset = filesSize + centralDirectoriesSize centralDirectoriesSize = centralDirectoriesSize + ffi.sizeof(CentralDirectory) + #fileName end local eocd = EOCD() eocd.header = 0x06054B50 eocd.numberOfDisk = 0 eocd.diskWhereCentralDir = 0 eocd.numberCentralDirsOnDisk = #centralDirectories eocd.totalCentralDirs = #centralDirectories eocd.sizeOfCentralDir = centralDirectoriesSize eocd.offsetOfCentralDir = filesSize eocd.commentLength = 0 local totalSize = filesSize + centralDirectoriesSize + ffi.sizeof(EOCD) local buffer = ffi.new('uint8_t[?]', totalSize) for i,fileEntry in ipairs(files) do local dataPtr = buffer + fileEntry.offset ffi.copy(dataPtr, fileEntry.record, ffi.sizeof(FileEntry)) dataPtr = dataPtr + ffi.sizeof(FileEntry) ffi.copy(dataPtr, fileEntry.fileName, #fileEntry.fileName) if fileEntry.compressed then dataPtr = dataPtr + #fileEntry.fileName ffi.copy(dataPtr, fileEntry.compressed, #fileEntry.compressed) end end for i,cdEntry in ipairs(centralDirectories) do local dataPtr = buffer + cdEntry.offset ffi.copy(dataPtr, cdEntry.record, ffi.sizeof(CentralDirectory)) ffi.copy(dataPtr + ffi.sizeof(CentralDirectory), cdEntry.fileName, #cdEntry.fileName) end ffi.copy(buffer + filesSize + centralDirectoriesSize, eocd, ffi.sizeof(EOCD)) return ffi.string(buffer, totalSize) end function Zip.decompress(raw) local contents = ffi.cast("uint8_t*", raw) local eocdHeader = LuaZipHeader() eocdHeader.h = 0x06054b50; local eocdIndex = findBackwards(contents, #raw - ffi.sizeof(EOCD), eocdHeader) assert(eocdIndex >= 0, "End Of Central Directory header not found.") local eocd = EOCD() ffi.copy(eocd, contents + eocdIndex, ffi.sizeof(EOCD)) local centralDirectories = {} local cdIndex = eocd.offsetOfCentralDir; for i=1,eocd.totalCentralDirs do local cdSize = ffi.sizeof(CentralDirectory) local cd = CentralDirectory() ffi.copy(cd, contents + cdIndex, cdSize) table.insert(centralDirectories, cd) cdIndex = cdIndex + cdSize + cd.fileNameLength + cd.extraFieldLength + cd.fileCommentLength end local files = {} for i,cd in ipairs(centralDirectories) do local file = FileEntry() local dataPtr = contents + cd.fileHeaderOffset ffi.copy(file, dataPtr, ffi.sizeof(FileEntry)) assert(file.header == 0x04034b50, 'File Header is wrong.') -- for robustness, it would be good to check these values against -- data descriptor record after the compressed data if bit.band(file.generalFlag, 0x08) > 0 then file.crc32 = cd.crc32 file.compressedSize = cd.compressedSize file.uncompressedSize = cd.uncompressedSize end local fileNamePtr = dataPtr + ffi.sizeof(FileEntry) local fileName = ffi.string(fileNamePtr, file.fileNameLength) local fileContentsPtr = dataPtr + ffi.sizeof(FileEntry) + file.fileNameLength + file.extraFieldLength if file.compressionMethod == 0 then -- STORE local checksum = ffi.C.crc32(0, fileContentsPtr, file.uncompressedSize) assert(file.crc32 == checksum, "Checksums don't match: " .. file.crc32 .. ' != ' .. checksum) files[fileName] = ffi.string(fileContentsPtr, file.uncompressedSize) elseif file.compressionMethod == 8 then -- DEFLATE local uncompressedPtr = ffi.new('uint8_t[?]', file.uncompressedSize) local stream = ffi.new('z_stream') stream.next_in = fileContentsPtr stream.avail_in = file.compressedSize stream.next_out = uncompressedPtr stream.avail_out = file.uncompressedSize local version, streamsize = ffi.C.zlibVersion(), ffi.sizeof(stream) -- -15 AKA -MAX_WBITS makes zlib not look for headers local ret = ffi.C.inflateInit2_(stream, -15, version, streamsize) assert(ret == ffi.C.Z_OK, 'inflateInit2 error: ' .. ffi.string(ffi.C.zError(ret))) ret = ffi.C.inflate(stream, ffi.C.Z_FINISH); if ret ~= ffi.C.Z_STREAM_END then ffi.C.inflateEnd(stream) assert(false, 'inflateEnd error: ' .. ffi.string(ffi.C.zError(ret))) end local uncompressed = ffi.string(uncompressedPtr, file.uncompressedSize) local checksum = ffi.C.crc32(0, uncompressed, file.uncompressedSize) assert(file.crc32 == checksum, "Checksums don't match: " .. file.crc32 .. ' != ' .. checksum) files[fileName] = uncompressed ffi.C.inflateEnd(stream) else assert(false, "Only STORE or DEFLATE plz. Compression method: " .. file.compressionMethod) end end local zip = Zip() for k,v in pairs(files) do zip:add(k, v) end return zip end return setmetatable(Zip, {__call = Zip.new})
-- ########################### -- -- THIS TEMPLATE IS CURRENTLY INCOMPLETE -- -- ########################### -- --- kitty transform, expects a table in the shape: -- -- @param colors { -- fg = "#000000", -- bg = "#000000", -- cursor_fg = "#000000", -- cursor_bg = "#000000", -- selection_fg = "#000000", -- selection_bg = "#000000", -- black = "#000000", -- red = "#000000", -- green = "#000000", -- yellow = "#000000", -- blue = "#000000", -- magenta = "#000000", -- cyan = "#000000", -- white = "#000000", -- bright_black = "#000000", -- bright_red = "#000000", -- bright_green = "#000000", -- bright_yellow = "#000000", -- bright_blue = "#000000", -- bright_magenta = "#000000", -- bright_cyan = "#000000", -- bright_white = "#000000", -- -- Optionally any of: -- -- url = "#000000", -- border_active = "#000000", -- border_inactive = "#000000", -- border_bell = "#000000", -- titlebar = "#000000", -- tab_active_fg = "#000000", -- tab_active_bg = "#000000", -- tab_inactive_fg = "#000000", -- tab_inactive_bg = "#000000", -- tab_bg = "#000000", -- mark1_fg = "#000000", -- mark1_bg = "#000000", -- mark2_fg = "#000000", -- mark2_bg = "#000000", -- mark3_fg = "#000000", -- mark3_bg = "#000000", -- name = "Theme Name", -- author = "Your Name", -- license = "Theme Licence", -- upstream = "Theme URL", -- blurb = "Theme Blurb", -- } -- NB: Lines with "$" in them are stripped from the final output, this -- allows the transform user to not have to specify everything. -- https://raw.githubusercontent.com/kovidgoyal/kitty-themes/master/template.conf local template = [[ # vim:ft=kitty # This is a template that can be used to create new kitty themes$ # Theme files should start with a metadata block consisting of$ # lines beginning with ##. All metadata fields are optional.$ ## name: $name ## author: $author ## license: $license ## upstream: $upstream ## blurb: $blurb # All the settings below are colors, which you can choose to modify, or use the$ # defaults. You can also add non-color based settings if needed but note that$ # these will not work with using kitty @ set-colors with this theme. For a reference$ # on what these settings do see https://sw.kovidgoyal.net/kitty/conf/$ # The basic colors$ foreground $fg background $bg selection_foreground $selection_fg selection_background $selection_bg # Cursor colors cursor $cursor_bg cursor_text_color $cursor_fg # URL underline color when hovering with mouse url_color $url # kitty window border colors active_border_color $border_active inactive_border_color $border_inactive bell_border_color $border_bell # OS Window titlebar colors wayland_titlebar_color $titlebar macos_titlebar_color $titlebar # Tab bar colors active_tab_foreground $tab_active_fg active_tab_background $tab_active_bg inactive_tab_foreground $tab_inactive_fg inactive_tab_background $tab_inactive_bg tab_bar_background $tab_bg # Colors for marks (marked text in the terminal) mark1_foreground $mark1_fg mark1_background $mark1_bg mark2_foreground $mark2_fg mark2_background $mark2_bg mark3_foreground $mark3_fg mark3_background $mark3_bg # The basic 16 colors # black color0 $black color8 $bright_black # red color1 $red color9 $bright_red # green color2 $green color10 $bright_green # yellow color3 $yellow color11 $bright_yellow # blue color4 $blue color12 $bright_blue # magenta color5 $magenta color13 $bright_magenta # cyan color6 $cyan color14 $bright_cyan # white color7 $white color15 $bright_white # You can set the remaining 240 colors as color16 to color255.]] local helpers = require("shipwright.transform.helpers") local check_keys = { "fg", "bg", "cursor_fg", "cursor_bg", "selection_fg", "selection_bg", "black", "red", "green", "yellow", "blue", "magenta", "cyan", "white", "bright_black", "bright_red", "bright_green", "bright_yellow", "bright_blue", "bright_magenta", "bright_cyan", "bright_white", } local function transform(colors) for _, key in ipairs(check_keys) do assert(colors[key], "kitty colors table missing required key: " .. key) end local replaced = helpers.split_newlines(helpers.apply_template(template, colors)) local kept = {} for _, line in ipairs(replaced) do if not string.match(line, "%$") then table.insert(kept, line) end end return kept end return transform
-- s-300pmu2 92h6e tr (truck) GT = {}; GT_t.ws = 0; set_recursive_metatable(GT, GT_t.generic_stationary); set_recursive_metatable(GT.chassis, GT_t.CH_t.STATIC); GT.chassis.life = 4; GT.visual.shape = "30h6_truck"; GT.visual.shape_dstr = "30h6_truck_d"; GT.visual.fire_pos[2] = 1; GT.snd.radarRotation = "RadarRotation"; GT.sensor = {}; GT.sensor.max_range_finding_target = 270000; GT.sensor.min_range_finding_target = 200; GT.sensor.max_alt_finding_target = 90000; GT.sensor.height = 9.63; --Burning after hit GT.visual.fire_size = 0.5; --relative burning size GT.visual.fire_pos[1] = 0; -- center of burn at long axis shift(meters) GT.visual.fire_pos[2] = 0; -- center of burn shift at vertical shift(meters) GT.visual.fire_pos[3] = 0; -- center of burn at transverse axis shift(meters) GT.visual.fire_time = 900; --burning time (seconds) GT.CustomAimPoint = {0,1.5,0} -- weapon systems GT.WS = {}; GT.WS.maxTargetDetectionRange = 270000; GT.WS.radar_type = 102; GT.WS.radar_rotation_type = 0; GT.WS.searchRadarMaxElevation = math.rad(80); -- We would like to engage targets using the radar without locking them up -- But how can we do this? -- It turns out that the beamWidth parameter of the LN object, when set to zero, will result in a target not -- getting a lock or launch warning when engaged using command-guided (headValue = 8) missiles. -- But then, we have a different problem: the radar has no detectable emissions at all! -- To circumvent this issue, we can have the first WS on the unit be a dummy, which is not hooked up to the animations -- and has an engagement area volume of zero (distanceMin = distanceMax) -- The unit must also have the radar_rotation_type set to 0. -- 0 tracker, dummy local ws = GT_t.inc_ws(); GT.WS[ws] = {}; GT.WS[ws].pos = {0,27,0}; GT.WS[ws].angles = { {math.rad(45), math.rad(-45), math.rad(-10), math.rad(80)}, }; GT.WS[ws].omegaY = 0.174533; GT.WS[ws].omegaZ = 0.174533; GT.WS[ws].LN = {}; GT.WS[ws].LN[1] = {}; GT.WS[ws].LN[1].depends_on_unit = {{{"S-300PMU1 54K6 cp"},},{{"S-300PS 54K6 cp"},},{{"S-300PMU2 54K6E2 cp"},},}; GT.WS[ws].LN[1].reactionTime = 0.1; GT.WS[ws].LN[1].max_number_of_missiles_channels = 2; GT.WS[ws].LN[1].type = 102; GT.WS[ws].LN[1].distanceMin = 2000; GT.WS[ws].LN[1].distanceMax = 2000; GT.WS[ws].LN[1].reflection_limit = 0.02; GT.WS[ws].LN[1].ECM_K = 0.4; GT.WS[ws].LN[1].min_trg_alt = 25; GT.WS[ws].LN[1].max_trg_alt = 90000; GT.WS[ws].LN[1].beamWidth = math.rad(90); -- 6 trackers, first tracker is main, other 5 are limited within 120 degree ws = GT_t.inc_ws(); GT.WS[ws] = {}; GT.WS[ws].pos = {0,27,0}; GT.WS[ws].angles = { {math.rad(180), math.rad(-180), math.rad(-10), math.rad(80)}, }; GT.WS[ws].drawArgument1 = 0; GT.WS[ws].omegaY = 0.174533; GT.WS[ws].omegaZ = 0.174533; GT.WS[ws].pidY = { p = 10, i = 0.1, d = 4}; GT.WS[ws].pidZ = { p = 10, i = 0.1, d = 4}; GT.WS[ws].LN = {}; GT.WS[ws].LN[1] = {}; set_recursive_metatable(GT.WS[ws].LN[1], GT.WS[1].LN[1]) GT.WS[ws].LN[1].distanceMax = 270000; GT.WS[ws].LN[1].beamWidth = math.rad(0); for i = 1,5 do -- 5 tracker's ws = GT_t.inc_ws(); GT.WS[ws] = {} GT.WS[ws].base = 2 GT.WS[ws].pos = {0,0,0} GT.WS[ws].angles = { {math.rad(45), math.rad(-45), math.rad(-10), math.rad(80)}, }; GT.WS[ws].omegaY = 3 GT.WS[ws].omegaZ = 3 GT.WS[ws].LN = {} GT.WS[ws].LN[1] = {} set_recursive_metatable(GT.WS[ws].LN[1], GT.WS[1].LN[1]) GT.WS[ws].LN[1].distanceMax = 270000; GT.WS[ws].LN[1].beamWidth = math.rad(0); end --for GT.Name = "S-300PMU2 92H6E tr"; GT.DisplayName = _("SAM SA-20B S-300PMU2 TR 92H6E(truck)"); GT.Rate = 20; GT.Sensors = { RADAR = "S-300PMU2 92H6E tr", }; GT.DetectionRange = GT.sensor.max_range_finding_target; GT.ThreatRange = 0; GT.mapclasskey = "P0091000083"; GT.attribute = {wsType_Ground,wsType_SAM,wsType_Radar,V_40B6M, "LR SAM", "SAM TR", "RADAR_BAND1_FOR_ARM", "CustomAimPoint", }; GT.category = "Air Defence";
local PlotScripts = {}; PlotScripts.__index = PlotScripts function PlotScripts:new() return setmetatable({ plots = { { {"Ele acorda sem sua mulher ao lado, vai até a cozinha...", "Põe dois pratos na mesa, mas não sente sua presença","De qualquer forma ele tem que trabalhar..."}, {"Chegando ao seu trabalho lhe é dada uma missão urgente.", "Uma nova missão! Estamos sendo invadidos por OVNIs! Abata o máximo de unidades possível."}, {"Acho que já é o suficiente, preciso voltar para casa e ver se ela está segura."}, {"Ela realmente não está aqui!", "Isso é tudo culpa daqueles malditos OVNIs!"}, {"Preciso descobri tudo o que posso sobre eles, para manter a pessoas seguras..."}, {"Os ataques continuam! Precisamos de reforços!"}, {""} }, { {"Dinheiro de caligrafia"} } } }, PlotScripts) end function PlotScripts:getPlot(level, stage) return self.plots[level][stage] end return PlotScripts
object_tangible_loot_npc_loot_blue_wiring_generic = object_tangible_loot_npc_loot_shared_blue_wiring_generic:new { } ObjectTemplates:addTemplate(object_tangible_loot_npc_loot_blue_wiring_generic, "object/tangible/loot/npc/loot/blue_wiring_generic.iff")
--[=[ @class IKAimPositionPriorities ]=] local IKAimPositionPriorities = { DEFAULT = 0; LOW = 1000; MEDIUM = 3000; HIGH = 4000; } table.freeze(IKAimPositionPriorities) return IKAimPositionPriorities
local ADDON_NAME = "GamePadHelper_TooltipPrice" local ADDON_VERSION = 1.00 -- TODO: use LibPrice local COLOR_GAME = ZO_ColorDef:New("FFFFFF") local COLOR_TTC = ZO_ColorDef:New("EECA2A") local COLOR_TITLE = ZO_ColorDef:New("FFFFFF") local COLOR_DETAILS = ZO_ColorDef:New("B2B2B2") local PRICE_ICON = ZO_Currency_GetGamepadFormattedCurrencyIcon(CURT_MONEY, 24, true) local AMOUNT_ICON = zo_iconFormatInheritColor("/esoui/art/inventory/gamepad/gp_inventory_icon_all.dds", 24, 24) local function getStackPrice(price, count) if price == nil then return nil end return price * count end local function getPriceSummary(gameValue, gameMaxValue, ttcValue, suffix) local gameValueText = gameValue == gameMaxValue and TamrielTradeCentre:FormatNumber(gameValue or 0, 0) or zo_strformat(SI_ITEM_FORMAT_STR_EFFECTIVE_VALUE_OF_MAX, gameValue, gameMaxValue) local ttcValueText = TamrielTradeCentre:FormatNumber(ttcValue or 0, 0) return COLOR_TITLE:Colorize(string.format( "%s %s %s %s", PRICE_ICON, COLOR_GAME:Colorize(gameValueText), COLOR_TTC:Colorize(ttcValueText), suffix or "" )) end local function getPriceBreakdown(priceInfo, suffix) local amount = TamrielTradeCentre:FormatNumber(priceInfo.AmountCount or 0, 0) local entries = TamrielTradeCentre:FormatNumber(priceInfo.EntryCount or 0, 0) return COLOR_DETAILS:Colorize(string.format( "%s %s - %s %s %s %s%s", PRICE_ICON, TamrielTradeCentre:FormatNumber(priceInfo.Min or 0, 0), TamrielTradeCentre:FormatNumber(priceInfo.Max or 0, 0), suffix or "", AMOUNT_ICON, amount, priceInfo.EntryCount ~= priceInfo.AmountCount and string.format(" (%s stacks)", entries) or "" )) end local lastItemLink = nil local lastStackSize = nil local function Tooltip_LayoutBagItem_Before(self, bagId, slotIndex, showCombinedCount, extraData) lastItemLink = GetItemLink(bagId, slotIndex) lastStackSize = GetSlotStackSize(bagId, slotIndex) end local function Tooltip_AddItemTitle_After(self, itemLink, name) local stackSize = itemLink == lastItemLink and lastStackSize or 1 local ttcColor = "FFCC00" local gamePrice = GetItemLinkValue(itemLink, false) local gameMaxPrice = GetItemLinkValue(itemLink, true) local ttcPriceInfo = TamrielTradeCentrePrice:GetPriceInfo(itemLink) or {} local ttcPrice = (ttcPriceInfo.SuggestedPrice or 0) > 0 and ttcPriceInfo.SuggestedPrice or (ttcPriceInfo.Avg or 0) local gameProductPrice = 0 local ttcProductPriceInfo = {} local ttcProductPrice = (ttcProductPriceInfo.SuggestedPrice or 0) > 0 and ttcProductPriceInfo.SuggestedPrice or (ttcProductPriceInfo.Avg or 0) -- show product pricing for recipes local itemType, specializedItemType = GetItemLinkItemType(itemLink) if itemType == ITEMTYPE_RECIPE then local productItemLink = GetItemLinkRecipeResultItemLink(itemLink) if productItemLink then gameProductPrice = GetItemLinkValue(productItemLink, false) ttcProductPriceInfo = TamrielTradeCentrePrice:GetPriceInfo(productItemLink) or {} end end local section = self:AcquireSection({ paddingTop = 3, paddingBottom = 3, customSpacing = 5, childSpacing = 5, widthPercent = 100, width = 650 - 2 * 40, fontSize = 30, fontFace = "$(GAMEPAD_LIGHT_FONT)", fontColorType = INTERFACE_COLOR_TYPE_TEXT_COLORS, fontColorField = INTERFACE_TEXT_COLOR_NORMAL, fontStyle = "soft-shadow-thick", uppercase = false, }) local hasValue = gamePrice > 0 or ttcPrice > 0 local hasAmount = (ttcPriceInfo.AmountCount or 0) > 0 local productHasValue = gameProductPrice > 0 or ttcProductPrice > 0 local productHasAmount = (ttcProductPriceInfo.AmountCount or 0) > 0 if hasValue then section:AddLine(getPriceSummary(gamePrice, gameMaxPrice, ttcPrice)) end if hasValue and stackSize > 1 then section:AddLine(getPriceSummary(getStackPrice(gamePrice, stackSize), getStackPrice(gameMaxPrice, stackSize), getStackPrice(ttcPrice, stackSize), string.format("(stack of %s)", stackSize))) end if hasAmount then section:AddLine(getPriceBreakdown(ttcPriceInfo)) end if productHasValue then section:AddLine(getPriceSummary(gameProductPrice, gameProductPrice, ttcProductPrice, "(product)")) end if productHasAmount then section:AddLine(getPriceBreakdown(ttcProductPriceInfo)) end self:AddSection(section) end local function Tooltip_AddItemValue_Before(self, itemLink) -- just don't run the original code return true end local tooltips = { GAMEPAD_LEFT_DIALOG_TOOLTIP, GAMEPAD_LEFT_TOOLTIP, GAMEPAD_MOVABLE_TOOLTIP, GAMEPAD_QUAD1_TOOLTIP, GAMEPAD_QUAD3_TOOLTIP, GAMEPAD_RIGHT_TOOLTIP } for index, tooltip in ipairs(tooltips) do ZO_PreHook(GAMEPAD_TOOLTIPS:GetTooltip(tooltip), "LayoutBagItem", Tooltip_LayoutBagItem_Before) ZO_PostHook(GAMEPAD_TOOLTIPS:GetTooltip(tooltip), "AddItemTitle", Tooltip_AddItemTitle_After) ZO_PreHook(GAMEPAD_TOOLTIPS:GetTooltip(tooltip), "AddItemValue", Tooltip_AddItemValue_Before) end
local function abs(n) return n<0 and -n or n end local function atLeastOne(n) return n>1 and n or 1 end local sethook = debug.sethook local function count(f, ...) local c = 0 sethook(function() c = c + 1 end, "c") f(...) sethook() return c end local function decrement(x) return x - 1 end local function id(x) return x end local function increment(x) return x + 1 end -- from http://lua-users.org/wiki/ReadOnlyTables local function readOnlyTable(t) return setmetatable({}, { __index = t, __newindex = function (t, k, v) error("ERROR: This is a read-only table. You can't assign.") end, __metatable = false }) end -- -- tableWriter(x, y, w, f, vFmt) -- -- x = { number, number, number[, "L"] } -- y = { number, number, number} -- w = { number, number } -- f = { function, function, function } -- vFmt = { string, string, string } -- local function tableWriter(x, y, w, f, vFmt) function _fmt(n, s, f) local t = ("%%%d%s"):format(n, s) return function (...) return t:format(f(...)) end end function _count(l, r, step) local t=0 for _=l,r,step do t=t+1 end return t end local padding = (" "):rep(w[1] + 2) local border = ("-"):rep(w[2] * _count(x[1],x[2],x[3])) local fmt1 = _fmt(w[1], vFmt[1].." |", f[1]) local fmt2 = _fmt(w[2], vFmt[2], f[2]) local fmt3 = _fmt(w[2], vFmt[3], f[3]) local isL = x[4] == "L" return function (fh) fh = fh ~= nil and fh or io.stdout fh:write(padding) for i=x[1],x[2],x[3] do fh:write(fmt2(i)) end fh:write("\n", padding, border, "\n") for j=y[1],y[2],y[3] do fh:write(fmt1(j)) for i=x[1],isL and j or x[2],x[3] do fh:write(fmt3(i, j)) end fh:write("\n") end end end return { abs = abs, atLeastOne = atLeastOne, count = count, decrement = decrement, id = id, increment = increment, readOnlyTable = readOnlyTable, tableWriter = tableWriter }
#!/usr/bin/env lua local cjson = require'cjson' local tinsert = table.insert local ev = require'ev' local websockets = require'websockets' local ws_ios = {} local context = nil local log = function(...) print('zbus-websocket-bridge',...) end local zm = require'zbus.member' local zbus_config = require'zbus.json' zbus_config.name = 'websocket-bridge' zbus_config.ev_loop = ev.Loop.default zbus_config.exit = function() for fd,io in pairs(ws_ios) do io:stop(ev.Loop.default) end context:destroy() end local zm = zm.new(zbus_config) local clients = 0 context = websockets.context{ port = arg[2] or 8002, on_add_fd = function(fd) local io = ev.IO.new( function() context:service(0) end,fd,ev.READ) ws_ios[fd] = io io:start(ev.Loop.default) end, on_del_fd = function(fd) ws_ios[fd]:stop(ev.Loop.default) ws_ios[fd] = nil end, protocols = { ['zbus-call'] = function(ws) ws:on_receive( function(ws,data) local req = cjson.decode(data) local resp = {id=req.id} local result = {pcall(zm.call,zm,req.method,unpack(req.params))} if result[1] then table.remove(result,1); resp.result = result else resp.error = result[2] end ws:write(cjson.encode(resp),websockets.WRITE_TEXT) end) end, ['zbus-notification'] = function(ws) local match_all = '.*' if clients == 0 then local notifications = {} log('listen to jet') zm:listen_add( match_all, function(topic,more,...) tinsert(notifications,{ topic = topic, data = {...} }) if not more then context:broadcast('zbus-notification', cjson.encode(notifications)) notifications = {} end end) end clients = clients + 1 ws:on_broadcast(websockets.WRITE_TEXT) ws:on_closed(function() clients = clients - 1 if clients == 0 then log('unlisten to jet') zm:listen_remove(match_all) end end) end } } zm:loop()
--[[ Settings GUI Definitions Copyright 2018 okulo ]] local GC = GuildContributionsAddonContainer local CLASS = GC.Class() GC.SettingsGUIClass = CLASS function CLASS:Initialize( aDb ) self.Db = aDb self.LamWksp = GC.ADDON_NAME.."_LamWksp" self.PanelData = { type = "panel", name = GC.ADDON_NAME, author = GC.Build.Author, version = GC.Build.Version, website = "https://github.com/dpk5081/eso-guild-contributions", registerForRefresh = true, registerForDefaults = true } self.EnumTables = { { Type = "Rule", Label = GC.S( "OPTION_CONTRIBUTION_RULE" ), DisplayTable = {}, ValueTable = {}, SetAuxParam = false }, { Type = "Method", Label = GC.S( "OPTION_CONTRIBUTION_METHOD" ), DisplayTable = {}, ValueTable = {} }, } self.OptionsTable = {} self:InitOptions() end function CLASS:AddDbFuncs( aControl, aDbVar, aSetFunc ) aControl.getFunc = function() return self.Db:Get( aDbVar ) end aControl.setFunc = function( aNewValue ) if( self.Db:Get( aDbVar ) ~= aDbVar ) then self.Db:Set( aDbVar, aNewValue ) if( nil ~= aSetFunc ) then aSetFunc() end end end aControl.default = function() return self.Db:GetDefault( aDbVar ) end end -- Add a dropdown and extra options field for the specified policy function CLASS:AddEnumPolicy( aOptionTbl, aEnum, aGuildIdx ) local lookupByGuildName = GC[aEnum.Type.."ByGuildName"] local lookupClassById = GC[aEnum.Type.."ClassById"] local extrasControl = { type = "editbox", name = GC.S( "OPTION_EXTRA" ), getFunc = function() local info = self:GuildInfo( aGuildIdx ) if( not info.present ) then return "" end return lookupByGuildName[info.name]:GetOptionText() end, setFunc = function( aNewValue ) local info = self:GuildInfo( aGuildIdx ) if( not info.present ) then return end lookupByGuildName[info.name]:SetOptionText( aNewValue ) -- Trigger a refresh to make the text nice again (e.g., use lookup table value instead -- of number, etc...). CALLBACK_MANAGER:FireCallbacks( "LAM-RefreshPanel", self.Panel ) end, isMultiline = true, disabled = function() local info = self:GuildInfo( aGuildIdx ) local enabled = ( info.present and lookupByGuildName[info.name]:HasOptions() ) return not enabled end, isExtraWide = true } -- Accessors for the dropdown local setterFunc = GC.DbClass["SetGuild"..aEnum.Type] local getterFunc = function( aGuildName ) return lookupByGuildName[aGuildName][aEnum.Type.."Id"] end local dropdownControl = { type = "dropdown", name = aEnum.Label, choices = aEnum.DisplayTable, choicesValues = aEnum.ValueTable, getFunc = function() local info = self:GuildInfo( aGuildIdx ) if( not info.present ) then return 0 end return getterFunc(info.name) end, setFunc = function( aNewValue ) local info = self:GuildInfo( aGuildIdx ) if( not info.present ) then return end -- Only update if changed if( getterFunc( info.name ) ~= aNewValue ) then local obj = lookupClassById[aNewValue]( info.name, info.settings ) setterFunc( self.Db, info.name, aNewValue, aEnum.SetAuxParam ) lookupByGuildName[info.name] = obj obj:SetDefaults() end end, default = function() local info = self:GuildInfo( aGuildIdx ) if( not info.present ) then return end setterFunc( self.Db, info.name, 1, aEnum.SetAuxParam ) end, disabled = function() return not self:GuildInfo( aGuildIdx ).present end } GC.Append( aOptionTbl, dropdownControl ) GC.Append( aOptionTbl, extrasControl ) end -- Add an option to the main option table function CLASS:AddOption( aOption ) GC.Append( self.OptionsTable, aOption ) end -- Add a checkbox option to the main option table which toggles aDbVar function CLASS:AddOptionVar( aControl, aDbVar, aSetFunc ) self:AddDbFuncs( aControl, aDbVar, aSetFunc ) self:AddOption( aControl ) end -- Add the options for a specific guild function CLASS:AddGuildMenu( aGuildIdx ) local guildOptions = {} GC.Append( guildOptions, { type = "description", text = function() local info = self:GuildInfo( aGuildIdx ) if( ( not info.present ) or ( info.rule:GetLastContributionDT():Invalid() ) ) then return GC.S( "NONE" ) end local dt = info.rule:GetLastContributionDT() return GC.S( "OPTION_LAST_CONTRIBUTION" ).." @ "..dt:GetAbsoluteText( true ) end } ) GC.Append( guildOptions, { type = "button", name = GC.S( "CLEAR" ), func = function() local info = self:GuildInfo( aGuildIdx ) if( info.present ) then info.settings.lastContributionTime = GC.DateTime.INVALID_TS info.rule:Update() end end, disabled = function() local info = self:GuildInfo( aGuildIdx ) return ( ( not info.present ) or ( info.rule:GetLastContributionDT():Invalid() ) ) end, width = "half", isDangerous = true } ) local key, enum for key,enum in ipairs( self.EnumTables ) do self:AddEnumPolicy( guildOptions, enum, aGuildIdx ) end self:AddOption( { type = "submenu", name = function() local info = self:GuildInfo( aGuildIdx ) if( not info.present ) then return GC.S( "GUILD" ).." "..tostring( aGuildIdx ) end return info.name end, controls = guildOptions, disabled = function() local info = self:GuildInfo( aGuildIdx ) return not info.present end } ) end function CLASS:GuildInfo( aGuildIdx ) local guildId = GetGuildId( aGuildIdx ) out = { present = ( 0 ~= guildId ) } if( out.present ) then out.name = GetGuildName( guildId ) out.settings = self.Db:GetGuild( out.name ) out.rule = GC.RuleByGuildName[out.name] end return out end function CLASS:InitOptions() -- Add top-level options self:AddOption( { type = "header", name = GC.S( "OPTION_HDR_GENERAL" ) } ) self:AddOptionVar( { type = "checkbox", name = GC.S( "OPTION_SHOW_MSG_ON_STARTUP" ) }, "doStartupMsg" ) self:AddOption( { type = "checkbox", name = GC.S( "OPTION_DEBUG" ), getFunc = function() return GC.GetDebugMode() end, setFunc = function( aNewValue ) GC.SetDebugMode( aNewValue ) end, default = function() GC.ResetDebugMode() end } ) self:AddOptionVar( { type = "checkbox", name = GC.S( "OPTION_LOCK_WINDOW_POS" ) }, "wposLock", function() GC.APP.Window:UpdateMovable() end ) self:AddOptionVar( { type = "slider", name = GC.S( "OPTION_UTC_OFFSET" ), min = -12, max = 14, step = 0.5 }, "localTimeOffset" ) -- Build the tables for the dropdown boxes local key, tbl, nVal, sVal for key,tbl in ipairs( self.EnumTables ) do for nVal,sVal in ipairs( GC[tbl.Type.."NameById"] ) do if( sVal == nil ) then GC.Debug( "Bad "..tbl.Type.." "..tostring( nVal ) ) else GC.Append( tbl.DisplayTable, sVal ) GC.Append( tbl.ValueTable, nVal ) end end end -- Add controls for each guild for key = 1,5 do self:AddGuildMenu( key ) end self.Panel = GC.LAM:RegisterAddonPanel( self.LamWksp, self.PanelData ) GC.LAM:RegisterOptionControls( self.LamWksp, self.OptionsTable ) end function CLASS:Refresh() CALLBACK_MANAGER:FireCallbacks( "LAM-RefreshPanel", self.Panel ) end
Class = require 'class' local player = Class{} function player:init (x, y, keyUp, keyDown) self.speed = 240 self.x = x self.y = y self.keyUp = keyUp self.keyDown = keyDown end function player:update (dt) if love.keyboard.isDown(self.keyUp) then self.y = self.y - dt*self.speed end if love.keyboard.isDown(self.keyDown) then self.y = self.y + dt*self.speed end self.y = math.max(0, math.min(HEIGHT-24, self.y)) end function player:draw () love.graphics.rectangle('fill', self.x, self.y, 2, 24) end return player
staticRuntime = "on" -- VS only. on -> MultiThreaded, off -> MultiThreadedDLL. workspace "Firefly" architecture "x86_64" startproject "Sandbox" configurations { "Debug", "Release", "Dist" } flags { "MultiProcessorCompile" } outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}" includeDir = {} includeDir["spdlog"] = "%{wks.location}/Firefly/vendor/spdlog/include" includeDir["GLFW"] = "%{wks.location}/Firefly/vendor/GLFW/include" includeDir["glad"] = "%{wks.location}/Firefly/vendor/glad/include" includeDir["imgui"] = "%{wks.location}/Firefly/vendor/imgui" includeDir["glm"] = "%{wks.location}/Firefly/vendor/glm" includeDir["stb"] = "%{wks.location}/Firefly/vendor/stb" includeDir["entt"] = "%{wks.location}/Firefly/vendor/entt/include" --includeDir["box2d"] = "%{wks.location}/Firefly/vendor/box2d/include" --includeDir["json"] = "%{wks.location}/Firefly/vendor/json/include" --includeDir["fmt"] = "%{wks.location}/Firefly/vendor/fmt/include" --includeDir["yaml_cpp"] = "%{wks.location}/Firefly/vendor/yaml-cpp/include" clientIncludes = { "%{wks.location}/Firefly/src", "%{includeDir.spdlog}", "%{includeDir.imgui}", "%{includeDir.glm}", "%{includeDir.entt}", } linkLibs = { "GLFW", "glad", "imgui", --"box2d", --"yaml-cpp", } group "Dependencies" include "Firefly/vendor/GLFW" include "Firefly/vendor/glad" include "Firefly/vendor/imgui" --include "Firefly/vendor/box2d" --include "Firefly/vendor/yaml-cpp" group "" include "Firefly" include "Sandbox" include "FireflyEditor"
--------------------------------------------- -- Spoil -- -- Description: Lowers the strength of target. -- Type: Enhancing -- Utsusemi/Blink absorb: Ignore -- Range: Self -- Notes: Very sharp evasion increase. --------------------------------------------- require("scripts/globals/monstertpmoves") require("scripts/globals/settings") require("scripts/globals/status") --------------------------------------------- function onMobSkillCheck(target, mob, skill) return 0 end function onMobWeaponSkill(target, mob, skill) local typeEffect = tpz.effect.STR_DOWN skill:setMsg(MobStatusEffectMove(mob, target, typeEffect, 10, 3, 120)) return typeEffect end
-- moreglass/init.lua moreglass = {} moreglass.BASENAME = "moreglass" moreglass.modpath = minetest.get_modpath(moreglass.BASENAME) local modpath = moreglass.modpath -- modpath pointer dofile(modpath.."/api.lua") -- run api dofile(modpath.."/glass.lua") -- load glass if not minetest.get_modpath("morelights") then dofile(modpath.."/lightbulb.lua") -- load lightbulb & depends moreglass.LIGHTMOD = moreglass.BASENAME -- set light modname else moreglass.LIGHTMOD = "morelights" end -- else, use morelights light bulb --[[ Index of Glass Nodes: OTHER NODES: :default:glass (OVERRIDE) moreglass:glass_glow moreglass:glass_clean moreglass:glass_glowc OPAQUE NODES: moreglass:glass_oblack (Black) moreglass:glass_oblue (Blue) moreglass:glass_obrown (Brown) moreglass:glass_ocyan (Cyan) moreglass:glass_ogreen (Green) moreglass:glass_omagenta (Magenta) moreglass:glass_oorange (Orange) moreglass:glass_opink (Pink) moreglass:glass_ored (Red) moreglass:glass_oviolet (Violet) moreglass:glass_oyellow (Yellow) moreglass:glass_owhite (White) OPAQUE GLASS LANTERN NODES: moreglass:glass_glow_oblack (Black Glass Glow) moreglass:glass_glow_oblue (Blue Glass Glow) moreglass:glass_glow_obrown (Brown Glass Glow) moreglass:glass_glow_ocyan (Cyan Glass Glow) moreglass:glass_glow_ogreen (Green Glass Glow) moreglass:glass_glow_omagenta (Magenta Glass Glow) moreglass:glass_glow_oorange (Orange Glass Glow) moreglass:glass_glow_opink (Pink Glass Glow) moreglass:glass_glow_ored (Red Glass Glow) moreglass:glass_glow_oviolet (Violet Glass Glow) moreglass:glass_glow_oyellow (Yellow Glass Glow) moreglass:glass_glow_owhite (White Glass Glow) STAINED GLASS NODES: moreglass:glass_sblack (Black) moreglass:glass_sblue (Blue) moreglass:glass_sbrown (Brown) moreglass:glass_scyan (Cyan) moreglass:glass_sgreen (Green) moreglass:glass_smagenta (Magenta) moreglass:glass_sorange (Orange) moreglass:glass_spink (Pink) moreglass:glass_sred (Red) moreglass:glass_sviolet (violet) moreglass:glass_syellow (Yellow) moreglass:glass_swhite (White) STAINED GLASS LANTERN NODES: moreglass:glass_glow_sblack (Black) moreglass:glass_glow_sblue (Blue) moreglass:glass_glow_sbrown (Brown) moreglass:glass_glow_scyan (Cyan) moreglass:glass_glow_sgreen (Green) moreglass:glass_glow_smagenta (Magenta) moreglass:glass_glow_sorange (Orange) moreglass:glass_glow_spink (Pink) moreglass:glass_glow_sred (Red) moreglass:glass_glow_sviolet (violet) moreglass:glass_glow_syellow (Yellow) moreglass:glass_glow_swhite (White)]]