diff --git a/character-sheet.php b/character-sheet.php
index d042a439b..f9ed4bbf6 100644
--- a/character-sheet.php
+++ b/character-sheet.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 46
+ * @revision 47
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -68,11 +68,8 @@
if($guilds->extractPlayerGuildId()) {
$armory->tpl->assign('guildName', $guilds->getGuildName());
}
-
-// Таланты
-// Отображение 2й ветки талантов будет работать, если на ядро установлен соответствующий патч
-// !Поддерживается ТОЛЬКО порт от KiriX!
$tp = '';
+/*
if($armory->armoryconfig['useDualSpec'] == true) {
$armory->tpl->assign('dualSpec', true);
$ds = 0;
@@ -104,7 +101,7 @@
$disabledspec = ($activespec == 1) ? 0 : 1;
$armory->tpl->assign('disabledDS_'.$disabledspec, ' disabledSpec');
}
-else {
+else {*/
for($i=0;$i<3;$i++) {
if($i) {
$tp .= " / ";
@@ -120,7 +117,7 @@
$armory->tpl->assign('tree_js', $talent_trees);
$armory->tpl->assign('disabledDS_1', ' disabledSpec');
$armory->tpl->assign('currentTreeIcon', $currentTreeIcon);
-}
+//}
// Профессии
$trade_skills = $characters->extractCharacterProfessions();
// Обрезаем кол-во профессий до 2х (в случае, если на сервере выставлено
diff --git a/character-talents.php b/character-talents.php
index 58d16c048..49039d43b 100644
--- a/character-talents.php
+++ b/character-talents.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 46
+ * @revision 47
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -25,6 +25,7 @@
define('__ARMORY__', true);
define('load_characters_class', true);
define('load_guilds_class', true);
+define('load_items_class', true);
define('load_achievements_class', true);
define('load_items_class', true);
@@ -64,8 +65,70 @@
$armory->tpl->assign('guildName', $guilds->getGuildName());
}
//TODO: Dualspec
-$talents = $characters->extractCharacterTalents();
-$armory->tpl->assign('talents', $talents);
+// Таланты
+// Отображение 2й ветки талантов будет работать, если на ядро установлен соответствующий патч
+// !Поддерживается ТОЛЬКО порт от KiriX!
+$tp = '';/*
+if($armory->armoryconfig['useDualSpec'] == true) {
+ $ds = 0;
+ while($ds<2) {
+ for($i=0;$i<3;$i++) {
+ if($i) {
+ $tp .= " / ";
+ }
+ $tp .= $characters->talentCounting($characters->getTabOrBuild($characters->class, 'tab', $i), true, $ds);
+ }
+ // Если у персонажа ещё нет двойной специализации
+ if($tp == ' / / ') {
+ $armory->tpl->assign('dualSpecError', true);
+ }
+ else {
+ $armory->tpl->assign('dualSpec', true);
+ $talent_trees = explode(' / ', $tp);
+ $currentTree = Utils::GetMaxArray($talent_trees);
+ $currentTreeName = $characters->ReturnTalentTreesNames($characters->class, $currentTree);
+ $currentTreeIcon = $characters->ReturnTalentTreeIcon($characters->class, $currentTree);
+ $armory->tpl->assign('talents_builds_'.$ds, $tp);
+ $armory->tpl->assign('treeName_'.$ds, $currentTreeName);
+ $armory->tpl->assign('treeIcon_'.$ds, $currentTreeIcon);
+ $armory->tpl->assign('ds_'.$ds, $talent_trees);
+ $tp = ''; // Очищаем предыдущую ветку
+ $ds++;
+ }
+ }
+ $armory->tpl->assign('disabledDS_0', false);
+ $armory->tpl->assign('disabledDS_1', false);
+ $activespec = $armory->cDB->selectCell("SELECT `activespec` FROM `characters` WHERE `guid`=? LIMIT 1", $characters->guid);
+ $disabledspec = ($activespec == 1) ? 0 : 1;
+ $armory->tpl->assign('disabledDS_'.$disabledspec, true);
+ for($i=0;$i<2;$i++) {
+ $armory->tpl->assign('talents_'.$i, $characters->extractCharacterTalents(true, $i));
+ }
+}
+else {
+ */
+ for($i=0;$i<3;$i++) {
+ if($i) {
+ $tp .= " / ";
+ }
+ $tp .= $characters->talentCounting($characters->getTabOrBuild($characters->class, 'tab', $i));
+ }
+ $talent_trees = explode(' / ', $tp);
+ $currentTree = Utils::GetMaxArray($talent_trees);
+ $currentTreeName = $characters->ReturnTalentTreesNames($characters->class, $currentTree);
+ $currentTreeIcon = $characters->ReturnTalentTreeIcon($characters->class, $currentTree);
+ $armory->tpl->assign('talents_builds', $tp);
+ $armory->tpl->assign('treeName', $currentTreeName);
+ $armory->tpl->assign('tree_js', $talent_trees);
+ $armory->tpl->assign('disabledDS_1', ' disabledSpec');
+ $armory->tpl->assign('currentTreeIcon', $currentTreeIcon);
+ $talents = $characters->extractCharacterTalents();
+ $armory->tpl->assign('talents', $talents);
+ $glyphs = $characters->extractCharacterGlyphs();
+ $armory->tpl->assign('bigGlyphs', $glyphs['big']);
+ $armory->tpl->assign('smallGlyphs', $glyphs['small']);
+//}
+
switch($characters->class) {
case 1:
$tplName = 'warrior_'.$_locale;
diff --git a/includes/armory_loader.php b/includes/armory_loader.php
index 055b299a9..79ec90fd8 100644
--- a/includes/armory_loader.php
+++ b/includes/armory_loader.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 46
+ * @revision 47
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -31,7 +31,7 @@
die('Error: can not load connector class!');
}
-define('DB_VERSION', 'armory_r46');
+define('DB_VERSION', 'armory_r47');
$armory = new Connector;
$armory->tpl->template_dir = 'includes/template/';
$armory->tpl->compile_dir = 'includes/cache/';
@@ -47,7 +47,7 @@
$utils = new Utils;
-/** Login **/
+/** Login
if(isset($_GET['login']) && $_GET['login'] == 1) {
header('Location: login.xml');
}
@@ -61,7 +61,7 @@
$armory->tpl->assign('myVaultCharacters', $utils->getCharsArray());
$armory->tpl->assign('selectedVaultCharacter', $utils->getCharacter());
}
-/** End login **/
+ End login **/
if(isset($_GET['locale'])) {
$tmp = strtolower($_GET['locale']);
diff --git a/includes/classes/class.characters.php b/includes/classes/class.characters.php
index a2f97e3f8..c1b2e091d 100644
--- a/includes/classes/class.characters.php
+++ b/includes/classes/class.characters.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 46
+ * @revision 47
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -670,6 +670,33 @@ public function extractCharacterTalents($dualSpec=false, $specCount='') {
return $bild;
}
+ public function extractCharacterGlyphs() {
+ if(!$this->guid) {
+ return false;
+ }
+ $locale = (isset($_SESSION['armoryLocale'])) ? $_SESSION['armoryLocale'] : $this->armoryconfig['defaultLocale'];
+ $glyphData = array();
+ $glyphData['big'] = array();
+ $glyphData['small'] = array();
+ $glyphFields = array('0' => 1319, '1' => 1320, '2' => 1321, '3' => 1322, '4' => 1323, '5' => 1324);
+ for($i=0;$i<6;$i++) {
+ $glyph_id = $this->GetDataField($glyphFields[$i]);
+ $glyph_info = $this->aDB->selectRow("
+ SELECT `type`, `name_".$locale."` AS `name`, `description_".$locale."` AS `description`
+ FROM `glyphproperties` WHERE `id`=?", $glyph_id);
+ if(!$glyph_info) {
+ continue;
+ }
+ if($glyph_info['type'] == 0) {
+ $glyphData['big'][$i] = $glyph_info;
+ }
+ elseif($glyph_info['type'] == 1) {
+ $glyphData['small'][$i] = $glyph_info;
+ }
+ }
+ return $glyphData;
+ }
+
public function ReturnTalentTreesNames($class, $key) {
switch($class) {
case 1:
diff --git a/includes/classes/configuration.php b/includes/classes/configuration.php
index 312bc6da3..3ffaf448d 100644
--- a/includes/classes/configuration.php
+++ b/includes/classes/configuration.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 32
+ * @revision 47
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -59,8 +59,5 @@
$ArmoryConfig['settings']['cache_lifetime'] = 2; // In days
$ArmoryConfig['settings']['minlevel'] = 10; // Character must have this level or higher to be shown in Armory
$ArmoryConfig['settings']['minGmLevelToShow'] = 3; // Show characters : 0 - only players, 1 - moderators, 2 - GMs, 3 - everyone
-$ArmoryConfig['settings']['defaultLocale'] = 'ru_ru'; // Can be 'ru_ru' or 'en_gb' (limited English support!)
-$ArmoryConfig['settings']['useDualSpec'] = false; // Use Dual specialization talent view (!requires MaNGOS core patch!)
- // Armory supports KiriX's version ONLY (can be found here:
- // http://getmangos.com/community/showthread.php?t=8580)
+$ArmoryConfig['settings']['defaultLocale'] = 'ru_ru'; // Can be 'ru_ru' or 'en_gb'
?>
\ No newline at end of file
diff --git a/includes/template/character_talents_start.tpl b/includes/template/character_talents_start.tpl
index ca72bd1e1..5aedcd511 100644
--- a/includes/template/character_talents_start.tpl
+++ b/includes/template/character_talents_start.tpl
@@ -109,28 +109,52 @@
+
@@ -2590,17 +2548,4 @@
-
-
-
-
-
-
-{{include file="faq_character_sheet.tpl"}}
-{{include file="overall_right_block.tpl"}}
-
-
-
-{{include file="overall_footer.tpl"}}
\ No newline at end of file
+
\ No newline at end of file
diff --git a/includes/template/talents_druid_en_gb.tpl b/includes/template/talents_druid_en_gb.tpl
new file mode 100644
index 000000000..94d26bd6e
--- /dev/null
+++ b/includes/template/talents_druid_en_gb.tpl
@@ -0,0 +1,2491 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
30 yd range8% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
13% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
30 yd range32% of base mana
+
+20 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
30 yd range12% of base mana
+
+3 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
35% of base mana
+
+1.5 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+Balance 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+Feral Combat 0
+
+
+
+
+
+
+
+
+
+
+
3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
40 yd range16% of base mana
+
+15 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
40 yd range23% of base mana
+
+6 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+Restoration 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/includes/template/talents_druid_ru_ru.tpl b/includes/template/talents_druid_ru_ru.tpl
index 91cf0e412..68c04fd36 100644
--- a/includes/template/talents_druid_ru_ru.tpl
+++ b/includes/template/talents_druid_ru_ru.tpl
@@ -2469,48 +2469,6 @@
-
-
-
-
Символ целительного прикосновения
-
-
-
Символ гнева
-
-
-Нет символа
-
-
-Нет символа
-
-
-Нет символа
-
-
-Нет символа
-
-
-
-
-
Символ трепки
-
-
-
Символ неистового восстановления
-
-
-Нет символа
-
-
-
Символ шипов
-
-
-
Символ безграничного возрождения
-
-
-Нет символа
-
-
-
diff --git a/includes/template/talents_hunter_en_gb.tpl b/includes/template/talents_hunter_en_gb.tpl
new file mode 100644
index 000000000..b83d86acb
--- /dev/null
+++ b/includes/template/talents_hunter_en_gb.tpl
@@ -0,0 +1,4241 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
30 Mana
+
+32 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
30 Mana
+
+32 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
8 -25 yd range35 Mana
+
+25 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
8 -25 yd range35 Mana
+
+25 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
45 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
3 min cooldownChanneled
+
+
+0/1
+
+
+
+
+
+
5 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+Ferocity 0
+
+
+
+
+
+
+
+
+
+
8 -25 yd range35 Mana
+
+25 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Melee range20 Mana
+
+10 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
6 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
Melee range
+
+3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
40 yd range
+
+1 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
8 -25 yd range20 Mana
+
+30 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+Tenacity 0
+
+
+
+
+
+
+
+
+
+
30 Mana
+
+32 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
30 Mana
+
+32 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
Melee range
+
+30 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
Melee range
+
+10 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
40 yd range
+
+3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
40 yd range
+
+1 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+Cunning 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
100 yd range8% of base mana
+
+1 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
100 yd range10% of base mana
+
+2 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+Beast Mastery 0
+
+
+
+
+
+
+
+
+
+
+
5 -35 yd range8% of base mana
+
+10 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
5 -35 yd range6% of base mana
+
+20 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
5 -35 yd range12% of base mana
+
+10 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+Marksmanship 0
+
+
+
+
+
+
+
+
+
+
15 yd range8% of base mana
+
+30 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
Melee range3% of base mana
+
+5 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
5 -35 yd range8% of base mana
+
+1 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
5 -35 yd range6% of base mana
+
+30 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
5 -35 yd range7% of base mana
+
+6 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+Survival 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/includes/template/talents_hunter_ru_ru.tpl b/includes/template/talents_hunter_ru_ru.tpl
index b6266e0e1..301eadff6 100644
--- a/includes/template/talents_hunter_ru_ru.tpl
+++ b/includes/template/talents_hunter_ru_ru.tpl
@@ -2371,28 +2371,6 @@
-
-
-
-Нет символа
-
-
-Нет символа
-
-
-Нет символа
-
-
-Нет символа
-
-
-Нет символа
-
-
-Нет символа
-
-
-
diff --git a/includes/template/talents_mage_en_gb.tpl b/includes/template/talents_mage_en_gb.tpl
new file mode 100644
index 000000000..8dcb24017
--- /dev/null
+++ b/includes/template/talents_mage_en_gb.tpl
@@ -0,0 +1,2498 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
30 yd range6% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
2 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
2 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
30 yd range12% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
30 yd range18% of base mana
+
+3 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+Arcane 0
+
+
+
+
+
+
+
+
+
+
+
35 yd range22% of base mana
+
+5 sec cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
7% of base mana
+
+30 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
7% of base mana
+
+20 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
35 yd range22% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+Fire 0
+
+
+
+
+
+
+
+
+
+
3% of base mana
+
+3 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
8 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
21% of base mana
+
+30 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
16% of base mana
+
+3 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
30 yd range9% of base mana
+
+30 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+Frost 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/includes/template/talents_mage_ru_ru.tpl b/includes/template/talents_mage_ru_ru.tpl
index 83f044657..b5affc031 100644
--- a/includes/template/talents_mage_ru_ru.tpl
+++ b/includes/template/talents_mage_ru_ru.tpl
@@ -2475,28 +2475,6 @@
-
-
-
-
Символ ледяной преграды
-
-
-
Символ стылой крови
-
-
-Нет символа
-
-
-
Символ пингвина
-
-
-Нет символа
-
-
-Нет символа
-
-
-
diff --git a/includes/template/talents_paladin_en_gb.tpl b/includes/template/talents_paladin_en_gb.tpl
new file mode 100644
index 000000000..d432910c4
--- /dev/null
+++ b/includes/template/talents_paladin_en_gb.tpl
@@ -0,0 +1,2289 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
2 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
3% of base mana
+
+2 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
20 yd range18% of base mana
+
+6 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
60 yd range35% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+Holy 0
+
+
+
+
+
+
+
+
+
2 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
30 yd range7% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
10% of base mana
+
+8 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
30 yd range26% of base mana
+
+30 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
Melee range6% of base mana
+
+6 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+Protection 0
+
+
+
+
+
+
+
+
+
+
+
14% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
20 yd range9% of base mana
+
+1 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
Melee range5% of base mana
+
+4 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
12% of base mana
+
+10 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+Retribution 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/includes/template/talents_paladin_ru_ru.tpl b/includes/template/talents_paladin_ru_ru.tpl
index b581a9058..a58203ddd 100644
--- a/includes/template/talents_paladin_ru_ru.tpl
+++ b/includes/template/talents_paladin_ru_ru.tpl
@@ -2266,28 +2266,6 @@
-
-
-
-
Символ вспышки Света
-
-
-
Символ Света небес
-
-
-Нет символа
-
-
-
Символ благословения королей
-
-
-
Символ благословения мудрости
-
-
-Нет символа
-
-
-
diff --git a/includes/template/talents_priest_en_gb.tpl b/includes/template/talents_priest_en_gb.tpl
new file mode 100644
index 000000000..03dd96f05
--- /dev/null
+++ b/includes/template/talents_priest_en_gb.tpl
@@ -0,0 +1,2401 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
30 yd range16% of base mana
+
+2 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
40 yd range8% of base mana
+
+3 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
30 yd range16% of base mana
+
+12 sec cooldownChanneled
+
+
+0/1
+
+
+
+
+
+Discipline 0
+
+
+
+
+
+
+
+
+
21% of base mana
+
+2 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
40 yd range17% of base mana
+
+3 min cooldown0.5 sec cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
40 yd range21% of base mana
+
+6 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
40 yd range6% of base mana
+
+3 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+Holy 0
+
+
+
+
+
+
+
+
+
+
+
30 yd range9% of base mana
+
+Channeled
+
+
+0/1
+
+
+
+
+
+
+
+
+
30 yd range225 Mana
+
+45 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
13% of base mana
+
+1.5 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
30 yd range16% of base mana
+
+2 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
30 yd range16% of base mana
+
+1.5 sec cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
2 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+Shadow 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/includes/template/talents_priest_ru_ru.tpl b/includes/template/talents_priest_ru_ru.tpl
index d88b5bea8..4c589319e 100644
--- a/includes/template/talents_priest_ru_ru.tpl
+++ b/includes/template/talents_priest_ru_ru.tpl
@@ -2374,48 +2374,6 @@
-
-
-
-
Символ слова силы: Щит
-
-
-
Символ быстрого исцеления
-
-
-
Символ исповеди
-
-
-
Символ исчадия Тьмы
-
-
-
Символ левитации
-
-
-
Символ стойкости
-
-
-
-
-
Символ слова Тьмы: Боль
-
-
-
Символ Тьмы
-
-
-
Символ пытки разума
-
-
-
Символ левитации
-
-
-
Символ исчадия Тьмы
-
-
-
Символ стойкости
-
-
-
diff --git a/includes/template/talents_rogue_en_gb.tpl b/includes/template/talents_rogue_en_gb.tpl
new file mode 100644
index 000000000..63f513de4
--- /dev/null
+++ b/includes/template/talents_rogue_en_gb.tpl
@@ -0,0 +1,2417 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Melee range60 Energy
+
+Instant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
30 yd range15 Energy
+
+Instant
+
+
+0/1
+
+
+
+
+
+Assassination 0
+
+
+
+
+
+
+
+
+
+
Melee range10 Energy
+
+6 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
25 Energy
+
+2 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
10 yd range
+
+2 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+Combat 0
+
+
+
+
+
+
+
+
+
+
Melee range40 Energy
+
+20 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
8 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
Melee range35 Energy
+
+Instant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
30 yd range
+
+20 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
25 yd range10 Energy
+
+30 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
1 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+Subtlety 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/includes/template/talents_rogue_ru_ru.tpl b/includes/template/talents_rogue_ru_ru.tpl
index a8f30ef9c..1e42f6b55 100644
--- a/includes/template/talents_rogue_ru_ru.tpl
+++ b/includes/template/talents_rogue_ru_ru.tpl
@@ -2394,28 +2394,6 @@
-
-
-
-Нет символа
-
-
-Нет символа
-
-
-Нет символа
-
-
-Нет символа
-
-
-Нет символа
-
-
-Нет символа
-
-
-
diff --git a/includes/template/talents_shaman_en_gb.tpl b/includes/template/talents_shaman_en_gb.tpl
new file mode 100644
index 000000000..4205af0a4
--- /dev/null
+++ b/includes/template/talents_shaman_en_gb.tpl
@@ -0,0 +1,2352 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
5% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+Elemental 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Melee range8% of base mana
+
+8 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
Melee range4% of base mana
+
+6 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
1 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
30 yd range12% of base mana
+
+3 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+Enhancement 0
+
+
+
+
+
+
+
+
+
+
+
3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
40 yd range7% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
40 yd range15% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
40 yd range18% of base mana
+
+6 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+Restoration 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/includes/template/talents_shaman_ru_ru.tpl b/includes/template/talents_shaman_ru_ru.tpl
index d4e8f605a..502617a0f 100644
--- a/includes/template/talents_shaman_ru_ru.tpl
+++ b/includes/template/talents_shaman_ru_ru.tpl
@@ -2329,48 +2329,6 @@
-
-
-
-
Символ оружия жизни Земли
-
-
-
Символ быстрины
-
-
-
Символ щита земли
-
-
-
Символ водного щита
-
-
-Нет символа
-
-
-Нет символа
-
-
-
-
-
Символ лавы
-
-
-
Символ огненного шока
-
-
-
Символ тотема гнева
-
-
-
Символ обновленной жизни
-
-
-Нет символа
-
-
-Нет символа
-
-
-
diff --git a/includes/template/talents_warlock_en_gb.tpl b/includes/template/talents_warlock_en_gb.tpl
new file mode 100644
index 000000000..32a60de4c
--- /dev/null
+++ b/includes/template/talents_warlock_en_gb.tpl
@@ -0,0 +1,2369 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
30 yd range6% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
30 yd range15% of base mana
+
+1.5 sec cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
30 yd range12% of base mana
+
+8 sec cooldown1.5 sec cast
+
+
+0/1
+
+
+
+
+
+Affliction 0
+
+
+
+
+
+
+
+
+
+
100 yd range16% of base mana
+
+Instant cast
+
+
+0/1
+
+
+
+
+
+
3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
100 yd range6% of base mana
+
+1 min cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
80% of base mana
+
+10 sec cast
+
+
+0/1
+
+
+
+
+
+
+
+
+Demonology 0
+
+
+
+
+
+
+
+
+
+
20 yd range20% of base mana
+
+15 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
30 yd range16% of base mana
+
+10 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
30 yd range27% of base mana
+
+20 sec cooldownInstant cast
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
30 yd range7% of base mana
+
+12 sec cooldown2.5 sec cast
+
+
+0/1
+
+
+
+
+
+Destruction 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/includes/template/talents_warlock_ru_ru.tpl b/includes/template/talents_warlock_ru_ru.tpl
index 80b052be4..11cf95361 100644
--- a/includes/template/talents_warlock_ru_ru.tpl
+++ b/includes/template/talents_warlock_ru_ru.tpl
@@ -2346,28 +2346,6 @@
-
-
-
-
Символ порчи
-
-
-
Символ камня здоровья
-
-
-Нет символа
-
-
-
Символ Килрогга
-
-
-
Символ похищения души
-
-
-
Символ бесконечного дыхания
-
-
-
diff --git a/includes/template/talents_warrior_en_gb.tpl b/includes/template/talents_warrior_en_gb.tpl
new file mode 100644
index 000000000..2dcddf6fe
--- /dev/null
+++ b/includes/template/talents_warrior_en_gb.tpl
@@ -0,0 +1,2463 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
30 Rage
+
+30 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
Melee range30 Rage
+
+6 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
+
25 Rage
+
+1.5 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+Arms 0
+
+
+
+
+
+
+
+
+
+
10 Rage
+
+Instant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
+
10 Rage
+
+3 min cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
Melee range20 Rage
+
+4 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
45 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+Fury 0
+
+
+
+
+
+
+
+
+
+
+
+
Melee range15 Rage
+
+30 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
30 yd range
+
+Instant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
+
Melee range15 Rage
+
+Instant
+
+
+0/1
+
+
+
+
+
+
+
+
+
+
15 Rage
+
+20 sec cooldownInstant
+
+
+0/1
+
+
+
+
+
+Protection 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/includes/template/talents_warrior_ru_ru.tpl b/includes/template/talents_warrior_ru_ru.tpl
index 9c0a10928..b8768aba9 100644
--- a/includes/template/talents_warrior_ru_ru.tpl
+++ b/includes/template/talents_warrior_ru_ru.tpl
@@ -2441,48 +2441,6 @@
-
-
-
-
Символ подрезанного сухожилия
-
-
-
Символ смертельного удара
-
-
-
Символ стремительного рывка
-
-
-
Символ боевого крика
-
-
-
Символ неоспоримой победы
-
-
-
Символ рывка
-
-
-
-
-
Символ реванша
-
-
-
Символ раскола брони
-
-
-
Символ блокирования
-
-
-
Символ рывка
-
-
-
Символ кровавой ярости
-
-
-
Символ боевого крика
-
-
-
diff --git a/sql/updates/armory_r47_glyphproperties.sql b/sql/updates/armory_r47_glyphproperties.sql
new file mode 100644
index 000000000..63496b706
--- /dev/null
+++ b/sql/updates/armory_r47_glyphproperties.sql
@@ -0,0 +1,384 @@
+/*!40101 SET NAMES utf8 */;
+/*!40101 SET SQL_MODE=''*/;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+
+UPDATE `db_version` SET `version` = 'armory_r47';
+
+UPDATE `titles` SET `place` = 'suffix' WHERE `id` =110 LIMIT 1 ;
+
+DROP TABLE IF EXISTS `glyphproperties`;
+CREATE TABLE `glyphproperties` (
+ `id` int(11) NOT NULL,
+ `spell` int(11) NOT NULL,
+ `type` int(11) NOT NULL,
+ `name_en_gb` varchar(255) NOT NULL,
+ `name_ru_ru` varchar(255) NOT NULL,
+ `description_en_gb` text NOT NULL,
+ `description_ru_ru` text NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+INSERT INTO `glyphproperties` VALUES (2, 52084, 0, 'Glyph of Natural Force', 'Символ силы природы', 'Empowers a Greater Glyph to avoid interruption caused by damage while casting your Wrath spells by 50%.', 'Применение великого символа уменьшает вероятность прерывания заклинания "Гнев" при нанесении вам урона на 50%.');
+INSERT INTO `glyphproperties` VALUES (21, 12320, 162, 'Cruelty', 'Безжалостность', 'Increases your chance to get a critical strike with melee weapons by 1%.', 'Увеличивает вероятность нанести критический удар оружием ближнего боя на 1%.');
+INSERT INTO `glyphproperties` VALUES (22, 12297, 128, 'Anticipation', 'Предчувствие', 'Increases your Dodge chance by 1%.', 'Повышает вероятность уклонения от атак на 1%.');
+INSERT INTO `glyphproperties` VALUES (61, 46831, 2, 'Venomous Mana', 'Ядовитая мана', 'Empowers a Greater Glyph to grant your Viper Sting ability an additional 15% chance to resist dispel effects.', 'Применение большего символа обеспечивает 15%-ю вероятность избежать рассеивания наложенного вами эффекта "Укус гадюки".');
+INSERT INTO `glyphproperties` VALUES (81, 52084, 1, 'Glyph of Natural Force', 'Символ силы природы', 'Empowers a Greater Glyph to avoid interruption caused by damage while casting your Wrath spells by 50%.', 'Применение великого символа уменьшает вероятность прерывания заклинания "Гнев" при нанесении вам урона на 50%.');
+INSERT INTO `glyphproperties` VALUES (82, 52085, 128, 'Glyph of Moonfire', 'Символ лунного огня', 'Empowers a Lesser Glyph to reduce the rage cost of your Demoralizing Roar by 20.', 'Применение великого символа снижает расход ярости на способность "Устрашающий рев" на 20.');
+INSERT INTO `glyphproperties` VALUES (101, 0, 0, '', '', '', '');
+INSERT INTO `glyphproperties` VALUES (121, 46487, 64, 'Copy of Holy Bolt', 'Copy of Holy Bolt', 'Inflicts Holy damage to an enemy.', 'Нанесение противнику урона от светлой магии.');
+INSERT INTO `glyphproperties` VALUES (141, 54292, 1, 'Glyph of the White Bear', 'Символ белого медведя', 'Your bear and dire bear forms take on the appearance of a polar bear.', 'Принимая облик медведя или лютого медведя, вы превращаетесь в белого медведя.');
+INSERT INTO `glyphproperties` VALUES (161, 54810, 0, 'Glyph of Frenzied Regeneration', 'Символ неистового восстановления', 'While Frenzied Regeneration is active, healing effects on you are 20% more powerful.', 'Пока "Неистовое восстановление" активно, действующие на вас эффекты лечения усиливаются на 20%.');
+INSERT INTO `glyphproperties` VALUES (162, 54811, 0, 'Glyph of Maul', 'Символ трепки', 'Your Maul ability now hits 1 additional target.', 'Количество целей, поражаемых способностью "Трепка", увеличивается на 1.');
+INSERT INTO `glyphproperties` VALUES (163, 54812, 0, 'Glyph of Growling', 'Символ рыка', 'Increases the chance for your Growl ability to work successfully by 8%.', 'Увеличивает вероятность того, что ваш "Рык" подействует на противника, на 8%.');
+INSERT INTO `glyphproperties` VALUES (164, 54813, 0, 'Glyph of Mangle', 'Символ увечья', 'Increases the duration of Mangle by 6 sec.', 'Увеличивает время действия способности "Увечье" на 6 с.');
+INSERT INTO `glyphproperties` VALUES (165, 54815, 0, 'Glyph of Shred', 'Символ полосования', 'Each time you Shred, the duration of your Rip on the target is extended 2 sec, up to a maximum of 6 sec.', 'Увеличивает остающееся время действия способности "Разорвать" на 2 секунды при каждом использовании этой способности до максимального значения в 6 с.');
+INSERT INTO `glyphproperties` VALUES (166, 54818, 0, 'Glyph of Rip', 'Символ разрывания', 'Increases the duration of your Rip ability by 4 sec.', 'Увеличивает время действия способности "Разорвать" на 4 с.');
+INSERT INTO `glyphproperties` VALUES (167, 54821, 0, 'Glyph of Rake', 'Символ глубокой раны', 'Your Rake ability prevents targets from fleeing.', 'Когда вы применяете способность "Глубокая рана", жертва не может убежать.');
+INSERT INTO `glyphproperties` VALUES (168, 54824, 0, 'Glyph of Swiftmend', 'Символ быстрого восстановления', 'Your Swiftmend ability no longer consumes a Rejuvenation or Regrowth effect from the target.', 'При применении заклинания "Быстрое восстановление" с цели не снимаются эффекты "Омоложение" и "Восстановление".');
+INSERT INTO `glyphproperties` VALUES (169, 54832, 0, 'Glyph of Innervate', 'Символ озарения', 'Innervate now grants the caster 90% of his base mana pool over 20 sec in addition to the normal effects of Innervate.', 'Заклинание "Озарение" увеличивает запас маны заклинателя на 90% от максимального в течение 20. в дополнение к эффекту, накладываемому на основную цель.');
+INSERT INTO `glyphproperties` VALUES (170, 54733, 0, 'Glyph of Rebirth', 'Символ возрождения', 'Players resurrected by Rebirth are returned to life with 100% health.', 'Персонаж, воскрешенный с помощью данного заклинания, возрождается с 100% здоровья.');
+INSERT INTO `glyphproperties` VALUES (171, 54743, 0, 'Glyph of Regrowth', 'Символ восстановления', 'Increases the healing of your Regrowth spell by 20% if your Regrowth effect is still active on the target.', 'Если на цель действует наложенное вами ранее заклинание "Восстановление", то эффект исцеления нового заклинания "Восстановление" увеличивается на 20%.');
+INSERT INTO `glyphproperties` VALUES (172, 54754, 0, 'Glyph of Rejuvenation', 'Символ омоложения', 'While your Rejuvenation targets are below 50% health, you will heal them for an additional 50% health.', 'Если у целей, на которые вы наложили заклинание "Омоложение", менее 50% здоровья, они исцеляются дополнительно на 50%.');
+INSERT INTO `glyphproperties` VALUES (173, 54825, 0, 'Glyph of Healing Touch', 'Символ целительного прикосновения', 'Decreases the cast time of Healing Touch by 1.1 sec., the mana cost by 25%, and the amount healed by 50%.', 'Повышает эффективность заклинания "Целительное прикосновение", уменьшая время произнесения на 1.1 с., расход маны на 25%, и количество восстанавливаемого здоровья на 50%.');
+INSERT INTO `glyphproperties` VALUES (174, 54826, 0, 'Glyph of Lifebloom', 'Символ жизнецвета', 'Increases the duration of Lifebloom by 1 sec.', 'Увеличивает время действия заклинания "Жизнецвет" на 1 с.');
+INSERT INTO `glyphproperties` VALUES (175, 54845, 0, 'Glyph of Starfire', 'Символ звездного огня', 'Your Starfire ability increases the duration of your Moonfire effect on the target by 3 sec, up to a maximum of 9 additional seconds.', 'При применении вами заклинания "Звездный огонь" время действия эффекта "Лунный огонь" на цели увеличивается на 3 с. вплоть до 9 дополнительных секунд.');
+INSERT INTO `glyphproperties` VALUES (176, 54830, 0, 'Glyph of Insect Swarm', 'Символ роя насекомых', 'Increases the damage of your Insect Swarm ability by 30%, but it no longer affects your victim`s chance to hit.', 'Увеличивает урон от способности "Рой насекомых" на 30%, но эта способность более не влияет на шанс попадания противника по цели.');
+INSERT INTO `glyphproperties` VALUES (177, 54831, 0, 'Glyph of Hurricane', 'Символ грозы', 'Your Hurricane ability now also slows the movement speed of its victims by 20%.', 'Ваше заклинание "Гроза" замедляет скорость передвижения противников на 20%.');
+INSERT INTO `glyphproperties` VALUES (178, 54828, 0, 'Glyph of Starfall', 'Символ звездопада', 'Reduces the cooldown of Starfall by 30 sec.', 'Увеличивает время действия заклинания "Звездопад" на 30 с.');
+INSERT INTO `glyphproperties` VALUES (179, 54756, 0, 'Glyph of Wrath', 'Символ гнева', 'Reduces the pushback suffered from damaging attacks while casting your Wrath spell by 50%.', 'Сокращает задержку произнесения заклинания "Гнев" при получении урона на 50%.');
+INSERT INTO `glyphproperties` VALUES (180, 54829, 0, 'Glyph of Moonfire', 'Символ лунного огня', 'Increases the periodic damage of your Moonfire ability by 75%, but initial damage is decreased by 90%.', 'Увеличивает периодический урон от заклинания "Лунный огонь" на 75%, уменьшая изначальный урон на 90%.');
+INSERT INTO `glyphproperties` VALUES (181, 54760, 0, 'Glyph of Entangling Roots', 'Символ гнева деревьев', 'Increases the damage your Entangling Roots victims can take before the Entangling Roots automatically breaks by 20%.', 'Увеличивает количество стороннего урона, которое можно нанести противнику, прежде чем действие заклинания "Гнев деревьев" прервется, на 20%.');
+INSERT INTO `glyphproperties` VALUES (182, 54912, 1, 'Glyph of the Red Lynx', 'Символ рыжей рыси', 'You appear as a red lynx while in Cat Form.', 'Принимая облик кошки, вы превращаетесь в рыжую рысь.');
+INSERT INTO `glyphproperties` VALUES (183, 54922, 0, 'Glyph of Judgement', 'Символ правосудия', 'Your Judgements deal 10% more damage.', 'Заклинание "Правосудие" наносит на 10% больше урона.');
+INSERT INTO `glyphproperties` VALUES (184, 54925, 0, 'Glyph of Seal of Command', 'Символ печати повиновения', 'Increases the chance of dealing Seal of Command damage by 20%.', 'Увеличивает вероятность нанесения урона с помощью заклинания "Печать повиновения" на 20%.');
+INSERT INTO `glyphproperties` VALUES (185, 54923, 0, 'Glyph of Hammer of Justice', 'Символ молота правосудия', 'Increases your Hammer of Justice range by 5 yards.', 'Увеличивает дальность действия заклинания "Молот правосудия" на 5 м.');
+INSERT INTO `glyphproperties` VALUES (186, 54924, 0, 'Glyph of Spiritual Attunement', 'Символ духовного созвучия', 'Increases the amount of mana gained from your Spiritual Attunement spell by an additional 2%.', 'Увеличивает количество маны, восполняемой вашим заклинанием "Духовное созвучие", на 2%.');
+INSERT INTO `glyphproperties` VALUES (187, 54926, 0, 'Glyph of Hammer of Wrath', 'Символ молота гнева', 'Reduces the mana cost of Hammer of Wrath by 100%.', 'Сокращает расход маны на заклинание "Молот гнева" на 100%.');
+INSERT INTO `glyphproperties` VALUES (188, 54927, 0, 'Glyph of Crusader Strike', 'Символ удара воина Света', 'Reduces the mana cost of your Crusader Strike ability by 20%.', 'Снижает затраты маны на заклинание ""Удар воина Света" на 20%.');
+INSERT INTO `glyphproperties` VALUES (189, 54928, 0, 'Glyph of Consecration', 'Символ освящения', 'Increases the duration and cooldown of Consecration by 2 sec.', 'Увеличивает продолжительность действия и время восстановления заклинания "Освящение" на 2 сек.');
+INSERT INTO `glyphproperties` VALUES (190, 54929, 0, 'Glyph of Righteous Defense', 'Символ праведной защиты', 'Increases the chance for your Righteous Defense ability to work successfully by 8% on each target.', 'Увеличивает на 8% вероятность успешного срабатывания способности "Праведная защита" на каждой цели.');
+INSERT INTO `glyphproperties` VALUES (191, 54930, 0, 'Glyph of Avenger`s Shield', 'Символ щита мстителя', 'Your Avenger`s Shield hits 2 fewer targets, but for 100% more damage.', 'Заклинание "Щит мстителя" атакует на 2 цели меньше, но наносит на 100% больше урона.');
+INSERT INTO `glyphproperties` VALUES (192, 54931, 0, 'Glyph of Turn Evil', 'Символ изгнания зла', 'Reduces the casting time of your Turn Evil spell by 100%, but increases the cooldown by 8 sec.', 'Сокращает время произнесения заклинания "Изгнание зла" на 100%, но увеличивает время восстановления этого заклинания на 8 с.');
+INSERT INTO `glyphproperties` VALUES (193, 54934, 0, 'Glyph of Exorcism', 'Символ экзорцизма', 'Increases damage done by Exorcism by 20%.', 'Заклинание "Экзорцизм" наносит урон, усиленный на 20%.');
+INSERT INTO `glyphproperties` VALUES (194, 54935, 0, 'Glyph of Cleansing', 'Символ очищения', 'Reduces the mana cost of your Cleanse and Purify spells by 20%.', 'Уменьшает затраты маны на заклинания "Очищение" и "Очистить" на 20%.');
+INSERT INTO `glyphproperties` VALUES (195, 54936, 0, 'Glyph of Flash of Light', 'Символ вспышки Света', 'Your Flash of Light has an additional 5% critical strike chance.', 'Вероятность критического эффекта заклинания "Вспышка Света" возрастает на 5%.');
+INSERT INTO `glyphproperties` VALUES (196, 54937, 0, 'Glyph of Holy Light', 'Символ Света небес', 'Your Holy Light grants 10% of its heal amount to up to 5 friendly targets within 8 yards of the initial target.', 'Заклинание "Свет небес" дарует 10% своего исцеления 5 дружественным целям в радиусе 8 м от первоначальной цели заклинания.');
+INSERT INTO `glyphproperties` VALUES (197, 54938, 0, 'Glyph of Avenging Wrath', 'Символ гнева карателя', 'Reduces the cooldown of your Hammer of Wrath spell by 50% while Avenging Wrath is active.', 'Уменьшает время восстановления вашего заклинания "Молот гнева" на 50% во время действия заклинания "Гнев карателя".');
+INSERT INTO `glyphproperties` VALUES (198, 54939, 0, 'Glyph of Divinity', 'Символ божественности', 'Your Lay on Hands grants twice as much mana as normal and also grants you as much mana as it grants your target.', 'Заклинание "Возложение рук" восстанавливает в два раза больше маны. Также паладин восполняет столько же маны, сколько получает цель.');
+INSERT INTO `glyphproperties` VALUES (199, 54940, 0, 'Glyph of Seal of Wisdom', 'Символ печати мудрости', 'While Seal of Wisdom is active, the cost of your healing spells is reduced by 5%.', 'Во время действия заклинания "Печать мудрости" стоимость ваших исцеляющих заклинаний уменьшается на 5%.');
+INSERT INTO `glyphproperties` VALUES (200, 54943, 0, 'Glyph of Seal of Light', 'Символ печати Света', 'While Seal of Light is active, the effect of your healing spells is increased by 5%.', 'Во время действия заклинания "Печать Света" исцеляющий эффект ваших заклинаний увеличивается на 5%.');
+INSERT INTO `glyphproperties` VALUES (211, 55436, 0, 'Glyph of Water Mastery', 'Символ хозяина вод', 'Increases the passive mana regeneration of your Water Shield spell by 30%.', 'Усиливает эффект пассивного восполнения маны, вызываемый заклинанием "Водный щит" на 30%.');
+INSERT INTO `glyphproperties` VALUES (212, 55437, 0, 'Glyph of Chain Heal', 'Символ цепного исцеления', 'Your Chain Heal heals 1 additional target.', 'Заклинание "Цепное исцеление" исцеляет на одну цель больше.');
+INSERT INTO `glyphproperties` VALUES (213, 55449, 0, 'Glyph of Chain Lightning', 'Символ цепной молнии', 'Your Chain Lightning strikes 1 additional target.', 'Заклинание "Цепная молния" поражает на одну цель больше.');
+INSERT INTO `glyphproperties` VALUES (214, 55454, 0, 'Glyph of Lava', 'Символ лавы', 'Your Lava Burst spell gains an additional 10% of your spellpower.', 'Повышает силу заклинания "Выброс лавы" на 10% от вашей общей силы заклинаний.');
+INSERT INTO `glyphproperties` VALUES (215, 55442, 0, 'Glyph of Shocking', 'Символ шока', 'Reduces the global cooldown triggered by your shock spells to 0 sec.', 'Сокращает общее время восстановления, вызываемое вашими заклинаниями категории "Шок", на 0 с.');
+INSERT INTO `glyphproperties` VALUES (216, 55439, 0, 'Glyph of Earthliving Weapon', 'Символ оружия жизни Земли', 'Increases the chance for your Earthliving weapon to trigger by 5%.', 'Увеличивает вероятность срабатывания эффекта "Жизнь земли" на оружии на 5%.');
+INSERT INTO `glyphproperties` VALUES (217, 55455, 0, 'Glyph of Fire Elemental Totem', 'Символ тотема элементаля огня', 'Reduces the cooldown of your Fire Elemental Totem by 10 min.', 'Уменьшает время восстановления тотема элементаля огня на 10 мин.');
+INSERT INTO `glyphproperties` VALUES (218, 55450, 0, 'Glyph of Fire Nova Totem', 'Символ тотема кольца огня', 'Reduces the cooldown of your Fire Nova Totem by 3 seconds.', 'Уменьшает время восстановления тотема кольца огня на 3 сек.');
+INSERT INTO `glyphproperties` VALUES (219, 55447, 0, 'Glyph of Flame Shock', 'Символ огненного шока', 'Increases the duration of your Flame Shock ability by 6 sec and it is not consumed by casting Lava Burst.', 'Продлевает действие заклинания "Огненный шок" на 6 сек. Эффект больше не поглощается заклинанием "Выброс лавы".');
+INSERT INTO `glyphproperties` VALUES (220, 55451, 0, 'Glyph of Flametongue Weapon', 'Символ оружия языка пламени', 'Increases spell critical strike chance by 2% while Flametongue Weapon is active.', 'Увеличивает вероятность критического удара заклинаний на 2% во время действия эффекта "Оружие языка пламени".');
+INSERT INTO `glyphproperties` VALUES (221, 55443, 0, 'Glyph of Frost Shock', 'Символ ледяного шока', 'Increases the duration of your Frost Shock by 2 sec.', 'Увеличивает время действия заклинания "Ледяной шок" на цель на 2 с.');
+INSERT INTO `glyphproperties` VALUES (222, 55456, 0, 'Glyph of Healing Stream Totem', 'Символ тотема исцеляющего потока', 'Your Healing Stream Totem heals for an additional 20%.', 'Тотем исцеляющего потока исцеляет дополнительно на 20%.');
+INSERT INTO `glyphproperties` VALUES (223, 55440, 0, 'Glyph of Healing Wave', 'Символ волны исцеления', 'Your Healing Wave also heals you for 20% of the healing effect when you heal someone else.', '"Волна исцеления" также исцеляет вас на 20% от вашего исцеления другой цели.');
+INSERT INTO `glyphproperties` VALUES (224, 55438, 0, 'Glyph of Lesser Healing Wave', 'Символ малой волны исцеления', 'Your Lesser Healing Wave heals for 20% more if the target is also affected by your Earth Shield.', '"Малая волна исцеления" исцеляет на 20% больше, если цель находится под действием заклинания "Щит земли".');
+INSERT INTO `glyphproperties` VALUES (225, 55448, 0, 'Glyph of Lightning Shield', 'Символ щита молний', 'Increases the damage from Lightning Shield by 20%.', 'Увеличивает урон от заклинания "Щит молний" на 20%.');
+INSERT INTO `glyphproperties` VALUES (226, 55453, 0, 'Glyph of Lightning Bolt', 'Символ молнии', 'Increases the damage dealt by Lightning Bolt by 4%.', 'Увеличивает урон, наносимый заклинанием "Молния", на 4%.');
+INSERT INTO `glyphproperties` VALUES (227, 55441, 0, 'Glyph of Mana Tide', 'Символ прилива маны', 'Your Mana Tide Totem grants an additional s% of each target`s maximum mana each time it pulses.', 'Тотем прилива маны восстанавливает дополнительно s% максимального количества маны каждой цели.');
+INSERT INTO `glyphproperties` VALUES (228, 55446, 0, 'Glyph of Stormstrike', 'Символ удара бури', 'Increases the Nature damage bonus from your Stormstrike ability by an additional 8%.', 'Увеличивает дополнительный урон от сил природы, наносимый заклинанием "Удар бури", на 8%.');
+INSERT INTO `glyphproperties` VALUES (229, 55444, 0, 'Glyph of Lava Lash', 'Символ вскипания лавы', 'Damage on your Lava Lash is increased by an additional 10% if your weapon is enchanted with Flametongue.', 'Урон, наносимый способностью "Вскипание лавы", увеличивается дополнительно на 10%, если на ваше оружие наложен эффект "Оружие языка пламени".');
+INSERT INTO `glyphproperties` VALUES (230, 55452, 0, 'Glyph of Elemental Mastery', 'Символ покорения стихий', 'Reduces the cooldown of your Elemental Mastery ability by 30 sec.', 'Уменьшает время восстановления способности "Покорение стихий" на 30 с.');
+INSERT INTO `glyphproperties` VALUES (231, 55445, 0, 'Glyph of Windfury Weapon', 'Символ оружия неистовства ветра', 'Increases the chance per swing for Windfury Weapon to trigger by 2%.', 'Повышает вероятность срабатывания эффекта "Оружие неистовства ветра" при атаке на 2%.');
+INSERT INTO `glyphproperties` VALUES (251, 55675, 0, 'Glyph of Circle of Healing', 'Символ круга исцеления', 'Your Circle of Healing spell heals 1 additional target.', 'Заклинание "Круг исцеления" воздействует на 1 дополнительную цель.');
+INSERT INTO `glyphproperties` VALUES (252, 55677, 0, 'Glyph of Dispel Magic', 'Символ рассеивания заклинаний', 'Your Dispel Magic spell also heals your target for 3% of maximum health.', '"Рассеивание заклинаний" также исцеляет цель на 3% от его максимального запаса здоровья.');
+INSERT INTO `glyphproperties` VALUES (253, 55684, 0, 'Glyph of Fade', 'Символ ухода в тень', 'Reduces the cooldown of your Fade spell by 9 sec.', 'Уменьшает время восстановления заклинания "Уход в тень" на 9.');
+INSERT INTO `glyphproperties` VALUES (254, 55678, 0, 'Glyph of Fear Ward', 'Символ защиты от страха', 'Reduces cooldown and duration of Fear Ward by 60 sec.', 'Уменьшает время восстановления и длительность заклинания "Защита от страха" на 60 с.');
+INSERT INTO `glyphproperties` VALUES (255, 55679, 0, 'Glyph of Flash Heal', 'Символ быстрого исцеления', 'Reduces the mana cost of your Flash Heal by 10%.', 'Снижает затраты маны на заклинание "Быстрое исцеление" на 10%.');
+INSERT INTO `glyphproperties` VALUES (256, 55683, 0, 'Glyph of Holy Nova', 'Символ кольца света', 'Your Holy Nova spell heals for an additional 40%, but deals 40% less damage.', 'Лечебный эффект заклинания "Кольцо света" увеличивается на 40%, но наносимый урон снижается на 40%.');
+INSERT INTO `glyphproperties` VALUES (257, 55686, 0, 'Glyph of Inner Fire', 'Символ внутреннего огня', 'Increases the armor from your Inner Fire spell by 50%.', 'Увеличивает бонус брони от заклинания "Внутренний огонь" на 50%.');
+INSERT INTO `glyphproperties` VALUES (258, 55673, 0, 'Glyph of Lightwell', 'Символ колодца Света', 'Increases the amount healed by your Lightwell by 20%', 'Увеличивает исцеляющий эффект заклинания "Колодец Света" на 20%');
+INSERT INTO `glyphproperties` VALUES (259, 55691, 0, 'Glyph of Mass Dispel', 'Символ массового рассеивания', 'Reduces the mana cost of Mass Dispel by 35%.', 'Уменьшает расход маны на заклинание "Массовое рассеивание" на 35%.');
+INSERT INTO `glyphproperties` VALUES (260, 55688, 0, 'Glyph of Mind Control', 'Символ контроля над разумом', 'Reduces the chance targets will resist or break your Mind Control spell by an additional 17%.', 'Понижает сопротивление заклинанию "Контроль над разумом", а также вероятность снятия этого эффекта дополнительно на 17%.');
+INSERT INTO `glyphproperties` VALUES (261, 55681, 0, 'Glyph of Mind Flay', 'Символ пытки разума', 'Increases the range of your Mind Flay spell by 10 yards, but it only reduces the target`s movement speed by 10%.', 'Увеличивает дальность действия заклинания "Пытка разума" на 10 м, однако заклинание снижает скорость передвижения цели только на 10%.');
+INSERT INTO `glyphproperties` VALUES (262, 55689, 0, 'Glyph of Shadow', 'Символ Тьмы', 'While in Shadowform, your spell critical strikes increase your spell power by 10% of your Spirit for 10.', 'При нанесении критических ударов в облике Тьмы ваша сила заклинаний повышается на 10% от вашего духа на 10.');
+INSERT INTO `glyphproperties` VALUES (263, 55672, 0, 'Glyph of Power Word: Shield', 'Символ слова силы: Щит', 'Your Power Word: Shield also heals the target for 20% of the absorption amount.', 'Заклинание "Слово силы: Щит" также исцеляет цель на 20% поглощенного урона.');
+INSERT INTO `glyphproperties` VALUES (264, 55680, 0, 'Glyph of Prayer of Healing', 'Символ молитвы исцеления', 'Your Prayer of Healing spell also heals an additional 20% of its initial heal over 6 sec.', 'Ваше заклинание "Молитва исцеления" также восстанавливает у союзников 20% от изначально восполненного здоровья в течение 6 сек.');
+INSERT INTO `glyphproperties` VALUES (265, 55676, 0, 'Glyph of Psychic Scream', 'Символ ментального крика', 'Increases the duration of your Psychic Scream by 2000 sec.', 'Увеличивает время действия заклинания "Ментальный крик" на 2000 с.');
+INSERT INTO `glyphproperties` VALUES (266, 55674, 0, 'Glyph of Renew', 'Символ обновления', 'Reduces the duration of your Renew by 3 sec. but increases the amount healed each tick by 25%.', 'Уменьшает время действия заклинания "Обновление" на 3 с, но увеличивает количество здоровья, восстанавливаемое за каждый такт, на 25%.');
+INSERT INTO `glyphproperties` VALUES (267, 55690, 0, 'Glyph of Scourge Imprisonment', 'Символ сдерживания Плети', 'Reduces the cast time of your Shackle Undead by 0.1 sec.', 'Уменьшает время произнесения заклинания "Сковывание нежити" на 0.1 с.');
+INSERT INTO `glyphproperties` VALUES (268, 55682, 0, 'Glyph of Shadow Word: Death', 'Символ слова Тьмы: Смерть', 'Targets below 35% health take an additional 10% damage from your Shadow Word: Death spell.', 'Цели, у которых менее 35% здоровья, получают дополнительно 10% урона от заклинания "Слово Тьмы: Смерть".');
+INSERT INTO `glyphproperties` VALUES (269, 55687, 0, 'Glyph of Shadow Word: Pain', 'Символ Боли', 'Increases the damage done by your Mind Flay spell by 10% when your target is afflicted with Shadow Word: Pain.', 'Увеличивает урон, наносимый вашим заклинанием "Пытка разума", на 10%, если цель находится под воздействием эффекта "Слово Тьмы: Боль".');
+INSERT INTO `glyphproperties` VALUES (270, 55692, 0, 'Glyph of Smite', 'Символ кары', 'Your Smite spell inflicts an additional 20% damage against targets afflicted by Holy Fire.', 'Заклинание "Кара" наносит на 20% больше урона по противникам, на которых наложен эффект "Священный огонь".');
+INSERT INTO `glyphproperties` VALUES (271, 55685, 0, 'Glyph of Spirit of Redemption', 'Символ духа воздаяния', 'Increases the duration of Spirit of Redemption by 6 sec.', 'Продлевает действие заклинания "Дух воздаяния" на 6 с.');
+INSERT INTO `glyphproperties` VALUES (272, 56242, 0, 'Glyph of Incinerate', 'Символ испепеления', 'Increases the damage done by Incinerate by 5%.', 'Увеличивает урон от заклинания "Испепеление" на 5%.');
+INSERT INTO `glyphproperties` VALUES (273, 56235, 0, 'Glyph of Conflagrate', 'Символ поджигания', 'Your Conflagrate spell no longer consumes your Immolate or Shadowflame spell from the target.', 'Ваше заклинание "Поджигание" больше не снимает с цели эффекты заклинаний "Жертвенный огонь" и "Пламя Тьмы".');
+INSERT INTO `glyphproperties` VALUES (274, 56218, 0, 'Glyph of Corruption', 'Символ порчи', 'Your Corruption spell has a 4% chance to cause you to enter a Shadow Trance state after damaging the opponent. The Shadow Trance state reduces the casting time of your next Shadow Bolt spell by 100%.', 'При нанесении урона заклинанием "Порча" вы с вероятностью 4% можете войти в состояние теневого транса. В этом состоянии время применения следующего заклинания "Стрела Тьмы" уменьшается на 100%.');
+INSERT INTO `glyphproperties` VALUES (275, 56241, 0, 'Glyph of Curse of Agony', 'Символ проклятия агонии', 'Increases the duration of your Curse of Agony by 4 sec.', 'Увеличивает время действия заклинания "Проклятие агонии" на 4 с.');
+INSERT INTO `glyphproperties` VALUES (276, 56232, 0, 'Glyph of Death Coil', 'Символ лика смерти', 'Increases the duration of your Death Coil by 0.1 sec.', 'Увеличивает время действия заклинания "Лик смерти" на 0.1 с.');
+INSERT INTO `glyphproperties` VALUES (277, 56244, 0, 'Glyph of Fear', 'Символ страха', 'Increases the damage your Fear target can take before the Fear effect is removed by 20%.', 'Увеличивает количество урона, которое можно нанести противнику перед тем, как наложенный на него эффект страха пропадет, на 20%.');
+INSERT INTO `glyphproperties` VALUES (278, 56246, 0, 'Glyph of Felguard', 'Символ стража Скверны', 'Increases the Felguard`s total attack power by 20%.', 'Увеличивает силу атаки вашего стража Скверны на 20%.');
+INSERT INTO `glyphproperties` VALUES (279, 56249, 0, 'Glyph of Felhunter', 'Символ охотника Скверны', 'When your felhunter uses Devour Magic, you will also be healed for that amount.', 'Когда охотник Скверны применяет "Пожирание магии", вы исцеляетесь на ту же величину, что и он.');
+INSERT INTO `glyphproperties` VALUES (280, 56238, 0, 'Glyph of Health Funnel', 'Символ канала здоровья', 'Increases the chance you`ll resist spell interruption when channeling your Health Funnel spell by 100%.', 'Повышает вероятность избежать прерывания при поддержании заклинания "Канал здоровья" на 100%.');
+INSERT INTO `glyphproperties` VALUES (281, 56224, 0, 'Glyph of Healthstone', 'Символ камня здоровья', 'You receive 30% more healing from using a healthstone.', 'При использовании камня здоровья вы восстанавливаете на 30% больше здоровья.');
+INSERT INTO `glyphproperties` VALUES (282, 56217, 0, 'Glyph of Howl of Terror', 'Символ воя ужаса', 'Reduces the cooldown on your Howl of Terror spell by 8 sec.', 'Уменьшает время восстановления заклинания "Вой ужаса" на 8 с.');
+INSERT INTO `glyphproperties` VALUES (283, 56228, 0, 'Glyph of Immolate', 'Символ жертвенного огня', 'Increases the periodic damage of your Immolate by 10%.', 'Увеличивает периодический урон от вашего заклинания "Жертвенный огонь" на 10%.');
+INSERT INTO `glyphproperties` VALUES (284, 56248, 0, 'Glyph of Imp', 'Символ беса', 'Increases the damage done by your Imp`s Firebolt spell by 20%.', 'Увеличивает урон, наносимый вашим бесом с помощью заклинания "Огненная стрела", на 20%.');
+INSERT INTO `glyphproperties` VALUES (285, 56226, 0, 'Glyph of Searing Pain', 'Символ жгучей боли', 'Increases the critical strike bonus of your Searing Pain by 20%.', 'Увеличивает дополнительный урон при критическом ударе заклинания "Жгучая боль" на 20%.');
+INSERT INTO `glyphproperties` VALUES (286, 56240, 0, 'Glyph of Shadow Bolt', 'Символ стрелы Тьмы', 'Reduces the mana cost of your Shadow Bolt by 10%.', 'Уменьшает затраты маны на заклинание "Стрела Тьмы" на 10%.');
+INSERT INTO `glyphproperties` VALUES (287, 56229, 0, 'Glyph of Shadowburn', 'Символ ожога Тьмы', 'Increases the critical strike chance of Shadowburn by 20% when the target is below 35% health.', 'Увеличивает вероятность критического удара заклинания "Ожог Тьмы" на 20%, если у цели осталось менее 35% здоровья.');
+INSERT INTO `glyphproperties` VALUES (288, 56216, 0, 'Glyph of Siphon Life', 'Символ вытягивания жизни', 'Increases the healing you receive from your Siphon Life talent by 25%.', 'Повышает эффективность исцеления с помощью заклинания "Вытягивание жизни" на 25%.');
+INSERT INTO `glyphproperties` VALUES (289, 56231, 0, 'Glyph of Soulstone', 'Символ камня души', 'Increases the amount of health you gain from resurrecting via your Soulstone by 300%.', 'Увеличивает количество здоровья, с которым вы воскрешаетесь при использовании своего камня души, на 300%.');
+INSERT INTO `glyphproperties` VALUES (290, 56250, 0, 'Glyph of Succubus', 'Символ суккуба', 'Your Succubus`s Seduction ability also removes all damage over time effects from the target.', 'Способность вашего суккуба "Соблазн" также снимает с цели все эффекты периодического урона.');
+INSERT INTO `glyphproperties` VALUES (291, 56233, 0, 'Glyph of Unstable Affliction', 'Символ нестабильного колдовства', 'Decreases the casting time of your Unstable Affliction by 0.1 sec.', 'Уменьшает время произнесения заклинания "Нестабильное колдовство" на 0.1 с.');
+INSERT INTO `glyphproperties` VALUES (292, 56247, 0, 'Glyph of Voidwalker', 'Символ демона Бездны', 'Increases your Voidwalker`s total Stamina by 20%.', 'Увеличивает выносливость вашего демона Бездны на 20%.');
+INSERT INTO `glyphproperties` VALUES (311, 56360, 0, 'Glyph of Arcane Explosion', 'Символ чародейского взрыва', 'Reduces mana cost of Arcane Explosion by 10%.', 'Уменьшает затраты маны на заклинание "Чародейский взрыв" на 10%.');
+INSERT INTO `glyphproperties` VALUES (312, 56363, 0, 'Glyph of Arcane Missiles', 'Символ чародейских стрел', 'Increases the critical strike damage bonus of Arcane Missiles by 25%.', 'Увеличивает дополнительный урон при критическом ударе заклинания "Чародейские стрелы" на 25%.');
+INSERT INTO `glyphproperties` VALUES (313, 56381, 0, 'Glyph of Arcane Power', 'Символ мощи тайной магии', 'Increases the duration of Arcane Power by 3 sec.', 'Увеличивает время действия заклинания "Мощь тайной магии" на 3 с.');
+INSERT INTO `glyphproperties` VALUES (314, 56365, 0, 'Glyph of Blink', 'Символ скачка', 'Increases the distance you travel with the Blink spell by 5 yards.', 'Увеличивает дальность перемещения с помощью заклинания "Скачок" на 5 м.');
+INSERT INTO `glyphproperties` VALUES (315, 56380, 0, 'Glyph of Evocation', 'Символ прилива сил', 'Your Evocation ability also causes you to regain 60% of your health over its duration.', 'Во время действия способности "Прилив сил" вы также восстанавливаете 60% от вашего запаса здоровья.');
+INSERT INTO `glyphproperties` VALUES (316, 56368, 0, 'Glyph of Fireball', 'Символ огненного шара', 'Increases the critical strike chance of Fireball by 5%, but removes the damage over time effect.', 'Увеличивает вероятность критического удара заклинанием "Огненный шар", на 5%, но лишает заклинание эффекта периодического урона.');
+INSERT INTO `glyphproperties` VALUES (317, 56369, 0, 'Glyph of Fire Blast', 'Символ огненного взрыва', 'Increases the critical strike chance of Fire Blast by 50% when the target is stunned or incapacitated.', 'Увеличивает вероятность критического удара заклинания "Огненный взрыв" против оглушенных или обездвиженных целей на 50%.');
+INSERT INTO `glyphproperties` VALUES (318, 56376, 0, 'Glyph of Frost Nova', 'Символ кольца льда', 'Your Frost Nova targets can take an additional 20% damage before the Frost Nova effect automatically breaks.', 'Цели, пораженные вашим заклинанием "Кольцо льда", могут получить на 20% больше урона, прежде чем действие заклинания прекратится.');
+INSERT INTO `glyphproperties` VALUES (319, 56370, 0, 'Glyph of Frostbolt', 'Символ ледяной стрелы', 'Increases the damage dealt by Frostbolt by 5%, but removes the slowing effect.', 'Увеличивает урон, наносимый заклинанием "Ледяная стрела", на 5%, но лишает заклинание замедляющего эффекта.');
+INSERT INTO `glyphproperties` VALUES (320, 56384, 0, 'Glyph of Ice Armor', 'Символ ледяного доспеха', 'Your Ice Armor and Frost Armor spells grant an additional 50% armor and resistance.', 'Увеличивает бонус брони и сопротивления от заклинаний "Ледяной доспех" и "Морозный доспех" на 50%.');
+INSERT INTO `glyphproperties` VALUES (321, 56372, 0, 'Glyph of Ice Block', 'Символ ледяной глыбы', 'Your Frost Nova cooldown is now reset every time you use Ice Block.', 'При использовании способности "Ледяная глыба" заклинание "Кольцо льда" мгновенно восстанавливается.');
+INSERT INTO `glyphproperties` VALUES (322, 56377, 0, 'Glyph of Ice Lance', 'Символ ледяного копья', 'Your Ice Lance now causes 4 times damage against frozen targets higher level than you instead of triple damage.', 'Заклинание "Ледяное копье" наносит в 4 раз больше урона по замороженным противникам, чей уровень выше уровня игрока.');
+INSERT INTO `glyphproperties` VALUES (323, 56374, 0, 'Glyph of Icy Veins', 'Символ стылой крови', 'Your Icy Veins ability also removes all movement slowing and cast time slowing effects.', 'При применении способности "Стылая кровь" с вас снимаются все эффекты, снижающие скорость передвижения и применения заклинаний.');
+INSERT INTO `glyphproperties` VALUES (324, 56371, 0, 'Glyph of Improved Scorch', 'Символ улучшенного ожога', 'The Improved Scorch talent now generates 5 applications of the Improved Scorch effect each time Scorch is cast.', 'Талант "Улучшенный ожог" теперь накладывает 5 эффекта при каждом произнесении заклинания "Ожог".');
+INSERT INTO `glyphproperties` VALUES (325, 56366, 0, 'Glyph of Invisibility', 'Символ невидимости', 'Increases the duration of the Invisibility effect by 10 sec.', 'Увеличивает время действия эффекта невидимости на 10 с.');
+INSERT INTO `glyphproperties` VALUES (326, 56383, 0, 'Glyph of Mage Armor', 'Символ магического доспеха', 'Your Mage Armor spell grants an additional 20% mana regeneration while casting.', 'Способность "Магический доспех" повышает скорость восполнения маны при применении заклинаний на 20%.');
+INSERT INTO `glyphproperties` VALUES (327, 56367, 0, 'Glyph of Mana Gem', 'Символ самоцвета маны', 'Increases the mana received from using a mana gem by 40%.', 'Увеличивает количество маны, восстанавливаемой при использовании камня маны, на 40%.');
+INSERT INTO `glyphproperties` VALUES (328, 56382, 0, 'Glyph of Molten Armor', 'Символ раскаленного доспеха', 'Your Molten Armor grants an additional 20% of your spirit as critical strike rating.', 'Увеличивает вероятность критического удара под действием заклинания "Раскаленный доспех" на 20% от показателя духа.');
+INSERT INTO `glyphproperties` VALUES (329, 56375, 0, 'Glyph of Polymorph', 'Символ превращения', 'Your Polymorph spell also removes all damage over time effects from the target.', 'Заклинание "Превращение" также снимает с цели все эффекты периодического урона.');
+INSERT INTO `glyphproperties` VALUES (330, 56364, 0, 'Glyph of Remove Curse', 'Символ снятия проклятия', 'Your Remove Curse spell also makes the target immune to all curses for 4.', 'Заклинание "Снятие проклятия" также делает цель невосприимчивой к проклятиям на 4.');
+INSERT INTO `glyphproperties` VALUES (331, 56373, 0, 'Glyph of Water Elemental', 'Символ элементаля воды', 'Reduces the cooldown of your Summon Water Elemental spell by 30 sec.', 'Уменьшает время восстановления заклинания "Призыв элементаля воды" на 30 с.');
+INSERT INTO `glyphproperties` VALUES (351, 56824, 0, 'Glyph - Aimed Shot', 'Символ прицельного выстрела', 'Reduces the cooldown of your Aimed Shot ability by 2 sec.', 'Уменьшает затраты маны на "Прицельный выстрел" на 2 сек.');
+INSERT INTO `glyphproperties` VALUES (352, 56841, 0, 'Glyph of Arcane Shot', 'Символ чародейского выстрела', 'Your Arcane Shot refunds 20% of its mana cost if the target has one of your Stings active on it.', 'Способность "Чародейский выстрел" возвращает 20% от израсходованной на нее маны, если на цель наложен эффект заклинания категории "Укус".');
+INSERT INTO `glyphproperties` VALUES (353, 56857, 0, 'Glyph of the Beast', 'Символ духа зверя', 'Increases the attack power bonus of Aspect of the Beast for you and your pet by an additional 2%.', 'Дополнительная сила атаки охотника и его питомца, получаемая от эффекта "Дух зверя", увеличивается на 2%.');
+INSERT INTO `glyphproperties` VALUES (354, 56833, 0, 'Glyph of Mending', 'Символ лечения питомца', 'Increases the healing done by your Mend Pet ability by 40%.', 'Увеличивает количество здоровья, восстанавливаемое способностью "Лечение питомца", на 40%.');
+INSERT INTO `glyphproperties` VALUES (355, 56851, 0, 'Glyph of Aspect of the Viper', 'Символ духа гадюки', 'Increases the amount of mana gained from attacks while Aspect of the Viper is active by 10%.', 'Увеличивает количество маны, восстанавливаемой вашими атаками во время обращения к духу гадюки, на 10%.');
+INSERT INTO `glyphproperties` VALUES (356, 56830, 0, 'Glyph of Bestial Wrath', 'Символ звериного гнева', 'Decreases the cooldown of Bestial Wrath by 20 sec.', 'Уменьшает время восстановления способности "Звериный гнев" на 20 с.');
+INSERT INTO `glyphproperties` VALUES (357, 56850, 0, 'Glyph of Deterrence', 'Символ сдерживания', 'Decreases the cooldown of Deterrence by 10 sec.', 'Уменьшает время восстановления способности "Сдерживание" на 10 с.');
+INSERT INTO `glyphproperties` VALUES (358, 56844, 0, 'Glyph of Disengage', 'Символ отрыва', 'Decreases the cooldown of Disengage by 5 sec.', 'Уменьшает время восстановления способности "Отрыв" на 5 с.');
+INSERT INTO `glyphproperties` VALUES (359, 56845, 0, 'Glyph of Freezing Trap', 'Символ замораживающей ловушки', 'When your Freezing Trap breaks, the victim`s movement speed is reduced by 30% for 4.', 'При прекращении действия вашей замораживающей ловушки скорость передвижения жертвы снижается на 30% на 4.');
+INSERT INTO `glyphproperties` VALUES (360, 56847, 0, 'Glyph of Frost Trap', 'Символ ледяной ловушки', 'Increases the radius of the effect from your Frost Trap by 2 yards.', 'Увеличивает радиус действия эффекта способности "Ледяная ловушка" на 2 м.');
+INSERT INTO `glyphproperties` VALUES (361, 56829, 0, 'Glyph of Hunter`s Mark', 'Символ метки охотника', 'Increases the attack power bonus of your Hunter`s Mark by 20%.', 'Увеличивает дополнительную силу атаки, получаемую от эффекта "Метка охотника" на 20%.');
+INSERT INTO `glyphproperties` VALUES (362, 56846, 0, 'Glyph of Immolation Trap', 'Символ обжигающей ловушки', 'Decreases the duration of the effect from your Immolation Trap by 6 sec., but damage while active is increased by 100%.', 'Уменьшает время действия эффекта способности "Обжигающая ловушка" на 6 с, но увеличивает наносимый ей на каждом такте действия урон на 100%.');
+INSERT INTO `glyphproperties` VALUES (363, 56856, 0, 'Glyph of the Hawk', 'Символ ястреба', 'Increases the haste bonus of the Improved Aspect of the Hawk effect by an additional 6%.', 'Дополнительная скорость, получаемая от эффекта "Сильный дух ястреба", увеличивается на 6%.');
+INSERT INTO `glyphproperties` VALUES (364, 56836, 0, 'Glyph of Multi-Shot', 'Символ залпа', 'Decreases the cooldown of Multi-Shot by 1 sec.', 'Уменьшает время восстановления способности "Залп" на 1 с.');
+INSERT INTO `glyphproperties` VALUES (365, 56828, 0, 'Glyph of Rapid Fire', 'Символ быстрой стрельбы', 'Increases the haste from Rapid Fire by an additional 8%.', 'Увеличивает ускорение стрельбы, получаемое от способности "Быстрая стрельба" на 8%.');
+INSERT INTO `glyphproperties` VALUES (366, 56832, 0, 'Glyph of Serpent Sting', 'Символ укуса змеи', 'Increases the duration of your Serpent Sting by 6 sec.', 'Увеличивает время действия способности "Укус змеи" на 6 с.');
+INSERT INTO `glyphproperties` VALUES (367, 56849, 0, 'Glyph of Snake Trap', 'Символ змеиной ловушки', 'Snakes generated by your Snake Trap take 90% reduced damge from area of effect spells.', 'Змеи, создаваемые змеиной ловушкой, получают на 90% меньше урона от заклинаний с действием по области.');
+INSERT INTO `glyphproperties` VALUES (368, 56826, 0, 'Glyph of Steady Shot', 'Символ верного выстрела', 'Increases the damage dealt by Steady Shot by 10% when your target is afflicted with Serpent Sting.', 'Увеличивает урон, наносимый способностью "Верный выстрел", на 10%, если цель находится под воздействием способности "Укус змеи".');
+INSERT INTO `glyphproperties` VALUES (369, 56842, 0, 'Glyph of Trueshot Aura', 'Символ ауры меткого выстрела', 'While your Trueshot Aura is active, you have 10% increased critical strike chance on your Aimed Shot.', 'Пока активна "Аура меткого выстрела", вероятность нанести критический удар "Прицельным выстрелом" повышается на 10%');
+INSERT INTO `glyphproperties` VALUES (370, 56838, 0, 'Glyph of Volley', 'Символ града стрел', 'Decreases the mana cost of Volley by 20%.', 'Уменьшает расход маны на способность "Град стрел" на 20%.');
+INSERT INTO `glyphproperties` VALUES (371, 56848, 0, 'Glyph of Wyvern Sting', 'Символ укуса виверны', 'Decreases the cooldown of your Wyvern Sting by 6 sec.', 'Уменьшает время восстановления способности "Укус виверны" на 6 с.');
+INSERT INTO `glyphproperties` VALUES (391, 56808, 0, 'Glyph of Adrenaline Rush', 'Символ выброса адреналина', 'Increases the duration of Adrenaline Rush by 5 sec.', 'Увеличивает время действия способности "Выброс адреналина" на 5 с.');
+INSERT INTO `glyphproperties` VALUES (392, 56813, 0, 'Glyph of Ambush', 'Символ внезапного удара', 'Increases the range on Ambush by 5 yards.', 'Увеличивает дальность действия способности "Внезапный удар" на 5 м.');
+INSERT INTO `glyphproperties` VALUES (393, 56800, 0, 'Glyph of Backstab', 'Символ удара в спину', 'Your Backstab increases the duration of your Rupture effect on the target by 2 sec, up to a maximum of 6 additional sec.', '"Удар в спину" продлевает действие эффекта "Рваная рана" на 2 с. Максимальное дополнительное время не может превышать 6 с.');
+INSERT INTO `glyphproperties` VALUES (394, 56818, 0, 'Glyph of Blade Flurry', 'Символ шквала клинков', 'Reduces the energy cost of Blade Flurry by 100%.', 'Уменьшает расход энергии на способность "Шквал клинков" на 100%.');
+INSERT INTO `glyphproperties` VALUES (395, 56820, 0, 'Glyph of Crippling Poison', 'Символ калечащего яда', 'Increases the chance to inflict your target with Crippling Poison by an additional 20%.', 'Увеличивает вероятность отравления противника калечащим ядом на 20%.');
+INSERT INTO `glyphproperties` VALUES (396, 56806, 0, 'Glyph of Deadly Throw', 'Символ смертельного броска', 'Increases the slowing effect on Deadly Throw by 10%.', 'Увеличивает дальность действия способности "Смертельный бросок" на 10%.');
+INSERT INTO `glyphproperties` VALUES (397, 56799, 0, 'Glyph of Evasion', 'Символ ускользания', 'Increases the duration of Evasion by 5 sec.', 'Увеличивает время действия способности "Ускользание" на 5 с.');
+INSERT INTO `glyphproperties` VALUES (398, 56802, 0, 'Glyph of Eviscerate', 'Символ потрошения', 'Increases the critical strike chance of Eviscerate by 10%.', 'Увеличивает вероятность критического удара способности "Потрошение" на 10%.');
+INSERT INTO `glyphproperties` VALUES (399, 56803, 0, 'Glyph of Expose Armor', 'Символ ослабления доспеха', 'Increases the duration of Expose Armor by 10 sec.', 'Увеличивает время действия эффекта способности "Ослабление доспеха" на 10 с.');
+INSERT INTO `glyphproperties` VALUES (400, 56804, 0, 'Glyph of Feint', 'Символ ложного выпада', 'Reduces the energy cost of Feint by 10.', 'Уменьшает расход энергии на способность "Ложный выпад" на 10.');
+INSERT INTO `glyphproperties` VALUES (401, 56812, 0, 'Glyph of Garrote', 'Символ гарроты', 'Reduces the duration of your Garrote ability by 3 sec and increases the total damage it deals by 20%.', 'Сокращает время действия способности "Гаррота" на 3 с, но увеличивает суммарно наносимый ею урон на 20%.');
+INSERT INTO `glyphproperties` VALUES (402, 56814, 0, 'Glyph of Ghostly Strike', 'Символ призрачного удара', 'Increases the damage dealt by Ghostly Strike by 40% and the duration of its effect by 4000 sec.', 'Увеличивает урон, наносимый способностью "Призрачный удар" на 40% и продолжительность действия ее эффекта на 4000 секунд.');
+INSERT INTO `glyphproperties` VALUES (403, 56809, 0, 'Glyph of Gouge', 'Символ парализующего удара', 'Reduces the energy cost of Gouge by 10.', 'Снижает расход энергии на способность "Парализующий удар" на 10 ед.');
+INSERT INTO `glyphproperties` VALUES (404, 56807, 0, 'Glyph of Hemorrhage', 'Символ кровоизлияния', 'Increases the damage bonus against targets afflicted by Hemorrhage by 40%.', 'Увеличивает урон, наносимый целям, находящимся под действием эффекта "Кровоизлияние", на 40%.');
+INSERT INTO `glyphproperties` VALUES (405, 56819, 0, 'Glyph of Preparation', 'Символ подготовки', 'Your Preparation ability also instantly resets the cooldown of Blade Flurry, Dismantle, and Kick.', '"Подготовка" мгновенно восстанавливает способности "Шквал клинков", "Долой оружие" и "Пинок".');
+INSERT INTO `glyphproperties` VALUES (406, 56801, 0, 'Glyph of Rupture', 'Символ рваной раны', 'Increases the duration of Rupture by 4 sec.', 'Увеличивает время действия эффекта способности "Рваная рана" на 4 с.');
+INSERT INTO `glyphproperties` VALUES (407, 56798, 0, 'Glyph of Sap', 'Символ ошеломления', 'Increases the duration of Sap by 20 sec.', 'Увеличивает время действия эффекта способности "Ошеломление" на 20 с.');
+INSERT INTO `glyphproperties` VALUES (408, 56805, 0, 'Glyph of Vigor', 'Символ неутомимости', 'Vigor grants an additional 10 maximum energy.', 'Талант "Неутомимость" добавляет еще 10 ед. к максимальному запасу энергии.');
+INSERT INTO `glyphproperties` VALUES (409, 56821, 0, 'Glyph of Sinister Strike', 'Символ коварного удара', 'Your Sinister Strike critical strikes have a 50% chance to add an additional combo point.', 'При критическом эффекте способности "Коварный удар" с вероятностью 50% длина серии увеличивается еще на 1 прием.');
+INSERT INTO `glyphproperties` VALUES (410, 56810, 0, 'Glyph of Slice and Dice', 'Символ мясорубки', 'Increases the duration of Slice and Dice by 3 sec.', 'Увеличивает время действия способности "Мясорубка" на 3 с.');
+INSERT INTO `glyphproperties` VALUES (411, 56811, 0, 'Glyph of Sprint', 'Символ спринта', 'Increases the movement speed of your Sprint ability by an additional 30%.', 'Увеличивает скорость спринта дополнительно на 30%.');
+INSERT INTO `glyphproperties` VALUES (431, 57856, 1, 'Glyph of Aquatic Form', 'Символ водного облика', 'Increases your swim speed by 50% while in Aquatic Form.', 'Увеличивает скорость плавания в водном облике на 50%."');
+INSERT INTO `glyphproperties` VALUES (432, 57858, 1, 'Glyph of Challenging Roar', 'Символ вызывающего рева', 'Reduces the cooldown of your Challenging Roar ability by 30 sec.', 'Уменьшает время восстановления способности "Вызывающий рев" на 30с.');
+INSERT INTO `glyphproperties` VALUES (433, 57855, 1, 'Glyph of the Wild', 'Символ дикой природы', 'Mana cost of your Mark of the Wild and Gift of the Wild spells reduced by 50%.', 'Снижает затраты маны на заклинания "Знак дикой природы" и "Дар дикой природы" на 50%.');
+INSERT INTO `glyphproperties` VALUES (434, 57857, 1, 'Glyph of Unburdened Rebirth', 'Символ безграничного возрождения', 'Your Rebirth spell no longer requires a reagent.', 'Для заклинания "Возрождение" больше не требуется реагент.');
+INSERT INTO `glyphproperties` VALUES (435, 57862, 1, 'Glyph of Thorns', 'Символ шипов', 'Increases the duration of your Thorns ability by 50 min when cast on yourself.', 'Увеличивает время действия заклинания "Шипы" на 50 м, при применении на себя.');
+INSERT INTO `glyphproperties` VALUES (436, 58133, 1, 'Glyph of the Forest Lynx', 'Символ лесной рыси', 'You appear as a forest lynx while in Cat Form.', 'Принимая облик кошки, вы превращаетесь в бурую рысь.');
+INSERT INTO `glyphproperties` VALUES (438, 58132, 1, 'Glyph of the Black Bear', 'Символ черного медведя', 'Your bear and dire bear forms take on the appearance of a black bear.', 'Принимая облик медведя или лютого медведя, вы превращаетесь в черного медведя.');
+INSERT INTO `glyphproperties` VALUES (439, 57866, 1, 'Glyph of Revive Pet', 'Символ воскрешения питомца', 'Reduces the pushback suffered from damaging attacks while casting Revive Pet by 100%.', 'Сокращает задержку применения способности "Воскрешение питомца" при получении урона на 100%.');
+INSERT INTO `glyphproperties` VALUES (440, 57870, 1, 'Glyph of Mend Pet', 'Символ лечения питомца', 'Your Mend Pet spell increases your pet`s happiness slightly.', 'Заклинание "Лечение питомца" слегка улучшает настроение вашего питомца.');
+INSERT INTO `glyphproperties` VALUES (441, 57903, 1, 'Glyph of Feign Death', 'Символ ложной смерти', 'Reduces the cooldown of your Feign Death spell by 5 sec.', 'Уменьшает время восстановления способности "Притвориться мертвым" на 5 c.');
+INSERT INTO `glyphproperties` VALUES (442, 57902, 1, 'Glyph of Scare Beast', 'Символ отпугивания зверя', 'Reduces the pushback suffered from damaging attacks while casting Scare Beast by 75%.', 'Сокращает задержку применения способности "Отпугивание зверя" при получении урона на 75%.');
+INSERT INTO `glyphproperties` VALUES (443, 57904, 1, 'Glyph of the Pack', 'Символ стаи', 'Increases the range of your Aspect of the Pack ability by 15 yards.', 'Увеличивает дальность действия способности "Дух стаи" на 15 м.');
+INSERT INTO `glyphproperties` VALUES (444, 57900, 1, 'Glyph of Possessed Strength', 'Символ овладения силой', 'Increases the damage your pet inflicts while using Eyes of the Beast by 50%.', '"Увеличивает урон, наносимый вашим питомцем при применении вами способности "Звериный глаз", на 50%.');
+INSERT INTO `glyphproperties` VALUES (445, 57924, 1, 'Glyph of Arcane Intellect', 'Символ чародейского интеллекта', 'Reduces the mana cost of your Arcane Intellect and Arcane Brilliance spells by 50%.', 'Уменьшает расход маны на заклинания "Чародейский интеллект" и "Чародейская гениальность" на 50%.');
+INSERT INTO `glyphproperties` VALUES (446, 57926, 1, 'Glyph of Fire Ward', 'Символ защиты от огня', 'You have an additional 5% chance to reflect Fire spells while your Fire Ward is active.', 'Дополнительная 5%-я вероятность отразить заклинания магии огня во время действия заклинания "Защита от огня".');
+INSERT INTO `glyphproperties` VALUES (447, 57927, 1, 'Glyph of Frost Ward', 'Символ защиты от магии льда', 'You have an additional 5% chance to reflect Frost spells while your Frost Ward is active.', 'Дополнительная 5%-я вероятность отразить заклинания магии льда во время действия заклинания "Защита от магии льда".');
+INSERT INTO `glyphproperties` VALUES (448, 57928, 1, 'Glyph of Frost Armor', 'Символ морозного доспеха', 'Increases the duration of your Frost Armor and Ice Armor spells by 30 min.', 'Увеличивает время действия заклинаний "Морозный доспех" и "Ледяной доспех" на 30 мин.');
+INSERT INTO `glyphproperties` VALUES (449, 58136, 1, 'Glyph of the Bear Cub', 'Символ белого медвежонка', 'Your Polymorph: Sheep spell polymorphs the target into a polar bear cub instead.', 'Заклинание "Превращение в овцу" превращает цель в белого медвежонка.');
+INSERT INTO `glyphproperties` VALUES (450, 52648, 1, 'Glyph of the Penguin', 'Символ пингвина', 'Your Polymorph: Sheep spell polymorphs the target into a penguin instead.', 'Ваше заклинание "Превращение в овцу" обращает цель в пингвина.');
+INSERT INTO `glyphproperties` VALUES (451, 57925, 1, 'Glyph of Slow Fall', 'Символ замедленного падения', 'Your Slow Fall spell no longer requires a reagent.', 'Для произнесения заклинания "Замедленное падение" больше не требуется реагент.');
+INSERT INTO `glyphproperties` VALUES (452, 57937, 1, 'Glyph of Blessing of Kings', 'Символ благословения королей', 'Reduces the mana cost of your Blessing of Kings and Greater Blessing of Kings spells by 50%.', 'Снижает затраты маны на заклинания "Благословение королей" и "Великое благословение королей" на 50%.');
+INSERT INTO `glyphproperties` VALUES (453, 57958, 1, 'Glyph of Blessing of Might', 'Символ благословения могущества', 'Increases the duration of your Blessing of Might spell by 20 min when cast on yourself.', 'Увеличивает время действия наложенного на себя заклинания "Благословение могущества" на 20 мин.');
+INSERT INTO `glyphproperties` VALUES (454, 57979, 1, 'Glyph of Blessing of Wisdom', 'Символ благословения мудрости', 'Increases the duration of your Blessing of Wisdom spell by 20 min when cast on yourself.', 'Увеличивает время действия наложенного на себя заклинания "Благословение мудрости" на 20 м.');
+INSERT INTO `glyphproperties` VALUES (455, 57955, 1, 'Glyph of Lay on Hands', 'Символ возложения рук', 'Reduces the cooldown of your Lay on Hands spell by 5 min.', 'Уменьшает время восстановления заклинания "Возложение рук", на 5 мин.');
+INSERT INTO `glyphproperties` VALUES (456, 57947, 1, 'Glyph of Sense Undead', 'Символ чутья на нежить', 'Damage against Undead increased by 1% while your Sense Undead ability is active.', 'Наносимый нежити урон увеличивается на 1% при активной способности "Чутье на нежить".');
+INSERT INTO `glyphproperties` VALUES (457, 57954, 1, 'Glyph of the Wise', 'Символ мудрых', 'Reduces the mana cost of your Seal of Wisdom spell by 50%.', 'Уменьшает расход маны на применение заклинания "Печать мудрости" на 50%.');
+INSERT INTO `glyphproperties` VALUES (458, 57985, 1, 'Glyph of Fading', 'Символ растворения в тени', 'Reduces the mana cost of your Fade spell by 30%.', 'Снижает затраты маны на заклинание "Уход в тень" на 30%.');
+INSERT INTO `glyphproperties` VALUES (459, 57987, 1, 'Glyph of Levitate', 'Символ левитации', 'Your Levitate spell no longer requires a reagent.', 'Для произнесения заклинания "Левитация" больше не требуется реагент.');
+INSERT INTO `glyphproperties` VALUES (460, 58009, 1, 'Glyph of Fortitude', 'Символ стойкости', 'Reduces the mana cost of your Power Word: Fortitude and Prayer of Fortitude spells by 50%.', 'Уменьшает расход маны на заклинания "Слово силы: Стойкость" и "Молитва Стойкости" на 50%.');
+INSERT INTO `glyphproperties` VALUES (461, 57986, 1, 'Glyph of Shackle Undead', 'Символ сковывания нежити', 'Increases the range of your Shackle Undead spell by 5 yards.', 'Увеличивает предел досягаемости заклинания "Сковывание нежити" на 5 м.');
+INSERT INTO `glyphproperties` VALUES (462, 58015, 1, 'Glyph of Shadow Protection', 'Символ защиты от темной магии', 'Increases the duration of your Shadow Protection and Prayer of Shadow Protection spells by 10 min.', 'Увеличивает время действия заклинаний "Защита от темной магии" и "Молитва защиты от темной магии" на 10 мин.');
+INSERT INTO `glyphproperties` VALUES (463, 58228, 1, 'Glyph of Shadowfiend', 'Символ исчадия Тьмы', 'Receive 5% of your maximum mana if your Shadowfiend dies from damage.', 'У вас восполняется 5% от запаса маны, когда исчадие Тьмы погибает от полученного урона.');
+INSERT INTO `glyphproperties` VALUES (464, 58032, 1, 'Glyph of Distract', 'Символ отвлечения', 'Increases the range of your Distract ability by 5 yards.', 'Увеличивает дальность действия способности "Отвлечение" на 5 м.');
+INSERT INTO `glyphproperties` VALUES (465, 58027, 1, 'Glyph of Pick Lock', 'Символ взлома', 'Reduces the cast time of your Pick Lock ability by 100%.', 'Уменьшает время применения способности "Взлом замка" на 100%.');
+INSERT INTO `glyphproperties` VALUES (466, 58017, 1, 'Glyph of Pick Pocket', 'Символ обшаривания карманов', 'Increases the range of your Pick Pocket ability by 5 yards.', 'Увеличивает дальность действия способности "Обшаривание карманов" на 5 м.');
+INSERT INTO `glyphproperties` VALUES (467, 58033, 1, 'Glyph of Safe Fall', 'Символ безопасного падения', 'Increases the distance your Safe Fall ability allows you to fall without taking damage.', 'Увеличивает высоту безопасного падения при применении способности "Безопасное падение".');
+INSERT INTO `glyphproperties` VALUES (468, 58039, 1, 'Glyph of Blurred Speed', 'Символ огромной скорости', 'Enables you to walk on water while your Sprint ability is active.', 'Вы можете ходить по воде во время действия способности "Спринт".');
+INSERT INTO `glyphproperties` VALUES (469, 58038, 1, 'Glyph of Vanish', 'Символ исчезновения', 'Increases your movement speed by 30% while the Vanish effect is active.', 'Увеличивает скорость передвижения на 30% во время действия эффекта "Исчезновение".');
+INSERT INTO `glyphproperties` VALUES (470, 58058, 1, 'Glyph of Astral Recall', 'Символ астрального возвращения', 'Cooldown of your Astral Recall spell reduced by 7.1 min.', 'Время восстановления заклинания "Астральное возвращение" уменьшено на 7.1 мин.');
+INSERT INTO `glyphproperties` VALUES (471, 58135, 1, 'Glyph of the Arctic Wolf', 'Символ полярного волка', 'You appears as an arctic wolf when using your Ghost Wolf spell.', 'Ваше заклинание "Призрачный волк" превращает вас в полярного волка.');
+INSERT INTO `glyphproperties` VALUES (472, 58134, 1, 'Glyph of the Black Wolf', 'Символ черного волка', 'You appears as a black wolf when using your Ghost Wolf spell.', 'Ваше заклинание "Призрачный волк" превращает вас в черного волка.');
+INSERT INTO `glyphproperties` VALUES (473, 58059, 1, 'Glyph of Renewed Life', 'Символ обновленной жизни', 'Your Reincarnation spell no longer requires a reagent.', 'Заклинание "Реинкарнация" не требует реагентов.');
+INSERT INTO `glyphproperties` VALUES (474, 58055, 1, 'Glyph of Water Breathing', 'Символ подводного дыхания', 'Your Water Breathing spell no longer requires a reagent.', 'Для произнесения заклинания "Подводное дыхание" больше не требуется реагент.');
+INSERT INTO `glyphproperties` VALUES (475, 58063, 1, 'Glyph of Water Shield', 'Символ водного щита', 'Increases the number of charges on your Water Shield spell by 1.', 'Увеличивает количество зарядов заклинания "Водный щит" на 1.');
+INSERT INTO `glyphproperties` VALUES (476, 58057, 1, 'Glyph of Water Walking', 'Символ хождения по воде', 'Your Water Walking spell no longer requires a reagent.', 'Для произнесения заклинания "Хождение по воде" больше не требуется реагент.');
+INSERT INTO `glyphproperties` VALUES (477, 58079, 1, 'Glyph of Unending Breath', 'Символ бесконечного дыхания', 'Increases the swim speed of targets affected by your Unending Breath spell by 20%.', 'Цели, находящиеся под воздействием вашего эффекта "Бесконечное дыхание", плавают на 20% быстрее.');
+INSERT INTO `glyphproperties` VALUES (478, 58070, 1, 'Glyph of Drain Soul', 'Символ похищения души', 'Your Drain Soul ability occasionally creates an additional soul shard.', 'Заклинание "Похищение души" может создать дополнительный осколок души.');
+INSERT INTO `glyphproperties` VALUES (479, 58081, 1, 'Glyph of Kilrogg', 'Символ Килрогга', 'Increases the movement speed of your Eye of Kilrogg by 50% and allows it to fly in areas where flying mounts are enabled.', 'Увеличивает скорость ока Килрогга на 50% и позволяет ему летать в тех зонах, где можно использовать летающие средства передвижения.');
+INSERT INTO `glyphproperties` VALUES (480, 58080, 1, 'Glyph of Curse of Exhausion', 'Символ проклятия изнеможения', 'Increases the range of your Curse of Exhaustion spell by 5 yards.', 'Увеличивает дальность действия заклинания "Проклятие изнеможения" на 5 м.');
+INSERT INTO `glyphproperties` VALUES (481, 58107, 1, 'Glyph of Enslave Demon', 'Символ порабощения демона', 'Reduces the cast time of your Enslave Demon spell by 50%.', 'Сокращает время применения заклинания "Порабощение демона" на 50%.');
+INSERT INTO `glyphproperties` VALUES (482, 58094, 1, 'Glyph of Souls', 'Символ душ', 'Reduces the mana cost of your Ritual of Souls spell by 70%.', 'Снижает количество маны, затрачиваемой на заклинание "Ритуал душ", на 70%.');
+INSERT INTO `glyphproperties` VALUES (483, 58095, 1, 'Glyph of Battle', 'Символ боевого крика', 'Increases the duration of your Battle Shout ability by 1 min.', 'Увеличивает время действия способности "Боевой крик" на 1 мин.');
+INSERT INTO `glyphproperties` VALUES (484, 58096, 1, 'Glyph of Bloodrage', 'Символ кровавой ярости', 'Reduces the health cost of your Bloodrage ability by 100%.', 'Уменьшает расход здоровья на использование способности "Кровавая ярость" на 100%.');
+INSERT INTO `glyphproperties` VALUES (485, 58097, 1, 'Glyph of Charge', 'Символ рывка', 'Increases the range of your Charge ability by 5 yards.', 'Увеличивает дальность действия способности "Рывок" на 5 м.');
+INSERT INTO `glyphproperties` VALUES (486, 58099, 1, 'Glyph of Mocking Blow', 'Символ дразнящего удара', 'Increases the damage of your Mocking Blow ability by 25%.', 'Увеличивает урон от способности "Дразнящий удар" на 25%.');
+INSERT INTO `glyphproperties` VALUES (487, 58098, 1, 'Glyph of Thunder Clap', 'Символ удара грома', 'Increases the radius of your Thunder Clap ability by 2 yards.', 'Увеличивает радиус действия способности "Удар грома" на 2 м.');
+INSERT INTO `glyphproperties` VALUES (488, 58104, 1, 'Glyph of Enduring Victory', 'Символ неоспоримой победы', 'Increases the window of opportunity in which you can use Victory Rush by 5 sec.', 'Увеличивает время, в течение которого можно использовать способность "Победный раж", на 5 с.');
+INSERT INTO `glyphproperties` VALUES (489, 58368, 0, 'Glyph of Mortal Strike', 'Символ смертельного удара', 'Increases the damage of your Mortal Strike ability by 10%.', 'Увеличивает урон от способности "Смертельный удар" на 10%.');
+INSERT INTO `glyphproperties` VALUES (490, 58369, 0, 'Glyph of Bloodthirst', 'Символ кровожадности', 'Increases the healing you receive from your Bloodthirst ability by 100%.', 'Увеличивает количество здоровья, исцеляемого при применении способности "Кровожадность", на 100%.');
+INSERT INTO `glyphproperties` VALUES (491, 58355, 0, 'Glyph of Rapid Charge', 'Символ стремительного рывка', 'Reduces the cooldown of your Charge ability by 7%.', 'Уменьшает время восстановления способности "Рывок" на 7%.');
+INSERT INTO `glyphproperties` VALUES (492, 58366, 0, 'Glyph of Cleaving', 'Символ рассечения', 'Increases the number of targets your Cleave hits by 1.', 'Увеличивает количество противников, поражаемых вашей способностью "Рассекающий удар", на 1.');
+INSERT INTO `glyphproperties` VALUES (493, 58388, 0, 'Glyph of Devastate', 'Символ сокрушения', 'Your Devastate ability now applies two stacks of Sunder Armor.', 'Ваша способность "Сокрушение" накладывает сразу два эффекта "Раскол брони".');
+INSERT INTO `glyphproperties` VALUES (494, 58367, 0, 'Glyph of Execution', 'Символ казни', 'Your Execute ability deals damage as if you had 10 additional rage.', 'Способность "Казнь" наносит столько урона, сколько бы было нанесено с ее помощью при наличии 10 ед. дополнительной ярости.');
+INSERT INTO `glyphproperties` VALUES (495, 58372, 0, 'Glyph of Hamstring', 'Символ подрезанного сухожилия', 'Gives your Hamstring ability a 10% chance to immobilize the target for 5.', '10% вероятность того, что способность "Подрезать сухожилия" обездвижит цель на 5.');
+INSERT INTO `glyphproperties` VALUES (496, 58357, 0, 'Glyph of Heroic Strike', 'Символ удара героя', 'You gain 10 rage when you critically strike with your Heroic Strike ability.', 'При нанесении критического удара способностью "Удар героя" вы восполняете 10 ед. ярости.');
+INSERT INTO `glyphproperties` VALUES (497, 58377, 0, 'Glyph of Intervene', 'Символ вмешательства', 'Increases the number attacks you intercept for your Intervene target by 1.', 'Увеличивает количество предотвращенных атак, при использовании способности "Вмешательство", на 1.');
+INSERT INTO `glyphproperties` VALUES (498, 58365, 0, 'Glyph of Barbaric Insults', 'Символ вульгарных оскорблений', 'Your Mocking Blow ability generates 100% additional threat.', 'Способность "Дразнящий удар" повышает уровень угрозы дополнительно на 100%.');
+INSERT INTO `glyphproperties` VALUES (499, 58386, 0, 'Glyph of Overpower', 'Символ превосходства', 'Adds a 100% chance to enable your Overpower when your attacks are parried.', 'С 100%-й вероятностью вы сможете использовать способность "Превосходство" после парирования ваших атак.');
+INSERT INTO `glyphproperties` VALUES (500, 58385, 0, 'Glyph of Rending', 'Символ кровопускания', 'Increases the duration of your Rend ability by 6 sec.', 'Увеличивает время действия способности "Кровопускание" на 6 с.');
+INSERT INTO `glyphproperties` VALUES (501, 58364, 0, 'Glyph of Revenge', 'Символ реванша', 'After using Revenge, your next Heroic Strike costs no rage.', 'После применения способности "Реванш" не требуется ярости для применения способности "Удар героя".');
+INSERT INTO `glyphproperties` VALUES (502, 58375, 0, 'Glyph of Blocking', 'Символ блокирования', 'Increases your block value by 10% for 10 after using your Shield Slam ability.', 'Увеличивает показатель блока на 10% на 10. после применения способности "Мощный удар щитом".');
+INSERT INTO `glyphproperties` VALUES (503, 58376, 0, 'Glyph of Last Stand', 'Символ отчаянной защиты', 'Reduces the cooldown of your Last Stand ability by 1 min.', 'Уменьшает время восстановления способности "Ни шагу назад" на 1 мин.');
+INSERT INTO `glyphproperties` VALUES (504, 58387, 0, 'Glyph of Sunder Armor', 'Символ раскола брони', 'Your Sunder Armor ability affects a second nearby target.', 'Ваша способность "Раскол брони" действует еще на одну цель, находящуюся поблизости.');
+INSERT INTO `glyphproperties` VALUES (505, 58384, 0, 'Glyph of Sweeping Strikes', 'Символ размашистого удара', 'Reduces the rage cost of your Sweeping Strikes ability by 100%.', 'Снижает затраты ярости на способность "Размашистые удары" на 100%.');
+INSERT INTO `glyphproperties` VALUES (506, 58353, 0, 'Glyph of Taunt', 'Символ провокации', 'Increases the chance for your Taunt ability to succeed by 8%.', 'Увеличивает вероятность успешного применения способности "Провокация" на 8%.');
+INSERT INTO `glyphproperties` VALUES (507, 58356, 0, 'Glyph of Resonating Power', 'Символ грохочущей мощи', 'Reduces the rage cost of your Thunder Clap ability by 5.', 'Сокращает расход ярости на способность "Удар грома" на 5.');
+INSERT INTO `glyphproperties` VALUES (508, 58382, 0, 'Glyph of Victory Rush', 'Символ победного ража', 'Your Victory Rush ability has a 30% increased critical strike chance against targets above 70% health.', 'Вероятность нанести критический удар способностью "Победный раж" по целям с запасом здоровья больше 70% повышается на 30% .');
+INSERT INTO `glyphproperties` VALUES (509, 58370, 0, 'Glyph of Whirlwind', 'Символ вихря', 'Reduces the cooldown of your Whirlwind by 2 sec.', 'Снижает время восстановления способности "Вихрь" на 2 сек.');
+INSERT INTO `glyphproperties` VALUES (511, 58613, 0, 'Glyph of Dark Command', 'Символ темной власти', 'Increases the chance for your Dark Command ability to work successfully by 8%.', 'Увеличивает шанс успешного срабатывания вашей способности "Темная власть" на 8%.');
+INSERT INTO `glyphproperties` VALUES (512, 58623, 0, 'Glyph of Anti-Magic Shell', 'Символ антимагического панциря', 'Increases the duration of your Anti-Magic Shell by 2 sec.', 'Увеличивает время действия способности "Антимагический панцирь" на 2 с.');
+INSERT INTO `glyphproperties` VALUES (513, 58616, 0, 'Glyph of Heart Strike', 'Символ удара в сердце', 'Your Heart Strike also reduces the movement speed of your target by 50% for 10.', 'Ваше заклинание "Удар в сердце" также снижает скорость передвижения противника на 50% на 10.');
+INSERT INTO `glyphproperties` VALUES (514, 58640, 1, 'Glyph of Blood Tap', 'Символ кровоотвода', 'Your Blood Tap no longer causes damage to you.', '"Кровоотвод" не наносит вам урона.');
+INSERT INTO `glyphproperties` VALUES (515, 58673, 0, 'Glyph of Bone Shield', 'Символ костяного щита', 'Adds 2 additional charges to your Bone Shield.', 'Увеличивает количество зарядов заклинания "Костяной щит" на 2.');
+INSERT INTO `glyphproperties` VALUES (516, 58620, 0, 'Glyph of Chains of Ice', 'Символ ледяных оков', 'Your Chains of Ice also causes 144 - 156 Frost damage, increased by your attack power.', '"Ледяные оковы" наносят также 144 - 156 ед. урона от магии льда, зависящего от силы вашей атаки.');
+INSERT INTO `glyphproperties` VALUES (518, 58677, 1, 'Glyph of Death`s Embrace', 'Символ объятий смерти', 'Your Death Coil refunds 20 runic power when used to heal.', 'Когда "Лик смерти" применяется для лечения, он восстанавливает 20 ед. силы рун.');
+INSERT INTO `glyphproperties` VALUES (519, 62259, 0, 'Glyph of Death Grip', 'Символ хватки смерти', 'When you deal a killing blow that grants honor or experience, the cooldown of your Death Grip is refreshed.', 'Когда вы наносите смертельный удар, приносящий очки чести или опыта, обновляется время восстановления способности "Хватка смерти".');
+INSERT INTO `glyphproperties` VALUES (520, 58629, 0, 'Glyph of Death and Decay', 'Символ смерти и разложения', 'Damage of your Death and Decay spell increased by 20%.', 'Увеличивает урон от вашего заклинания "Смерть и разложение" на 20%.');
+INSERT INTO `glyphproperties` VALUES (521, 58647, 0, 'Glyph of Frost Strike', 'Символ ледяного удара', 'Reduces the cost of your Frost Strike by 8 Runic Power.', 'Стоимость "Ледяного удара" снижается на 8 ед. силы рун.');
+INSERT INTO `glyphproperties` VALUES (522, 58680, 1, 'Glyph of Horn of Winter', 'Символ зимнего горна', 'Increases the duration of your Horn of Winter ability by 1 min.', '"Увеличивает время действия эффекта "Зимний горн" на 1 мин."');
+INSERT INTO `glyphproperties` VALUES (523, 58625, 0, 'Glyph of Icebound Fortitude', 'Символ незыблемости льда', 'Your Icebound Fortitude now always grants at least 30% damage reduction, regardless of your defense skill.', '"Незыблемость льда" всегда сокращает урон минимум на 30%, вне зависимости от навыка защиты.');
+INSERT INTO `glyphproperties` VALUES (524, 58631, 0, 'Glyph of Icy Touch', 'Символ ледяного прикосновения', 'Your Icy Touch generates 10 additional runic power.', '"Ледяное прикосновение" восстанавливает дополнительно 10 ед. силы рун.');
+INSERT INTO `glyphproperties` VALUES (525, 58671, 0, 'Glyph of Obliterate', 'Символ уничтожения', 'Increases the damage of your Obliterate ability by 20%.', 'Увеличивает урон от способности "Уничтожение" на 20%.');
+INSERT INTO `glyphproperties` VALUES (526, 58657, 0, 'Glyph of Plague Strike', 'Символ удара чумы', 'Your Plague Strike does 20% additional damage.', '"Удар чумы" наносит 20% дополнительного урона.');
+INSERT INTO `glyphproperties` VALUES (527, 58686, 0, 'Glyph of the Ghoul', 'Символ вурдалака', 'Your Ghoul receives an additional 40% of your Strength and 40% of your Stamina.', 'Сила вурдалака возрастает на 40% от вашей силы и на 40% от вашей выносливости.');
+INSERT INTO `glyphproperties` VALUES (528, 58669, 0, 'Glyph of Rune Strike', 'Символ рунического удара', 'Increases the critical strike chance of your Rune Strike by 10%.', 'Увеличивает вероятность нанести критический урон способностью "Рунический удар" на 10%.');
+INSERT INTO `glyphproperties` VALUES (529, 58642, 0, 'Glyph of Scourge Strike', 'Символ удара Плети', 'Your Scourge Strike has a 25% chance to cause Blood Plague and Frost Fever.', '"Удар Плети" с 25%-й вероятностью может наслать болезни "Кровавая чума" и "Озноб".');
+INSERT INTO `glyphproperties` VALUES (530, 58618, 0, 'Glyph of Strangulate', 'Символ удушения', 'Reduces the cooldown of your Strangulate by 20 sec.', 'Сокращает время восстановления способности "Удушение" на 20 сек.');
+INSERT INTO `glyphproperties` VALUES (531, 58635, 0, 'Glyph of Unbreakable Armor', 'Символ неразрушимой брони', 'Increases the amount of damage absorbed by Unbreakable Armor by 20%.', 'Увеличивает количество урона, поглощаемое заклинанием "Неразрушимая броня", на 20%.');
+INSERT INTO `glyphproperties` VALUES (532, 58676, 0, 'Glyph of Vampiric Blood', 'Символ крови вампира', 'Increases the duration of your Vampiric Blood by 10 sec.', 'Продлевает действие заклинания "Кровь вампира" на 10 с.');
+INSERT INTO `glyphproperties` VALUES (551, 59219, 1, 'Glyph of Dash', 'Символ порыва', 'Reduces the cooldown of your Dash ability by 20%.', 'Сокращает время восстановления способности "Порыв" на 20%.');
+INSERT INTO `glyphproperties` VALUES (552, 59289, 1, 'Glyph of Ghost Wolf', 'Символ призрачного волка', 'Your Ghost Wolf form regenerates an additional 1% of your maximum health every 5 sec.', 'В облике призрачного волка вы восстанавливаете дополнительно 1% от вашего максимального здоровья каждые 5 с.');
+INSERT INTO `glyphproperties` VALUES (553, 59309, 1, 'Glyph of Pestilence', 'Символ мора', 'Increases the radius of your Pestilence effect by 5 yards.', 'Увеличивает радиус воздействия способности "Мор" на 5 м.');
+INSERT INTO `glyphproperties` VALUES (554, 59307, 1, 'Glyph of Corpse Explosion', 'Символ взрыва трупа', 'Any target killed by your Corpse Explosion ability will also explode. Only affects targets within range of your Corpse Explosion ability, and cannot happen more than once every 6 seconds.', 'Каждый противник, убитый в результате действия вашего заклинания "Взрыв трупа", также взрывается. Действует только на цели, находящиеся в пределах дальности действия заклинания "Взрыв трупа". Эффект повторяется не чаще, чем раз в 6 с.');
+INSERT INTO `glyphproperties` VALUES (555, 60200, 1, 'Glyph of Raise Dead', 'Символ воскрешения мертвых', 'Your Raise Dead spell no longer requires a reagent.', 'Заклинание "Воскрешение мертвых" не требует реагентов.');
+INSERT INTO `glyphproperties` VALUES (556, 59327, 0, 'Glyph of Rune Tap', 'Символ захвата рун', 'Your Rune Tap heals yourself for an additional 10% of the effect, and also heals your party for 10% of their maximum health.', '"Захват рун" восстанавливает вам на 10% здоровья больше и излечивает участников вашей группы на 10% от общего запаса их здоровья.');
+INSERT INTO `glyphproperties` VALUES (557, 59332, 0, 'Glyph of Blood Strike', 'Символ кровавого удара', 'Your Blood Strike causes an additional 20% damage to snared targets.', '"Кровавый удар" наносит на 20% урона больше по скованным целям.');
+INSERT INTO `glyphproperties` VALUES (558, 59336, 0, 'Glyph of Death Strike', 'Символ удара смерти', 'Increases your Death Strike`s damage by 2% for every 2 runic power you currently have (up to a maximum of 25%). The runic power is not consumed by this effect.', 'Увеличивает урон от способности "Удар смерти" на 2% за каждые 2 ед. накопленной силы рун (максимум на 25%). Сила рун при этом не расходуется.');
+INSERT INTO `glyphproperties` VALUES (559, 56420, 0, 'Glyph of Seal of Blood', 'Символ печати крови', 'When your Seal of Blood, Seal of the Martyr, Judgement of Blood, or Judgement of the Martyr deals damage to you, you gain 11% of the damage done as mana.', 'Когда заклинания "Печать крови", "Печать мученика" , "Правосудие крови" и "Правосудие мученика" наносят вам урон, у вас восполняется мана в количестве, эквивалентном 11% от полученного урона."');
+INSERT INTO `glyphproperties` VALUES (560, 56414, 0, 'Glyph of Seal of Righteousness', 'Символ печати праведности', 'Increases the damage done by Seal of Righteousness by 10%.', 'Увеличивает урон от заклинания "Печать праведности" на 10%.');
+INSERT INTO `glyphproperties` VALUES (561, 56416, 0, 'Glyph of Seal of Vengeance', 'Символ печати мщения', 'Your Seal of Vengeance or Seal of Corruption also grants 10 expertise while active.', 'Пока активно заклинание "Печать мщения" или "Печать порчи", ваше мастерство повышается на 10.');
+INSERT INTO `glyphproperties` VALUES (571, 60200, 1, 'Glyph of Raise Dead', 'Символ воскрешения мертвых', 'Your Raise Dead spell no longer requires a reagent.', 'Заклинание "Воскрешение мертвых" не требует реагентов.');
+INSERT INTO `glyphproperties` VALUES (591, 61205, 0, 'Glyph of Frostfire', 'Символ ледяного огня', 'Increases the initial damage dealt by Frostfire Bolt by 2% and its critical strike chance by 2%.', 'Увеличивает начальный урон от заклинания "Стрела ледяного огня" на 2% и повышает вероятность критического удара с его помощью на 2%.');
+INSERT INTO `glyphproperties` VALUES (611, 62126, 1, 'Glyph of Blast Wave', 'Символ взрывной волны', 'The mana cost of your Blast Wave spell is reduced by 15%, but it no longer knocks enemies back.', 'Расход маны на заклинание "Взрывная волна" уменьшен на 15%, но теперь оно не отбрасывает противников.');
+INSERT INTO `glyphproperties` VALUES (612, 62132, 1, 'Glyph of Thunderstorm', 'Символ грома и молнии', 'Increases the mana you receive from your Thunderstorm spell by 2%, but it no longer knocks enemies back.', 'Увеличивает количество маны, получаемой при применении способности "Гром и молния", на 2%. Заклинание больше не отбрасывает противников назад.');
+INSERT INTO `glyphproperties` VALUES (613, 62135, 1, 'Glyph of Typhoon', 'Символ тайфуна', 'Reduces the cost of your Typhoon spell by 8%, but it no longer knocks enemies back.', 'Стоимость заклинания "Тайфун" снижается на 8%, но заклинание больше не отбрасывает противников назад.');
+INSERT INTO `glyphproperties` VALUES (631, 62080, 0, 'Glyph of Focus', 'Символ фокусирования', 'Increases the damage done by Starfall by 20%, but decreases its radius by 50%.', 'Увеличивает урон от заклинания "Звездопад" на 20%, но уменьшает радиус его действия на 50%.');
+INSERT INTO `glyphproperties` VALUES (651, 62210, 0, 'Glyph of Arcane Blast', 'Символ чародейской вспышки', 'Increases the damage from your Arcane Blast buff by 3%.', 'Увеличивает урон от эффекта "Чародейская вспышка" на 3%.');
+INSERT INTO `glyphproperties` VALUES (671, 62969, 0, 'Glyph of Berserk', 'Символ берсерка', 'Increases the duration of Berserk by 5 sec.', 'Увеличивает время действия способности "Берсерк" на 5 с.');
+INSERT INTO `glyphproperties` VALUES (672, 62970, 0, 'Glyph of Wild Growth', 'Символ буйного роста', 'Wild Growth can affect 1 additional target.', 'Заклинание "Буйный рост" воздействует дополнительно на 1 цель.');
+INSERT INTO `glyphproperties` VALUES (673, 62971, 0, 'Glyph of Nourish', 'Символ покровительства природы', 'Your Nourish heals an additional 6% for each of your heal over time effects present on the target.', 'Заклинание "Покровительство природы" теперь восстанавливает на 6% больше здоровья за каждый наложенный на цель эффект постепенного лечения.');
+INSERT INTO `glyphproperties` VALUES (674, 63055, 0, 'Glyph of Savage Roar', 'Символ дикого рева', 'Your Savage Roar ability grants an additional 3% bonus damage done.', 'Cпособность "Дикий рев" увеличивает наносимый урон дополнительно на 3%.');
+INSERT INTO `glyphproperties` VALUES (675, 63056, 0, 'Glyph of Monsoon', 'Символ сезона дождей', 'Reduces the cooldown of your Typhoon spell by 3 sec.', 'Уменьшает время восстановления заклинания "Тайфун" на 3 с.');
+INSERT INTO `glyphproperties` VALUES (676, 63057, 0, 'Glyph of Barkskin', 'Символ дубовой кожи', 'Reduces the chance you`ll be critically hit by melee attacks by 25% while Barkskin is active.', 'Снижает вероятность получить критический удар в ближнем бою, находясь под действием эффекта "Дубовая кожа", на 25%.');
+INSERT INTO `glyphproperties` VALUES (677, 63065, 0, 'Glyph of Chimera Shot', 'Символ выстрела химеры', 'Reduces the cooldown of Chimera Shot by 1 sec.', 'Уменьшает время восстановления способности "Выстрел химеры" на 1 с.');
+INSERT INTO `glyphproperties` VALUES (691, 63066, 0, 'Glyph of Explosive Shot', 'Символ разрывного выстрела', 'Increases the critical strike chance of Explosive Shot by 4%.', 'Повышает вероятность критического эффекта способности "Разрывной выстрел" на 4%.');
+INSERT INTO `glyphproperties` VALUES (692, 63067, 0, 'Glyph of Kill Shot', 'Символ убийственного выстрела', 'Reduces the cooldown of Kill Shot by 6 sec.', 'Cнижает время восстановления способности "Убийственный выстрел" на 6 с.');
+INSERT INTO `glyphproperties` VALUES (693, 63068, 0, 'Glyph of Explosive Trap', 'Символ взрывной ловушки', 'The periodic damage from your Explosive Trap can now be critical strikes.', 'Обеспечивает некоторую вероятность того, что периодический урон от способности "Взрывная ловушка" будет критическим.');
+INSERT INTO `glyphproperties` VALUES (694, 63069, 0, 'Glyph of Scatter Shot', 'Символ дезориентирующего выстрела', 'Increases the range of Scatter Shot by 3 yards.', 'Увеличивает дальность действия способности "Дезориентирующий выстрел" на 3 м.');
+INSERT INTO `glyphproperties` VALUES (695, 63086, 0, 'Glyph of Raptor Strike', 'Символ удара ящера', 'Reduces damage taken by 20% for 3 after using Raptor Strike.', 'В течение 3. сек. после использования способности "Удар ящера" персонаж получает на 20% меньше урона.');
+INSERT INTO `glyphproperties` VALUES (696, 63090, 0, 'Glyph of Deep Freeze', 'Символ глубокой заморозки', 'Increases the range of Deep Freeze by 10 yards.', 'Увеличивает дальность действия заклинания "Глубокая заморозка" на 10 м.');
+INSERT INTO `glyphproperties` VALUES (697, 63091, 0, 'Glyph of Living Bomb', 'Символ живой бомбы', 'The periodic damage from your Living Bomb can now be critical strikes.', 'Периодический урон от заклинания "Живая бомба" теперь может быть критическим.');
+INSERT INTO `glyphproperties` VALUES (698, 63092, 0, 'Glyph of Arcane Barrage', 'Символ чародейского обстрела', 'Reduces the mana cost of Arcane Barrage by 20%.', 'Уменьшает затраты маны на заклинание "Чародейский обстрел" на 20%.');
+INSERT INTO `glyphproperties` VALUES (699, 63093, 0, 'Glyph of Mirror Image', 'Символ зеркального отображения', 'Your Mirror Image spell now creates a 4th copy.', '"Зеркальное отображение" создает четвертую копию мага.');
+INSERT INTO `glyphproperties` VALUES (700, 63095, 0, 'Glyph of Ice Barrier', 'Символ ледяной преграды', 'Increases the amount of damage absorbed by your Ice Barrier by 30%.', 'Увеличивает количество урона, поглощаемого заклинанием "Ледяная преграда", на 30%.');
+INSERT INTO `glyphproperties` VALUES (701, 63218, 0, 'Glyph of Beacon of Light', 'Символ частицы Света', 'Increases the duration of Beacon of Light by 30 sec.', 'Увеличивает время действия заклинания "Частица Света" на 30 с.');
+INSERT INTO `glyphproperties` VALUES (702, 63219, 0, 'Glyph of Hammer of the Righteous', 'Символ молота праведника', 'Your Hammer of the Righteous hits 1 additional target.', 'Количество целей заклинания "Молот праведника" увеличивается на 1.');
+INSERT INTO `glyphproperties` VALUES (703, 63220, 0, 'Glyph of Divine Storm', 'Символ божественной бури', 'Your Divine Storm now heals for an additional 15% of the damage it causes.', 'Способность "Божественная буря" исцеляет дополнительно на 15% от величины наносимого урона.');
+INSERT INTO `glyphproperties` VALUES (704, 63222, 0, 'Glyph of Shield of Righteousness', 'Символ щита праведности', 'Reduces the mana cost of Shield of Righteousness by 80%.', 'Снижает затраты маны на заклинание "Щит праведности" на 80%.');
+INSERT INTO `glyphproperties` VALUES (705, 63223, 0, 'Glyph of Divine Plea', 'Символ святой клятвы', 'While Divine Plea is active, you take 3% reduced damage from all sources.', 'Когда паладин находится под действием заклинания "Святая клятва", весь получаемый им урон уменьшается на 3%.');
+INSERT INTO `glyphproperties` VALUES (706, 63224, 0, 'Glyph of Holy Shock', 'Символ шока небес', 'Reduces the cooldown of Holy Shock by 1 sec.', 'Снижает время восстановления заклинания "Шок небес" на 1 сек.');
+INSERT INTO `glyphproperties` VALUES (707, 63225, 0, 'Glyph of Salvation', 'Символ спасения', 'When you cast Hand of Salvation on yourself, it also reduces damage taken by 20%.', 'Если заклинание "Длань спасения" накладывается на себя, оно также снижает получаемый урон на 20%.');
+INSERT INTO `glyphproperties` VALUES (708, 63229, 0, 'Glyph of Dispersion', 'Символ слияния с Тьмой', 'Reduces the cooldown on Dispersion by 45 sec.', 'Уменьшает время восстановления заклинания "Слияние с Тьмой" на 45 с.');
+INSERT INTO `glyphproperties` VALUES (709, 63231, 0, 'Glyph of Guardian Spirit', 'Символ оберегающего духа', 'If your Guardian Spirit lasts its entire duration without being triggered, the cooldown is reset to 1 min.', 'Если оберегающий дух не задействуется до окончания действия заклинания, время восстановления заклинания уменьшается до 1 мин.');
+INSERT INTO `glyphproperties` VALUES (710, 63235, 0, 'Glyph of Penance', 'Символ искупления', 'Reduces the cooldown of Penance by 2 sec.', 'Уменьшает время восстановления заклинания "Искупление" на 2 с.');
+INSERT INTO `glyphproperties` VALUES (711, 63237, 0, 'Glyph of Mind Sear', 'Символ иссушения разума', 'Increases the radius of effect on Mind Sear by 5 yards.', 'Увеличивает радиус действия заклинания "Иссушение разума" на 5 м.');
+INSERT INTO `glyphproperties` VALUES (712, 63246, 0, 'Glyph of Hymn of Hope', 'Символ гимна надежды', 'Your Hymn of Hope lasts an additional 2 sec.', 'Длительность "Гимна надежды" увеличена на 2.');
+INSERT INTO `glyphproperties` VALUES (713, 63248, 0, 'Glyph of Pain Suppression', 'Символ подавления боли', 'Allows Pain Suppression to be cast while stunned.', 'Позволяет жрецу произносить заклинание "Подавление боли", будучи оглушенным.');
+INSERT INTO `glyphproperties` VALUES (714, 63249, 0, 'Glyph of Hunger For Blood', 'Символ вожделения крови', 'Increases the bonus damage from Hunger For Blood by 3%.', 'Увеличивает дополнительный урон от способности "Вожделение крови" на 3%.');
+INSERT INTO `glyphproperties` VALUES (715, 63252, 0, 'Glyph of Killing Spree', 'Символ череды убийств', 'Reduces the cooldown on Killing Spree by 45 sec.', 'Уменьшает время восстановления способности "Череда убийств" на 45 с.');
+INSERT INTO `glyphproperties` VALUES (716, 63253, 0, 'Glyph of Shadow Dance', 'Символ танца теней', 'Increases the duration of Shadow Dance by 4 sec.', 'Увеличивает время действия способности "Танец теней" на 4 с.');
+INSERT INTO `glyphproperties` VALUES (731, 63254, 0, 'Glyph of Fan of Knives', 'Символ веера клинков', 'Increases the damage done by Fan of Knives by 20%.', 'Увеличивает урон от способности "Веер клинков" на 20%.');
+INSERT INTO `glyphproperties` VALUES (732, 63256, 0, 'Glyph of Tricks of the Trade', 'Символ маленьких хитростей', 'The bonus damage granted by your Tricks of the Trade ability lasts an additional 4 sec.', 'Дополнительный урон от вашей способности "Маленькие хитрости" действует на 4 сек. дольше.');
+INSERT INTO `glyphproperties` VALUES (733, 63268, 0, 'Glyph of Mutilate', 'Символ расправы', 'Reduces the cost of Mutilate by 5 energy.', 'Снижает затраты энергии на способность "Расправа" на 5 ед.');
+INSERT INTO `glyphproperties` VALUES (734, 63269, 0, 'Glyph of Cloak of Shadows', 'Символ плаща Теней', 'While Cloak of Shadows is active, you take 40% less physical damage.', 'Находясь под действием эффекта "Плащ Теней", вы получаете на 40% меньше физического урона.');
+INSERT INTO `glyphproperties` VALUES (735, 63270, 0, 'Glyph of Thunder', 'Символ грома', 'Reduces the cooldown on Thunderstorm by 10 sec.', 'Уменьшает время восстановления заклинания "Гром и молния" на 10 с.');
+INSERT INTO `glyphproperties` VALUES (736, 63271, 0, 'Glyph of Feral Spirit', 'Символ духа дикого волка', 'Your spirit wolves gain an additional 30% of your attack power.', 'Сила атаки призрачных волков дополнительно увеличивается на 30% от показателя вашей силы атаки.');
+INSERT INTO `glyphproperties` VALUES (737, 63273, 0, 'Glyph of Riptide', 'Символ быстрины', 'Increases the duration of Riptide by 6 sec.', 'Увеличивает время действия заклинания "Быстрина" на 6 с.');
+INSERT INTO `glyphproperties` VALUES (751, 63279, 0, 'Glyph of Earth Shield', 'Символ щита земли', 'Increases the amount healed by your Earth Shield by 20%.', 'Увеличивает количество здоровья, восстанавливаемого заклинанием "Щит земли", на 20%.');
+INSERT INTO `glyphproperties` VALUES (752, 63280, 0, 'Glyph of Totem of Wrath', 'Символ тотема гнева', 'When you cast Totem of Wrath, you gain 30% of the totem`s bonus spell power for 300.', 'При установке тотема гнева сила заклинаний шамана возрастает на 30% от бонуса силы заклинаний, обеспечиваемого тотемом. Время действия эффекта - 300.');
+INSERT INTO `glyphproperties` VALUES (753, 63291, 0, 'Glyph of Hex', 'Символ сглаза', 'Increases the damage your Hex target can take before the Hex effect is removed by 20%.', 'Увеличивает количество урона, необходимое для того, чтобы снять эффект сглаза с цели, на 20%.');
+INSERT INTO `glyphproperties` VALUES (754, 63298, 0, 'Glyph of Stoneclaw Totem', 'Символ тотема каменного когтя', 'Your Stoneclaw Totem also places a damage absorb shield on you, equal to 4 times the strength of the shield it places on your totems.', 'Тотем каменного когтя накладывает на шамана поглощающий щит, аналогичный накладываемому на другие тотемы. Щит шамана способен поглотить в 4 раза больше урона.');
+INSERT INTO `glyphproperties` VALUES (755, 63302, 0, 'Glyph of Haunt', 'Символ блуждающего духа', 'The bonus damage granted by your Haunt spell is increased by an additional 3%.', 'Увеличивает дополнительный урон от способности "Блуждающий дух" еще на 3%.');
+INSERT INTO `glyphproperties` VALUES (756, 63303, 0, 'Glyph of Metamorphosis', 'Символ метаморфозы', 'Increases the duration of your Metamorphosis by 6 sec.', 'Увеличивает время действия "Метаморфозы" на 6 сек.');
+INSERT INTO `glyphproperties` VALUES (757, 63304, 0, 'Glyph of Chaos Bolt', 'Символ стрелы Хаоса', 'Reduces the cooldown on Chaos Bolt by 2 sec.', 'Уменьшает время восстановления способности "Стрела Хаоса" на 2 с.');
+INSERT INTO `glyphproperties` VALUES (758, 63309, 0, 'Glyph of Demonic Circle', 'Символ демонического круга', 'Reduces the cooldown on Demonic Circle by 4 sec.', 'Уменьшает время восстановления заклинания "Демонический круг" на 4 с.');
+INSERT INTO `glyphproperties` VALUES (759, 63310, 0, 'Glyph of Shadowflame', 'Символ пламени Тьмы', 'Your Shadowflame also applies a 70% movement speed slow on its victims.', '"Пламя Тьмы" снижает скорость передвижения своих жертв на 70%.');
+INSERT INTO `glyphproperties` VALUES (760, 63320, 0, 'Glyph of Life Tap', 'Символ жизнеотвода', 'When you use Life Tap, you gain 20% of your Spirit as spell power for 20.', 'После применения способности "Жизнеотвод" сила заклинаний возрастает на 20% от объема духа на 20.');
+INSERT INTO `glyphproperties` VALUES (761, 63312, 0, 'Glyph of Soul Link', 'Символ связки души', 'Increases the percentage of damage shared via your Soul Link by an additional 5%.', 'Увеличивает количество урона, передаваемого прислужнику с помощью заклинания "Связка души", на 5%.');
+INSERT INTO `glyphproperties` VALUES (762, 63324, 0, 'Glyph of Bladestorm', 'Символ вихря клинков', 'Reduces the cooldown on Bladestorm by 15 sec.', 'Уменьшает время восстановления способности "Вихрь клинков" на 15 с.');
+INSERT INTO `glyphproperties` VALUES (763, 63325, 0, 'Glyph of Shockwave', 'Символ ударной волны', 'Reduces the cooldown on Shockwave by 3 sec.', 'Уменьшает время восстановления способности "Ударная волна" на 3 с.');
+INSERT INTO `glyphproperties` VALUES (764, 63326, 0, 'Glyph of Vigilance', 'Символ бдительности', 'Your Vigilance ability transfers an additional 5% of your target`s threat to you.', 'Способность "Бдительность" переносит на воина дополнительно 5% от создаваемой целью угрозы.');
+INSERT INTO `glyphproperties` VALUES (765, 63327, 0, 'Glyph of Enraged Regeneration', 'Символ неистового восстановления', 'Your Enraged Regeneration ability heals for an additional 10% of your health over its duration.', 'Способность "Неистовое восстановление" излечивает вас дополнительно на 10% от вашего запаса здоровья.');
+INSERT INTO `glyphproperties` VALUES (766, 63328, 0, 'Glyph of Spell Reflection', 'Символ отражения заклинания', 'Reduces the cooldown on Spell Reflection by 1 sec.', 'Уменьшает время восстановления способности "Отражение заклинания" на 1 с.');
+INSERT INTO `glyphproperties` VALUES (767, 63329, 0, 'Glyph of Shield Wall', 'Символ глухой обороны', 'Reduces the cooldown on Shield Wall by 120000%.', 'Время восстановления способности "Глухая оборона" уменьшается на 120000%.');
+INSERT INTO `glyphproperties` VALUES (768, 63330, 0, 'Glyph of Dancing Rune Weapon', 'Символ танцующего рунического оружия', 'Increases the duration of Dancing Rune Weapon by 5 sec.', 'Увеличивает время действия способности "Танцующее руническое оружие" на 5 с.');
+INSERT INTO `glyphproperties` VALUES (769, 63331, 0, 'Glyph of Hungering Cold', 'Символ ненасытной стужи', 'Reduces the cost of Hungering Cold by 40 runic power.', 'Снижает затраты силы рун на способность "Ненасытная стужа" на 40 ед.');
+INSERT INTO `glyphproperties` VALUES (770, 63332, 0, 'Glyph of Unholy Blight', 'Символ нечестивой порчи', 'Increases the duration of Unholy Blight by 10 sec.', 'Увеличивает время действия заклинания "Нечестивая порча" на 10 с.');
+INSERT INTO `glyphproperties` VALUES (771, 63333, 0, 'Glyph of Dark Death', 'Символ черной смерти', 'Increases the damage done by Death Coil by 15%.', 'Снижает затраты силы рун на заклинание "Лик смерти" на 15%.');
+INSERT INTO `glyphproperties` VALUES (772, 63334, 0, 'Glyph of Disease', 'Символ болезни', 'Your Pestilence ability now refreshes disease durations on your primary target back to their maximum duration.', 'При использовании способности "Мор" время действия болезней, которыми заражена основная цель, снова становится максимальным.');
+INSERT INTO `glyphproperties` VALUES (773, 63335, 0, 'Glyph of Howling Blast', 'Символ воющего ветра', 'Your Howling Blast ability now infects your targets with Frost Fever.', 'Способность "Воющий ветер" накладывает на противников эффект "Озноб".');
+INSERT INTO `glyphproperties` VALUES (791, 64199, 0, 'Glyph of Envenom', 'Символ отравления', 'Your Envenom ability no longer consumes Deadly Poison from your target.', 'При использовании "Отравление" с цели больше не снимается эффект смертельного яда.');
+INSERT INTO `glyphproperties` VALUES (811, 65243, 0, 'Glyph of Survival Instincts', 'Знак инстинкта выживания', 'You Survival Instincts ability grants an additional 15% of your maximum health.', 'Бонус дополнительного здоровья от способности "Инстинкты выживания" повышается на 15% от вашего максимального запаса здоровья.');
+INSERT INTO `glyphproperties` VALUES (831, 67598, 0, '', '', '', '');
+INSERT INTO `glyphproperties` VALUES (851, 68164, 1, '', '', '', '');
+INSERT INTO `glyphproperties` VALUES (871, 70937, 0, '', '', '', '');
+INSERT INTO `glyphproperties` VALUES (891, 71013, 0, '', '', '', '');
+INSERT INTO `glyphproperties` VALUES (911, 70947, 0, '', '', '', '');
+
+/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
\ No newline at end of file