added enchantments to DB
* added markdown [enchantment=123] and [emote=456] * updated item_stats to accomodate enchantments * updated tables for community content to handle emotes and enchantments Spells: * getStatGain() now reads aura 123 as Spell Penetration * fixed error in tooltips when displaying effect ranges (e.g. 10 - 10 damage) * display the miscValue of aura 50, 102, 131 and 180 human readable Emote: * no longer displays empty quickInfo on detail page * detail page no longer pretends to be a pet Setup: * sync no longer regenerates all tables/files, when the supplied world-table affects nothing * fixed dependancy of ?_source from ?_achievment (damn plural-s) Misc: * FireFox doesn't understand <node>.innerText, use <node>.textContent instead please refresh the affected tables and files php aowow --sql=itemenchantment,item_stats php aowow --build=enchants,gems
This commit is contained in:
parent
f6e15c35fc
commit
7f08708555
42 changed files with 1954 additions and 363 deletions
|
|
@ -38,6 +38,7 @@ a {
|
|||
color: #FFD100;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
|
|
|
|||
|
|
@ -570,6 +570,86 @@ var Markup = {
|
|||
return str;
|
||||
}
|
||||
},
|
||||
emote:
|
||||
{
|
||||
empty: true,
|
||||
allowInReplies: true,
|
||||
attr:
|
||||
{
|
||||
unnamed: { req: true, valid: /^[0-9]+$/ },
|
||||
domain: { req: false, valid: /^(beta|mop|ptr|www|de|es|fr|ru|pt)$/ },
|
||||
site: { req: false, valid: /^(beta|mop|ptr|www|de|es|fr|ru|pt)$/ }
|
||||
},
|
||||
validate: function(attr)
|
||||
{
|
||||
if((attr.domain || attr.site) && Markup.dbpage)
|
||||
return false;
|
||||
return true;
|
||||
},
|
||||
toHtml: function(attr)
|
||||
{
|
||||
var id = attr.unnamed;
|
||||
var domainInfo = Markup._getDatabaseDomainInfo(attr);
|
||||
var url = domainInfo[0];
|
||||
var nameCol = domainInfo[1];
|
||||
|
||||
if(g_emotes[id] && g_emotes[id][nameCol])
|
||||
{
|
||||
return '<a href="' + url + '?emote=' + id + '"' + Markup._addGlobalAttributes(attr) + '>' + Markup._safeHtml(g_emotes[id][nameCol]) + '</a>';
|
||||
}
|
||||
return '<a href="' + url + '?emote=' + id + '"' + Markup._addGlobalAttributes(attr) + '>(' + LANG.types[501][0] + ' #' + id + ')</a>';
|
||||
},
|
||||
toText: function(attr)
|
||||
{
|
||||
var id = attr.unnamed;
|
||||
var domainInfo = Markup._getDatabaseDomainInfo(attr);
|
||||
var nameCol = domainInfo[1];
|
||||
|
||||
if(g_emotes[id] && g_emotes[id][nameCol])
|
||||
return Markup._safeHtml(g_emotes[id][nameCol]);
|
||||
return LANG.types[501][0] + ' #' + id;
|
||||
}
|
||||
},
|
||||
enchantment:
|
||||
{
|
||||
empty: true,
|
||||
allowInReplies: true,
|
||||
attr:
|
||||
{
|
||||
unnamed: { req: true, valid: /^[0-9]+$/ },
|
||||
domain: { req: false, valid: /^(beta|mop|ptr|www|de|es|fr|ru|pt)$/ },
|
||||
site: { req: false, valid: /^(beta|mop|ptr|www|de|es|fr|ru|pt)$/ }
|
||||
},
|
||||
validate: function(attr)
|
||||
{
|
||||
if((attr.domain || attr.site) && Markup.dbpage)
|
||||
return false;
|
||||
return true;
|
||||
},
|
||||
toHtml: function(attr)
|
||||
{
|
||||
var id = attr.unnamed;
|
||||
var domainInfo = Markup._getDatabaseDomainInfo(attr);
|
||||
var url = domainInfo[0];
|
||||
var nameCol = domainInfo[1];
|
||||
|
||||
if(g_enchantments[id] && g_enchantments[id][nameCol])
|
||||
{
|
||||
return '<a href="' + url + '?enchantment=' + id + '"' + Markup._addGlobalAttributes(attr) + '>' + Markup._safeHtml(g_enchantments[id][nameCol]) + '</a>';
|
||||
}
|
||||
return '<a href="' + url + '?enchantment=' + id + '"' + Markup._addGlobalAttributes(attr) + '>(' + LANG.types[502][0] + ' #' + id + ')</a>';
|
||||
},
|
||||
toText: function(attr)
|
||||
{
|
||||
var id = attr.unnamed;
|
||||
var domainInfo = Markup._getDatabaseDomainInfo(attr);
|
||||
var nameCol = domainInfo[1];
|
||||
|
||||
if(g_enchantments[id] && g_enchantments[id][nameCol])
|
||||
return Markup._safeHtml(g_enchantments[id][nameCol]);
|
||||
return LANG.types[502][0] + ' #' + id;
|
||||
}
|
||||
},
|
||||
event:
|
||||
{
|
||||
empty: true,
|
||||
|
|
|
|||
|
|
@ -401,8 +401,83 @@ var fi_filters = {
|
|||
{ id: 18, name: 'teamname5v5', type: 'str' },
|
||||
{ id: 19, name: 'teamrtng5v5', type: 'num' },
|
||||
{ id: 20, name: 'teamcontrib5v5', type: 'num' }
|
||||
]
|
||||
],
|
||||
|
||||
// custom
|
||||
enchantments: [
|
||||
{ id: 1, name: 'sepgeneral' },
|
||||
{ id: 2, name: 'id', type: 'num', before: 'name' },
|
||||
{ id: 3, name: 'requiresprof', type: 'profession' },
|
||||
{ id: 4, name: 'reqskillrank', type: 'num' },
|
||||
{ id: 5, name: 'hascondition', type: 'yn' },
|
||||
|
||||
{ id: 19, name: 'sepbasestats' },
|
||||
{ id: 21, name: 'agi', type: 'num' },
|
||||
{ id: 23, name: 'int', type: 'num' },
|
||||
{ id: 22, name: 'sta', type: 'num' },
|
||||
{ id: 24, name: 'spi', type: 'num' },
|
||||
{ id: 20, name: 'str', type: 'num' },
|
||||
{ id: 115, name: 'health', type: 'num' },
|
||||
{ id: 116, name: 'mana', type: 'num' },
|
||||
{ id: 60, name: 'healthrgn', type: 'num' },
|
||||
{ id: 61, name: 'manargn', type: 'num' },
|
||||
|
||||
{ id: 120, name: 'sepdefensivestats' },
|
||||
{ id: 41, name: 'armor', type: 'num' },
|
||||
{ id: 44, name: 'blockrtng', type: 'num' },
|
||||
{ id: 43, name: 'block', type: 'num' },
|
||||
{ id: 42, name: 'defrtng', type: 'num' },
|
||||
{ id: 45, name: 'dodgertng', type: 'num' },
|
||||
{ id: 46, name: 'parryrtng', type: 'num' },
|
||||
{ id: 79, name: 'resirtng', type: 'num' },
|
||||
|
||||
{ id: 31, name: 'sepoffensivestats' },
|
||||
{ id: 32, name: 'dps', type: 'num' },
|
||||
{ id: 34, name: 'dmg', type: 'num' },
|
||||
{ id: 77, name: 'atkpwr', type: 'num' },
|
||||
{ id: 97, name: 'feratkpwr', type: 'num', indent: 1 },
|
||||
{ id: 114, name: 'armorpenrtng', type: 'num' },
|
||||
{ id: 96, name: 'critstrkrtng', type: 'num' },
|
||||
{ id: 117, name: 'exprtng', type: 'num' },
|
||||
{ id: 103, name: 'hastertng', type: 'num' },
|
||||
{ id: 119, name: 'hitrtng', type: 'num' },
|
||||
{ id: 94, name: 'splpen', type: 'num' },
|
||||
{ id: 123, name: 'splpwr', type: 'num' },
|
||||
{ id: 52, name: 'arcsplpwr', type: 'num', indent: 1 },
|
||||
{ id: 53, name: 'firsplpwr', type: 'num', indent: 1 },
|
||||
{ id: 54, name: 'frosplpwr', type: 'num', indent: 1 },
|
||||
{ id: 55, name: 'holsplpwr', type: 'num', indent: 1 },
|
||||
{ id: 56, name: 'natsplpwr', type: 'num', indent: 1 },
|
||||
{ id: 57, name: 'shasplpwr', type: 'num', indent: 1 },
|
||||
|
||||
{ id: 121, name: 'sepresistances' },
|
||||
{ id: 25, name: 'arcres', type: 'num' },
|
||||
{ id: 26, name: 'firres', type: 'num' },
|
||||
{ id: 28, name: 'frores', type: 'num' },
|
||||
{ id: 30, name: 'holres', type: 'num' },
|
||||
{ id: 27, name: 'natres', type: 'num' },
|
||||
{ id: 29, name: 'shares', type: 'num' },
|
||||
|
||||
{ id: 47, name: 'sepindividualstats' },
|
||||
{ id: 37, name: 'mleatkpwr', type: 'num' },
|
||||
{ id: 84, name: 'mlecritstrkrtng', type: 'num' },
|
||||
{ id: 78, name: 'mlehastertng', type: 'num' },
|
||||
{ id: 95, name: 'mlehitrtng', type: 'num' },
|
||||
{ id: 38, name: 'rgdatkpwr', type: 'num' },
|
||||
{ id: 40, name: 'rgdcritstrkrtng', type: 'num' },
|
||||
{ id: 101, name: 'rgdhastertng', type: 'num' },
|
||||
{ id: 39, name: 'rgdhitrtng', type: 'num' },
|
||||
{ id: 49, name: 'splcritstrkrtng', type: 'num' },
|
||||
{ id: 102, name: 'splhastertng', type: 'num' },
|
||||
{ id: 48, name: 'splhitrtng', type: 'num' },
|
||||
{ id: 51, name: 'spldmg', type: 'num' },
|
||||
{ id: 50, name: 'splheal', type: 'num' },
|
||||
|
||||
{ id: 9999,name: 'sepcommunity' },
|
||||
{ id: 10, name: 'hascomments', type: 'yn' },
|
||||
{ id: 11, name: 'hasscreenshots', type: 'yn' },
|
||||
{ id: 12, name: 'hasvideos', type: 'yn' }
|
||||
]
|
||||
};
|
||||
|
||||
function fi_toggle() {
|
||||
|
|
|
|||
|
|
@ -2256,7 +2256,7 @@ function ss_appendSticky() {
|
|||
th = sections[sections.length - (lv_videos && lv_videos.length ? 2 : 1)];
|
||||
}
|
||||
|
||||
$WH.ae(a, $WH.ct(th.innerText + ' (' + lv_screenshots.length + ')'));
|
||||
$WH.ae(a, $WH.ct(th.textContent + ' (' + lv_screenshots.length + ')'));
|
||||
a.href = '#screenshots'
|
||||
a.title = $WH.sprintf(LANG.infobox_showall, lv_screenshots.length);
|
||||
a.onclick = function() {
|
||||
|
|
@ -2876,12 +2876,13 @@ function vi_appendSticky() {
|
|||
|
||||
var th = $WH.ge('infobox-videos');
|
||||
var a = $WH.ce('a');
|
||||
|
||||
if (!th) {
|
||||
var sections = $('th', _.parentNode);
|
||||
th = sections[sections.length - (lv_videos && lv_videos.length ? 2 : 1)];
|
||||
}
|
||||
|
||||
$WH.ae(a, $WH.ct(th.innerText + ' (' + lv_videos.length + ')'));
|
||||
$WH.ae(a, $WH.ct(th.textContent + ' (' + lv_videos.length + ')'));
|
||||
a.href = '#videos'
|
||||
a.title = $WH.sprintf(LANG.infobox_showall, lv_videos.length);
|
||||
a.onclick = function() {
|
||||
|
|
@ -21102,25 +21103,29 @@ var
|
|||
g_classes = {},
|
||||
g_races = {},
|
||||
g_skills = {},
|
||||
g_gatheredcurrencies = {};
|
||||
g_gatheredcurrencies = {},
|
||||
g_enchantments = {},
|
||||
g_emotes = {};
|
||||
|
||||
var g_types = {
|
||||
1: 'npc',
|
||||
2: 'object',
|
||||
3: 'item',
|
||||
4: 'itemset',
|
||||
5: 'quest',
|
||||
6: 'spell',
|
||||
7: 'zone',
|
||||
8: 'faction',
|
||||
9: 'pet',
|
||||
10: 'achievement',
|
||||
11: 'title',
|
||||
12: 'event',
|
||||
13: 'class',
|
||||
14: 'race',
|
||||
15: 'skill',
|
||||
17: 'currency'
|
||||
1: 'npc',
|
||||
2: 'object',
|
||||
3: 'item',
|
||||
4: 'itemset',
|
||||
5: 'quest',
|
||||
6: 'spell',
|
||||
7: 'zone',
|
||||
8: 'faction',
|
||||
9: 'pet',
|
||||
10: 'achievement',
|
||||
11: 'title',
|
||||
12: 'event',
|
||||
13: 'class',
|
||||
14: 'race',
|
||||
15: 'skill',
|
||||
17: 'currency',
|
||||
501: 'emote',
|
||||
502: 'enchantment'
|
||||
};
|
||||
|
||||
// Items
|
||||
|
|
|
|||
|
|
@ -770,6 +770,17 @@ var mn_currencies = [
|
|||
[2,"Spieler gegen Spieler","?currencies=2"],
|
||||
[1,"Verschiedenes","?currencies=1"]
|
||||
];
|
||||
var mn_enchantments = [
|
||||
[1,"Zauber (Auslösung)","?enchantments&filter=ty=1"],
|
||||
[3,"Zauber (Anlegen)","?enchantments&filter=ty=3"],
|
||||
[7,"Zauber (Benutzen)","?enchantments&filter=ty=7"],
|
||||
[8,"Prismatischer Sockel","?enchantments&filter=ty=8"],
|
||||
[5,"Statistik","?enchantments&filter=ty=5"],
|
||||
[2,"Waffenschaden","?enchantments&filter=ty=2"],
|
||||
[6,"DPS","?enchantments&filter=ty=6"],
|
||||
[4,"Verteidigung","?enchantments&filter=ty=4"]
|
||||
];
|
||||
|
||||
var mn_talentCalc = [
|
||||
[6,"Todesritter","?talent#j",,{className:"c6",tinyIcon:"class_deathknight"}],
|
||||
[11,"Druide","?talent#0",,{className:"c11",tinyIcon:"class_druid"}],
|
||||
|
|
@ -836,7 +847,8 @@ var mn_database = [
|
|||
[15,"Währungen","?currencies",mn_currencies],
|
||||
[11,"Weltereignisse","?events",mn_holidays],
|
||||
[1,"Zauber","?spells",mn_spells],
|
||||
[100,"Emotes","?emotes",null]
|
||||
[100,"Emotes","?emotes",null],
|
||||
[101,"Verzauberungen","?enchantments",mn_enchantments]
|
||||
];
|
||||
var mn_tools = [
|
||||
[0,"Talentrechner","?talent",mn_talentCalc],
|
||||
|
|
@ -2604,6 +2616,7 @@ var LANG = {
|
|||
lvnote_arenateamsfound: "Insgesamt $1 Arena-Teams",
|
||||
lvnote_arenateamsfound2: "Insgesamt $1 Arena-Teams, $2 passende",
|
||||
lvnote_currenciesfound: "$1 Währungen gefunden ($2 angezeigt)",
|
||||
lvnote_enchantmentsfound: "$1 Verzauberungen gefunden ($2 angezeigt)",
|
||||
|
||||
lvnote_createafilter: '<small><a href="$1">Filter erstellen</a></small>',
|
||||
lvnote_filterresults: '<small><a href="$1">Diese Ergebnisse filtern</a></small>',
|
||||
|
|
@ -3175,23 +3188,25 @@ var LANG = {
|
|||
myaccount_purgesuccess: "Bekanntmachungsdaten wurden erfolgreich gelöscht!",
|
||||
|
||||
types: {
|
||||
1: ["NPC", "NPC" , "NPCs", "NPCs"],
|
||||
2: ["Objekt", "Objekt", "Objekte", "Objekte"],
|
||||
3: ["Gegenstand", "Gegenstand", "Gegenstände", "Gegenstände"],
|
||||
4: ["Ausrüstungsset", "Ausrüstungsset", "Ausrüstungssets", "Ausrüstungssets"],
|
||||
5: ["Quest", "Quest", "Quests", "Quests"],
|
||||
6: ["Zauber", "Zauber", "Zauber", "Zauber"],
|
||||
7: ["Zone", "Zone", "Gebiete", "Gebiete"],
|
||||
8: ["Fraktion", "Fraktion", "Fraktionen", "Fraktionen"],
|
||||
9: ["Begleiter", "Begleiter", "Begleiter", "Begleiter"],
|
||||
10: ["Erfolg", "Erfolg", "Erfolge", "Erfolge"],
|
||||
11: ["Titel", "Titel", "Titel", "Titel"],
|
||||
12: ["Weltereignis", "Weltereignis", "Weltereignisse", "Weltereignisse"],
|
||||
13: ["Klasse", "Klasse", "Klassen", "Klassen"],
|
||||
14: ["Volk", "Volk", "Völker", "Völker"],
|
||||
15: ["Fertigkeit", "Fertigkeit", "Fertigkeiten", "Fertigkeiten"],
|
||||
16: ["Statistik", "Statistik", "Statistiken", "Statistiken"],
|
||||
17: ["Währung", "Währung", "Währungen", "Währungen"]
|
||||
1: ["NPC", "NPC" , "NPCs", "NPCs"],
|
||||
2: ["Objekt", "Objekt", "Objekte", "Objekte"],
|
||||
3: ["Gegenstand", "Gegenstand", "Gegenstände", "Gegenstände"],
|
||||
4: ["Ausrüstungsset", "Ausrüstungsset", "Ausrüstungssets", "Ausrüstungssets"],
|
||||
5: ["Quest", "Quest", "Quests", "Quests"],
|
||||
6: ["Zauber", "Zauber", "Zauber", "Zauber"],
|
||||
7: ["Zone", "Zone", "Gebiete", "Gebiete"],
|
||||
8: ["Fraktion", "Fraktion", "Fraktionen", "Fraktionen"],
|
||||
9: ["Begleiter", "Begleiter", "Begleiter", "Begleiter"],
|
||||
10: ["Erfolg", "Erfolg", "Erfolge", "Erfolge"],
|
||||
11: ["Titel", "Titel", "Titel", "Titel"],
|
||||
12: ["Weltereignis", "Weltereignis", "Weltereignisse", "Weltereignisse"],
|
||||
13: ["Klasse", "Klasse", "Klassen", "Klassen"],
|
||||
14: ["Volk", "Volk", "Völker", "Völker"],
|
||||
15: ["Fertigkeit", "Fertigkeit", "Fertigkeiten", "Fertigkeiten"],
|
||||
16: ["Statistik", "Statistik", "Statistiken", "Statistiken"],
|
||||
17: ["Währung", "Währung", "Währungen", "Währungen"],
|
||||
501: ["Emote", "Emote", "Emotes", "Emotes"],
|
||||
502: ["Verzauberung", "Verzauberung", "Verzauberungen", "Verzauberungen"]
|
||||
},
|
||||
|
||||
timeunitssg: ["Jahr", "Monat", "Woche", "Tag", "Stunde", "Minute", "Sekunde"],
|
||||
|
|
@ -3865,6 +3880,18 @@ var LANG = {
|
|||
teamcontrib5v5: "5v5 Arena-Teambeteiligung"
|
||||
},
|
||||
|
||||
// custom
|
||||
fienchantments: {
|
||||
id: "ID",
|
||||
hascondition: "Benötigt Edelsteinkombination",
|
||||
requiresprof: "Benötigt einen Beruf",
|
||||
|
||||
sepcommunity: "Community",
|
||||
hascomments: "Has comments",
|
||||
hasscreenshots: "Has screenshots",
|
||||
hasvideos: "Has videos"
|
||||
},
|
||||
|
||||
pr_notice: 'Zum ersten Mal hier? – Seid nicht schüchtern! Schaut ruhig mal auf unserer <a href="?help=profiler" target="_blank">Hilfeseite</a> (zurzeit noch unübersetzt) nach! <small class="q0"><a href="javascript:;">Schließen</a></small>',
|
||||
pr_datasource: 'Daten in dieser Registerkarte wurden das letzte Mal $2 von <a href="?user=$1" target="_blank">$1</a> aktualisiert.',
|
||||
pr_purgedata: "Klickt, um alle Abschlussdaten in der aktuellen Registerkarte zu löschen.<br />Nur der Benuzter, der die Daten hochgeladen hat, darf sie löschen.",
|
||||
|
|
|
|||
|
|
@ -816,6 +816,16 @@ var mn_currencies = [
|
|||
[1,"Miscellaneous","?currencies=1"],
|
||||
[2,"Player vs. Player","?currencies=2"]
|
||||
];
|
||||
var mn_enchantments = [
|
||||
[1,"Proc Spell","?enchantments&filter=ty=1"],
|
||||
[3,"Equip Spell","?enchantments&filter=ty=3"],
|
||||
[7,"Use Spell","?enchantments&filter=ty=7"],
|
||||
[8,"Prismatic Socket","?enchantments&filter=ty=8"],
|
||||
[5,"Statistics","?enchantments&filter=ty=5"],
|
||||
[2,"Weapon Damage","?enchantments&filter=ty=2"],
|
||||
[6,"DPS","?enchantments&filter=ty=6"],
|
||||
[4,"Defense","?enchantments&filter=ty=4"]
|
||||
];
|
||||
var mn_talentCalc = [
|
||||
[6,"Death Knight","?talent#j",,{className:"c6",tinyIcon:"class_deathknight"}],
|
||||
[11,"Druid","?talent#0",,{className:"c11",tinyIcon:"class_druid"}],
|
||||
|
|
@ -882,7 +892,8 @@ var mn_database = [
|
|||
[10,"Titles","?titles",mn_titles],
|
||||
[11,"World Events","?events",mn_holidays],
|
||||
[6,"Zones","?zones",mn_zones],
|
||||
[100,"Emotes","?emotes",null]
|
||||
[100,"Emotes","?emotes",null],
|
||||
[101,"Enchantments","?enchantments",mn_enchantments]
|
||||
];
|
||||
var mn_tools = [
|
||||
[0,"Talent Calculator","?talent",mn_talentCalc],
|
||||
|
|
@ -2652,6 +2663,7 @@ var LANG = {
|
|||
lvnote_arenateamsfound: "$1 total arena teams",
|
||||
lvnote_arenateamsfound2: "$1 total arena teams, $2 matching",
|
||||
lvnote_currenciesfound: "$1 currencies found ($2 displayed)",
|
||||
lvnote_enchantmentsfound: "$1 enchantments found ($2 displayed)",
|
||||
|
||||
lvnote_createafilter: '<small><a href="$1">Create a filter</a></small>',
|
||||
lvnote_filterresults: '<small><a href="$1">Filter these results</a></small>',
|
||||
|
|
@ -3223,23 +3235,25 @@ var LANG = {
|
|||
myaccount_purgesuccess: "Announcement data has been successfully purged!",
|
||||
|
||||
types: {
|
||||
1: ["NPC", "NPC" , "NPCs", "NPCs"],
|
||||
2: ["Object", "object", "Objects", "objects"],
|
||||
3: ["Item", "item", "Items", "items"],
|
||||
4: ["Item Set", "item set", "Item Sets", "item sets"],
|
||||
5: ["Quest", "quest", "Quests", "quests"],
|
||||
6: ["Spell", "spell", "Spells", "spells"],
|
||||
7: ["Zone", "zone", "Zones", "zones"],
|
||||
8: ["Faction", "faction", "Factions", "factions"],
|
||||
9: ["Pet", "pet", "Pets", "pets"],
|
||||
10: ["Achievement", "achievement", "Achievements", "achievements"],
|
||||
11: ["Title", "title", "Titles", "titles"],
|
||||
12: ["World Event", "world event", "World Events", "world events"],
|
||||
13: ["Class", "class", "Classes", "classes"],
|
||||
14: ["Race", "race", "Races", "races"],
|
||||
15: ["Skill", "skill", "Skills", "skills"],
|
||||
16: ["Statistic", "statistic", "Statistics", "statistics"],
|
||||
17: ["Currency", "currency", "Currencies", "currencies"]
|
||||
1: ["NPC", "NPC" , "NPCs", "NPCs"],
|
||||
2: ["Object", "object", "Objects", "objects"],
|
||||
3: ["Item", "item", "Items", "items"],
|
||||
4: ["Item Set", "item set", "Item Sets", "item sets"],
|
||||
5: ["Quest", "quest", "Quests", "quests"],
|
||||
6: ["Spell", "spell", "Spells", "spells"],
|
||||
7: ["Zone", "zone", "Zones", "zones"],
|
||||
8: ["Faction", "faction", "Factions", "factions"],
|
||||
9: ["Pet", "pet", "Pets", "pets"],
|
||||
10: ["Achievement", "achievement", "Achievements", "achievements"],
|
||||
11: ["Title", "title", "Titles", "titles"],
|
||||
12: ["World Event", "world event", "World Events", "world events"],
|
||||
13: ["Class", "class", "Classes", "classes"],
|
||||
14: ["Race", "race", "Races", "races"],
|
||||
15: ["Skill", "skill", "Skills", "skills"],
|
||||
16: ["Statistic", "statistic", "Statistics", "statistics"],
|
||||
17: ["Currency", "currency", "Currencies", "currencies"],
|
||||
501: ["Emote", "emote", "Emotes", "emotes"],
|
||||
502: ["Enchantment", "enchantment", "Enchantments", "enchantments"]
|
||||
},
|
||||
|
||||
timeunitssg: ["year", "month", "week", "day", "hour", "minute", "second"],
|
||||
|
|
@ -3912,6 +3926,18 @@ var LANG = {
|
|||
teamcontrib5v5: "5v5 arena team contribution"
|
||||
},
|
||||
|
||||
// custom
|
||||
fienchantments: {
|
||||
id: "ID",
|
||||
hascondition: "Requires a combination of gems",
|
||||
requiresprof: "Requires a profession",
|
||||
|
||||
sepcommunity: "Community",
|
||||
hascomments: "Has comments",
|
||||
hasscreenshots: "Has screenshots",
|
||||
hasvideos: "Has videos"
|
||||
},
|
||||
|
||||
pr_notice: 'First time? – Don\'t be shy! Just check out our <a href="?help=profiler" target="_blank">Help page</a>! <small class="q0"><a href="javascript:;">close</a></small>',
|
||||
pr_datasource: 'Data in this tab was last updated $2 by <a href="?user=$1" target="_blank">$1</a>.',
|
||||
pr_purgedata: "Click to delete all completion data in the current tab.<br />Only the user who uploaded the data may purge it.",
|
||||
|
|
|
|||
|
|
@ -770,6 +770,16 @@ var mn_currencies = [
|
|||
[1,"Miscelánea","?currencies=1"],
|
||||
[2,"Jugador contra Jugador","?currencies=2"]
|
||||
];
|
||||
var mn_enchantments = [
|
||||
[1,"[Proc Spell]","?enchantments&filter=ty=1"],
|
||||
[3,"[Equip Spell]","?enchantments&filter=ty=3"],
|
||||
[7,"[Use Spell]","?enchantments&filter=ty=7"],
|
||||
[8,"Ranura prismática","?enchantments&filter=ty=8"],
|
||||
[5,"Atributos","?enchantments&filter=ty=5"],
|
||||
[2,"Daño de arma","?enchantments&filter=ty=2"],
|
||||
[6,"DPS","?enchantments&filter=ty=6"],
|
||||
[4,"Defensa","?enchantments&filter=ty=4"]
|
||||
];
|
||||
var mn_talentCalc = [
|
||||
[6,"Caballero de la muerte","?talent#j",,{className:"c6",tinyIcon:"class_deathknight"}],
|
||||
[11,"Druida","?talent#0",,{className:"c11",tinyIcon:"class_druid"}],
|
||||
|
|
@ -836,7 +846,8 @@ var mn_database = [
|
|||
[10,"Títulos","?titles",mn_titles],
|
||||
[11,"Eventos del mundo","?events",mn_holidays],
|
||||
[6,"Zonas","?zones",mn_zones],
|
||||
[100,"Emociones","?emotes",null]
|
||||
[100,"Emociones","?emotes",null],
|
||||
[101,"Encantamientos","?enchantments",mn_enchantments]
|
||||
];
|
||||
var mn_tools = [
|
||||
[0,"Calculadora de talentos","?talent",mn_talentCalc],
|
||||
|
|
@ -2607,6 +2618,7 @@ var LANG = {
|
|||
lvnote_arenateamsfound: "$1 equipos de arena en total",
|
||||
lvnote_arenateamsfound2: "$1 equipos de arena en total, $2 coincidente(s)",
|
||||
lvnote_currenciesfound: "$1 monedas encontradas ($2 mostradas)",
|
||||
lvnote_enchantmentsfound: "$1 encantamientos encontrados (mostrados $2)",
|
||||
|
||||
lvnote_createafilter: '<small><a href="$1">Crea un filtro</a></small>',
|
||||
lvnote_filterresults: '<small><a href="$1">Filtrar estos resultados</a></small>',
|
||||
|
|
@ -3178,23 +3190,25 @@ var LANG = {
|
|||
myaccount_purgesuccess: "¡Se han purgado los datos de los anuncios correctamente!",
|
||||
|
||||
types: {
|
||||
1: ["PNJ", "PNJ" , "PNJs", "PNJs"],
|
||||
2: ["Entidad", "entidad", "Entidades", "entidades"],
|
||||
3: ["Objeto", "objeto", "Objetos", "objetos"],
|
||||
4: ["Conjunto de objetos", "conjunto de objetos", "Conjuntos de objetos", "conjuntos de objetos"],
|
||||
5: ["Misión", "misión", "Misiones", "misiones"],
|
||||
6: ["Hechizo", "hechizo", "Hechizos", "hechizos"],
|
||||
7: ["Zona", "zona", "Zonas", "zonas"],
|
||||
8: ["Facción", "facción", "Facciones", "facciones"],
|
||||
9: ["Mascota", "mascota", "Mascotas", "mascotas"],
|
||||
10: ["Logro", "logro", "Logros", "logros"],
|
||||
11: ["Título", "título", "Títulos", "títulos"],
|
||||
12: ["Suceso mundial", "evento del mundo", "Eventos del mundo", "eventos del mundo"],
|
||||
13: ["Clase", "Clase", "Clases", "Clases"],
|
||||
14: ["Raza", "raza", "Razas", "razas"],
|
||||
15: ["Habilidad", "habilidad", "Habilidades", "habilidades"],
|
||||
16: ["Atributo", "atributo", "Atributos", "atributos"],
|
||||
17: ["Monedas", "monedas", "Monedas", "monedas"]
|
||||
1: ["PNJ", "PNJ" , "PNJs", "PNJs"],
|
||||
2: ["Entidad", "entidad", "Entidades", "entidades"],
|
||||
3: ["Objeto", "objeto", "Objetos", "objetos"],
|
||||
4: ["Conjunto de objetos", "conjunto de objetos", "Conjuntos de objetos", "conjuntos de objetos"],
|
||||
5: ["Misión", "misión", "Misiones", "misiones"],
|
||||
6: ["Hechizo", "hechizo", "Hechizos", "hechizos"],
|
||||
7: ["Zona", "zona", "Zonas", "zonas"],
|
||||
8: ["Facción", "facción", "Facciones", "facciones"],
|
||||
9: ["Mascota", "mascota", "Mascotas", "mascotas"],
|
||||
10: ["Logro", "logro", "Logros", "logros"],
|
||||
11: ["Título", "título", "Títulos", "títulos"],
|
||||
12: ["Suceso mundial", "evento del mundo", "Eventos del mundo", "eventos del mundo"],
|
||||
13: ["Clase", "Clase", "Clases", "Clases"],
|
||||
14: ["Raza", "raza", "Razas", "razas"],
|
||||
15: ["Habilidad", "habilidad", "Habilidades", "habilidades"],
|
||||
16: ["Atributo", "atributo", "Atributos", "atributos"],
|
||||
17: ["Monedas", "monedas", "Monedas", "monedas"],
|
||||
501: ["Emoción", "emoción", "Emociones", "emociones"],
|
||||
502: ["Encantamiento", "encantamiento", "Encantamientos", "encantamientos"]
|
||||
},
|
||||
|
||||
timeunitssg: ["año", "mes", "semana", "día", "hora", "minuto", "segundo"],
|
||||
|
|
@ -3870,6 +3884,18 @@ var LANG = {
|
|||
teamcontrib5v5: "Contribución de equipo de arena 5v5"
|
||||
},
|
||||
|
||||
// custom
|
||||
fienchantments: {
|
||||
id: "ID",
|
||||
hascondition: "[Requires a combination of gems]",
|
||||
requiresprof: "Requiere una profesión",
|
||||
|
||||
sepcommunity: "Comunidad",
|
||||
hascomments: "Tiene comentarios",
|
||||
hasscreenshots: "Tiene capturas de pantalla",
|
||||
hasvideos: "Tiene vídeos",
|
||||
},
|
||||
|
||||
pr_notice: '¿La primera vez? – ¡No temas! ¡Visita nuestra <a href="?help=profiler" target="_blank">página de ayuda</a>! <small class="q0"><a href="javascript:;">cerrar</a></small>',
|
||||
pr_datasource: 'Los datos de esta pestaña se actualizarón por última vez el $2 por <a href="?user=$1" target="_blank">$1</a>.',
|
||||
pr_purgedata: "Haz click para eliminar todos los datos recogidos en la pestaña actual.<br />Solo aquel que ha subido los datos puede hacerlo.",
|
||||
|
|
|
|||
|
|
@ -770,6 +770,16 @@ var mn_currencies = [
|
|||
[1,"Divers","?currencies=1"],
|
||||
[2,"JcJ","?currencies=2"]
|
||||
];
|
||||
var mn_enchantments = [
|
||||
[1,"[Proc Spell]","?enchantments&filter=ty=1"],
|
||||
[3,"[Equip Spell]","?enchantments&filter=ty=3"],
|
||||
[7,"[Use Spell]","?enchantments&filter=ty=7"],
|
||||
[8,"Châsse prismatique","?enchantments&filter=ty=8"],
|
||||
[5,"Statistiques","?enchantments&filter=ty=5"],
|
||||
[2,"Dégâts d'arme","?enchantments&filter=ty=2"],
|
||||
[6,"DPS","?enchantments&filter=ty=6"],
|
||||
[4,"Défense","?enchantments&filter=ty=4"]
|
||||
];
|
||||
var mn_talentCalc = [
|
||||
[6,"Chevalier de la mort","?talent#j",,{className:"c6",tinyIcon:"class_deathknight"}],
|
||||
[11,"Druide","?talent#0",,{className:"c11",tinyIcon:"class_druid"}],
|
||||
|
|
@ -836,7 +846,8 @@ var mn_database = [
|
|||
[10,"Titres","?titles",mn_titles],
|
||||
[11,"Évènements mondiaux","?events",mn_holidays],
|
||||
[6,"Zones","?zones",mn_zones],
|
||||
[100,"Emotes","?emotes",null]
|
||||
[100,"Emotes","?emotes",null],
|
||||
[101,"Enchantements","?enchantments",mn_enchantments]
|
||||
];
|
||||
var mn_tools = [
|
||||
[0,"Calculateur de talents","?talent",mn_talentCalc],
|
||||
|
|
@ -2595,6 +2606,7 @@ var LANG = {
|
|||
lvnote_arenateamsfound: "Total de $1 équipes d'aréna",
|
||||
lvnote_arenateamsfound2: "Total de $1 équipes d'aréna, $2 qui coïncides",
|
||||
lvnote_currenciesfound: "$1 monnaies trouvées ($2 affichées)",
|
||||
lvnote_enchantmentsfound: "$1 enchantements trouvés ($2 affichés)",
|
||||
|
||||
lvnote_createafilter: '<small><a href="$1">Créer un filtre</a></small>',
|
||||
lvnote_filterresults: '<small><a href="$1">Filtrer ces résultats</a></small>',
|
||||
|
|
@ -3166,23 +3178,25 @@ var LANG = {
|
|||
myaccount_purgesuccess: "Les données d'annonce ont été purgées correctement!",
|
||||
|
||||
types: {
|
||||
1: ["PNJ", "PNJ" , "PNJs", "PNJs"],
|
||||
2: ["Entité", "entité", "Entités", "entités"],
|
||||
3: ["Objet", "objet", "Objets", "objets"],
|
||||
4: ["Ensemble d'objets", "ensemble d'objets", "Ensembles d'objets", "ensembles d'objets"],
|
||||
5: ["Quête", "quête", "Quêtes", "quêtes"],
|
||||
6: ["Sort", "sort", "Sorts", "sorts"],
|
||||
7: ["Zone", "zone", "Zones", "zones"],
|
||||
8: ["Faction", "faction", "Factions", "factions"],
|
||||
9: ["Familier", "familier", "Familiers", "familiers"],
|
||||
10: ["Haut fait", "haut fait", "Hauts faits", "hauts faits"],
|
||||
11: ["Titre", "titre", "Titres", "titres"],
|
||||
12: ["Événement mondial", "évènement mondial", "Évènements mondiaux", "évènements mondiaux"],
|
||||
13: ["Classe", "classe", "Classes", "classes"],
|
||||
14: ["Race", "race", "Races", "races"],
|
||||
15: ["Compétence", "compétence", "Compétences", "compétences"],
|
||||
16: ["Statistique", "statistique", "Statistiques", "statistiques"],
|
||||
17: ["Monnaies", "monnaie", "Monnaies", "monnaies"]
|
||||
1: ["PNJ", "PNJ" , "PNJs", "PNJs"],
|
||||
2: ["Entité", "entité", "Entités", "entités"],
|
||||
3: ["Objet", "objet", "Objets", "objets"],
|
||||
4: ["Ensemble d'objets", "ensemble d'objets", "Ensembles d'objets", "ensembles d'objets"],
|
||||
5: ["Quête", "quête", "Quêtes", "quêtes"],
|
||||
6: ["Sort", "sort", "Sorts", "sorts"],
|
||||
7: ["Zone", "zone", "Zones", "zones"],
|
||||
8: ["Faction", "faction", "Factions", "factions"],
|
||||
9: ["Familier", "familier", "Familiers", "familiers"],
|
||||
10: ["Haut fait", "haut fait", "Hauts faits", "hauts faits"],
|
||||
11: ["Titre", "titre", "Titres", "titres"],
|
||||
12: ["Événement mondial", "évènement mondial", "Évènements mondiaux", "évènements mondiaux"],
|
||||
13: ["Classe", "classe", "Classes", "classes"],
|
||||
14: ["Race", "race", "Races", "races"],
|
||||
15: ["Compétence", "compétence", "Compétences", "compétences"],
|
||||
16: ["Statistique", "statistique", "Statistiques", "statistiques"],
|
||||
17: ["Monnaies", "monnaie", "Monnaies", "monnaies"],
|
||||
501: ["Emote", "emote", "Emotes", "emotes"],
|
||||
502: ["Enchantement", "enchantement", "Enchantements", "enchantements"]
|
||||
},
|
||||
|
||||
timeunitssg: ["année", "mois", "semaine", "jour", "heure", "minute", "seconde"],
|
||||
|
|
@ -3857,6 +3871,18 @@ var LANG = {
|
|||
teamcontrib5v5: "Contribution d'un équipe d'aréna 5v5"
|
||||
},
|
||||
|
||||
// custom
|
||||
fienchantments: {
|
||||
id: "ID",
|
||||
hascondition: "[Requires a combination of gems]",
|
||||
requiresprof: "Requiert un métier",
|
||||
|
||||
sepcommunity: "Communauté",
|
||||
hascomments: "A des commentaires",
|
||||
hasscreenshots: "A des captures d'écrans",
|
||||
hasvideos: "A des vidéos",
|
||||
},
|
||||
|
||||
pr_notice: 'Première fois? Ne soyez pas gêné! Visitez notre <a href="?help=profiler" target="_blank">page d\'aide</a>! <small class="q0"><a href="javascript:;">close</a></small>',
|
||||
pr_datasource: 'Les données dans cette table ont été updatées $2 par <a href="?user=$1" target="_blank">$1</a>.',
|
||||
pr_purgedata: "Cliquer pour supprimer toutes les données d'accomplissement dans l'onglet présent.<br />Seul l'utilisateur qui a uploadé les données peut les effacer.",
|
||||
|
|
|
|||
|
|
@ -770,6 +770,16 @@ var mn_currencies = [
|
|||
[1,"Разное","?currencies=22"],
|
||||
[2,"PvP","?currencies=2"]
|
||||
];
|
||||
var mn_enchantments = [
|
||||
[1,"[Proc Spell]","?enchantments&filter=ty=1"],
|
||||
[3,"[Equip Spell]","?enchantments&filter=ty=3"],
|
||||
[7,"[Use Spell]","?enchantments&filter=ty=7"],
|
||||
[8,"Бесцветное гнездо","?enchantments&filter=ty=8"],
|
||||
[5,"Характеристики","?enchantments&filter=ty=5"],
|
||||
[2,"Урон оружия","?enchantments&filter=ty=2"],
|
||||
[6,"УВС","?enchantments&filter=ty=6"],
|
||||
[4,"Защита","?enchantments&filter=ty=4"]
|
||||
];
|
||||
var mn_talentCalc = [
|
||||
[6,"Рыцарь смерти","?talent#j",,{className:"c6",tinyIcon:"class_deathknight"}],
|
||||
[11,"Друид","?talent#0",,{className:"c11",tinyIcon:"class_druid"}],
|
||||
|
|
@ -836,7 +846,8 @@ var mn_database = [
|
|||
[10,"Звания","?titles",mn_titles],
|
||||
[11,"Игровые события","?events",mn_holidays],
|
||||
[6,"Местности","?zones",mn_zones],
|
||||
[100,"Эмоции", "?emotes", null]
|
||||
[100,"Эмоции","?emotes",null],
|
||||
[101,"Улучшения","?enchantments",mn_enchantments]
|
||||
];
|
||||
var mn_tools = [
|
||||
[0,"Расчёт талантов","?talent",mn_talentCalc],
|
||||
|
|
@ -2595,6 +2606,7 @@ var LANG = {
|
|||
lvnote_arenateamsfound: "Команд арены: $1",
|
||||
lvnote_arenateamsfound2: "Команд арены: $1, подходящих: $2",
|
||||
lvnote_currenciesfound: "Найдено валюты: $1 (показано: $2)",
|
||||
lvnote_enchantmentsfound: "Найдено улучшения: $1 (показано: $2)",
|
||||
|
||||
lvnote_createafilter: '<small><a href="$1">Применить фильтр</a></small>',
|
||||
lvnote_filterresults: '<small><a href="$1">Отфильтровать результаты</a></small>',
|
||||
|
|
@ -3166,23 +3178,25 @@ var LANG = {
|
|||
myaccount_purgesuccess: "Закрытые объявления успешно сброшены!",
|
||||
|
||||
types: {
|
||||
1: ["НИП", "НИП" , "НИП", "НИП"],
|
||||
2: ["Объект", "объект", "Объекты", "объекты"],
|
||||
3: ["Предмет", "предмет", "Предметы", "предметы"],
|
||||
4: ["Комплект", "комплект", "Комплекты", "комплекты"],
|
||||
5: ["Задание", "задание", "Задания", "задание"],
|
||||
6: ["Заклинание", "заклинание", "Заклинания", "заклинания"],
|
||||
7: ["Игровая зона", "Игровая зона", "Местности", "местности"],
|
||||
8: ["Фракция", "фракция", "Фракции", "фракции"],
|
||||
9: ["Питомец", "питомец", "Питомцы", "питомцы"],
|
||||
10: ["Достижение", "достижение", "Достижения", "достижения"],
|
||||
11: ["Звание", "звание", "Звания", "звания"],
|
||||
12: ["Событие", "игровое событие", "Игровые события", "игровые события"],
|
||||
13: ["Класс", "класс", "Классы", "классы"],
|
||||
14: ["Раса", "раса", "Расы", "расы"],
|
||||
15: ["Уровень навыка", "навык", "Умения", "навыки"],
|
||||
16: ["Статистика", "характеристика", "Характеристики", "характеристики"],
|
||||
17: ["Валюта", "валюта", "Валюта", "валюта"]
|
||||
1: ["НИП", "НИП" , "НИП", "НИП"],
|
||||
2: ["Объект", "объект", "Объекты", "объекты"],
|
||||
3: ["Предмет", "предмет", "Предметы", "предметы"],
|
||||
4: ["Комплект", "комплект", "Комплекты", "комплекты"],
|
||||
5: ["Задание", "задание", "Задания", "задание"],
|
||||
6: ["Заклинание", "заклинание", "Заклинания", "заклинания"],
|
||||
7: ["Игровая зона", "Игровая зона", "Местности", "местности"],
|
||||
8: ["Фракция", "фракция", "Фракции", "фракции"],
|
||||
9: ["Питомец", "питомец", "Питомцы", "питомцы"],
|
||||
10: ["Достижение", "достижение", "Достижения", "достижения"],
|
||||
11: ["Звание", "звание", "Звания", "звания"],
|
||||
12: ["Событие", "игровое событие", "Игровые события", "игровые события"],
|
||||
13: ["Класс", "класс", "Классы", "классы"],
|
||||
14: ["Раса", "раса", "Расы", "расы"],
|
||||
15: ["Уровень навыка", "навык", "Умения", "навыки"],
|
||||
16: ["Статистика", "характеристика", "Характеристики", "характеристики"],
|
||||
17: ["Валюта", "валюта", "Валюта", "валюта"],
|
||||
501: ["Эмоция", "эмоция", "Эмоции", "эмоции"],
|
||||
502: ["Улучшение", "улучшение", "Улучшения", "улучшения"]
|
||||
},
|
||||
|
||||
timeunitssg: ["год", "месяц", "неделя", "день", "час", "минута", "секунда"],
|
||||
|
|
@ -3858,6 +3872,18 @@ var LANG = {
|
|||
teamcontrib5v5: "Очки команды арены 5х5"
|
||||
},
|
||||
|
||||
// custom
|
||||
fienchantments: {
|
||||
id: "Номер",
|
||||
hascondition: "[Requires a combination of gems]",
|
||||
requiresprof: "Требуется профессия",
|
||||
|
||||
sepcommunity: "Сообщество",
|
||||
hascomments: "Есть комментарии",
|
||||
hasscreenshots: "Есть изображения",
|
||||
hasvideos: "Есть видео",
|
||||
},
|
||||
|
||||
pr_notice: 'Первый раз? – Не стесняйтесь! Взгляните на <a href="?help=profiler" target="_blank">страницу помощи</a>! <small class="q0"><a href="javascript:;">закрыть</a></small>',
|
||||
pr_datasource: 'Данные в этой вкладке были последний раз обновлены пользователем <a href="?user=$1" target="_blank">$1</a> $2.',
|
||||
pr_purgedata: "Нажмите, чтобы удалить все собранные данные в текущей вкладке.<br />Только тот, кто загрузил данные, может их удалить.",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue