You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.2 KiB
93 lines
2.2 KiB
local L
|
|
|
|
--------------------------
|
|
-- Blastenheimer 5000 --
|
|
--------------------------
|
|
L = DBM:GetModLocalization("Cannon")
|
|
|
|
L:SetGeneralLocalization({
|
|
name = "Blastenheimer 5000"
|
|
})
|
|
|
|
-------------
|
|
-- Gnoll --
|
|
-------------
|
|
L = DBM:GetModLocalization("Gnoll")
|
|
|
|
L:SetGeneralLocalization({
|
|
name = "Whack-a-Gnoll"
|
|
})
|
|
|
|
L:SetWarningLocalization({
|
|
warnGameOverQuest = "Earned %d out of %d possible points spawned",
|
|
warnGameOverNoQuest = "Game ended with a total of %d possible points spawned",
|
|
warnGnoll = "Gnoll spawned",
|
|
warnHogger = "Hogger spawned",
|
|
specWarnHogger = "Hogger spawned!"
|
|
})
|
|
|
|
L:SetOptionLocalization({
|
|
warnGameOver = "Announce total possible points when game ends",
|
|
warnGnoll = "Announce when a Gnoll spawns",
|
|
warnHogger = "Announce when a Hogger spawns",
|
|
specWarnHogger = "Show special warning when a Hogger spawns"
|
|
})
|
|
|
|
------------------------
|
|
-- Shooting Gallery --
|
|
------------------------
|
|
L = DBM:GetModLocalization("Shot")
|
|
|
|
L:SetGeneralLocalization({
|
|
name = "Shooting Gallery"
|
|
})
|
|
|
|
L:SetOptionLocalization({
|
|
SetBubbles = "Automatically disable chat bubbles during $spell:101871<br/>(restores them when game ends)"
|
|
})
|
|
|
|
----------------------
|
|
-- Tonk Challenge --
|
|
----------------------
|
|
L = DBM:GetModLocalization("Tonks")
|
|
|
|
L:SetGeneralLocalization({
|
|
name = "Tonk Challenge"
|
|
})
|
|
|
|
---------------------------
|
|
-- Fire Ring Challenge --
|
|
---------------------------
|
|
L = DBM:GetModLocalization("Rings")
|
|
|
|
L:SetGeneralLocalization({
|
|
name = "Fire Ring Challenge"
|
|
})
|
|
|
|
-----------------------
|
|
-- Darkmoon Rabbit --
|
|
-----------------------
|
|
L = DBM:GetModLocalization("Rabbit")
|
|
|
|
L:SetGeneralLocalization({
|
|
name = "Darkmoon Rabbit"
|
|
})
|
|
|
|
-------------------------
|
|
-- Darkmoon Moonfang --
|
|
-------------------------
|
|
L = DBM:GetModLocalization("Moonfang")
|
|
|
|
L:SetGeneralLocalization({
|
|
name = "Moonfang"
|
|
})
|
|
|
|
L:SetWarningLocalization({
|
|
specWarnCallPack = "Call the Pack - Run > 40 yards from Moonfang!",
|
|
specWarnMoonfangCurse = "Moonfang's Curse - Run > 10 yards from Moonfang!"
|
|
})
|
|
|
|
L:SetOptionLocalization({
|
|
specWarnCallPack = DBM_CORE_L.AUTO_SPEC_WARN_OPTIONS.run:format(144602),
|
|
specWarnMoonfangCurse = DBM_CORE_L.AUTO_SPEC_WARN_OPTIONS.run:format(144590)
|
|
})
|
|
|