repo_name stringlengths 6 78 | path stringlengths 4 206 | copies stringclasses 281
values | size stringlengths 4 7 | content stringlengths 625 1.05M | license stringclasses 15
values |
|---|---|---|---|---|---|
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c100000792.lua | 2 | 1149 | --Created and coded by Rising Phoenix
function c100000792.initial_effect(c)
c:EnableReviveLimit()
--spsummon condition
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE)
e2:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e2:SetCode(EFFECT_SPSUMMON_CONDITION)
e2:SetValue(aux.FA... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-Party-WoD/IronDocks/GrimrailEnforcers.lua | 1 | 3572 | local mod = DBM:NewMod(1236, "DBM-Party-WoD", 4, 558)
local L = mod:GetLocalizedStrings()
mod.statTypes = "normal,heroic,mythic,challenge,timewalker"
mod.upgradedMPlus = true
mod:SetRevision("20221016002954")
mod:SetCreatureID(80805, 80816, 80808)
mod:SetEncounterID(1748)
mod:SetBossHPInfoToHighest()
mod:RegisterCo... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-Party-WoD/Skyreach/Rukhran.lua | 1 | 2170 | local mod = DBM:NewMod(967, "DBM-Party-WoD", 7, 476)
local L = mod:GetLocalizedStrings()
mod.statTypes = "normal,heroic,mythic,challenge,timewalker"
mod:SetRevision("20220810032020")
mod:SetCreatureID(76143)
mod:SetEncounterID(1700)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_AURA_REMOVED 1593... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-AQ40/Viscidus.lua | 1 | 5560 | local mod = DBM:NewMod("Viscidus", "DBM-AQ40", 1)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20220116021832")
mod:SetCreatureID(15299)
mod:SetEncounterID(713)
mod:SetModelID(15686)
mod:SetHotfixNoticeRev(20200828000000)--2020, 8, 28
mod:SetMinSyncRevision(20200828000000)--2020, 8, 28
mod:RegisterCombat("co... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/MikScrollingBattleText/MSBTMedia.lua | 1 | 6854 | -------------------------------------------------------------------------------
-- Title: Mik's Scrolling Battle Text Media
-- Author: Mikord
-------------------------------------------------------------------------------
-- Create module and set its name.
local module = {}
local moduleName = "Media"
MikSBT[moduleName... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c96866613.lua | 2 | 2926 | --Action Card - B.M.I. Recycle
function c96866613.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(c96866613.target)
e1:SetOperation(c96866613.activate)
c:RegisterEffect(e1)
--activate once o... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/ElvUI/Core/Modules/DataTexts/Avoidance.lua | 1 | 5346 | local E, L, V, P, G = unpack(ElvUI)
local DT = E:GetModule('DataTexts')
local format, strjoin, abs = format, strjoin, abs
local GetBlockChance = GetBlockChance
local GetBonusBarOffset = GetBonusBarOffset
local GetDodgeChance = GetDodgeChance
local GetInventoryItemID = GetInventoryItemID
local GetInventorySlotInfo = Ge... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/Narcissus/Widgets/ClockFrame.lua | 1 | 5139 | local _, addon = ...
local ceil = math.ceil;
local sin = math.sin;
local cos = math.cos;
local acos = math.acos;
local tan = math.tan;
local pi = math.pi;
local UPDATE_THRESHHOLD = 1/1000; --update once when Δprogress > threshhold
local MAX_POLYGON_SIDES = 8; --A polygon will be deemed as a cicle if the nu... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/ElvUI_OptionsUI/Skins.lua | 1 | 6098 | local E, _, V, P, G = unpack(ElvUI)
local C, L = unpack(E.OptionsUI)
local B = E:GetModule('Blizzard')
local ACH = E.Libs.ACH
local pairs = pairs
local Skins = ACH:Group(L["Skins"], nil, 2, 'tab')
E.Options.args.skins = Skins
Skins.args.intro = ACH:Description(L["SKINS_DESC"], 0)
Skins.args.general = ACH:MultiSelect... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/Details/functions/events.lua | 1 | 13282 |
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
local _detalhes = _G._detalhes
local Loc = LibStub("AceLocale-3.0"):GetLocale ( "Details" )
local _
--... | gpl-3.0 |
Markismus/koreader | spec/unit/input_spec.lua | 6 | 5084 | describe("input module", function()
local Input
setup(function()
require("commonrequire")
Input = require("device/input")
end)
describe("handleTouchEvPhoenix", function()
--[[
-- a touch looks something like this (from H2Ov1)
Event: time 1510346968.993890, type 3 (EV_ABS), code 57 (ABS_... | agpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-Party-Classic/localization.kr.lua | 1 | 23263 | if GetLocale() ~= "koKR" then return end
local L
-------------------------
-- Blackfathom Deeps (1) --
-----------------------------
-- Ghamoo-Ra --
-----------------------------
L = DBM:GetModLocalization(368)
L:SetGeneralLocalization{
name = "가무라"
}
-----------------------------
-- Domina --
--------------... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c388.lua | 1 | 3745 | --Evolute Summoning Procedure
function c388.initial_effect(c)
if not c388.global_check then
c388.global_check=true
--register
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e2:SetCode(EVENT_ADJUST)
e2:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e2:SetOperation(c388.op)
... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c100000992.lua | 2 | 2702 | --Created and coded by Rising Phoenix
function c100000992.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(100000992,0))
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTa... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/ElvUI/Mainline/Modules/Skins/Stable.lua | 1 | 2158 | local E, L, V, P, G = unpack(ElvUI)
local S = E:GetModule('Skins')
local _G = _G
local unpack = unpack
local CreateFrame = CreateFrame
local function PetButtons(btn, p)
local button = _G[btn]
local icon = _G[btn..'IconTexture']
local highlight = button:GetHighlightTexture()
button:StripTextures()
if button.Chec... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c78330020.lua | 2 | 1300 | --AB Assassin
function c78330020.initial_effect(c)
--remove
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(78330020,0))
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_BATTLED)
e1:SetTarget(c78330020.target)
e1:SetOperation(c78330020.operatio... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c103950024.lua | 2 | 1947 | --Duskwing Wyvern
function c103950024.initial_effect(c)
--synchro summon
aux.AddSynchroProcedure(c,nil,aux.NonTuner(nil),1)
c:EnableReviveLimit()
--cannot leave field
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(103950024,0))
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c512000055.lua | 2 | 1981 | --パワー・バトン
function c512000055.initial_effect(c)
--atkup
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCost(c512000055.cost)
e1:SetTarget(c512000055.target)
e1:SetOperation(c512000055... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-Ulduar/Hodir.lua | 1 | 2898 | local mod = DBM:NewMod("Hodir", "DBM-Ulduar")
local L = mod:GetLocalizedStrings()
mod:SetRevision("20220701215737")
mod:SetCreatureID(32845,32926)
mod:SetEncounterID(1135)
mod:SetModelID(28743)
mod:SetUsedIcons(7, 8)
mod:RegisterCombat("combat_yell", L.Pull)
mod:RegisterKill("yell", L.YellKill)
mod:RegisterEventsIn... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/RSA/Libs/AceEvent-3.0/AceEvent-3.0.lua | 20 | 4757 | --- AceEvent-3.0 provides event registration and secure dispatching.
-- All dispatching is done using **CallbackHandler-1.0**. AceEvent is a simple wrapper around
-- CallbackHandler, and dispatches all game events or addon message to the registrees.
--
-- **AceEvent-3.0** can be embeded into your addon, either explicit... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/HandyNotes_Shadowlands/libs/AceEvent-3.0/AceEvent-3.0.lua | 20 | 4757 | --- AceEvent-3.0 provides event registration and secure dispatching.
-- All dispatching is done using **CallbackHandler-1.0**. AceEvent is a simple wrapper around
-- CallbackHandler, and dispatches all game events or addon message to the registrees.
--
-- **AceEvent-3.0** can be embeded into your addon, either explicit... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c951234233.lua | 2 | 3410 | --Hierunyph H. Mountain
function c951234233.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--search
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(951234233,0))
e2:SetCategory(CATEGORY_TOHAND+CATEGO... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/ElvUI/Mainline/Modules/Skins/Collectables.lua | 1 | 25559 | local E, L, V, P, G = unpack(ElvUI)
local S = E:GetModule('Skins')
local TT = E:GetModule('Tooltip')
local _G = _G
local next, unpack = next, unpack
local ipairs, pairs = ipairs, pairs
local CreateFrame = CreateFrame
local GetItemInfo = GetItemInfo
local PlayerHasToy = PlayerHasToy
local hooksecurefunc = hooksecurefu... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-Sunwell/Brutallus.lua | 1 | 3465 | local mod = DBM:NewMod("Brutallus", "DBM-Sunwell")
local L = mod:GetLocalizedStrings()
mod:SetRevision("20200806142051")
mod:SetCreatureID(24882)
mod:SetEncounterID(725)
mod:DisableESCombatDetection()--ES fires for the RP event that has nothing to do with engaging boss
mod:SetModelID(22711)
mod:SetMinSyncRevision(441... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-Party-Shadowlands/TheNecroticWake/Amarth.lua | 1 | 4716 | local mod = DBM:NewMod(2391, "DBM-Party-Shadowlands", 1, 1182)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20220803233609")
mod:SetCreatureID(163157)--162692?
mod:SetEncounterID(2388)
mod:SetUsedIcons(1, 2, 3, 4, 5, 6, 7, 8)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_AURA_APPLIED 3200... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c76973421.lua | 2 | 7804 | --duo vocaloid
function c76973421.initial_effect(c)
--pendulum summon
aux.EnablePendulumAttribute(c)
--dark synchro summon
c:EnableReviveLimit()
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_EXTRA)
e1:... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-Outlands/Kazzak.lua | 1 | 2043 | local mod = DBM:NewMod("Kazzak", "DBM-Outlands")
local L = mod:GetLocalizedStrings()
mod:SetRevision("20220910005805")
mod:SetCreatureID(18728)
mod:SetModelID(17887)
mod:SetUsedIcons(8)
mod:EnableWBEngageSync()--Enable syncing engage in outdoors
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_AURA_... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c78330016.lua | 2 | 2483 | --Thanatosis
function c78330016.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(c78330016.target)
e1:SetOperation(c78330016.activate)
c:RegisterEffect(e1)
--salvage
local e2=Effect.C... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-BrokenIsles/Drugon.lua | 1 | 2787 | local mod = DBM:NewMod(1789, "DBM-BrokenIsles", 1, 822)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20220116041824")
mod:SetCreatureID(110378)
mod:SetEncounterID(1949)
mod:SetReCombatTime(20)
mod:EnableWBEngageSync()--Enable syncing engage in outdoors
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/ElvUI/Mainline/Modules/Skins/CovenantPreview.lua | 1 | 1667 | local E, L, V, P, G = unpack(ElvUI)
local S = E:GetModule('Skins')
local _G = _G
local hooksecurefunc = hooksecurefunc
function S:Blizzard_CovenantPreviewUI()
if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.covenantPreview) then return end
local frame = _G.CovenantPreviewFrame
if E.private.s... | gpl-3.0 |
linnemannr/MCServer | MCServer/Plugins/APIDump/Hooks/OnSpawningMonster.lua | 44 | 1195 | return
{
HOOK_SPAWNING_MONSTER =
{
CalledWhen = "Before a monster is spawned in the world.",
DefaultFnName = "OnSpawningMonster", -- also used as pagename
Desc = [[
This hook is called before the server spawns a {{cMonster|monster}}. The plugins may modify the
monster's parameters in the {{cMonster}} cla... | apache-2.0 |
qyh214/wow_addons_private_use | AddOns/DBM-Party-MoP/localization.cn.lua | 1 | 6441 | -- Simplified Chinese by Diablohu(diablohudream@gmail.com)
-- Last update: 1/4/2013
if GetLocale() ~= "zhCN" then return end
local L
-----------------------
-- <<<Temple of the Jade Serpent>>> --
-----------------------
-----------------------
-- Wise Mari --
-----------------------
L= DBM:GetModLocalization(672)
--... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/ElvUI_BagFilter/BagFilter.lua | 1 | 9025 | if not IsAddOnLoaded('ElvUI') then return; end
local E, L, V, P, G = unpack(ElvUI); -- Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
local B = E:GetModule('Bags');
local AddOnName, U = ...;
local L = {};
local function SetSlotFilter(self, bagID, slotID)
local f = B:GetContainerFrame(bagID > NUM_BAG_SLO... | gpl-3.0 |
linnemannr/MCServer | MCServer/Plugins/DumpInfo/Init.lua | 18 | 1333 | function Initialize(a_Plugin)
a_Plugin:SetName("DumpInfo")
a_Plugin:SetVersion(1)
-- Check if the infodump file exists.
if (not cFile:Exists("Plugins/InfoDump.lua")) then
LOGWARN("[DumpInfo] InfoDump.lua was not found.")
return false
end
-- Add the webtab.
a_Plugin:AddWebTab("DumpPlugin", HandleDumpPlugi... | apache-2.0 |
slachiewicz/ntopng | scripts/lua/sprobe_host_process_data.lua | 8 | 3128 | --
-- (C) 2013-15 - ntop.org
--
dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
sendHTTPHeader('application/json')
host_ip = _GET["host"]
host_id = _GET["host_id"]
interface.select(ifname)
flows_stats = interface.getFlowsInfo(host_ip)
prin... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/Details/Libs/AceComm-3.0/ChatThrottleLib.lua | 9 | 15768 | --
-- ChatThrottleLib by Mikk
--
-- Manages AddOn chat output to keep player from getting kicked off.
--
-- ChatThrottleLib:SendChatMessage/:SendAddonMessage functions that accept
-- a Priority ("BULK", "NORMAL", "ALERT") as well as prefix for SendChatMessage.
--
-- Priorities get an equal share of available bandwidth ... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c20912323.lua | 2 | 1574 | --Action Card - An Exchange for the Sword
function c20912323.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/Details_EncounterDetails/frames.lua | 1 | 112434 | do
local _detalhes = _G._detalhes
local DetailsFrameWork = _detalhes.gump
local AceLocale = LibStub("AceLocale-3.0")
local Loc = AceLocale:GetLocale ("Details_EncounterDetails")
local Graphics = LibStub:GetLibrary("LibGraph-2.0")
local ipairs = ipairs
local _math_floor = math.floor
local _cstr = string.format
... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-BrokenIsles/localization.cn.lua | 1 | 1316 | -- Mini Dragon(projecteurs@gmail.com)
-- 夏一可
-- Blizzard Entertainment
-- Last update: 2017/07/03
if GetLocale() ~= "zhCN" then return end
local L
-----------------------
-- Inquisitor Meto --
-----------------------
L= DBM:GetModLocalization(2012)
L:SetMiscLocalization({
Pull = "Your fate is only death!"--Needs... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/TinyInspect/InspectGroupMember.lua | 1 | 17678 |
-------------------------------------
-- 小队或团队 装备等级 Author: M
-------------------------------------
local LibEvent = LibStub:GetLibrary("LibEvent.7000")
local LibSchedule = LibStub:GetLibrary("LibSchedule.7000")
local members, numMembers = {}, 0
--是否觀察完畢
local function InspectDone()
for guid, v in pairs(members... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/ElvUI_Enhanced/modules/equipment/setoverlay.lua | 1 | 4144 | local E, L, V, P, G = unpack(ElvUI);
local SO = E:NewModule('SetOverlay', 'AceHook-3.0', 'AceEvent-3.0', 'AceTimer-3.0')
local B = E:GetModule('Bags')
local byte, format = string.byte, string.format
local tinsert, twipe = table.insert, table.wipe
local updateTimer
local containers = {}
local infoArray = {}
local equ... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-DragonSoul/Yorsahj.lua | 1 | 10054 | local mod = DBM:NewMod(325, "DBM-DragonSoul", nil, 187)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20220116034430")
mod:SetCreatureID(55312)
mod:SetEncounterID(1295)
--mod:DisableRegenDetection()--Uncomment in next dbm release
--mod:SetModelSound("sound\\CREATURE\\Yorsahj\\VO_DS_YORSAHJ_INTRO_01.OGG", "soun... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c71473122.lua | 2 | 1474 | --Fantasia Sacrafice
function c71473122.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(c71473122.condition)
e1:SetCost(c71473122.cost)
e1:SetTarget(c71473122.target)
e1:Set... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c7025015.lua | 2 | 3270 | --Earthbound Immortal Huacachina Kon
function c7025015.initial_effect(c)
c:SetUniqueOnField(1,1,10000000)
--self destroy
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE)
e1:SetCode(EFFECT_SELF_DESTROY)
e1:SetCondition(c7025015.sd... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/ElvUI/Core/Modules/UnitFrames/Units/Pet.lua | 1 | 4376 | local E, L, V, P, G = unpack(ElvUI)
local UF = E:GetModule('UnitFrames')
local ElvUF = E.oUF
local _G = _G
local tinsert = tinsert
-- GLOBALS: ElvUF_Player
function UF:Construct_PetFrame(frame)
frame.Health = UF:Construct_HealthBar(frame, true, true, 'RIGHT')
frame.Power = UF:Construct_PowerBar(frame, true, true, '... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/BtWLoadouts/Localizations.deDE.lua | 1 | 4634 | -- German translations. Thanks to Stellschraube, Sekorhex, d4mich4, badphish, and Mistrahw on Curse
if GetLocale() ~= "deDE" then return; end
local _, Internal = ...
local L = Internal.L
L["A tome is needed to continue equiping your set."] = "Ein Foliant wird benötigt um dein gewähltes Profil ändern zu können."
L["A... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/MeetingStone/Logic/Recent.lua | 1 | 4229 | --[[
Recent.lua
@Author : DengSir (tdaddon@163.com)
@Link : https://dengsir.github.io
]]
BuildEnv(...)
Recent = Addon:NewModule('Recent', 'AceTimer-3.0', 'AceBucket-3.0', 'AceEvent-3.0', 'NetEaseSocket-2.0')
function Recent:OnInitialize()
self.managers = {}
self.groupManagers = setmetatable({}, {__index... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/Details/frames/window_welcome.lua | 1 | 66295 | local _detalhes = _G._detalhes
local Loc = LibStub("AceLocale-3.0"):GetLocale ( "Details" )
local SharedMedia = LibStub:GetLibrary("LibSharedMedia-3.0")
local g = _detalhes.gump
local _
function _detalhes:OpenWelcomeWindow()
GameCooltip:Close()
local window = _G.DetailsWelcomeWindow
if (not window) then
--o... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c22769925.lua | 2 | 3114 | --Stand Your Ground!!
function c22769925.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(c22769925.condition)
e1:SetCost(c22769925.cost)
e1:SetTarget(c22769925.target)
e1:Se... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/WorldQuestTracker/libs/AceGUI-3.0/widgets/AceGUIWidget-DropDown.lua | 10 | 18802 | --[[ $Id: AceGUIWidget-DropDown.lua 1239 2020-09-20 10:22:02Z nevcairiel $ ]]--
local AceGUI = LibStub("AceGUI-3.0")
-- Lua APIs
local min, max, floor = math.min, math.max, math.floor
local select, pairs, ipairs, type, tostring = select, pairs, ipairs, type, tostring
local tsort = table.sort
-- WoW APIs
local PlaySou... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-ThroneofThunder/localization.de.lua | 1 | 8208 | if GetLocale() ~= "deDE" then
return
end
local L
--------------------------
-- Jin'rokh the Breaker --
--------------------------
L = DBM:GetModLocalization(827)
L:SetWarningLocalization({
specWarnWaterMove = "%s bald - Raus aus dem leitfähigen Wasser!"
})
L:SetOptionLocalization({
specWarnWaterMove = "Spezialwar... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-GUI/modules/options/filters/Filters.lua | 1 | 1477 | local L = DBM_GUI_L
DBM_GUI.Cat_Filters = DBM_GUI:CreateNewPanel(L.TabCategory_Filters, "option")
local FiltersArea1 = DBM_GUI.Cat_Filters:CreateArea(L.Area_BasicSetup)
FiltersArea1:CreateText("|cFF73C2FBhttps://github.com/DeadlyBossMods/DeadlyBossMods/wiki/%5BNew-User-Guide%5D-Initial-Setup-Tips|r", nil, true, nil... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/ElvUI/Core/Modules/DataTexts/Resilience.lua | 1 | 1796 | local E, L, V, P, G = unpack(ElvUI) --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
local DT = E:GetModule('DataTexts')
local min = min
local join = strjoin
local format = format
local GetCombatRating = GetCombatRating
local GetCombatRatingBonus = GetCombatRatingBonus
local GetMaxCombatRatingBonus = GetMaxC... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c77777791.lua | 2 | 2438 | --RUM Hellformed Force
function c77777791.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(77777791,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetT... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c20161987.lua | 2 | 4695 | --Strong Lizardfolk - Deathlord
function c20161987.initial_effect(c)
c:SetSPSummonOnce(20161987)
--synchro summon
aux.AddSynchroProcedure(c,aux.FilterBoolFunction(Card.IsSetCard,0xab90),aux.NonTuner(Card.IsRace,RACE_REPTILE),1)
c:EnableReviveLimit()
--atkup
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c55438808.lua | 2 | 1547 | --G.R.M. Tome of Summoning
function c55438808.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,55438808)
e1:SetCost(c55438808.cost)
e1:SetTarget(c55438808.target)
e1:SetO... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c512000020.lua | 2 | 2781 | --No.69 紋章神コート・オブ・アームズ
function c512000020.initial_effect(c)
--xyz summon
aux.AddXyzProcedure(c,nil,4,3)
c:EnableReviveLimit()
--disable
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetRange(LOCATION_MZONE)
e1:SetTargetRange(LOCATION_MZONE,LOCATION_MZONE)
e1:SetCode(EFFECT_DISABLE)
e1:SetT... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c20912322.lua | 2 | 1452 | --Action Card - Conjured Blades
function c20912322.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:... | gpl-3.0 |
Markismus/koreader | frontend/ui/widget/pathchooser.lua | 3 | 4928 | local BD = require("ui/bidi")
local ButtonDialogTitle = require("ui/widget/buttondialogtitle")
local FileChooser = require("ui/widget/filechooser")
local Font = require("ui/font")
local UIManager = require("ui/uimanager")
local ffiutil = require("ffi/util")
local lfs = require("libs/libkoreader-lfs")
local util = requi... | agpl-3.0 |
qyh214/wow_addons_private_use | AddOns/AddOnSkins/Skins/Mainline/Blizzard/BarberShop.lua | 1 | 1508 | local AS = unpack(AddOnSkins)
local _G = _G
function AS:Blizzard_BarbershopUI(event, addon)
if addon ~= "Blizzard_BarbershopUI" then return end
AS:SkinFrame(_G.BarberShopFrame)
_G.BarberShopFrame:SetSize(_G.BarberShopFrame:GetWidth() - 30, _G.BarberShopFrame:GetHeight() - 56)
AS:StripTextures(_G.BarberShopFrame... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-BastionTwilight/localization.es.lua | 1 | 5549 | if GetLocale() ~= "esES" and GetLocale() ~= "esMX" then return end
local L
--------------------------
-- Halfus Rompevermis --
--------------------------
L = DBM:GetModLocalization(156)
L:SetOptionLocalization({
ShowDrakeHealth = "Mostrar salud de los dragonantes liberados (requiere que la opción de mostrar marco... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c160008746.lua | 2 | 1208 | --Paintress Baconia
function c160008746.initial_effect(c)
--pendulum summon
aux.EnablePendulumAttribute(c)
--splimit
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetRange(LOCATION_PZONE)
e2:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON)
e2:SetProperty(EFFECT_FLAG_PLAYER_TARGET+EFFECT_FLAG_CANNOT_DISA... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c77777817.lua | 2 | 2980 | --Requipped Warrior Amadeus
function c77777817.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(77777817,1))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_DESTROYED)
e1:SetProperty(EFFECT_FLAG_DELAY)
... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c888000015.lua | 2 | 2027 | --Evil HERO Land Breaker
function c888000015.initial_effect(c)
--fusion material
c:EnableReviveLimit()
aux.AddFusionProcCode2(c,37195861,75434695,true,true)
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:Se... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/Narcissus_Achievements/Code/NavigationButtonMixin.lua | 1 | 2776 | local InspectionFrame;
local function NavButton_OnUpdate(self, elapsed)
self.t = self.t + elapsed;
if self.t > self.threshold then
self.isHolding = true;
self.t = 0;
self.level = self.level + 1;
if self.level > 3 then
self.threshold = 0.5;
elseif self.level >... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c34858501.lua | 2 | 4250 | --Mariaveil
function c34858501.initial_effect(c)
--pendulum summon
aux.EnablePendulumAttribute(c)
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK)
e2:SetRange(LOCATION_PZONE)
e2:SetTargetRange(LOCATION_MZONE,0)
e2:SetCondition(c34858501.atkcon)
e2:SetTarget(c348585... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c100000805.lua | 2 | 3146 | --Created and coded by Rising Phoenix
function c100000805.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,100000805)
e1:SetCost(c100000805.cost)
e1:SetTarget(c100000805.tg)
... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c77628936.lua | 1 | 2380 | --Drach Khan, Abdomination of the Black Art
function c77628936.initial_effect(c)
--xyz summon
aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsRace,RACE_ZOMBIE),4,2)
c:EnableReviveLimit()
--to grave
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(77628936,1))
e1:SetCategory(CATEGORY_TOGRAVE)
e... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-VoA/localization.ru.lua | 1 | 2183 | if GetLocale() ~= "ruRU" then return end
local L
----------------------------------
-- Archavon the Stone Watcher --
----------------------------------
L = DBM:GetModLocalization("Archavon")
L:SetGeneralLocalization({
name = "Аркавон Страж Камня"
})
L:SetWarningLocalization({
WarningGrab = "Аркавон хватает |3-1... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-BlackrockFoundry/localization.es.lua | 1 | 4377 | if GetLocale() ~= "esES" and GetLocale() ~= "esMX" then
return
end
local L
-----------
-- Gruul --
-----------
L = DBM:GetModLocalization(1161)
L:SetOptionLocalization({
MythicSoakBehavior = "Patrón de agrupamiento para Tajo infernal",
ThreeGroup = "3 grupos, 1 acumulación",
TwoGroup = "2 grupos, 2 acumulacio... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/WindDungeonHelper/locales/enus.lua | 1 | 3159 | -- Generated by WindToolsScripts
-- https://github.com/fang2hou/WindToolsScripts
local addonName = ...
local L = LibStub("AceLocale-3.0"):NewLocale(addonName, "enUS", true, true)
if not L then return end
L["%name% got hit by %spell% for %damage% (%percent%)."] = true
L["%name% got hit by %spell%."] = true
L["%name% go... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/AddOnSkins/Skins/Mainline/Blizzard/Contribution.lua | 1 | 1122 | local AS = unpack(AddOnSkins)
function AS:Blizzard_Contribution(event, addon)
if addon ~= 'Blizzard_Contribution' then return end
AS:SkinCloseButton(ContributionCollectionFrame.CloseButton)
ContributionCollectionFrame.CloseButton.CloseButtonBackground:SetAlpha(0)
AS:SkinTooltip(ContributionBuffTooltip)
AS:SkinT... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c8722166.lua | 2 | 2449 | --Kryos Hunter
function c8722166.initial_effect(c)
--fustion material
aux.AddFusionProcFunRep(c,aux.FilterBoolFunction(Card.IsSetCard,0xb1b32),2,true)
c:EnableReviveLimit()
--cannot spsummon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE+EFFECT_FLAG_CANNOT_... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c59821079.lua | 2 | 1492 | --The Idol's Final Assault
function c59821079.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCountLimit(1,59821079)
e1:SetCondition(c59821079.condition)
e1:SetCost(c59821079.cost)
e1... | gpl-3.0 |
Markismus/koreader | frontend/apps/reader/modules/readerconfig.lua | 2 | 6102 | local ConfigDialog = require("ui/widget/configdialog")
local Device = require("device")
local Event = require("ui/event")
local Geom = require("ui/geometry")
local InputContainer = require("ui/widget/container/inputcontainer")
local UIManager = require("ui/uimanager")
local CreOptions = require("ui/data/creoptions")
lo... | agpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c99960041.lua | 2 | 6229 | --BRS - Black Gold Saw
function c99960041.initial_effect(c)
c:SetUniqueOnField(1,0,99960040)
--Xyz Summon
aux.AddXyzProcedure(c,nil,4,2)
c:EnableReviveLimit()
--Attach
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c55438806.lua | 2 | 5936 | --T.M. Twin Light Dragon
function c55438806.initial_effect(c)
--fusion material
c:EnableReviveLimit()
aux.AddFusionProcFunRep(c,c55438806.ffilter,3,false)
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetC... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c99970140.lua | 1 | 1844 | --DAL - Sandalphon
function c99970140.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(c99970140.target)
e1:SetOperation(c99970140.operation)
... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c87002909.lua | 2 | 4229 | --May-Raias Blood Golem
function c87002909.initial_effect(c)
c:EnableReviveLimit()
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(87002909,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(87002909)
e1:SetRange(LOCATION_HAND)
e... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-Serpentshrine/localization.kr.lua | 1 | 4473 | if GetLocale() ~= "koKR" then return end
local L
---------------------------
-- Hydross the Unstable --
---------------------------
L = DBM:GetModLocalization("Hydross")
L:SetGeneralLocalization{
name = "불안정한 히드로스"
}
L:SetWarningLocalization{
WarnMark = "%s : %s",
WarnPhase = "%s 단계",
SpecWarnMark = "%s : %s... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/MythicDungeonTools/libs/LibStub/LibStub.lua | 92 | 2200 | -- $Id: LibStub.lua 103 2014-10-16 03:02:50Z mikk $
-- LibStub is a simple versioning stub meant for use in Libraries. http://www.wowace.com/addons/libstub/ for more info
-- LibStub is hereby placed in the Public Domain
-- Credits: Kaelten, Cladhaire, ckknight, Mikk, Ammo, Nevcairiel, joshborke
local LIBSTUB_MAJOR, LI... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-ThroneofThunder/localization.es.lua | 1 | 11642 | if GetLocale() ~= "esES" and GetLocale() ~= "esMX" then
return
end
local L
--------------------------
-- Jin'rokh el Rompedor --
--------------------------
L = DBM:GetModLocalization(827)
L:SetWarningLocalization({
specWarnWaterMove = "%s en breve - ¡sal de Agua conductiva!"
})
L:SetOptionLocalization({
specWarnW... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | c100000868.lua | 1 | 4062 | --fieldsp
function c100000868.initial_effect(c)
c:SetUniqueOnField(1,0,100000868)
c:EnableUnsummonable()
--spsummon limit
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetValue(au... | gpl-3.0 |
bradparks/hammerspoon | extensions/inspect/init.lua | 11 | 10963 | --- === hs.inspect ===
---
--- Produce human-readable representations of Lua variables (particularly tables)
---
--- This extension is based on inspect.lua by Enrique García Cota
--- https://github.com/kikito/inspect.lua
local inspect ={
_VERSION = 'inspect.lua 3.0.0',
_URL = 'http://github.com/kikito/inspect.... | mit |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c77777813.lua | 2 | 3171 | --Requipped Warrior Beatrice
function c77777813.initial_effect(c)
--tohand
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetDescription(aux.Stringid(77777813,1))
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1,77777813)
e1:Set... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c55438797.lua | 2 | 5911 | --T.M. Great Angel
function c55438797.initial_effect(c)
c:EnableReviveLimit()
--special summon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
c:RegisterEffect(e1)
--special summon
l... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c99990400.lua | 1 | 2568 | --SAO - Sinon - ALO
function c99990400.initial_effect(c)
--Synchro summon
aux.AddSynchroProcedure2(c,nil,aux.NonTuner(Card.IsSetCard,0x999))
c:EnableReviveLimit()
--Send To Grave
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMA... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c544454457.lua | 2 | 1657 | --Malefic Red Dragon Archfiend (ANIME)
function c544454457.initial_effect(c)
c:EnableReviveLimit()
--special summon
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetCode(EFFECT_SPSUMMON_PROC)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
e1:SetRange(LOCATION_HAND)
e1:SetCondition(c544454457.spcon)
... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/DBM-Party-Cataclysm/ThroneOfTides/CommanderUlthok.lua | 1 | 1739 | local mod = DBM:NewMod(102, "DBM-Party-Cataclysm", 9, 65)
local L = mod:GetLocalizedStrings()
mod.statTypes = "normal,heroic,timewalker"
mod:SetRevision("20220920232426")
mod:SetCreatureID(40765)
mod:SetEncounterID(1044)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_AURA_APPLIED 76094 76100 7602... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/WeakAurasTemplates/TriggerTemplatesDataWrath.lua | 1 | 61833 | local AddonName, TemplatePrivate = ...
local WeakAuras = WeakAuras
if not WeakAuras.IsWrathClassic() then return end
local L = WeakAuras.L
local GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell = GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell
-- The templates tables are ... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/ElvUI_WindTools/Modules/Skins/Addons/WeakAurasOptions.lua | 1 | 25478 | local W, F, E, L = unpack(select(2, ...))
local S = W.Modules.Skins
local ES = E.Skins
local _G = _G
local gsub = gsub
local hooksecurefunc = hooksecurefunc
local pairs = pairs
local strfind = strfind
local tinsert = tinsert
local type = type
local unpack = unpack
local wipe = wipe
local IsAddOnLoaded = IsAddOnLoaded... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/RareScanner/ExternalLibs/AceConfig-3.0/AceConfigCmd-3.0/AceConfigCmd-3.0.lua | 15 | 23382 | --- AceConfigCmd-3.0 handles access to an options table through the "command line" interface via the ChatFrames.
-- @class file
-- @name AceConfigCmd-3.0
-- @release $Id: AceConfigCmd-3.0.lua 1202 2019-05-15 23:11:22Z nevcairiel $
--[[
AceConfigCmd-3.0
Handles commandline optionstable access
REQUIRES: AceConsole-3.0... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/RSA/Libs/AceConfig-3.0/AceConfigCmd-3.0/AceConfigCmd-3.0.lua | 15 | 23382 | --- AceConfigCmd-3.0 handles access to an options table through the "command line" interface via the ChatFrames.
-- @class file
-- @name AceConfigCmd-3.0
-- @release $Id: AceConfigCmd-3.0.lua 1202 2019-05-15 23:11:22Z nevcairiel $
--[[
AceConfigCmd-3.0
Handles commandline optionstable access
REQUIRES: AceConsole-3.0... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/AddOnSkins/Skins/Classic/Blizzard/Auction.lua | 2 | 9159 | local AS = unpack(AddOnSkins)
-- Cache global variables
--Lua functions
local _G = _G
local pairs, select, unpack = pairs, select, unpack
--WoW API / Variables
local CreateFrame = CreateFrame
local hooksecurefunc = hooksecurefunc
-- GLOBALS:
function AS:Blizzard_AuctionUI(event, addon)
if addon ~= "Blizzard_AuctionU... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c20150001.lua | 2 | 3359 | --Thunder Strike Alien
function c20150001.initial_effect(c)
--xyz summon
aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsRace,RACE_MACHINE),4,2)
c:EnableReviveLimit()
--Pierce
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_PIERCE)
c:RegisterEffect(e1)
--Equip
local e3=Eff... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/MythicDungeonTools/Modules/PullOutlines.lua | 1 | 9050 | local _, MDT = ...
local twipe, tinsert, tremove, tgetn = table.wipe, table.insert, table.remove, table.getn
-- return true if a is more lower-left than b
local function is_lower_left(a, b)
if a[1] < b[1] then return true end
if a[1] > b[1] then return false end
if a[2] < b[2] then return true end
if a[2] > b[... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/Immersion/Mixins/Elements.lua | 1 | 26402 | local API, TEMPLATE, Elements, _, L = ImmersionAPI, {}, {}, ...
L.ElementsMixin = Elements
local TEXT_COLOR, TITLE_COLOR = GetMaterialTextColors('Stone') -- default text colors
local REWARDS_OFFSET = 10 -- vertical distance between sections
local ITEMS_PER_ROW = 2 -- modulus value for item rows
local ACTIVE_TEMPLATE
... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/ElvUI/Mainline/Modules/Skins/PVP.lua | 1 | 9158 | local E, L, V, P, G = unpack(ElvUI)
local S = E:GetModule('Skins')
local TT = E:GetModule('Tooltip')
local _G = _G
local ipairs, pairs, unpack, next = ipairs, pairs, unpack, next
local GetItemInfo = GetItemInfo
local GetItemQualityColor = GetItemQualityColor
local hooksecurefunc = hooksecurefunc
local ITEMQUALITY_AR... | gpl-3.0 |
qyh214/wow_addons_private_use | AddOns/Details/core/plugins_solo.lua | 1 | 12457 |
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
local _detalhes = _G._detalhes
local Loc = LibStub("AceLocale-3.0"):GetLocale ( "Details" )
------------... | gpl-3.0 |
RisingPhoenixYGOPRO/YGOPro-Custom-Cards | script/c77662915.lua | 1 | 2876 | --Vocaloid Sazanami Shione
function c77662915.initial_effect(c)
--xyz summon
aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsRace,RACE_MACHINE),8,2)
c:EnableReviveLimit()
--spsummon limit
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_... | gpl-3.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.