Data\Skill\SkillList.xml 文件里面存放了技能
每一个技能都保存为一个 Skill 元素节点
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
| <Skill ID="1" 技能ID唯一编号,估计存放到数据库里面也是用的这个数字? Name="Poison" 技能名,这个翻译过来是 毒药 Level="30" Damage="12" 伤害值? ManaCost="42" 蓝的消耗,魔法消耗 StaminaCost="0" 耐力消耗 Distance="6" 距离 EffectRadio="5" Delay="0" 延迟 Type="1" Attribute="1" BuffIcon="0" ReqLevel="30" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="140" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0" />
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926
| Poison Meteorite Lightning Fire Ball Flame Teleport Ice Twister Evil Spirit Hellfire Power Wave Aqua Beam Cometfall Inferno Teleport Ally Soul Barrier Energy Ball Defense Falling Slash Lunge Uppercut Cyclone Slash Triple Shot Heal Greater Defense Greater Damage Summon Goblin Summon Stone Golem Summon Assassin Summon Elite Yeti Summon Dark Knight Summon Bali Summon Soldier Decay Ice Storm Nova Twisting Slash Anger Strike Death Stab Crescent Moon Slash Lance Starfall Swell Life Fire Breath Flame of Evil (Monster) Ice Arrow Penetration Fire Slash Power Slash Spiral Slash Force Fire Burst Earthshake Summon Increase Critical Damage Electric Spike Force Wave Stun Cancel Stun Swell Mana Invisibility Cancel Invisibility Abolish Magic Mana Rays Fire Blast Plasma Storm Infinity Arrow Fire Scream Explosion Summon Monster Magic Attack Immunity Physical Attack Immunity Potion of Bless Potion of Soul Spell of Protection Spell of Restriction Spell of Pursuit Shied-Burn Drain Life Chain Lightning Damage Reflection Berserker Sleep Weakness Innovation Explosion Requiem Pollution Lightning Shock Strike of Destruction Expansion of Wizardry Recovery Multi-Shot Flame Strike Gigantic Storm Chaotic Diseier Doppeganger Self Explosion Magical Shot Shining Bird Dragon Violent Spear Storm Reflection Barrier Marvel Burst Unleash Marvel Ultimate Force Reflection Barrier (Reflection Barrier) Illusion Avatar Attack Killing Blow Beast Uppercut Chain Drive Dark Side Dragon Roar Dragon Slasher Ignore Defense Increase Health Increase Block Charge Phoenix Shot Spin Step Circle Shield Obsidian Magic Pin Clash Harsh Strike Shining Peak Wrath Breche Explosion Magic Pin Explosion Spirit Hook Magic Arrow Plasma Ball Lightning Storm Burst Haste Death Scythe Darkness Elite Monster Skill Sword Inertia Bat Flock Pierce Attack Detection Demolish Blessing of Experience Durability Reduction (1) PvP Defence Rate Increase Maximum SD increase Auto Mana Recovery Increase Poison Resistance Increase Durability Reduction (2) SD Recovery Speed Increase Automatic HP Recovery Increase Lightning Resistance Increase Defense Increase Automatic AG Recovery Increase Ice Resistance Increase Durability Reduction (3) Defense Success Rate Increase Cast Invincibility Armor Set Bonus Increase Vengeance Energy Increase Stamina Increase Agility Increase Strength Increase Wing of Storm Absorption PowUp Wing of Storm Defense PowUp Iron Defense Wing of Storm Attack PowUp Attack Success Rate Increase Cyclone Strengthener Slash Strengthener Falling Slash Strengthener Lunge Strengthener Twisting Slash Strengthener Anger Blow Strengthener Twisting Slash Mastery Anger Blow Mastery Maximum Life Increase Weapon Mastery Death Stab Strengthener Maximum Mana Increase Death Stab Proficiency Strike of Destruction Proficiency Maximum AG Increase Death Stab Mastery Strike of Destruction Mastery Blood Storm Combo Strengthener Blood Storm Strengthener Attack Rate Two-handed Sword Strengthener One-handed Sword Strengthener Mace Strengthener Spear Strengthener Two-handed Sword Mastery One-handed Sword Mastery Mace Mastery Spear Mastery Swell Life Strengthener Mana Reduction Monster Attack SD Increment Monster Attack Life Increment Swell Life Proficiency Minimum Attack Power Increase Monster Attack Mana Increment Swell Life Mastery Maximum Attack Power Increase Increases critical damage rate Restores all Mana Restores all HP Increases excellent damage rate Increases double damage rate Increases chance of ignore Def Restores all SD Increases triple damage rate Eternal Wings Absorption PowUp Eternal Wings Defense PowUp Eternal Wings Attack PowUp Flame Strengthener Lightning Strengthener Expansion of Wizardry Power Up Inferno Strengthener Blast Strengthener Expansion of Wizardry Mastery Poison Strengthener Evil Spirit Strengthener Magic Mastery Decay Strengthener Hellfire Strengthener Ice Strengthener Meteor Strengthener Ice Storm Strengthener Nova Strengthener Ice Storm Mastery Meteor Mastery Nova Cast Strengthener One-handed Staff Strengthener Two-handed Staff Strengthener Shield Strengthener One-handed Staff Mastery Two-handed Staff Mastery Shield Mastery Soul Barrier Strengthener Soul Barrier Proficiency Minimum Wizardry Increase Soul Barrier Mastery Maximum Wizardry Increase Illusion Wings Absorption PowUp Illusion Wings Defense PowUp Multi-Shot Strengthener Illusion Wings Attack PowUp Heal Strengthener Triple Shot Strengthener Summoned Monster Power Up(1) Penetration Strengthener Defense Increase Strengthener Triple Shot Mastery Summoned Monster Power Up(2) Attack Increase Strengthener Weapon Mastery Attack Increase Mastery Defense Increase Mastery Ice Arrow Strengthener Cure Party Healing Poison Arrow Summoned Monster Power Up(3) Party Healing Strengthener Bless Multi-Shot Mastery Summon Satyros Bless Strengthener Poison Arrow Strengthener Bow Strengthener Crossbow Strengthener Shield Strengthener Bow Mastery Crossbow Mastery Shield Mastery Infinity Arrow Strengthener Minimum Attack Power Increase Maximum Attack Power Increase Dimension Wings Absorb PowUp Dimension Wings Defense PowUp Dimension Wings Attack PowUp Fire Tome Mastery Earth Tome Mastery Wind Tome Mastery Sleep Strengthener Chain Lightning Strengthener Lightning Shock Strengthener Magic Mastery Drain Life Strengthener Weakness Strengthener Innovation Strengthener Blind Drain Life Mastery Blind Strengthener Stick Strengthener Other World Tome Strengthener Stick Mastery Other World Tome Mastery Berserker Strengthener Berserker Proficiency Minimum Wizardry/Curse Increase Maximum Wizardry/Curse Increase Wing of Ruin Absorption PowUp Wing of Ruin Defense PowUp Wing of Ruin Attack PowUp Cyclone Strengthener Lightning Strengthener Twisting Slash Strengthener Power Slash Strengthener Flame Strengthener Blast Strengthener Weapon Mastery Inferno Strengthener Evil Spirit Strengthener Magic Mastery Ice Strengthener Fire Slash Strengthener Ice Mastery Flame Strike Strengthener Fire Slash Mastery Flame Strike Mastery Earth Prison Gigantic Storm Strengthener Earth Prison Strengthener Emperor Cape Absorption PowUp Emperor Cape Defense PowUp Adds Command Stat Emperor Cape Attack PowUp Fire Burst Strengthener Force Wave Strengthener Dark Horse Strengthener (1) Critical DMG Increase PowUp Earthshake Strengthener Weapon Mastery Fire Burst Mastery Critical DMG Increase PowUp (2) Earthshake Mastery Critical DMG Increase PowUp (3) Fire Scream Strengthener Electric Spark Strengthener Fire Scream Mastery Critical DMG Increase Mastery Chaotic Diseier Strengthener Dark Spirit Strengthener Scepter Strengthener Shield Strengthener Use Scepter : Pet Strengthener Dark Spirit Strengthener (2) Scepter Mastery Shield Mastery Command Attack Increase Dark Spirit Strengthener (3) Pet Durability Strengthener Dark Spirit Strengthener (4) Dark Spirit Strengthener (5) Spirit Lord Reigning Cloak Absorption PowUp Reigning Cloak Defense PowUp Reigning Cloak Attack PowUp Killing Blow Strengthener Beast Uppercut Strengthener Killing Blow Mastery Beast Uppercut Mastery Def Success Rate Strengthener Weapon Mastery Chain Drive Strengthener Dark Side Strengthener Dragon Roar Strengthener Dragon Roar Mastery Chain Drive Mastery Dark Side Mastery Dragon Slasher Strengthener Blood Howling Dragon Slasher Mastery Blood Howling Strengthener Equipped Weapon Strengthener Defense Success Rate Increase PowUp Equipped Weapon Mastery DefSuccessRate Increase Mastery Stamina Increase Strengthener Defense Switch Durability Reduction (1) Increase PvP Defense Rate Increase Maximum SD Increase Mana Recovery Rate Increase Poison Resistance Durability Reduction (2) Increase SD Recovery Rate Increase HP Recovery Rate Increase Lightning Resistance Increases Defense Increases AG Recovery Rate Increase Ice Resistance Durability Reduction(3) Increase Defense Success Rate Cast Invincibility Increase Set Defense Vengeance Increase Energy Stamina Increases Increase Agility Increase Strength Increase Attack Success Rate Increase Maximum HP Increase Maximum Mana Increase Maximum AG Increase PvP Attack Rate Decrease Mana Recover SD from Monster Kills Recover HP from Monster Kills Increase Minimum Attack Power Recover Mana from Monster Kills Increase Maximum Attack Power Increases Critical DMG Chance Recover Mana Fully Recovers HP Fully Increase Excellent DMG Chance Increase Double Damage Chance Increase Ignore Def Chance Recovers SD Fully Increase Triple Damage Chance Spell of Protection Spell of Restriction Spell of Pursuit Shied-Burn Protection Shield Weapon Block Shield Block Steel Armor Strong Mind Absorb Life Absorb Shield Battle Mind Rush Protection Shield Weapon Block Shield Block Steel Armor Strong Mind Absorb Life SD Absorption Grand Magic PowUp Illusion Protection Shield Weapon Block Shield Block Steel Armor Strong Mind Absorb Life SD Absorption Marksman Shadow Step Evasion Protection Shield Weapon Block Shield Block Steel Armor Strong Mind Absorb Life SD Absorption Pain of Curse Protection Shield Weapon Block Shield Block Steel Armor Strong Mind Absorb Life SD Absorption Protection Shield Weapon Block Shield Block Steel Armor Strong Mind Absorb Life SD Absorption Protection Shield Weapon Block Shield Block Steel Armor Strong Mind Absorb Life SD Absorption Cloak of Transcendence Absorption PowUp Cloak of Transcendence Defense PowUp Cloak of Transcendence Attack PowUp Spin Step PowUp Harsh Strike PowUp Weapon Mastery Spin Step Mastery Harsh Strike Mastery Magic Pin PowUp Obsidian PowUp Magic Pin Proficiency Magic Pin Mastery Breche PowUp Breche Mastery Shining Peak PowUp Burst Burst PowUp Lance PowUp Circle Shield PowUp Shield PowUp Lance Mastery Circle Shield Mastery Shield Mastery Wrath PowUp Wrath Proficiency Wrath Mastery Increases Retaliation DMG Increases Rage DMG Protection Shield Weapon Block Shield Block Steel Armor Strong Mind Absorb Life SD Absorption Immune I Immune II Berserker I Fire Blow Meteor Strike Meteor Storm Soul Seeker Focus Shot Fire Beast Aqua Beast Ice Blood Fire Blood Dark Blast Meteor Strike Wind Soul Dark Phoenix Shot Archangel's will Max HP Boost Enhance Phoenix Shot Phoenix Shot Mastery Elemental DEF Increase Pentagram Elemental Defense Increase Magic Arrow Strengthener Magic Arrow Mastery Plasma Ball Strengthener Plasma Ball Mastery Rune Mace Strengthener Rune Mace Mastery Wings of Disillusion Defense Strengthener Wings of Disillusion Attack Strengthener Shield Block Protection Shield Steel Armor Strong Mind Absorb Life Absorb Shield Grand Magic Power Up Burst Strengthener Burst Mastery Haste Strengthener Haste Mastery Darkness Strengthener Darkness Mastery Greatness Mastery Innovation Mastery Explosion Strengthener Requiem Strengthener Pollution Strengthener Pollution Strengthener Pollution Mastery Sword Inertia Strengthener Sword Inertia Mastery Bat Flock Strenghtener Bat Flock Mastery Short Sword Strengthener Short Sword Mastery Wings of Silence Defense Strengthener Wings of Silence Attack Strengthener Demolish Strengthener Demolish Mastery Weapon Mastery Steel Armor Weapon Block Life Absorption SD Absorption Detection Strengthener Sword's Fury Strengthener Sword's Fury Mastery Solid Protection Strengthener Solid Protection Proficiency Solid Protection Mastery Solid Protection Mastery Strike of Destruction Strengthener Strike of Destruction Mastery Strong Belief Strengthener Tornado Strengthener Anger Blow Strengthener Rush Increase Energy Stat Increase Vitality Stat Increase Agility Stat Increase Strength Stat Wings of Hit Defense Strengthener Wings of Hit Attack Strengthener Dark Plasma Strenghtener Dark Plasma Proficiency Dark Plasma Mastery Ice Break Strenghtener Ice Break Mastery Death Fire Strenghtener Death Fire Mastery Fixed Fire Strenghtener Fixed Fire Mastery Magic Gun Strenghtener Magic Gun Mastery Death Ice Strenghtener Death Ice Mastery Cloak of Brilliance Defense PowUp Cloak of Brilliance Attack PowUp Steel Armor Eternal Wings Defense Strenghtener Eternal Wings Attack Strenghtener Steel Armor Shining Bird Strenghtener Shining Bird Mastery Magic Mastery Dragon Violent Strenghtener Dragon Violent Mastery Marvel Burst Strenghtener Marvel Burst Mastery Magic Mastery Beginner Defense Improvement Strenghtener Beginner Defense Improvement Mastery Beginner Attack Power Improvement Strenghtener Beginner Attack Improvment Mastery Unleash Marvel Strenghtener Unleash Marvel Mastery Beginner Bless Strenghtener Intensive Care Strengthener Magic Book Strenghtener Magic Book Mastery Reflection Barrier Strenghtener Reflection Barrier Skills Reflection Barrier Mastery Orb Strenghtener Spiral Charge Strenghtener Spiral Charge Mastery Crusher Charge Strenghtener Crusher Charge Mastery Elemental Charge Strenghtener Elemental Charge Mastery Two-handed Sword Strenghtener Two-handed Staff Strenghtener Two-handed Sword Mastery Two-handed Staff Mastery Orb Mastery Holy Bolt Strenghtener Charge Slash Strenghtener Charge Slash Mastery Wind Glaive Strenghtener Wind Glaive Mastery Blade Storm Strenghtener Blade Storm Mastery Illusion Avatar Strenghtener Illusion Avatar Mastery Illusion Blade Strenghtener Illusion Blade Mastery Illusion Blade Mastery Stop Weapon Steel Armor Reinforcement of Cloak of Death Defense Reinforcement of Cloak of Death Attack Blade hardening Blade Mastery Oversting Strengthener Wrath Strengthener Wild Breath Strengthener Increase Skill DMG DMG Count +1 DMG Count +2 DMG Count +3 DMG Count +4 DMG Count +2 Increase Additional DMG Rate Increase Attack Speed Increase Range Add Splash DMG Increase Skill Range Increase Target Buff Synergy Effect Buff Synergy Effect Increase Skill Duration Iron Defense (Learned) Enhance Iron Defense Cooldown Time Reduction Remove Cooldown Time Weapon DMG Increase Weapon Magic DMG Increase Add Penetration Effect Add Arrow Missile Increase chance to create Poison Magic Circles Increase chance to create Chilling Magic Circle Increase chance to create Bleeding Magic Circle Poison Damage Enhancement Chilling Effect Enhancement Bleeding Damage Enhancement Increase Poison Magic Circle Duration Increase Chilling Magic Circle Duration Increase Bleeding Magic Circle Duration Addiction Damage Increase Freezing Damage Increase Hemorrhage Damage Increase Increase chance to enhance to Addiction Magic Circle Increase chance to enhance to Freezing Magic Circle Increase chance to enhance to Hemorrhage Magic Circle Additional chance to enhance to Poison Magic Circles Additional chance to enhance to Freezing Magic Circle Additional chance to enhance to Hemorrhage Magic Circle Additional Poison Damage Enhancement Additional Chilling Effect Enhancement Additional Bleeding Damage Enhancement Increase Addiction Magic Circle Duration Increase Freeze Magic Circle Duration Increase Hemorrhage Magic Circle Duration Additional Addiction Damage Enhancement Additional Freezing Effect Enhancement Additional Hemorrhage Effect Enhancement Upgrade Poisoning (Addiction) Upgrade Chilling (Freezing) Upgrade Bleeding (Hemorrhage) Anger Blow Enhancement Skill Death Stab Enhancement Skill Fire Blow Enhancement Skill Meteor Strike Enhancement Skill Meteor Storm Enhancement Skill Evil Spirit Enhancement Skill Triple Shot Enhancement Skill Multi-Shot Enhancement Skill Focus Shot Enhancement Skill Gigantic Storm Enhancement Skill Evil Spirit Enhancement Skill Dark Blast Enhancement Skill Fire Slash Enhancement Skill Fire Blood Enhancement Skill Ice Blood Enhancement Skill Fire Burst Enhancement Skill Chaotic Diseier Enhancement Skill Wind Soul Enhancement Skill Fire Beast Enhancement Skill Lightning Shock Enhancement Skill Aqua Beast Enhancement Skill Dragon Roar Enhancement Skill Chain Drive Enhancement Skill Dark Side Enhancement Skill Magic Pin Enhancement Skill Breche Enhancement Skill Shining Peak Enhancement Skill Poison Storm Frozen Slayer Bloodying Hit Poison Storm Damage Enhancement Frozen Slayer Damage Enhancement Bloodying Hit Damage Enhancement Poison Storm Blast Infection Effect Frozen Slayer Explosion Infection Effect Bloodying Hit Explosion Infection Effect Maximum Life Increase 4th Stat Increase Base Defense Increase 4th Wing / Cloak Defense Increase Increase DMG Increase Magic Increase Fourth Stats Increase Skill DMG Increase Fourth Wings DMG Increase DMG / Magic Spirit Hook Enhancement Skill Magic Arrow Enhancement Skill Plasma Ball Enhancement Skill Lightning Storm Enhancement Skill Decrease Move Speed/Move Distance Increase Plasma Attack Speed Increase Splash Damage Area Increase Splash Target Deathside Enhancement Weapon Minimum DMG Increase Wizardry / Curse DMG Increase Sword Inertia Enhancement Bat Flock Enhancement Pierce Attack Enhancement Increase Poison debuff target count Increase Poison debuff target count Increase Hemorrhage debuff target count Increase Hemorrhage debuff target count Increase Freezing debuff target count Increase Freezing debuff target count Increase Poison debuff range Increase Hemorrhage debuff range Increase Freezing debuff range Increase Poison Debuff Success Rate Increase Poison Debuff Success Rate Increase Hemorrhage Debuff Success Rate Increase Hemorrhage Debuff Success Rate Increase Freezing Debuff Success Rate Increase Freezing Debuff Success Rate Increase Poison Debuff Success Rate Increase Poison Debuff Success Rate Increase Hemorrhage Debuff Success Rate Increase Hemorrhage Debuff Success Rate Increase Freezing Debuff Success Rate Increase Freezing Debuff Success Rate Increased Poison / Poison Debuff target count Increased Hemorrhage / Hemorrhage Debuff target count Increased Freezing / Freezing Debuff target count 4th Wing / Cloak Enchantment 4th Wing / Cloak Attack / Power Increase 4th Wing / Cloak Power / Curse Increase Poison Storm Damage Enhancement Frozen Slayer Damage Enhancement Bloodying Hit Damage Enhancement Poison Storm Blast Infection Effect Frozen Slayer Explosion Infection Effect Bloodying Hit Explosion Infection Effect Strike of Destruction Enhancement Skill Sword Blow Enhancement Skill Solid Protection Enhancement Skill Protection - Maximum HP Increase Protection - Party Member Attack Power Increase Protection - HP Conversion Increase (%) Protection - Damage Conversion Increase (%) Protection - Party Member Defense Increase Protection - Shield Defense Increase Dark Plasma Enhancement Skill Ice Blast Enhancement Skill Busting Flare Enhancement Skill Chaos Blade Enhancement Skill Havok Spear Enhancement Skill Spear Storm Enhancement Skill Marvel Burst Enhancement Skill Unleash Marvel Enhancement Skill Ultimate Force Enhancement Skill Shining Bird Enhancement Skill Dragon Violent Enhancement Skill Raining Arrow Enhancement Skill Holy Bolt Enhancement Skill Elemental Attack Power Enhancement Skill Elemental Defense Enhancement Skill Healing Enhancement Skill Party Healing Enhancement Skill Attack Power Enhancement Skill Defense Enhancement Skill Bless Enhancement Skill Charge Slash Enhancement Skill Wind Glaive Enhancement Skill Blade Storm Enhancement Skill Illusion Avatar Enhancement Skill Oversting Enhancement Skill Wild Breath Enhancement Skill Sword's Fury Sword Blow Strong Belief Solid Protection Dark Plasma Ice Break Ice Blast Death Fire Bursting Flare Death Ice Beginner Bless Beginner Recovery Beginner Basic Defense Improvement Beginner Attack Power Improvement Beginner Bless Chaos Blade Havok Spear Spiral Charge Crusher Charge Elemental Charge Chaos Blade Magic Explosion Fire Blood Magic Explosion Ice Blood Magic Explosion Havok Spear Nova Fixed Fire Bond Raining Arrow Dex Booster Holy Bolt Improve Elemental Attack Power Improve Elemental Defense Charge Slash Wind Glaive Blade Storm Illusion Avatar Illusion Blade Nuke - Spear Of Judgement Bolt-Black Hole WideArea-Wheelwind Oversting Wild Breath Meteostorm of Gale Saturating Sword Blow Gale of Destruction Raining Arrow of Saturation Holy Bolt of Gale Chaos Blade of Saturation Havok Sphere of Anger Wind Soul of Saturation Fire Beast of Saturation Deathside of Fury Dark side of saturation Review of Spirit of Saturation Oversting of saturation Gale Lightning Storm Fierce Attack of Saturation Gale's Bursting Flare Ultimate Force of Saturation Spearstorm of Saturation Bladestorm of Saturation Nuke (activated) Bolt (activated) Wide area (activated) Gale Wild Breath
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
| <?xml version="1.0" encoding="utf-8"?> <SkillList> <Skill ID="1" Name="Poison" Level="30" Damage="12" ManaCost="42" StaminaCost="0" Distance="6" EffectRadio="5" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="30" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="140" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2" Name="Meteorite" Level="21" Damage="21" ManaCost="12" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="4" BuffIcon="0" ReqLevel="21" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="104" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="3" Name="Lightning" Level="13" Damage="17" ManaCost="15" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="13" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="72" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="3" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="180" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="40" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="4" Name="Fire Ball" Level="5" Damage="8" ManaCost="3" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="5" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="40" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="4" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="197" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="5" Name="Flame" Level="35" Damage="25" ManaCost="50" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="35" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="160" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="5" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="120" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="6" Name="Teleport" Level="17" Damage="0" ManaCost="30" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="17" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="88" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="6" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="7" Name="Ice" Level="25" Damage="10" ManaCost="38" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="25" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="120" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="7" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="8" Name="Twister" Level="40" Damage="35" ManaCost="60" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="5" BuffIcon="0" ReqLevel="40" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="180" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="8" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="140" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="90" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="9" Name="Evil Spirit" Level="50" Damage="45" ManaCost="90" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="220" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="9" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="10" Name="Hellfire" Level="60" Damage="120" ManaCost="160" StaminaCost="0" Distance="0" EffectRadio="6" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="60" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="260" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="10" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="11" Name="Power Wave" Level="9" Damage="14" ManaCost="5" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="9" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="56" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="11" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="195" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="12" Name="Aqua Beam" Level="74" Damage="80" ManaCost="140" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="6" BuffIcon="0" ReqLevel="74" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="345" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="12" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="140" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="13" Name="Cometfall" Level="80" Damage="70" ManaCost="150" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="80" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="500" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="13" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="14" Name="Inferno" Level="88" Damage="100" ManaCost="200" StaminaCost="0" Distance="0" EffectRadio="6" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="88" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="724" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="14" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="90" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="15" Name="Teleport Ally" Level="83" Damage="0" ManaCost="90" StaminaCost="25" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="83" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="644" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="15" AllowDW="2" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="2" AllowLM="2" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="16" Name="Soul Barrier" Level="77" Damage="0" ManaCost="70" StaminaCost="22" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="4" ReqLevel="77" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="408" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="16" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="17" Name="Energy Ball" Level="1" Damage="3" ManaCost="1" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="1" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="17" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="200" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="18" Name="Defense" Level="0" Damage="0" ManaCost="30" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="18" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="1" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="19" Name="Falling Slash" Level="0" Damage="0" ManaCost="9" StaminaCost="0" Distance="3" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="19" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="1" AllowDL="1" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="180" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="20" Name="Lunge" Level="0" Damage="0" ManaCost="9" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="20" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="1" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="1" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="170" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="21" Name="Uppercut" Level="0" Damage="0" ManaCost="8" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="21" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="1" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="1" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="22" Name="Cyclone" Level="0" Damage="0" ManaCost="9" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="22" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="1" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="1" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="1" Animation="0" ElementAttribute="6" ElementBonusDamage="165" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="23" Name="Slash" Level="0" Damage="0" ManaCost="10" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="23" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="185" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="24" Name="Triple Shot" Level="0" Damage="0" ManaCost="5" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="24" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="160" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="26" Name="Heal" Level="8" Damage="0" ManaCost="20" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="8" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="52" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="26" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="27" Name="Greater Defense" Level="13" Damage="0" ManaCost="30" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="2" ReqLevel="13" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="72" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="27" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="28" Name="Greater Damage" Level="18" Damage="0" ManaCost="40" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="1" ReqLevel="18" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="92" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="28" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="30" Name="Summon Goblin" Level="0" Damage="0" ManaCost="40" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="30" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="30" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="31" Name="Summon Stone Golem" Level="0" Damage="0" ManaCost="70" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="60" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="31" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="32" Name="Summon Assassin" Level="0" Damage="0" ManaCost="110" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="90" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="32" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="33" Name="Summon Elite Yeti" Level="0" Damage="0" ManaCost="160" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="130" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="33" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="34" Name="Summon Dark Knight" Level="0" Damage="0" ManaCost="200" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="170" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="34" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="35" Name="Summon Bali" Level="0" Damage="0" ManaCost="250" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="210" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="35" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="36" Name="Summon Soldier" Level="0" Damage="0" ManaCost="350" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="300" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="36" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="38" Name="Decay" Level="96" Damage="95" ManaCost="110" StaminaCost="7" Distance="6" EffectRadio="4" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="96" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="953" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="38" AllowDW="2" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="2" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="39" Name="Ice Storm" Level="93" Damage="80" ManaCost="100" StaminaCost="5" Distance="6" EffectRadio="4" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="93" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="849" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="39" AllowDW="2" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="2" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="2" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="90" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="40" Name="Nova" Level="100" Damage="0" ManaCost="180" StaminaCost="45" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1052" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="40" AllowDW="2" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="2" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="160" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="41" Name="Twisting Slash" Level="0" Damage="0" ManaCost="10" StaminaCost="10" Distance="2" EffectRadio="3" Delay="0" Type="0" Attribute="5" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="41" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="1" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="40" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="42" Name="Anger Strike" Level="170" Damage="60" ManaCost="25" StaminaCost="20" Distance="3" EffectRadio="4" Delay="0" Type="0" Attribute="4" BuffIcon="0" ReqLevel="170" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="42" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="2" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="43" Name="Death Stab" Level="160" Damage="70" ManaCost="15" StaminaCost="12" Distance="3" EffectRadio="2" Delay="0" Type="0" Attribute="5" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="43" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="44" Name="Crescent Moon Slash" Level="0" Damage="90" ManaCost="22" StaminaCost="15" Distance="4" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="44" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="1" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="45" Name="Lance" Level="0" Damage="90" ManaCost="150" StaminaCost="10" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="45" AllowDW="1" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="46" Name="Starfall" Level="0" Damage="120" ManaCost="20" StaminaCost="15" Distance="8" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="46" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="48" Name="Swell Life" Level="120" Damage="0" ManaCost="22" StaminaCost="24" Distance="0" EffectRadio="10" Delay="0" Type="-1" Attribute="-1" BuffIcon="8" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="48" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="49" Name="Fire Breath" Level="110" Damage="30" ManaCost="9" StaminaCost="0" Distance="3" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="110" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="49" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="50" Name="Flame of Evil (Monster)" Level="60" Damage="120" ManaCost="160" StaminaCost="0" Distance="0" EffectRadio="6" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="60" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="260" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="50" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="51" Name="Ice Arrow" Level="0" Damage="105" ManaCost="10" StaminaCost="12" Distance="8" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="646" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="51" AllowDW="0" AllowDK="0" AllowElf="2" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="52" Name="Penetration" Level="130" Damage="70" ManaCost="7" StaminaCost="9" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="5" BuffIcon="0" ReqLevel="130" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="52" AllowDW="0" AllowDK="0" AllowElf="1" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="55" Name="Fire Slash" Level="0" Damage="80" ManaCost="17" StaminaCost="12" Distance="3" EffectRadio="6" Delay="0" Type="-1" Attribute="1" BuffIcon="0" ReqLevel="0" ReqStrength="596" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="55" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="56" Name="Power Slash" Level="0" Damage="0" ManaCost="15" StaminaCost="0" Distance="5" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="56" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="57" Name="Spiral Slash" Level="0" Damage="75" ManaCost="20" StaminaCost="15" Distance="5" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="57" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="60" Name="Force" Level="0" Damage="10" ManaCost="10" StaminaCost="0" Distance="4" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="15" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="60" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="160" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="40" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="61" Name="Fire Burst" Level="74" Damage="100" ManaCost="25" StaminaCost="0" Distance="6" EffectRadio="3" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="74" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="79" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="61" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="62" Name="Earthshake" Level="0" Damage="150" ManaCost="0" StaminaCost="50" Distance="10" EffectRadio="5" Delay="10000" Type="0" Attribute="4" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="62" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="63" Name="Summon" Level="98" Damage="0" ManaCost="70" StaminaCost="30" Distance="0" EffectRadio="0" Delay="30000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="98" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="153" ReqLeaderShip="400" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="63" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="64" Name="Increase Critical Damage" Level="82" Damage="0" ManaCost="50" StaminaCost="50" Distance="0" EffectRadio="6" Delay="0" Type="-1" Attribute="-1" BuffIcon="5" ReqLevel="82" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="102" ReqLeaderShip="300" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="64" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="65" Name="Electric Spike" Level="92" Damage="250" ManaCost="0" StaminaCost="100" Distance="10" EffectRadio="6" Delay="5000" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="92" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="126" ReqLeaderShip="340" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="65" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="66" Name="Force Wave" Level="0" Damage="50" ManaCost="10" StaminaCost="0" Distance="4" EffectRadio="3" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="66" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="160" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="40" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="67" Name="Stun" Level="0" Damage="0" ManaCost="70" StaminaCost="50" Distance="2" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="4" Status1="0" Status2="0" Status3="1" BaseSkill="67" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="68" Name="Cancel Stun" Level="0" Damage="0" ManaCost="25" StaminaCost="30" Distance="0" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="2" Status1="0" Status2="0" Status3="1" BaseSkill="68" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="69" Name="Swell Mana" Level="0" Damage="0" ManaCost="35" StaminaCost="30" Distance="0" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="9" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="4" Status1="0" Status2="0" Status3="1" BaseSkill="69" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="70" Name="Invisibility" Level="0" Damage="0" ManaCost="80" StaminaCost="60" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="5" Status1="1" Status2="1" Status3="0" BaseSkill="70" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="71" Name="Cancel Invisibility" Level="0" Damage="0" ManaCost="40" StaminaCost="30" Distance="0" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="2" Status1="1" Status2="1" Status3="0" BaseSkill="71" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="72" Name="Abolish Magic" Level="0" Damage="0" ManaCost="90" StaminaCost="70" Distance="0" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="8" Status1="1" Status2="0" Status3="0" BaseSkill="72" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="73" Name="Mana Rays" Level="0" Damage="85" ManaCost="130" StaminaCost="7" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="73" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="74" Name="Fire Blast" Level="0" Damage="150" ManaCost="30" StaminaCost="10" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="74" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="76" Name="Plasma Storm" Level="110" Damage="60" ManaCost="50" StaminaCost="20" Distance="6" EffectRadio="5" Delay="1500" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="110" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="76" AllowDW="2" AllowDK="2" AllowElf="2" AllowMG="1" AllowDL="1" AllowSum="2" AllowRF="1" AllowGL="1" AllowRW="2" AllowSL="2" AllowGC="2" AllowLW="2" AllowLM="2" AllowIK="2" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="77" Name="Infinity Arrow" Level="220" Damage="0" ManaCost="50" StaminaCost="10" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="6" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="77" AllowDW="0" AllowDK="0" AllowElf="2" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="78" Name="Fire Scream" Level="102" Damage="130" ManaCost="45" StaminaCost="10" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="102" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="150" ReqLeaderShip="70" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="78" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="79" Name="Explosion" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="79" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="200" Name="Summon Monster" Level="0" Damage="0" ManaCost="40" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="200" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="201" Name="Magic Attack Immunity" Level="0" Damage="0" ManaCost="40" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="201" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="202" Name="Physical Attack Immunity" Level="0" Damage="0" ManaCost="40" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="202" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="203" Name="Potion of Bless" Level="0" Damage="0" ManaCost="40" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="203" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="204" Name="Potion of Soul" Level="0" Damage="0" ManaCost="40" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="204" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="210" Name="Spell of Protection" Level="0" Damage="0" ManaCost="30" StaminaCost="0" Distance="0" EffectRadio="0" Delay="60000" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="210" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="1" AllowGL="1" AllowRW="1" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="211" Name="Spell of Restriction" Level="0" Damage="0" ManaCost="30" StaminaCost="0" Distance="3" EffectRadio="0" Delay="60000" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="211" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="1" AllowGL="1" AllowRW="1" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="212" Name="Spell of Pursuit" Level="0" Damage="0" ManaCost="30" StaminaCost="0" Distance="0" EffectRadio="0" Delay="120000" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="212" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="1" AllowGL="1" AllowRW="1" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="213" Name="Shied-Burn" Level="0" Damage="0" ManaCost="30" StaminaCost="0" Distance="3" EffectRadio="0" Delay="60000" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="213" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="1" AllowGL="1" AllowRW="1" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="214" Name="Drain Life" Level="35" Damage="35" ManaCost="50" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="35" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="150" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="214" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="215" Name="Chain Lightning" Level="75" Damage="70" ManaCost="85" StaminaCost="0" Distance="6" EffectRadio="3" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="75" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="245" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="215" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="217" Name="Damage Reflection" Level="80" Damage="0" ManaCost="40" StaminaCost="10" Distance="5" EffectRadio="0" Delay="5000" Type="1" Attribute="-1" BuffIcon="71" ReqLevel="80" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="375" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="217" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="218" Name="Berserker" Level="83" Damage="0" ManaCost="100" StaminaCost="50" Distance="5" EffectRadio="0" Delay="5000" Type="1" Attribute="-1" BuffIcon="81" ReqLevel="83" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="300" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="218" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="219" Name="Sleep" Level="40" Damage="0" ManaCost="20" StaminaCost="3" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="40" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="180" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="219" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="221" Name="Weakness" Level="93" Damage="0" ManaCost="50" StaminaCost="15" Distance="8" EffectRadio="5" Delay="30000" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="93" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="663" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="221" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="222" Name="Innovation" Level="111" Damage="0" ManaCost="50" StaminaCost="15" Distance="8" EffectRadio="5" Delay="30000" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="111" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="663" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="222" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="223" Name="Explosion" Level="50" Damage="40" ManaCost="35" StaminaCost="0" Distance="4" EffectRadio="3" Delay="500" Type="1" Attribute="3" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="300" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="223" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="120" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="224" Name="Requiem" Level="75" Damage="65" ManaCost="60" StaminaCost="4" Distance="4" EffectRadio="4" Delay="800" Type="1" Attribute="5" BuffIcon="0" ReqLevel="75" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="416" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="224" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="225" Name="Pollution" Level="85" Damage="80" ManaCost="70" StaminaCost="8" Distance="4" EffectRadio="5" Delay="500" Type="1" Attribute="2" BuffIcon="0" ReqLevel="85" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="542" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="225" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="230" Name="Lightning Shock" Level="93" Damage="95" ManaCost="115" StaminaCost="7" Distance="6" EffectRadio="5" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="93" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="823" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="230" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="232" Name="Strike of Destruction" Level="100" Damage="110" ManaCost="30" StaminaCost="24" Distance="5" EffectRadio="3" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="232" AllowDW="0" AllowDK="2" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="233" Name="Expansion of Wizardry" Level="220" Damage="0" ManaCost="200" StaminaCost="50" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="82" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1058" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="233" AllowDW="2" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="2" AllowSL="0" AllowGC="0" AllowLW="2" AllowLM="2" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="234" Name="Recovery" Level="100" Damage="0" ManaCost="40" StaminaCost="10" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="168" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="234" AllowDW="0" AllowDK="0" AllowElf="2" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="235" Name="Multi-Shot" Level="100" Damage="40" ManaCost="10" StaminaCost="7" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="235" AllowDW="0" AllowDK="0" AllowElf="2" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="236" Name="Flame Strike" Level="100" Damage="140" ManaCost="20" StaminaCost="25" Distance="3" EffectRadio="5" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="236" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="237" Name="Gigantic Storm" Level="220" Damage="110" ManaCost="120" StaminaCost="10" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="5" BuffIcon="0" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1058" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="237" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="250" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="238" Name="Chaotic Diseier" Level="100" Damage="190" ManaCost="50" StaminaCost="15" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="84" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="238" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="1" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="239" Name="Doppeganger Self Explosion" Level="100" Damage="140" ManaCost="20" StaminaCost="25" Distance="3" EffectRadio="3" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="239" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="1" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="240" Name="Magical Shot" Level="2" Damage="30" ManaCost="1" StaminaCost="0" Distance="6" EffectRadio="2" Delay="0" Type="1" Attribute="4" BuffIcon="0" ReqLevel="1" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="240" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="200" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="241" Name="Shining Bird" Level="30" Damage="130" ManaCost="5" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="30" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="70" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="241" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="242" Name="Dragon Violent" Level="50" Damage="140" ManaCost="30" StaminaCost="0" Distance="6" EffectRadio="4" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="680" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="242" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="243" Name="Spear Storm" Level="160" Damage="160" ManaCost="105" StaminaCost="5" Distance="6" EffectRadio="6" Delay="500" Type="1" Attribute="0" BuffIcon="1" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1160" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="243" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="244" Name="Reflection Barrier" Level="77" Damage="0" ManaCost="70" StaminaCost="22" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="343" ReqLevel="77" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="408" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="244" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="1" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="245" Name="Marvel Burst" Level="25" Damage="125" ManaCost="5" StaminaCost="0" Distance="6" EffectRadio="3" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="25" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="104" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="245" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="246" Name="Unleash Marvel" Level="45" Damage="135" ManaCost="50" StaminaCost="0" Distance="6" EffectRadio="6" Delay="10000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="45" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="700" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="246" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="247" Name="Ultimate Force" Level="160" Damage="10" ManaCost="92" StaminaCost="4" Distance="7" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="247" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="248" Name="Reflection Barrier (Reflection Barrier)" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="248" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="249" Name="Illusion Avatar Attack" Level="50" Damage="300" ManaCost="0" StaminaCost="0" Distance="7" EffectRadio="1" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="249" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="260" Name="Killing Blow" Level="0" Damage="0" ManaCost="9" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="1" Attribute="4" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="260" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="155" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="4" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="261" Name="Beast Uppercut" Level="0" Damage="0" ManaCost="9" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="261" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="155" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="4" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="262" Name="Chain Drive" Level="150" Damage="0" ManaCost="15" StaminaCost="20" Distance="4" EffectRadio="0" Delay="700" Type="1" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="262" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="263" Name="Dark Side" Level="180" Damage="0" ManaCost="70" StaminaCost="0" Distance="5" EffectRadio="5" Delay="0" Type="1" Attribute="5" BuffIcon="0" ReqLevel="180" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="263" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="264" Name="Dragon Roar" Level="150" Damage="0" ManaCost="50" StaminaCost="30" Distance="3" EffectRadio="5" Delay="700" Type="1" Attribute="4" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="264" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="265" Name="Dragon Slasher" Level="200" Damage="0" ManaCost="100" StaminaCost="100" Distance="4" EffectRadio="0" Delay="3000" Type="1" Attribute="5" BuffIcon="0" ReqLevel="200" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="265" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="266" Name="Ignore Defense" Level="120" Damage="0" ManaCost="50" StaminaCost="10" Distance="3" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="129" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="404" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="266" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="267" Name="Increase Health" Level="80" Damage="0" ManaCost="50" StaminaCost="10" Distance="7" EffectRadio="5" Delay="0" Type="1" Attribute="-1" BuffIcon="130" ReqLevel="80" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="132" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="267" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="268" Name="Increase Block" Level="50" Damage="0" ManaCost="50" StaminaCost="10" Distance="7" EffectRadio="5" Delay="0" Type="1" Attribute="-1" BuffIcon="131" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="80" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="268" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="269" Name="Charge" Level="0" Damage="90" ManaCost="20" StaminaCost="15" Distance="4" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="269" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="270" Name="Phoenix Shot" Level="0" Damage="0" ManaCost="30" StaminaCost="0" Distance="4" EffectRadio="3" Delay="1200" Type="1" Attribute="4" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="270" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="1" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="4" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="271" Name="Spin Step" Level="83" Damage="100" ManaCost="12" StaminaCost="0" Distance="2" EffectRadio="2" Delay="500" Type="0" Attribute="2" BuffIcon="0" ReqLevel="83" ReqStrength="0" RegAgility="150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="271" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="272" Name="Circle Shield" Level="220" Damage="0" ManaCost="100" StaminaCost="50" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="216" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="272" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="273" Name="Obsidian" Level="74" Damage="0" ManaCost="50" StaminaCost="50" Distance="0" EffectRadio="5" Delay="0" Type="0" Attribute="-1" BuffIcon="217" ReqLevel="74" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="200" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="273" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="274" Name="Magic Pin" Level="30" Damage="80" ManaCost="30" StaminaCost="20" Distance="2" EffectRadio="0" Delay="500" Type="0" Attribute="2" BuffIcon="0" ReqLevel="30" ReqStrength="300" RegAgility="300" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="274" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="275" Name="Clash" Level="0" Damage="50" ManaCost="50" StaminaCost="50" Distance="6" EffectRadio="0" Delay="10000" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="275" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="276" Name="Harsh Strike" Level="74" Damage="100" ManaCost="12" StaminaCost="0" Distance="3" EffectRadio="0" Delay="500" Type="0" Attribute="1" BuffIcon="0" ReqLevel="74" ReqStrength="150" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="276" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="277" Name="Shining Peak" Level="92" Damage="70" ManaCost="50" StaminaCost="20" Distance="4" EffectRadio="4" Delay="0" Type="0" Attribute="4" BuffIcon="0" ReqLevel="92" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="200" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="277" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="278" Name="Wrath" Level="66" Damage="0" ManaCost="100" StaminaCost="50" Distance="0" EffectRadio="0" Delay="60000" Type="0" Attribute="0" BuffIcon="218" ReqLevel="66" ReqStrength="200" RegAgility="200" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="278" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="279" Name="Breche" Level="300" Damage="400" ManaCost="40" StaminaCost="20" Distance="3" EffectRadio="3" Delay="500" Type="0" Attribute="1" BuffIcon="0" ReqLevel="300" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="279" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="280" Name="Explosion" Level="0" Damage="50" ManaCost="0" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="280" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="281" Name="Magic Pin Explosion" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="281" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="1" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="282" Name="Spirit Hook" Level="180" Damage="255" ManaCost="27" StaminaCost="21" Distance="3" EffectRadio="2" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="180" ReqStrength="0" RegAgility="0" ReqVitality="1480" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="282" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="4" Stat1Value="10" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="283" Name="Magic Arrow" Level="50" Damage="45" ManaCost="15" StaminaCost="5" Distance="8" EffectRadio="8" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="142" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="283" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="1" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="500" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="284" Name="Plasma Ball" Level="130" Damage="100" ManaCost="120" StaminaCost="35" Distance="8" EffectRadio="4" Delay="4000" Type="1" Attribute="1" BuffIcon="0" ReqLevel="130" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="600" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="284" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="2" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="285" Name="Lightning Storm" Level="160" Damage="220" ManaCost="80" StaminaCost="37" Distance="8" EffectRadio="4" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1180" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="285" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="286" Name="Burst" Level="200" Damage="0" ManaCost="50" StaminaCost="0" Distance="0" EffectRadio="0" Delay="60000" Type="1" Attribute="1" BuffIcon="293" ReqLevel="200" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="286" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="2" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="287" Name="Haste" Level="400" Damage="0" ManaCost="0" StaminaCost="50" Distance="0" EffectRadio="7" Delay="60000" Type="1" Attribute="1" BuffIcon="294" ReqLevel="400" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="287" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="2" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="288" Name="Death Scythe" Level="85" Damage="75" ManaCost="120" StaminaCost="20" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="1" BuffIcon="306" ReqLevel="85" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="930" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="288" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="289" Name="Darkness" Level="83" Damage="0" ManaCost="100" StaminaCost="50" Distance="5" EffectRadio="0" Delay="5000" Type="1" Attribute="1" BuffIcon="301" ReqLevel="83" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="300" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="289" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="1" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="291" Name="Elite Monster Skill" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="291" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="292" Name="Sword Inertia" Level="30" Damage="10" ManaCost="5" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="30" ReqStrength="50" RegAgility="100" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="292" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="1" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="293" Name="Bat Flock" Level="150" Damage="90" ManaCost="20" StaminaCost="5" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="100" RegAgility="380" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="293" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="2" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="294" Name="Pierce Attack" Level="160" Damage="170" ManaCost="30" StaminaCost="10" Distance="6" EffectRadio="3" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="300" RegAgility="1100" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="294" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="120" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="295" Name="Detection" Level="350" Damage="0" ManaCost="100" StaminaCost="100" Distance="0" EffectRadio="0" Delay="5000" Type="1" Attribute="1" BuffIcon="316" ReqLevel="350" ReqStrength="0" RegAgility="800" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="295" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="297" Name="Demolish" Level="400" Damage="0" ManaCost="50" StaminaCost="0" Distance="0" EffectRadio="5" Delay="60000" Type="1" Attribute="0" BuffIcon="317" ReqLevel="400" ReqStrength="0" RegAgility="1450" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="297" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="298" Name="Blessing of Experience" Level="50" Damage="0" ManaCost="5" StaminaCost="0" Distance="8" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="377" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="1" AllowGL="1" AllowRW="1" AllowSL="1" AllowGC="1" AllowLW="1" AllowLM="1" AllowIK="1" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="300" Name="Durability Reduction (1)" Level="0" Damage="37" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="301" Name="PvP Defence Rate Increase" Level="0" Damage="12" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="302" Name="Maximum SD increase" Level="0" Damage="13" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="303" Name="Auto Mana Recovery Increase" Level="0" Damage="7" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="304" Name="Poison Resistance Increase" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="305" Name="Durability Reduction (2)" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="306" Name="SD Recovery Speed Increase" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="307" Name="Automatic HP Recovery Increase" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="308" Name="Lightning Resistance Increase" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="2" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="309" Name="Defense Increase" Level="0" Damage="16" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="310" Name="Automatic AG Recovery Increase" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="311" Name="Ice Resistance Increase" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="312" Name="Durability Reduction (3)" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="313" Name="Defense Success Rate Increase" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="314" Name="Cast Invincibility" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="315" Name="Armor Set Bonus Increase" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="316" Name="Vengeance" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="317" Name="Energy Increase" Level="0" Damage="40" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="318" Name="Stamina Increase" Level="0" Damage="40" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="319" Name="Agility Increase" Level="0" Damage="40" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="320" Name="Strength Increase" Level="0" Damage="40" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="321" Name="Wing of Storm Absorption PowUp" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="322" Name="Wing of Storm Defense PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="323" Name="Iron Defense" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="3" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="324" Name="Wing of Storm Attack PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="325" Name="Attack Success Rate Increase" Level="0" Damage="13" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="326" Name="Cyclone Strengthener" Level="0" Damage="4" ManaCost="9" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="22" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="165" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="327" Name="Slash Strengthener" Level="0" Damage="40" ManaCost="10" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="23" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="185" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="328" Name="Falling Slash Strengthener" Level="0" Damage="17" ManaCost="9" StaminaCost="0" Distance="3" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="19" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="180" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="329" Name="Lunge Strengthener" Level="0" Damage="17" ManaCost="9" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="20" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="170" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="330" Name="Twisting Slash Strengthener" Level="0" Damage="40" ManaCost="10" StaminaCost="10" Distance="2" EffectRadio="3" Delay="0" Type="0" Attribute="5" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="41" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="40" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="331" Name="Anger Blow Strengthener" Level="170" Damage="22" ManaCost="25" StaminaCost="22" Distance="3" EffectRadio="4" Delay="0" Type="0" Attribute="4" BuffIcon="0" ReqLevel="170" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="42" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="332" Name="Twisting Slash Mastery" Level="0" Damage="1" ManaCost="22" StaminaCost="20" Distance="2" EffectRadio="3" Delay="0" Type="0" Attribute="5" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="41" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="40" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="333" Name="Anger Blow Mastery" Level="170" Damage="1" ManaCost="50" StaminaCost="30" Distance="3" EffectRadio="4" Delay="0" Type="0" Attribute="4" BuffIcon="0" ReqLevel="170" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="42" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="334" Name="Maximum Life Increase" Level="0" Damage="9" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="335" Name="Weapon Mastery" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="336" Name="Death Stab Strengthener" Level="160" Damage="22" ManaCost="15" StaminaCost="13" Distance="4" EffectRadio="2" Delay="0" Type="0" Attribute="5" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="43" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="338" Name="Maximum Mana Increase" Level="0" Damage="9" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="339" Name="Death Stab Proficiency" Level="160" Damage="22" ManaCost="30" StaminaCost="26" Distance="4" EffectRadio="2" Delay="0" Type="0" Attribute="5" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="43" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="340" Name="Strike of Destruction Proficiency" Level="100" Damage="22" ManaCost="30" StaminaCost="24" Distance="5" EffectRadio="3" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="232" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="341" Name="Maximum AG Increase" Level="0" Damage="8" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="342" Name="Death Stab Mastery" Level="160" Damage="7" ManaCost="30" StaminaCost="26" Distance="4" EffectRadio="2" Delay="0" Type="0" Attribute="5" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="43" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="343" Name="Strike of Destruction Mastery" Level="100" Damage="22" ManaCost="30" StaminaCost="24" Distance="5" EffectRadio="3" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="232" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="344" Name="Blood Storm" Level="0" Damage="25" ManaCost="87" StaminaCost="29" Distance="3" EffectRadio="4" Delay="5000" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="344" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="138" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="345" Name="Combo Strengthener" Level="0" Damage="7" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="346" Name="Blood Storm Strengthener" Level="0" Damage="5" ManaCost="95" StaminaCost="31" Distance="3" EffectRadio="4" Delay="3000" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="344" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="138" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="347" Name="Attack Rate" Level="0" Damage="14" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="348" Name="Two-handed Sword Strengthener" Level="0" Damage="42" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="349" Name="One-handed Sword Strengthener" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="350" Name="Mace Strengthener" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="351" Name="Spear Strengthener" Level="0" Damage="41" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="352" Name="Two-handed Sword Mastery" Level="0" Damage="41" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="353" Name="One-handed Sword Mastery" Level="0" Damage="23" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="354" Name="Mace Mastery" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="355" Name="Spear Mastery" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="356" Name="Swell Life Strengthener" Level="120" Damage="7" ManaCost="24" StaminaCost="26" Distance="0" EffectRadio="10" Delay="0" Type="-1" Attribute="-1" BuffIcon="8" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="48" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="357" Name="Mana Reduction" Level="0" Damage="18" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="358" Name="Monster Attack SD Increment" Level="0" Damage="11" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="359" Name="Monster Attack Life Increment" Level="0" Damage="6" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="360" Name="Swell Life Proficiency" Level="120" Damage="7" ManaCost="26" StaminaCost="28" Distance="0" EffectRadio="10" Delay="0" Type="-1" Attribute="-1" BuffIcon="135" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="48" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="361" Name="Minimum Attack Power Increase" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="3" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="3" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="362" Name="Monster Attack Mana Increment" Level="0" Damage="6" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="363" Name="Swell Life Mastery" Level="120" Damage="7" ManaCost="28" StaminaCost="30" Distance="0" EffectRadio="10" Delay="0" Type="-1" Attribute="-1" BuffIcon="136" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="48" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="364" Name="Maximum Attack Power Increase" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="3" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="3" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="366" Name="Increases critical damage rate" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="367" Name="Restores all Mana" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="368" Name="Restores all HP" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="369" Name="Increases excellent damage rate" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="370" Name="Increases double damage rate" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="371" Name="Increases chance of ignore Def" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="372" Name="Restores all SD" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="373" Name="Increases triple damage rate" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="374" Name="Eternal Wings Absorption PowUp" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="375" Name="Eternal Wings Defense PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="377" Name="Eternal Wings Attack PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="378" Name="Flame Strengthener" Level="35" Damage="17" ManaCost="55" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="35" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="160" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="5" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="120" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="379" Name="Lightning Strengthener" Level="13" Damage="40" ManaCost="20" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="13" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="72" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="4" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="180" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="40" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="380" Name="Expansion of Wizardry Power Up" Level="220" Damage="1" ManaCost="220" StaminaCost="55" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="138" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1058" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="233" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="381" Name="Inferno Strengthener" Level="88" Damage="4" ManaCost="220" StaminaCost="0" Distance="0" EffectRadio="6" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="88" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="724" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="14" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="90" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="382" Name="Blast Strengthener" Level="80" Damage="17" ManaCost="165" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="80" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="500" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="13" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="383" Name="Expansion of Wizardry Mastery" Level="220" Damage="1" ManaCost="220" StaminaCost="55" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="139" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1058" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="233" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="384" Name="Poison Strengthener" Level="30" Damage="40" ManaCost="46" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="30" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="140" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="385" Name="Evil Spirit Strengthener" Level="50" Damage="4" ManaCost="108" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="220" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="9" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="386" Name="Magic Mastery" Level="50" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="387" Name="Decay Strengthener" Level="96" Damage="17" ManaCost="120" StaminaCost="10" Distance="6" EffectRadio="4" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="96" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="953" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="38" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="388" Name="Hellfire Strengthener" Level="60" Damage="40" ManaCost="176" StaminaCost="0" Distance="0" EffectRadio="6" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="60" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="260" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="10" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="389" Name="Ice Strengthener" Level="25" Damage="40" ManaCost="42" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="25" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="120" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="7" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="390" Name="Meteor Strengthener" Level="21" Damage="40" ManaCost="13" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="4" BuffIcon="0" ReqLevel="21" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="104" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="391" Name="Ice Storm Strengthener" Level="93" Damage="17" ManaCost="110" StaminaCost="5" Distance="6" EffectRadio="4" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="93" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="849" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="39" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="90" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="392" Name="Nova Strengthener" Level="100" Damage="17" ManaCost="198" StaminaCost="49" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1052" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="40" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="160" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="393" Name="Ice Storm Mastery" Level="93" Damage="22" ManaCost="110" StaminaCost="5" Distance="6" EffectRadio="4" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="93" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="849" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="39" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="90" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="394" Name="Meteor Mastery" Level="21" Damage="1" ManaCost="14" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="4" BuffIcon="0" ReqLevel="21" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="104" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="395" Name="Nova Cast Strengthener" Level="100" Damage="22" ManaCost="198" StaminaCost="49" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1052" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="160" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="397" Name="One-handed Staff Strengthener" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="398" Name="Two-handed Staff Strengthener" Level="0" Damage="42" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="399" Name="Shield Strengthener" Level="0" Damage="10" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="400" Name="One-handed Staff Mastery" Level="0" Damage="23" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="401" Name="Two-handed Staff Mastery" Level="0" Damage="42" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="402" Name="Shield Mastery" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="403" Name="Soul Barrier Strengthener" Level="77" Damage="7" ManaCost="77" StaminaCost="24" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="4" ReqLevel="77" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="408" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="16" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="404" Name="Soul Barrier Proficiency" Level="77" Damage="10" ManaCost="84" StaminaCost="26" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="4" ReqLevel="77" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="408" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="16" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="405" Name="Minimum Wizardry Increase" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="406" Name="Soul Barrier Mastery" Level="77" Damage="7" ManaCost="92" StaminaCost="28" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="140" ReqLevel="77" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="408" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="16" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="407" Name="Maximum Wizardry Increase" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="409" Name="Illusion Wings Absorption PowUp" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="410" Name="Illusion Wings Defense PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="411" Name="Multi-Shot Strengthener" Level="100" Damage="22" ManaCost="11" StaminaCost="7" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="235" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="412" Name="Illusion Wings Attack PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="413" Name="Heal Strengthener" Level="8" Damage="22" ManaCost="22" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="8" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="52" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="26" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="414" Name="Triple Shot Strengthener" Level="0" Damage="4" ManaCost="5" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="24" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="160" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="415" Name="Summoned Monster Power Up(1)" Level="0" Damage="16" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="416" Name="Penetration Strengthener" Level="130" Damage="17" ManaCost="10" StaminaCost="11" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="5" BuffIcon="0" ReqLevel="130" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="52" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="417" Name="Defense Increase Strengthener" Level="13" Damage="22" ManaCost="33" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="2" ReqLevel="13" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="72" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="27" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="418" Name="Triple Shot Mastery" Level="0" Damage="0" ManaCost="9" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="24" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="160" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="419" Name="Summoned Monster Power Up(2)" Level="0" Damage="16" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="420" Name="Attack Increase Strengthener" Level="18" Damage="22" ManaCost="44" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="1" ReqLevel="18" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="92" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="28" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="421" Name="Weapon Mastery" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="422" Name="Attack Increase Mastery" Level="18" Damage="22" ManaCost="48" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="1" ReqLevel="18" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="92" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="28" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="423" Name="Defense Increase Mastery" Level="13" Damage="22" ManaCost="36" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="2" ReqLevel="13" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="72" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="27" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="424" Name="Ice Arrow Strengthener" Level="0" Damage="22" ManaCost="15" StaminaCost="18" Distance="8" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="646" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="51" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="425" Name="Cure" Level="0" Damage="0" ManaCost="72" StaminaCost="10" Distance="6" EffectRadio="0" Delay="3000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="425" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="426" Name="Party Healing" Level="0" Damage="0" ManaCost="266" StaminaCost="12" Distance="6" EffectRadio="6" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="426" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="427" Name="Poison Arrow" Level="0" Damage="27" ManaCost="50" StaminaCost="50" Distance="6" EffectRadio="0" Delay="1000" Type="0" Attribute="1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="427" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="165" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="428" Name="Summoned Monster Power Up(3)" Level="0" Damage="16" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="429" Name="Party Healing Strengthener" Level="0" Damage="22" ManaCost="272" StaminaCost="13" Distance="6" EffectRadio="6" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="426" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="430" Name="Bless" Level="0" Damage="0" ManaCost="108" StaminaCost="18" Distance="6" EffectRadio="0" Delay="3000" Type="-1" Attribute="-1" BuffIcon="142" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="430" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="431" Name="Multi-Shot Mastery" Level="100" Damage="1" ManaCost="12" StaminaCost="8" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="235" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="432" Name="Summon Satyros" Level="0" Damage="0" ManaCost="525" StaminaCost="52" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="300" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="432" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="433" Name="Bless Strengthener" Level="0" Damage="10" ManaCost="118" StaminaCost="20" Distance="6" EffectRadio="0" Delay="3000" Type="-1" Attribute="-1" BuffIcon="142" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="430" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="434" Name="Poison Arrow Strengthener" Level="0" Damage="40" ManaCost="50" StaminaCost="50" Distance="6" EffectRadio="0" Delay="500" Type="0" Attribute="1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="427" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="165" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="435" Name="Bow Strengthener" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="436" Name="Crossbow Strengthener" Level="0" Damage="4" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="437" Name="Shield Strengthener" Level="0" Damage="10" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="438" Name="Bow Mastery" Level="0" Damage="23" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="439" Name="Crossbow Mastery" Level="0" Damage="5" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="440" Name="Shield Mastery" Level="0" Damage="15" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="441" Name="Infinity Arrow Strengthener" Level="220" Damage="1" ManaCost="55" StaminaCost="11" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="143" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="77" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="442" Name="Minimum Attack Power Increase" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="443" Name="Maximum Attack Power Increase" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="445" Name="Dimension Wings Absorb PowUp" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="446" Name="Dimension Wings Defense PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="447" Name="Dimension Wings Attack PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="451" Name="Fire Tome Mastery" Level="0" Damage="7" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="1000" Type="1" Attribute="3" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="452" Name="Earth Tome Mastery" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="453" Name="Wind Tome Mastery" Level="0" Damage="7" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="454" Name="Sleep Strengthener" Level="40" Damage="1" ManaCost="30" StaminaCost="7" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="40" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="180" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="219" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="455" Name="Chain Lightning Strengthener" Level="75" Damage="22" ManaCost="103" StaminaCost="0" Distance="6" EffectRadio="3" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="75" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="245" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="215" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="456" Name="Lightning Shock Strengthener" Level="93" Damage="22" ManaCost="125" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="93" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="823" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="230" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="457" Name="Magic Mastery" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="458" Name="Drain Life Strengthener" Level="35" Damage="22" ManaCost="57" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="35" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="150" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="214" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="459" Name="Weakness Strengthener" Level="93" Damage="3" ManaCost="50" StaminaCost="15" Distance="8" EffectRadio="5" Delay="30000" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="93" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="663" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="221" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="460" Name="Innovation Strengthener" Level="111" Damage="3" ManaCost="50" StaminaCost="15" Distance="8" EffectRadio="5" Delay="30000" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="111" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="663" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="222" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="461" Name="Blind" Level="0" Damage="0" ManaCost="115" StaminaCost="25" Distance="3" EffectRadio="0" Delay="5000" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="461" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="462" Name="Drain Life Mastery" Level="35" Damage="9" ManaCost="62" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="35" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="150" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="214" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="463" Name="Blind Strengthener" Level="0" Damage="1" ManaCost="126" StaminaCost="27" Distance="3" EffectRadio="0" Delay="5000" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="461" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="465" Name="Stick Strengthener" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="466" Name="Other World Tome Strengthener" Level="0" Damage="4" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="467" Name="Stick Mastery" Level="0" Damage="5" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="468" Name="Other World Tome Mastery" Level="0" Damage="23" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="469" Name="Berserker Strengthener" Level="83" Damage="172" ManaCost="165" StaminaCost="82" Distance="5" EffectRadio="0" Delay="5000" Type="1" Attribute="-1" BuffIcon="150" ReqLevel="83" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="300" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="218" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="470" Name="Berserker Proficiency" Level="83" Damage="173" ManaCost="181" StaminaCost="90" Distance="5" EffectRadio="0" Delay="5000" Type="1" Attribute="-1" BuffIcon="152" ReqLevel="83" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="300" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="218" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="471" Name="Minimum Wizardry/Curse Increase" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="473" Name="Maximum Wizardry/Curse Increase" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="475" Name="Wing of Ruin Absorption PowUp" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="476" Name="Wing of Ruin Defense PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="478" Name="Wing of Ruin Attack PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="479" Name="Cyclone Strengthener" Level="0" Damage="4" ManaCost="9" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="22" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="165" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="480" Name="Lightning Strengthener" Level="13" Damage="40" ManaCost="20" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="13" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="72" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="3" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="180" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="40" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="481" Name="Twisting Slash Strengthener" Level="0" Damage="40" ManaCost="10" StaminaCost="10" Distance="2" EffectRadio="3" Delay="0" Type="0" Attribute="5" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="41" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="40" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="482" Name="Power Slash Strengthener" Level="0" Damage="17" ManaCost="15" StaminaCost="0" Distance="5" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="56" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="483" Name="Flame Strengthener" Level="35" Damage="17" ManaCost="55" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="35" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="160" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="5" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="120" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="484" Name="Blast Strengthener" Level="80" Damage="17" ManaCost="165" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="80" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="500" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="13" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="485" Name="Weapon Mastery" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="486" Name="Inferno Strengthener" Level="88" Damage="4" ManaCost="220" StaminaCost="0" Distance="0" EffectRadio="6" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="88" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="724" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="14" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="90" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="487" Name="Evil Spirit Strengthener" Level="50" Damage="4" ManaCost="108" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="220" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="9" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="488" Name="Magic Mastery" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="489" Name="Ice Strengthener" Level="25" Damage="40" ManaCost="42" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="25" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="120" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="7" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="490" Name="Fire Slash Strengthener" Level="0" Damage="3" ManaCost="15" StaminaCost="12" Distance="3" EffectRadio="6" Delay="0" Type="-1" Attribute="1" BuffIcon="0" ReqLevel="0" ReqStrength="596" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="55" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="491" Name="Ice Mastery" Level="25" Damage="1" ManaCost="46" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="25" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="120" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="7" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="492" Name="Flame Strike Strengthener" Level="0" Damage="4" ManaCost="30" StaminaCost="37" Distance="3" EffectRadio="5" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="236" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="493" Name="Fire Slash Mastery" Level="0" Damage="7" ManaCost="17" StaminaCost="12" Distance="3" EffectRadio="6" Delay="0" Type="-1" Attribute="1" BuffIcon="0" ReqLevel="0" ReqStrength="596" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="55" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="494" Name="Flame Strike Mastery" Level="0" Damage="7" ManaCost="33" StaminaCost="40" Distance="3" EffectRadio="5" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="236" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="495" Name="Earth Prison" Level="0" Damage="26" ManaCost="180" StaminaCost="15" Distance="0" EffectRadio="4" Delay="5000" Type="1" Attribute="4" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="495" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="496" Name="Gigantic Storm Strengthener" Level="220" Damage="3" ManaCost="132" StaminaCost="10" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="5" BuffIcon="0" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1058" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="237" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="250" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="497" Name="Earth Prison Strengthener" Level="0" Damage="4" ManaCost="198" StaminaCost="17" Distance="0" EffectRadio="4" Delay="3000" Type="1" Attribute="4" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="495" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="504" Name="Emperor Cape Absorption PowUp" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="505" Name="Emperor Cape Defense PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="506" Name="Adds Command Stat" Level="0" Damage="40" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="507" Name="Emperor Cape Attack PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="508" Name="Fire Burst Strengthener" Level="74" Damage="4" ManaCost="25" StaminaCost="0" Distance="6" EffectRadio="3" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="74" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="79" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="61" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="509" Name="Force Wave Strengthener" Level="0" Damage="40" ManaCost="15" StaminaCost="0" Distance="4" EffectRadio="3" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="60" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="160" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="40" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="510" Name="Dark Horse Strengthener (1)" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="511" Name="Critical DMG Increase PowUp" Level="82" Damage="3" ManaCost="75" StaminaCost="75" Distance="0" EffectRadio="6" Delay="0" Type="-1" Attribute="-1" BuffIcon="5" ReqLevel="82" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="102" ReqLeaderShip="300" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="64" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="512" Name="Earthshake Strengthener" Level="0" Damage="4" ManaCost="0" StaminaCost="75" Distance="10" EffectRadio="5" Delay="10000" Type="0" Attribute="4" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="62" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="513" Name="Weapon Mastery" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="514" Name="Fire Burst Mastery" Level="74" Damage="1" ManaCost="27" StaminaCost="0" Distance="6" EffectRadio="3" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="74" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="79" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="61" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="515" Name="Critical DMG Increase PowUp (2)" Level="82" Damage="10" ManaCost="82" StaminaCost="82" Distance="0" EffectRadio="6" Delay="0" Type="-1" Attribute="-1" BuffIcon="5" ReqLevel="82" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="102" ReqLeaderShip="300" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="64" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="516" Name="Earthshake Mastery" Level="0" Damage="1" ManaCost="0" StaminaCost="75" Distance="10" EffectRadio="5" Delay="10000" Type="0" Attribute="4" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="62" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="517" Name="Critical DMG Increase PowUp (3)" Level="82" Damage="7" ManaCost="100" StaminaCost="100" Distance="0" EffectRadio="6" Delay="0" Type="-1" Attribute="-1" BuffIcon="148" ReqLevel="82" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="102" ReqLeaderShip="300" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="64" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="518" Name="Fire Scream Strengthener" Level="102" Damage="22" ManaCost="45" StaminaCost="11" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="102" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="150" ReqLeaderShip="70" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="78" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="519" Name="Electric Spark Strengthener" Level="92" Damage="3" ManaCost="0" StaminaCost="150" Distance="10" EffectRadio="0" Delay="5000" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="92" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="126" ReqLeaderShip="340" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="65" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="520" Name="Fire Scream Mastery" Level="102" Damage="5" ManaCost="49" StaminaCost="12" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="102" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="150" ReqLeaderShip="70" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="78" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="522" Name="Critical DMG Increase Mastery" Level="82" Damage="1" ManaCost="110" StaminaCost="110" Distance="0" EffectRadio="6" Delay="0" Type="-1" Attribute="-1" BuffIcon="149" ReqLevel="82" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="102" ReqLeaderShip="300" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="64" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="523" Name="Chaotic Diseier Strengthener" Level="100" Damage="22" ManaCost="75" StaminaCost="22" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="84" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="238" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="526" Name="Dark Spirit Strengthener" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="527" Name="Scepter Strengthener" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="528" Name="Shield Strengthener" Level="0" Damage="10" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="529" Name="Use Scepter : Pet Strengthener" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="530" Name="Dark Spirit Strengthener (2)" Level="0" Damage="7" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="531" Name="Scepter Mastery" Level="0" Damage="5" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="532" Name="Shield Mastery" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="533" Name="Command Attack Increase" Level="0" Damage="20" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="534" Name="Dark Spirit Strengthener (3)" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="535" Name="Pet Durability Strengthener" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="536" Name="Dark Spirit Strengthener (4)" Level="0" Damage="23" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="538" Name="Dark Spirit Strengthener (5)" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="539" Name="Spirit Lord" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="548" Name="Reigning Cloak Absorption PowUp" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="549" Name="Reigning Cloak Defense PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="550" Name="Reigning Cloak Attack PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="551" Name="Killing Blow Strengthener" Level="0" Damage="22" ManaCost="10" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="1" Attribute="4" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="260" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="155" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="4" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="552" Name="Beast Uppercut Strengthener" Level="0" Damage="22" ManaCost="10" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="261" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="155" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="4" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="554" Name="Killing Blow Mastery" Level="0" Damage="1" ManaCost="10" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="1" Attribute="4" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="260" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="155" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="4" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="555" Name="Beast Uppercut Mastery" Level="0" Damage="1" ManaCost="10" StaminaCost="0" Distance="2" EffectRadio="0" Delay="0" Type="1" Attribute="3" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="261" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="155" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="4" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="556" Name="Def Success Rate Strengthener" Level="0" Damage="5" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="557" Name="Weapon Mastery" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="558" Name="Chain Drive Strengthener" Level="150" Damage="22" ManaCost="22" StaminaCost="22" Distance="4" EffectRadio="0" Delay="700" Type="1" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="262" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="559" Name="Dark Side Strengthener" Level="180" Damage="22" ManaCost="84" StaminaCost="0" Distance="5" EffectRadio="5" Delay="0" Type="1" Attribute="5" BuffIcon="0" ReqLevel="180" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="263" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="560" Name="Dragon Roar Strengthener" Level="150" Damage="22" ManaCost="60" StaminaCost="33" Distance="3" EffectRadio="5" Delay="700" Type="1" Attribute="4" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="264" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="561" Name="Dragon Roar Mastery" Level="150" Damage="1" ManaCost="66" StaminaCost="36" Distance="3" EffectRadio="5" Delay="700" Type="1" Attribute="4" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="264" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="562" Name="Chain Drive Mastery" Level="150" Damage="1" ManaCost="24" StaminaCost="22" Distance="4" EffectRadio="0" Delay="700" Type="1" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="262" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="563" Name="Dark Side Mastery" Level="180" Damage="0" ManaCost="92" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="5" BuffIcon="0" ReqLevel="180" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="263" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="564" Name="Dragon Slasher Strengthener" Level="200" Damage="22" ManaCost="110" StaminaCost="110" Distance="4" EffectRadio="0" Delay="3000" Type="1" Attribute="5" BuffIcon="0" ReqLevel="200" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="265" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="565" Name="Blood Howling" Level="0" Damage="0" ManaCost="100" StaminaCost="200" Distance="0" EffectRadio="0" Delay="120000" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="565" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="566" Name="Dragon Slasher Mastery" Level="200" Damage="38" ManaCost="121" StaminaCost="121" Distance="4" EffectRadio="0" Delay="3000" Type="1" Attribute="5" BuffIcon="0" ReqLevel="200" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="265" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="567" Name="Blood Howling Strengthener" Level="0" Damage="38" ManaCost="110" StaminaCost="220" Distance="0" EffectRadio="0" Delay="120000" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="565" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="568" Name="Equipped Weapon Strengthener" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="569" Name="Defense Success Rate Increase PowUp" Level="50" Damage="22" ManaCost="55" StaminaCost="11" Distance="7" EffectRadio="5" Delay="0" Type="1" Attribute="-1" BuffIcon="153" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="80" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="268" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="571" Name="Equipped Weapon Mastery" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="572" Name="DefSuccessRate Increase Mastery" Level="50" Damage="22" ManaCost="60" StaminaCost="12" Distance="7" EffectRadio="5" Delay="0" Type="1" Attribute="-1" BuffIcon="154" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="80" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="268" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="573" Name="Stamina Increase Strengthener" Level="80" Damage="5" ManaCost="55" StaminaCost="11" Distance="7" EffectRadio="5" Delay="0" Type="1" Attribute="-1" BuffIcon="155" ReqLevel="80" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="132" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="267" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="574" Name="Defense Switch" Level="0" Damage="20" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="578" Name="Durability Reduction (1)" Level="0" Damage="37" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="579" Name="Increase PvP Defense Rate" Level="0" Damage="29" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="580" Name="Increase Maximum SD" Level="0" Damage="33" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="581" Name="Increase Mana Recovery Rate" Level="0" Damage="7" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="582" Name="Increase Poison Resistance" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="583" Name="Durability Reduction (2)" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="584" Name="Increase SD Recovery Rate" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="585" Name="Increase HP Recovery Rate" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="586" Name="Increase Lightning Resistance" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="2" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="587" Name="Increases Defense" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="588" Name="Increases AG Recovery Rate" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="589" Name="Increase Ice Resistance" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="590" Name="Durability Reduction(3)" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="591" Name="Increase Defense Success Rate" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="592" Name="Cast Invincibility" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="593" Name="Increase Set Defense" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="594" Name="Vengeance" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="595" Name="Increase Energy" Level="0" Damage="36" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="596" Name="Stamina Increases" Level="0" Damage="36" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="597" Name="Increase Agility" Level="0" Damage="36" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="598" Name="Increase Strength" Level="0" Damage="36" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="599" Name="Increase Attack Success Rate" Level="0" Damage="30" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="600" Name="Increase Maximum HP" Level="0" Damage="34" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="601" Name="Increase Maximum Mana" Level="0" Damage="34" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="602" Name="Increase Maximum AG" Level="0" Damage="37" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="603" Name="Increase PvP Attack Rate" Level="0" Damage="31" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="604" Name="Decrease Mana" Level="0" Damage="18" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="605" Name="Recover SD from Monster Kills" Level="0" Damage="11" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="606" Name="Recover HP from Monster Kills" Level="0" Damage="6" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="607" Name="Increase Minimum Attack Power" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="608" Name="Recover Mana from Monster Kills" Level="0" Damage="6" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="609" Name="Increase Maximum Attack Power" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="610" Name="Increases Critical DMG Chance" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="611" Name="Recover Mana Fully" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="612" Name="Recovers HP Fully" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="613" Name="Increase Excellent DMG Chance" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="614" Name="Increase Double Damage Chance" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="615" Name="Increase Ignore Def Chance" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="616" Name="Recovers SD Fully" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="617" Name="Increase Triple Damage Chance" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="618" Name="Spell of Protection" Level="0" Damage="0" ManaCost="30" StaminaCost="0" Distance="0" EffectRadio="0" Delay="60000" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="1" AllowGL="1" AllowRW="0" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="619" Name="Spell of Restriction" Level="0" Damage="0" ManaCost="30" StaminaCost="0" Distance="3" EffectRadio="0" Delay="60000" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="1" AllowGL="1" AllowRW="0" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="620" Name="Spell of Pursuit" Level="0" Damage="0" ManaCost="30" StaminaCost="0" Distance="0" EffectRadio="0" Delay="120000" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="1" AllowGL="1" AllowRW="0" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="621" Name="Shied-Burn" Level="0" Damage="0" ManaCost="30" StaminaCost="0" Distance="3" EffectRadio="0" Delay="60000" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="1" AllowGL="1" AllowRW="0" AllowSL="1" AllowGC="0" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="623" Name="Protection Shield" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="624" Name="Weapon Block" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="625" Name="Shield Block" Level="0" Damage="39" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="626" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="627" Name="Strong Mind" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="628" Name="Absorb Life" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="629" Name="Absorb Shield" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="630" Name="Battle Mind" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="631" Name="Rush" Level="0" Damage="178" ManaCost="200" StaminaCost="200" Distance="7" EffectRadio="0" Delay="1000" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="631" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="634" Name="Protection Shield" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="635" Name="Weapon Block" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="636" Name="Shield Block" Level="0" Damage="39" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="637" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="638" Name="Strong Mind" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="639" Name="Absorb Life" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="640" Name="SD Absorption" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="641" Name="Grand Magic PowUp" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="642" Name="Illusion" Level="0" Damage="0" ManaCost="1000" StaminaCost="300" Distance="1" EffectRadio="0" Delay="120000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="642" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="643" Name="Protection Shield" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="644" Name="Weapon Block" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="645" Name="Shield Block" Level="0" Damage="39" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="646" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="647" Name="Strong Mind" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="648" Name="Absorb Life" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="649" Name="SD Absorption" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="650" Name="Marksman" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="651" Name="Shadow Step" Level="0" Damage="0" ManaCost="150" StaminaCost="100" Distance="5" EffectRadio="0" Delay="3000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="651" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="652" Name="Evasion" Level="0" Damage="0" ManaCost="200" StaminaCost="200" Distance="0" EffectRadio="0" Delay="60000" Type="-1" Attribute="-1" BuffIcon="214" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="652" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="653" Name="Protection Shield" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="654" Name="Weapon Block" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="655" Name="Shield Block" Level="0" Damage="39" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="656" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="657" Name="Strong Mind" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="658" Name="Absorb Life" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="659" Name="SD Absorption" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="660" Name="Pain of Curse" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="663" Name="Protection Shield" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="664" Name="Weapon Block" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="665" Name="Shield Block" Level="0" Damage="39" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="666" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="667" Name="Strong Mind" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="668" Name="Absorb Life" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="669" Name="SD Absorption" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="670" Name="Protection Shield" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="671" Name="Weapon Block" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="672" Name="Shield Block" Level="0" Damage="39" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="673" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="674" Name="Strong Mind" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="675" Name="Absorb Life" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="676" Name="SD Absorption" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="677" Name="Protection Shield" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="678" Name="Weapon Block" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="679" Name="Shield Block" Level="0" Damage="39" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="680" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="681" Name="Strong Mind" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="682" Name="Absorb Life" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="683" Name="SD Absorption" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="684" Name="Cloak of Transcendence Absorption PowUp" Level="0" Damage="38" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="685" Name="Cloak of Transcendence Defense PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="686" Name="Cloak of Transcendence Attack PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="687" Name="Spin Step PowUp" Level="83" Damage="3" ManaCost="15" StaminaCost="0" Distance="2" EffectRadio="2" Delay="500" Type="-1" Attribute="2" BuffIcon="0" ReqLevel="83" ReqStrength="0" RegAgility="150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="271" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="688" Name="Harsh Strike PowUp" Level="74" Damage="4" ManaCost="15" StaminaCost="0" Distance="3" EffectRadio="0" Delay="500" Type="-1" Attribute="1" BuffIcon="0" ReqLevel="74" ReqStrength="150" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="276" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="689" Name="Weapon Mastery" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="690" Name="Spin Step Mastery" Level="83" Damage="4" ManaCost="20" StaminaCost="0" Distance="2" EffectRadio="2" Delay="500" Type="-1" Attribute="2" BuffIcon="0" ReqLevel="83" ReqStrength="0" RegAgility="150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="271" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="691" Name="Harsh Strike Mastery" Level="74" Damage="0" ManaCost="20" StaminaCost="0" Distance="3" EffectRadio="0" Delay="500" Type="-1" Attribute="1" BuffIcon="0" ReqLevel="74" ReqStrength="150" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="276" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="30" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="692" Name="Magic Pin PowUp" Level="30" Damage="4" ManaCost="30" StaminaCost="20" Distance="2" EffectRadio="0" Delay="500" Type="-1" Attribute="2" BuffIcon="0" ReqLevel="30" ReqStrength="300" RegAgility="300" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="274" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="693" Name="Obsidian PowUp" Level="74" Damage="18" ManaCost="50" StaminaCost="50" Distance="0" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="220" ReqLevel="74" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="200" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="273" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="694" Name="Magic Pin Proficiency" Level="30" Damage="7" ManaCost="35" StaminaCost="20" Distance="2" EffectRadio="0" Delay="500" Type="-1" Attribute="2" BuffIcon="0" ReqLevel="30" ReqStrength="300" RegAgility="300" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="274" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="695" Name="Magic Pin Mastery" Level="30" Damage="0" ManaCost="40" StaminaCost="22" Distance="3" EffectRadio="0" Delay="500" Type="-1" Attribute="2" BuffIcon="0" ReqLevel="30" ReqStrength="300" RegAgility="300" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="274" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="696" Name="Breche PowUp" Level="300" Damage="4" ManaCost="45" StaminaCost="25" Distance="3" EffectRadio="3" Delay="500" Type="-1" Attribute="1" BuffIcon="0" ReqLevel="300" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="279" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="698" Name="Breche Mastery" Level="300" Damage="0" ManaCost="50" StaminaCost="30" Distance="4" EffectRadio="4" Delay="500" Type="-1" Attribute="1" BuffIcon="0" ReqLevel="300" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="279" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="699" Name="Shining Peak PowUp" Level="220" Damage="5" ManaCost="70" StaminaCost="25" Distance="4" EffectRadio="4" Delay="0" Type="-1" Attribute="4" BuffIcon="0" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="277" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="700" Name="Burst" Level="0" Damage="38" ManaCost="200" StaminaCost="50" Distance="0" EffectRadio="0" Delay="60000" Type="-1" Attribute="-1" BuffIcon="219" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="700" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="701" Name="Burst PowUp" Level="0" Damage="23" ManaCost="210" StaminaCost="52" Distance="0" EffectRadio="0" Delay="60000" Type="-1" Attribute="-1" BuffIcon="226" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="700" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="702" Name="Lance PowUp" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="703" Name="Circle Shield PowUp" Level="220" Damage="10" ManaCost="100" StaminaCost="50" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="221" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="272" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="704" Name="Shield PowUp" Level="0" Damage="10" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="705" Name="Lance Mastery" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="706" Name="Circle Shield Mastery" Level="220" Damage="23" ManaCost="100" StaminaCost="50" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="222" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="272" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="707" Name="Shield Mastery" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="708" Name="Wrath PowUp" Level="66" Damage="23" ManaCost="110" StaminaCost="50" Distance="0" EffectRadio="0" Delay="60000" Type="-1" Attribute="-1" BuffIcon="223" ReqLevel="66" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="278" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="709" Name="Wrath Proficiency" Level="66" Damage="23" ManaCost="130" StaminaCost="60" Distance="0" EffectRadio="0" Delay="60000" Type="-1" Attribute="-1" BuffIcon="224" ReqLevel="66" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="278" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="710" Name="Wrath Mastery" Level="66" Damage="38" ManaCost="150" StaminaCost="80" Distance="0" EffectRadio="0" Delay="60000" Type="-1" Attribute="-1" BuffIcon="225" ReqLevel="66" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="278" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="711" Name="Increases Retaliation DMG" Level="0" Damage="23" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="712" Name="Increases Rage DMG" Level="0" Damage="23" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="713" Name="Protection Shield" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="714" Name="Weapon Block" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="715" Name="Shield Block" Level="0" Damage="39" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="716" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="717" Name="Strong Mind" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="718" Name="Absorb Life" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="719" Name="SD Absorption" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="720" Name="Immune I" Level="0" Damage="0" ManaCost="300" StaminaCost="200" Distance="0" EffectRadio="0" Delay="500" Type="-1" Attribute="-1" BuffIcon="243" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="720" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="721" Name="Immune II" Level="0" Damage="0" ManaCost="300" StaminaCost="200" Distance="0" EffectRadio="0" Delay="500" Type="-1" Attribute="-1" BuffIcon="244" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="721" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="722" Name="Berserker I" Level="0" Damage="0" ManaCost="500" StaminaCost="300" Distance="0" EffectRadio="0" Delay="500" Type="-1" Attribute="-1" BuffIcon="245" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="722" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="723" Name="Fire Blow" Level="160" Damage="120" ManaCost="17" StaminaCost="17" Distance="5" EffectRadio="2" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="1090" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="723" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="724" Name="Meteor Strike" Level="160" Damage="100" ManaCost="92" StaminaCost="17" Distance="7" EffectRadio="2" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="724" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="170" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="725" Name="Meteor Storm" Level="160" Damage="105" ManaCost="105" StaminaCost="20" Distance="6" EffectRadio="6" Delay="500" Type="1" Attribute="-1" BuffIcon="1" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1160" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="725" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="726" Name="Soul Seeker" Level="160" Damage="125" ManaCost="90" StaminaCost="16" Distance="7" EffectRadio="2" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1115" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="726" AllowDW="3" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="170" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="727" Name="Focus Shot" Level="160" Damage="110" ManaCost="12" StaminaCost="9" Distance="7" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1302" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="727" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="729" Name="Fire Beast" Level="160" Damage="100" ManaCost="95" StaminaCost="10" Distance="7" EffectRadio="2" Delay="350" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1220" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="729" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="170" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="730" Name="Aqua Beast" Level="160" Damage="100" ManaCost="95" StaminaCost="10" Distance="7" EffectRadio="2" Delay="350" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1220" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="730" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="170" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="731" Name="Ice Blood" Level="160" Damage="330" ManaCost="19" StaminaCost="14" Distance="3" EffectRadio="2" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="731" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="750" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="732" Name="Fire Blood" Level="160" Damage="330" ManaCost="19" StaminaCost="14" Distance="3" EffectRadio="2" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="732" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="750" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="733" Name="Dark Blast" Level="160" Damage="120" ManaCost="92" StaminaCost="17" Distance="7" EffectRadio="2" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="733" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="170" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="734" Name="Meteor Strike" Level="160" Damage="120" ManaCost="92" StaminaCost="17" Distance="7" EffectRadio="2" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="734" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="170" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="737" Name="Wind Soul" Level="160" Damage="85" ManaCost="60" StaminaCost="17" Distance="6" EffectRadio="2" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="717" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="737" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="3" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="250" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="739" Name="Dark Phoenix Shot" Level="160" Damage="650" ManaCost="30" StaminaCost="10" Distance="7" EffectRadio="2" Delay="600" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="987" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="739" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="170" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="740" Name="Archangel's will" Level="0" Damage="0" ManaCost="100" StaminaCost="150" Distance="0" EffectRadio="6" Delay="90000" Type="-1" Attribute="-1" BuffIcon="246" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="740" AllowDW="1" AllowDK="1" AllowElf="1" AllowMG="1" AllowDL="1" AllowSum="1" AllowRF="1" AllowGL="1" AllowRW="1" AllowSL="1" AllowGC="1" AllowLW="1" AllowLM="1" AllowIK="1" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="743" Name="Max HP Boost" Level="160" Damage="43" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="3" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="744" Name="Enhance Phoenix Shot" Level="160" Damage="22" ManaCost="30" StaminaCost="0" Distance="4" EffectRadio="3" Delay="1200" Type="1" Attribute="4" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="270" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="4" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="745" Name="Phoenix Shot Mastery" Level="160" Damage="1" ManaCost="30" StaminaCost="0" Distance="4" EffectRadio="3" Delay="1200" Type="1" Attribute="4" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="270" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="3" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="4" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="746" Name="Elemental DEF Increase" Level="160" Damage="162" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="3" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="3" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="747" Name="Pentagram Elemental Defense Increase" Level="160" Damage="163" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="3" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="3" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="0" AllowLW="3" AllowLM="3" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="748" Name="Magic Arrow Strengthener" Level="160" Damage="22" ManaCost="35" StaminaCost="12" Distance="8" EffectRadio="8" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="142" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="283" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="500" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="749" Name="Magic Arrow Mastery" Level="160" Damage="22" ManaCost="42" StaminaCost="18" Distance="8" EffectRadio="8" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="142" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="283" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="500" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="750" Name="Plasma Ball Strengthener" Level="160" Damage="22" ManaCost="130" StaminaCost="45" Distance="8" EffectRadio="4" Delay="4000" Type="1" Attribute="1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="600" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="284" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="751" Name="Plasma Ball Mastery" Level="160" Damage="22" ManaCost="135" StaminaCost="55" Distance="8" EffectRadio="5" Delay="4000" Type="1" Attribute="1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="600" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="284" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="752" Name="Rune Mace Strengthener" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="753" Name="Rune Mace Mastery" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="754" Name="Wings of Disillusion Defense Strengthener" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="755" Name="Wings of Disillusion Attack Strengthener" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="756" Name="Shield Block" Level="0" Damage="39" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="758" Name="Protection Shield" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="759" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="760" Name="Strong Mind" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="761" Name="Absorb Life" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="762" Name="Absorb Shield" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="763" Name="Grand Magic Power Up" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="765" Name="Burst Strengthener" Level="200" Damage="23" ManaCost="60" StaminaCost="0" Distance="0" EffectRadio="0" Delay="60000" Type="1" Attribute="1" BuffIcon="295" ReqLevel="200" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="286" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="766" Name="Burst Mastery" Level="200" Damage="23" ManaCost="80" StaminaCost="0" Distance="0" EffectRadio="0" Delay="60000" Type="1" Attribute="1" BuffIcon="296" ReqLevel="200" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="286" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="768" Name="Haste Strengthener" Level="400" Damage="23" ManaCost="0" StaminaCost="60" Distance="0" EffectRadio="7" Delay="60000" Type="1" Attribute="1" BuffIcon="298" ReqLevel="400" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="287" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="769" Name="Haste Mastery" Level="400" Damage="23" ManaCost="0" StaminaCost="80" Distance="0" EffectRadio="7" Delay="60000" Type="1" Attribute="1" BuffIcon="299" ReqLevel="400" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="287" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="3" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="770" Name="Darkness Strengthener" Level="83" Damage="174" ManaCost="100" StaminaCost="50" Distance="5" EffectRadio="0" Delay="5000" Type="1" Attribute="1" BuffIcon="302" ReqLevel="83" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="620" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="289" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="771" Name="Darkness Mastery" Level="83" Damage="175" ManaCost="100" StaminaCost="50" Distance="5" EffectRadio="0" Delay="5000" Type="1" Attribute="1" BuffIcon="303" ReqLevel="83" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="620" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="289" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="772" Name="Greatness Mastery" Level="111" Damage="177" ManaCost="50" StaminaCost="15" Distance="8" EffectRadio="5" Delay="30000" Type="1" Attribute="-1" BuffIcon="304" ReqLevel="111" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="663" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="221" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="773" Name="Innovation Mastery" Level="111" Damage="177" ManaCost="50" StaminaCost="15" Distance="8" EffectRadio="5" Delay="30000" Type="1" Attribute="-1" BuffIcon="305" ReqLevel="111" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="663" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="222" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="774" Name="Explosion Strengthener" Level="0" Damage="3" ManaCost="35" StaminaCost="0" Distance="4" EffectRadio="3" Delay="500" Type="1" Attribute="3" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="80" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="223" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="775" Name="Requiem Strengthener" Level="0" Damage="3" ManaCost="60" StaminaCost="4" Distance="4" EffectRadio="4" Delay="800" Type="1" Attribute="5" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="140" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="224" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="776" Name="Pollution Strengthener" Level="0" Damage="3" ManaCost="70" StaminaCost="8" Distance="4" EffectRadio="5" Delay="500" Type="1" Attribute="2" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="542" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="225" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="777" Name="Pollution Strengthener" Level="85" Damage="22" ManaCost="70" StaminaCost="8" Distance="5" EffectRadio="5" Delay="500" Type="1" Attribute="2" BuffIcon="0" ReqLevel="85" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="542" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="225" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="778" Name="Pollution Mastery" Level="100" Damage="22" ManaCost="70" StaminaCost="8" Distance="5" EffectRadio="5" Delay="500" Type="1" Attribute="2" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="542" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="225" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="3" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="779" Name="Sword Inertia Strengthener" Level="160" Damage="22" ManaCost="7" StaminaCost="5" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="50" RegAgility="100" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="292" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="780" Name="Sword Inertia Mastery" Level="160" Damage="0" ManaCost="10" StaminaCost="7" Distance="7" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="50" RegAgility="100" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="292" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="781" Name="Bat Flock Strenghtener" Level="160" Damage="22" ManaCost="25" StaminaCost="9" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="100" RegAgility="380" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="293" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="782" Name="Bat Flock Mastery" Level="160" Damage="23" ManaCost="30" StaminaCost="12" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="100" RegAgility="380" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="293" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="783" Name="Short Sword Strengthener" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="784" Name="Short Sword Mastery" Level="0" Damage="23" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="785" Name="Wings of Silence Defense Strengthener" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="786" Name="Wings of Silence Attack Strengthener" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="787" Name="Demolish Strengthener" Level="400" Damage="23" ManaCost="60" StaminaCost="0" Distance="0" EffectRadio="5" Delay="60000" Type="1" Attribute="0" BuffIcon="319" ReqLevel="400" ReqStrength="0" RegAgility="1450" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="297" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="788" Name="Demolish Mastery" Level="400" Damage="214" ManaCost="80" StaminaCost="0" Distance="0" EffectRadio="5" Delay="60000" Type="1" Attribute="0" BuffIcon="320" ReqLevel="400" ReqStrength="0" RegAgility="1450" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="297" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="789" Name="Weapon Mastery" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="790" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="791" Name="Weapon Block" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="792" Name="Life Absorption" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="793" Name="SD Absorption" Level="0" Damage="3" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="794" Name="Detection Strengthener" Level="350" Damage="0" ManaCost="100" StaminaCost="100" Distance="0" EffectRadio="0" Delay="5000" Type="-1" Attribute="0" BuffIcon="318" ReqLevel="350" ReqStrength="0" RegAgility="800" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="295" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="3" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="801" Name="Sword's Fury Strengthener" Level="0" Damage="226" ManaCost="21" StaminaCost="17" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="327" ReqLevel="0" ReqStrength="1060" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1500" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="802" Name="Sword's Fury Mastery" Level="0" Damage="227" ManaCost="21" StaminaCost="17" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="328" ReqLevel="0" ReqStrength="1060" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1500" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="803" Name="Solid Protection Strengthener" Level="0" Damage="228" ManaCost="65" StaminaCost="20" Distance="0" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="329" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1052" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1503" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="804" Name="Solid Protection Proficiency" Level="0" Damage="229" ManaCost="65" StaminaCost="20" Distance="0" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="330" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1052" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1503" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="805" Name="Solid Protection Mastery" Level="0" Damage="230" ManaCost="65" StaminaCost="20" Distance="0" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="331" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1052" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1503" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="806" Name="Solid Protection Mastery" Level="0" Damage="231" ManaCost="65" StaminaCost="20" Distance="0" EffectRadio="5" Delay="0" Type="-1" Attribute="-1" BuffIcon="332" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1052" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1503" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="807" Name="Strike of Destruction Strengthener" Level="0" Damage="232" ManaCost="30" StaminaCost="24" Distance="5" EffectRadio="3" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="232" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="809" Name="Strike of Destruction Mastery" Level="0" Damage="234" ManaCost="30" StaminaCost="24" Distance="5" EffectRadio="4" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="232" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="810" Name="Strong Belief Strengthener" Level="0" Damage="22" ManaCost="80" StaminaCost="25" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="336" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1040" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1502" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="811" Name="Tornado Strengthener" Level="0" Damage="40" ManaCost="10" StaminaCost="10" Distance="2" EffectRadio="3" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="41" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="40" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="812" Name="Anger Blow Strengthener" Level="170" Damage="22" ManaCost="25" StaminaCost="22" Distance="3" EffectRadio="4" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="170" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="42" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="813" Name="Rush" Level="0" Damage="178" ManaCost="200" StaminaCost="200" Distance="7" EffectRadio="0" Delay="1000" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="813" AllowDW="0" AllowDK="3" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="814" Name="Increase Energy Stat" Level="0" Damage="245" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="815" Name="Increase Vitality Stat" Level="0" Damage="246" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="816" Name="Increase Agility Stat" Level="0" Damage="247" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="817" Name="Increase Strength Stat" Level="0" Damage="248" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="818" Name="Wings of Hit Defense Strengthener" Level="0" Damage="249" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="819" Name="Wings of Hit Attack Strengthener" Level="0" Damage="250" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="820" Name="Dark Plasma Strenghtener" Level="0" Damage="251" ManaCost="22" StaminaCost="15" Distance="6" EffectRadio="5" Delay="5000" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2001" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="821" Name="Dark Plasma Proficiency" Level="0" Damage="252" ManaCost="22" StaminaCost="15" Distance="6" EffectRadio="5" Delay="5000" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2001" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="822" Name="Dark Plasma Mastery" Level="0" Damage="253" ManaCost="22" StaminaCost="15" Distance="6" EffectRadio="5" Delay="5000" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2001" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="823" Name="Ice Break Strenghtener" Level="0" Damage="254" ManaCost="17" StaminaCost="8" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="295" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2002" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="824" Name="Ice Break Mastery" Level="0" Damage="255" ManaCost="17" StaminaCost="8" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="295" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2002" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="825" Name="Death Fire Strenghtener" Level="0" Damage="256" ManaCost="8" StaminaCost="10" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="100" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2004" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="826" Name="Death Fire Mastery" Level="0" Damage="257" ManaCost="8" StaminaCost="10" Distance="7" EffectRadio="7" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="100" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2004" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="828" Name="Fixed Fire Strenghtener" Level="0" Damage="285" ManaCost="100" StaminaCost="50" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="381" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="300" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2021" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="0" Stat1Value="0" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="829" Name="Fixed Fire Mastery" Level="0" Damage="286" ManaCost="100" StaminaCost="50" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="382" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="300" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2021" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="0" Stat1Value="0" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="831" Name="Magic Gun Strenghtener" Level="0" Damage="262" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="831" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="0" Stat1Value="0" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="832" Name="Magic Gun Mastery" Level="0" Damage="263" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="831" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="0" Stat1Value="0" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="835" Name="Death Ice Strenghtener" Level="0" Damage="269" ManaCost="8" StaminaCost="10" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="100" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2006" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="836" Name="Death Ice Mastery" Level="0" Damage="270" ManaCost="8" StaminaCost="10" Distance="7" EffectRadio="7" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="100" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2006" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="837" Name="Cloak of Brilliance Defense PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="838" Name="Cloak of Brilliance Attack PowUp" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="839" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="840" Name="Eternal Wings Defense Strenghtener" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="841" Name="Eternal Wings Attack Strenghtener" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="842" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="843" Name="Shining Bird Strenghtener" Level="150" Damage="22" ManaCost="20" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="70" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="241" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="844" Name="Shining Bird Mastery" Level="150" Damage="0" ManaCost="30" StaminaCost="0" Distance="7" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="70" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="241" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="845" Name="Magic Mastery" Level="50" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="846" Name="Dragon Violent Strenghtener" Level="160" Damage="22" ManaCost="50" StaminaCost="0" Distance="6" EffectRadio="4" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="680" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="242" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="847" Name="Dragon Violent Mastery" Level="160" Damage="0" ManaCost="70" StaminaCost="0" Distance="7" EffectRadio="4" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="680" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="242" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="848" Name="Marvel Burst Strenghtener" Level="140" Damage="4" ManaCost="20" StaminaCost="0" Distance="6" EffectRadio="3" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="140" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="104" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="245" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="849" Name="Marvel Burst Mastery" Level="140" Damage="0" ManaCost="30" StaminaCost="0" Distance="6" EffectRadio="4" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="140" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="104" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="245" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="850" Name="Magic Mastery" Level="50" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="851" Name="Beginner Defense Improvement Strenghtener" Level="13" Damage="271" ManaCost="33" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="347" ReqLevel="13" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="72" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2009" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="852" Name="Beginner Defense Improvement Mastery" Level="13" Damage="271" ManaCost="36" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="347" ReqLevel="13" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="72" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2009" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="853" Name="Beginner Attack Power Improvement Strenghtener" Level="18" Damage="271" ManaCost="44" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="346" ReqLevel="18" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="92" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2010" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="854" Name="Beginner Attack Improvment Mastery" Level="18" Damage="271" ManaCost="48" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="346" ReqLevel="18" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="92" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2010" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="855" Name="Unleash Marvel Strenghtener" Level="155" Damage="22" ManaCost="65" StaminaCost="0" Distance="6" EffectRadio="0" Delay="10000" Type="1" Attribute="0" BuffIcon="0" ReqLevel="155" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="700" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="246" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="856" Name="Unleash Marvel Mastery" Level="155" Damage="0" ManaCost="70" StaminaCost="0" Distance="7" EffectRadio="0" Delay="10000" Type="1" Attribute="0" BuffIcon="0" ReqLevel="155" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="700" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="246" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="857" Name="Beginner Bless Strenghtener" Level="10" Damage="272" ManaCost="118" StaminaCost="20" Distance="6" EffectRadio="0" Delay="3000" Type="-1" Attribute="0" BuffIcon="348" ReqLevel="10" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="150" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2007" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="858" Name="Intensive Care Strengthener" Level="8" Damage="271" ManaCost="22" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="8" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="52" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2007" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="859" Name="Magic Book Strenghtener" Level="0" Damage="23" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="859" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="860" Name="Magic Book Mastery" Level="0" Damage="1" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="859" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="861" Name="Reflection Barrier Strenghtener" Level="77" Damage="7" ManaCost="77" StaminaCost="24" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="343" ReqLevel="77" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="408" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="244" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="862" Name="Reflection Barrier Skills" Level="77" Damage="10" ManaCost="84" StaminaCost="26" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="343" ReqLevel="77" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="408" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="244" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="863" Name="Reflection Barrier Mastery" Level="77" Damage="7" ManaCost="92" StaminaCost="28" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="345" ReqLevel="77" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="408" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="244" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="3" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="864" Name="Orb Strenghtener" Level="0" Damage="22" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="865" Name="Spiral Charge Strenghtener" Level="0" Damage="275" ManaCost="21" StaminaCost="17" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="368" ReqLevel="0" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2014" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="866" Name="Spiral Charge Mastery" Level="0" Damage="278" ManaCost="21" StaminaCost="17" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="369" ReqLevel="0" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2014" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="867" Name="Crusher Charge Strenghtener" Level="0" Damage="276" ManaCost="21" StaminaCost="17" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="370" ReqLevel="0" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2015" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="868" Name="Crusher Charge Mastery" Level="0" Damage="279" ManaCost="21" StaminaCost="17" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="371" ReqLevel="0" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2015" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="869" Name="Elemental Charge Strenghtener" Level="0" Damage="277" ManaCost="65" StaminaCost="20" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="372" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2016" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="870" Name="Elemental Charge Mastery" Level="0" Damage="280" ManaCost="65" StaminaCost="20" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="373" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2016" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="871" Name="Two-handed Sword Strenghtener" Level="0" Damage="281" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="872" Name="Two-handed Staff Strenghtener" Level="0" Damage="282" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="873" Name="Two-handed Sword Mastery" Level="0" Damage="283" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="874" Name="Two-handed Staff Mastery" Level="0" Damage="284" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="875" Name="Orb Mastery" Level="0" Damage="23" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="875" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="3" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="876" Name="Holy Bolt Strenghtener" Level="120" Damage="41" ManaCost="20" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1200" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2025" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="877" Name="Charge Slash Strenghtener" Level="25" Damage="294" ManaCost="3" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="25" ReqStrength="0" RegAgility="80" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2028" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="878" Name="Charge Slash Mastery" Level="25" Damage="295" ManaCost="3" StaminaCost="0" Distance="7" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="25" ReqStrength="0" RegAgility="80" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2028" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="879" Name="Wind Glaive Strenghtener" Level="45" Damage="296" ManaCost="6" StaminaCost="0" Distance="5" EffectRadio="3" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="45" ReqStrength="0" RegAgility="650" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2029" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="880" Name="Wind Glaive Mastery" Level="45" Damage="297" ManaCost="6" StaminaCost="0" Distance="6" EffectRadio="3" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="45" ReqStrength="0" RegAgility="650" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2029" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="881" Name="Blade Storm Strenghtener" Level="160" Damage="298" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2030" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="882" Name="Blade Storm Mastery" Level="160" Damage="299" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2030" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="883" Name="Illusion Avatar Strenghtener" Level="100" Damage="300" ManaCost="40" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="900" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2031" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="884" Name="Illusion Avatar Mastery" Level="100" Damage="301" ManaCost="40" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="900" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2031" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="885" Name="Illusion Blade Strenghtener" Level="25" Damage="302" ManaCost="40" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="406" ReqLevel="25" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2032" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="886" Name="Illusion Blade Mastery" Level="25" Damage="303" ManaCost="40" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="407" ReqLevel="25" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2032" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="887" Name="Illusion Blade Mastery" Level="25" Damage="304" ManaCost="40" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="408" ReqLevel="25" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2032" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="888" Name="Stop Weapon" Level="0" Damage="2" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="889" Name="Steel Armor" Level="0" Damage="35" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="890" Name="Reinforcement of Cloak of Death Defense" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="891" Name="Reinforcement of Cloak of Death Attack" Level="0" Damage="17" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="892" Name="Blade hardening" Level="0" Damage="305" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="893" Name="Blade Mastery" Level="0" Damage="306" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="894" Name="Oversting Strengthener" Level="300" Damage="313" ManaCost="25" StaminaCost="12" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="4" BuffIcon="0" ReqLevel="300" ReqStrength="0" RegAgility="1470" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2036" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="895" Name="Wrath Strengthener" Level="66" Damage="312" ManaCost="50" StaminaCost="40" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="425" ReqLevel="66" ReqStrength="0" RegAgility="200" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="278" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="896" Name="Wild Breath Strengthener" Level="300" Damage="315" ManaCost="35" StaminaCost="18" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="4" BuffIcon="0" ReqLevel="300" ReqStrength="1020" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2085" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1001" Name="Increase Skill DMG" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1002" Name="DMG Count +1" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1003" Name="DMG Count +2" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1004" Name="DMG Count +3" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1005" Name="DMG Count +4" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1006" Name="DMG Count +2" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1007" Name="Increase Additional DMG Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1008" Name="Increase Attack Speed" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1009" Name="Increase Range" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1010" Name="Add Splash DMG" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1011" Name="Increase Skill Range" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1012" Name="Increase Target" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1013" Name="Buff Synergy Effect" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1014" Name="Buff Synergy Effect" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1015" Name="Increase Skill Duration" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1016" Name="Iron Defense (Learned)" Level="0" Damage="3" ManaCost="70" StaminaCost="31" Distance="0" EffectRadio="0" Delay="30000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1016" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1017" Name="Enhance Iron Defense" Level="0" Damage="3" ManaCost="70" StaminaCost="31" Distance="0" EffectRadio="0" Delay="30000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1016" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1018" Name="Cooldown Time Reduction" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1019" Name="Remove Cooldown Time" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1020" Name="Weapon DMG Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1021" Name="Weapon Magic DMG Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1022" Name="Add Penetration Effect" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1023" Name="Add Arrow Missile" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1024" Name="Increase chance to create Poison Magic Circles" Level="0" Damage="151" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1025" Name="Increase chance to create Chilling Magic Circle" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1026" Name="Increase chance to create Bleeding Magic Circle" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1028" Name="Poison Damage Enhancement" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1029" Name="Chilling Effect Enhancement" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1030" Name="Bleeding Damage Enhancement" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1032" Name="Increase Poison Magic Circle Duration" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1033" Name="Increase Chilling Magic Circle Duration" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1034" Name="Increase Bleeding Magic Circle Duration" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1036" Name="Addiction Damage Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1037" Name="Freezing Damage Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1038" Name="Hemorrhage Damage Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1040" Name="Increase chance to enhance to Addiction Magic Circle" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1041" Name="Increase chance to enhance to Freezing Magic Circle" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1042" Name="Increase chance to enhance to Hemorrhage Magic Circle" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1046" Name="Additional chance to enhance to Poison Magic Circles" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1047" Name="Additional chance to enhance to Freezing Magic Circle" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1048" Name="Additional chance to enhance to Hemorrhage Magic Circle" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1050" Name="Additional Poison Damage Enhancement" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1051" Name="Additional Chilling Effect Enhancement" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1052" Name="Additional Bleeding Damage Enhancement" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1054" Name="Increase Addiction Magic Circle Duration" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1055" Name="Increase Freeze Magic Circle Duration" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1056" Name="Increase Hemorrhage Magic Circle Duration" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1058" Name="Additional Addiction Damage Enhancement" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1059" Name="Additional Freezing Effect Enhancement" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1060" Name="Additional Hemorrhage Effect Enhancement" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1062" Name="Upgrade Poisoning (Addiction)" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1063" Name="Upgrade Chilling (Freezing)" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1064" Name="Upgrade Bleeding (Hemorrhage)" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1069" Name="Anger Blow Enhancement Skill" Level="170" Damage="60" ManaCost="25" StaminaCost="22" Distance="3" EffectRadio="4" Delay="0" Type="0" Attribute="4" BuffIcon="0" ReqLevel="170" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="42" AllowDW="0" AllowDK="4" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="4" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="125" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1071" Name="Death Stab Enhancement Skill" Level="160" Damage="22" ManaCost="17" StaminaCost="18" Distance="4" EffectRadio="2" Delay="0" Type="0" Attribute="5" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="43" AllowDW="0" AllowDK="4" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="4" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1072" Name="Fire Blow Enhancement Skill" Level="160" Damage="120" ManaCost="17" StaminaCost="17" Distance="5" EffectRadio="2" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="100" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="723" AllowDW="0" AllowDK="4" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="4" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1075" Name="Meteor Strike Enhancement Skill" Level="160" Damage="100" ManaCost="92" StaminaCost="17" Distance="7" EffectRadio="2" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="724" AllowDW="4" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="170" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1076" Name="Meteor Storm Enhancement Skill" Level="160" Damage="105" ManaCost="105" StaminaCost="20" Distance="6" EffectRadio="6" Delay="500" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1160" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="725" AllowDW="4" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1078" Name="Evil Spirit Enhancement Skill" Level="50" Damage="45" ManaCost="108" StaminaCost="7" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="220" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="9" AllowDW="4" AllowDK="0" AllowElf="0" AllowMG="4" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1081" Name="Triple Shot Enhancement Skill" Level="0" Damage="0" ManaCost="9" StaminaCost="4" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="24" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="160" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1083" Name="Multi-Shot Enhancement Skill" Level="100" Damage="22" ManaCost="11" StaminaCost="7" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="235" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1085" Name="Focus Shot Enhancement Skill" Level="160" Damage="110" ManaCost="12" StaminaCost="9" Distance="7" EffectRadio="0" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1302" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="727" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1087" Name="Gigantic Storm Enhancement Skill" Level="220" Damage="110" ManaCost="110" StaminaCost="11" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="5" BuffIcon="0" ReqLevel="220" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1058" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="237" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="4" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="250" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1088" Name="Evil Spirit Enhancement Skill" Level="50" Damage="45" ManaCost="108" StaminaCost="7" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="220" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="9" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="4" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1089" Name="Dark Blast Enhancement Skill" Level="160" Damage="120" ManaCost="92" StaminaCost="17" Distance="7" EffectRadio="2" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="733" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="4" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="170" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1092" Name="Fire Slash Enhancement Skill" Level="0" Damage="80" ManaCost="15" StaminaCost="12" Distance="3" EffectRadio="6" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="596" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="55" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="4" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1094" Name="Fire Blood Enhancement Skill" Level="160" Damage="330" ManaCost="19" StaminaCost="14" Distance="3" EffectRadio="2" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="732" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="4" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="750" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1095" Name="Ice Blood Enhancement Skill" Level="160" Damage="330" ManaCost="19" StaminaCost="14" Distance="3" EffectRadio="2" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="731" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="4" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="750" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1096" Name="Fire Burst Enhancement Skill" Level="74" Damage="100" ManaCost="25" StaminaCost="8" Distance="6" EffectRadio="3" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="74" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="79" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="61" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="4" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1098" Name="Chaotic Diseier Enhancement Skill" Level="100" Damage="190" ManaCost="60" StaminaCost="17" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="84" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="238" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="4" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1099" Name="Wind Soul Enhancement Skill" Level="160" Damage="85" ManaCost="60" StaminaCost="17" Distance="6" EffectRadio="2" Delay="0" Type="0" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="717" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="737" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="4" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="250" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1102" Name="Fire Beast Enhancement Skill" Level="160" Damage="100" ManaCost="95" StaminaCost="11" Distance="7" EffectRadio="2" Delay="500" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1220" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="729" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="4" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="170" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1103" Name="Lightning Shock Enhancement Skill" Level="93" Damage="95" ManaCost="105" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="1" Attribute="2" BuffIcon="0" ReqLevel="93" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="823" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="230" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="4" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1105" Name="Aqua Beast Enhancement Skill" Level="160" Damage="100" ManaCost="95" StaminaCost="11" Distance="7" EffectRadio="2" Delay="500" Type="1" Attribute="-1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1220" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="730" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="4" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="170" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1111" Name="Dragon Roar Enhancement Skill" Level="150" Damage="0" ManaCost="42" StaminaCost="17" Distance="3" EffectRadio="5" Delay="700" Type="1" Attribute="4" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="264" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="4" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1112" Name="Chain Drive Enhancement Skill" Level="150" Damage="0" ManaCost="22" StaminaCost="18" Distance="4" EffectRadio="0" Delay="700" Type="1" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="262" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="4" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1113" Name="Dark Side Enhancement Skill" Level="180" Damage="0" ManaCost="92" StaminaCost="7" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="5" BuffIcon="0" ReqLevel="180" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="263" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="4" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1117" Name="Magic Pin Enhancement Skill" Level="30" Damage="80" ManaCost="40" StaminaCost="22" Distance="3" EffectRadio="0" Delay="500" Type="-1" Attribute="2" BuffIcon="0" ReqLevel="30" ReqStrength="300" RegAgility="300" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="274" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="4" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1118" Name="Breche Enhancement Skill" Level="300" Damage="400" ManaCost="40" StaminaCost="23" Distance="4" EffectRadio="3" Delay="500" Type="-1" Attribute="1" BuffIcon="0" ReqLevel="300" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="279" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="4" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1119" Name="Shining Peak Enhancement Skill" Level="92" Damage="70" ManaCost="52" StaminaCost="24" Distance="4" EffectRadio="4" Delay="0" Type="-1" Attribute="4" BuffIcon="0" ReqLevel="92" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="277" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="4" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1125" Name="Poison Storm" Level="0" Damage="25000" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1125" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1126" Name="Frozen Slayer" Level="0" Damage="25000" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1126" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1127" Name="Bloodying Hit" Level="0" Damage="25000" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1127" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1129" Name="Poison Storm Damage Enhancement" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1125" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1130" Name="Frozen Slayer Damage Enhancement" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1126" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1131" Name="Bloodying Hit Damage Enhancement" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1127" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1133" Name="Poison Storm Blast Infection Effect" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1125" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1134" Name="Frozen Slayer Explosion Infection Effect" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1126" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1135" Name="Bloodying Hit Explosion Infection Effect" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1127" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1137" Name="Maximum Life Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="282" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1138" Name="4th Stat Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="283" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1139" Name="Base Defense Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="284" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1140" Name="4th Wing / Cloak Defense Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="285" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1141" Name="Increase DMG" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="286" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1142" Name="Increase Magic" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="287" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1143" Name="Increase Fourth Stats" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="288" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1144" Name="Increase Skill DMG" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="289" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1145" Name="Increase Fourth Wings DMG" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="290" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1146" Name="Increase DMG / Magic" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="291" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1147" Name="Spirit Hook Enhancement Skill" Level="180" Damage="255" ManaCost="27" StaminaCost="21" Distance="3" EffectRadio="2" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="180" ReqStrength="0" RegAgility="0" ReqVitality="1480" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="282" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="4" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="4" Stat1Value="10" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1148" Name="Magic Arrow Enhancement Skill" Level="100" Damage="100" ManaCost="15" StaminaCost="5" Distance="8" EffectRadio="8" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="142" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="283" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="4" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="500" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1149" Name="Plasma Ball Enhancement Skill" Level="160" Damage="100" ManaCost="120" StaminaCost="35" Distance="8" EffectRadio="5" Delay="4000" Type="1" Attribute="1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="600" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="284" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="4" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1150" Name="Lightning Storm Enhancement Skill" Level="160" Damage="100" ManaCost="80" StaminaCost="37" Distance="8" EffectRadio="4" Delay="0" Type="1" Attribute="1" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1180" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="285" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="4" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1151" Name="Decrease Move Speed/Move Distance" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="4" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1152" Name="Increase Plasma Attack Speed" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="4" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1153" Name="Increase Splash Damage Area" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="4" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1154" Name="Increase Splash Target" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="4" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1155" Name="Deathside Enhancement" Level="93" Damage="95" ManaCost="120" StaminaCost="20" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="1" BuffIcon="306" ReqLevel="93" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="930" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="288" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="4" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1156" Name="Weapon Minimum DMG Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1157" Name="Wizardry / Curse DMG Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="-1" BuffIcon="314" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1158" Name="Sword Inertia Enhancement" Level="170" Damage="10" ManaCost="7" StaminaCost="5" Distance="7" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="170" ReqStrength="50" RegAgility="100" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="292" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="4" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1159" Name="Bat Flock Enhancement" Level="170" Damage="90" ManaCost="15" StaminaCost="7" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="170" ReqStrength="100" RegAgility="380" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="293" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="4" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1160" Name="Pierce Attack Enhancement" Level="170" Damage="170" ManaCost="20" StaminaCost="10" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="170" ReqStrength="300" RegAgility="1100" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="294" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="4" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="120" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1166" Name="Increase Poison debuff target count" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1167" Name="Increase Poison debuff target count" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1168" Name="Increase Hemorrhage debuff target count" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1169" Name="Increase Hemorrhage debuff target count" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1170" Name="Increase Freezing debuff target count" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1171" Name="Increase Freezing debuff target count" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1172" Name="Increase Poison debuff range" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1174" Name="Increase Hemorrhage debuff range" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1176" Name="Increase Freezing debuff range" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1178" Name="Increase Poison Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1179" Name="Increase Poison Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1180" Name="Increase Hemorrhage Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1181" Name="Increase Hemorrhage Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1182" Name="Increase Freezing Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1183" Name="Increase Freezing Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1184" Name="Increase Poison Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1185" Name="Increase Poison Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1186" Name="Increase Hemorrhage Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1187" Name="Increase Hemorrhage Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1188" Name="Increase Freezing Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1189" Name="Increase Freezing Debuff Success Rate" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1190" Name="Increased Poison / Poison Debuff target count" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1191" Name="Increased Hemorrhage / Hemorrhage Debuff target count" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1192" Name="Increased Freezing / Freezing Debuff target count" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1193" Name="4th Wing / Cloak Enchantment" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="285" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1194" Name="4th Wing / Cloak Attack / Power Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="285" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1195" Name="4th Wing / Cloak Power / Curse Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="285" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1196" Name="Poison Storm Damage Enhancement" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1125" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1197" Name="Frozen Slayer Damage Enhancement" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1126" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1198" Name="Bloodying Hit Damage Enhancement" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1127" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1199" Name="Poison Storm Blast Infection Effect" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1199" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1200" Name="Frozen Slayer Explosion Infection Effect" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1126" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1201" Name="Bloodying Hit Explosion Infection Effect" Level="0" Damage="100" ManaCost="40" StaminaCost="30" Distance="6" EffectRadio="0" Delay="1000" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="4" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1202" Name="Strike of Destruction Enhancement Skill" Level="160" Damage="120" ManaCost="30" StaminaCost="24" Distance="5" EffectRadio="4" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="232" AllowDW="0" AllowDK="4" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="135" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1203" Name="Sword Blow Enhancement Skill" Level="150" Damage="30" ManaCost="19" StaminaCost="17" Distance="5" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="1090" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1501" AllowDW="0" AllowDK="4" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1204" Name="Solid Protection Enhancement Skill" Level="160" Damage="120" ManaCost="65" StaminaCost="20" Distance="0" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="335" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1052" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1503" AllowDW="0" AllowDK="4" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1205" Name="Protection - Maximum HP Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1206" Name="Protection - Party Member Attack Power Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1207" Name="Protection - HP Conversion Increase (%)" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1208" Name="Protection - Damage Conversion Increase (%)" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1209" Name="Protection - Party Member Defense Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1210" Name="Protection - Shield Defense Increase" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="0" AllowDW="4" AllowDK="4" AllowElf="4" AllowMG="4" AllowDL="4" AllowSum="4" AllowRF="4" AllowGL="4" AllowRW="4" AllowSL="4" AllowGC="4" AllowLW="4" AllowLM="4" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1211" Name="Dark Plasma Enhancement Skill" Level="100" Damage="50" ManaCost="19" StaminaCost="15" Distance="6" EffectRadio="5" Delay="5000" Type="0" Attribute="0" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2001" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="4" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1212" Name="Ice Blast Enhancement Skill" Level="150" Damage="130" ManaCost="14" StaminaCost="10" Distance="6" EffectRadio="6" Delay="400" Type="0" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1000" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2003" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="4" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1213" Name="Busting Flare Enhancement Skill" Level="150" Damage="50" ManaCost="14" StaminaCost="13" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="100" RegAgility="200" ReqVitality="0" ReqEnergy="800" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2005" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="4" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1214" Name="Chaos Blade Enhancement Skill" Level="160" Damage="350" ManaCost="19" StaminaCost="14" Distance="3" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2012" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="4" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="750" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1215" Name="Havok Spear Enhancement Skill" Level="160" Damage="150" ManaCost="92" StaminaCost="20" Distance="7" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2013" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="4" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="200" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1216" Name="Spear Storm Enhancement Skill" Level="160" Damage="160" ManaCost="108" StaminaCost="7" Distance="6" EffectRadio="6" Delay="500" Type="1" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1160" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="243" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="4" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="130" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1217" Name="Marvel Burst Enhancement Skill" Level="140" Damage="125" ManaCost="32" StaminaCost="0" Distance="6" EffectRadio="4" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="140" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="104" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="245" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="4" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1218" Name="Unleash Marvel Enhancement Skill" Level="155" Damage="135" ManaCost="113" StaminaCost="0" Distance="7" EffectRadio="6" Delay="10000" Type="1" Attribute="0" BuffIcon="0" ReqLevel="155" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="700" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="246" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="4" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1219" Name="Ultimate Force Enhancement Skill" Level="160" Damage="10" ManaCost="95" StaminaCost="6" Distance="7" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="247" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="4" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="150" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1220" Name="Shining Bird Enhancement Skill" Level="150" Damage="130" ManaCost="32" StaminaCost="0" Distance="7" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="70" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="241" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="4" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="45" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1221" Name="Dragon Violent Enhancement Skill" Level="160" Damage="140" ManaCost="95" StaminaCost="0" Distance="7" EffectRadio="4" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="680" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="242" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="4" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="60" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1222" Name="Raining Arrow Enhancement Skill" Level="160" Damage="65" ManaCost="19" StaminaCost="8" Distance="7" EffectRadio="7" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1302" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2023" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1223" Name="Holy Bolt Enhancement Skill" Level="120" Damage="777" ManaCost="30" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1200" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="876" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1224" Name="Elemental Attack Power Enhancement Skill" Level="120" Damage="0" ManaCost="50" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="398" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1500" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2026" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1225" Name="Elemental Defense Enhancement Skill" Level="120" Damage="0" ManaCost="50" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="399" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1500" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2027" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1226" Name="Healing Enhancement Skill" Level="100" Damage="0" ManaCost="40" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="52" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="26" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1227" Name="Party Healing Enhancement Skill" Level="0" Damage="0" ManaCost="400" StaminaCost="13" Distance="6" EffectRadio="6" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="426" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1228" Name="Attack Power Enhancement Skill" Level="100" Damage="120" ManaCost="55" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="400" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="92" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="28" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1229" Name="Defense Enhancement Skill" Level="100" Damage="120" ManaCost="45" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="401" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="72" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="27" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1230" Name="Bless Enhancement Skill" Level="0" Damage="0" ManaCost="130" StaminaCost="22" Distance="6" EffectRadio="0" Delay="3000" Type="-1" Attribute="0" BuffIcon="402" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="20" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="430" AllowDW="0" AllowDK="0" AllowElf="4" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1231" Name="Charge Slash Enhancement Skill" Level="25" Damage="80" ManaCost="3" StaminaCost="0" Distance="7" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="25" ReqStrength="0" RegAgility="80" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2028" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="4" Animation="0" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1232" Name="Wind Glaive Enhancement Skill" Level="45" Damage="150" ManaCost="6" StaminaCost="0" Distance="6" EffectRadio="3" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="45" ReqStrength="0" RegAgility="650" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2029" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="4" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1233" Name="Blade Storm Enhancement Skill" Level="160" Damage="300" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="7" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2030" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="4" Animation="0" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1234" Name="Illusion Avatar Enhancement Skill" Level="100" Damage="200" ManaCost="40" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="900" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="884" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="4" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1235" Name="Oversting Enhancement Skill" Level="300" Damage="320" ManaCost="27" StaminaCost="17" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="6" BuffIcon="0" ReqLevel="300" ReqStrength="0" RegAgility="1470" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2036" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="4" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1236" Name="Wild Breath Enhancement Skill" Level="100" Damage="320" ManaCost="35" StaminaCost="19" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="6" BuffIcon="0" ReqLevel="300" ReqStrength="1020" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2085" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="4" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1500" Name="Sword's Fury" Level="120" Damage="0" ManaCost="21" StaminaCost="17" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="324" ReqLevel="120" ReqStrength="1060" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1500" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1501" Name="Sword Blow" Level="150" Damage="30" ManaCost="19" StaminaCost="17" Distance="5" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="150" ReqStrength="1090" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1501" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1502" Name="Strong Belief" Level="120" Damage="0" ManaCost="80" StaminaCost="25" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="325" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1040" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1502" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="1503" Name="Solid Protection" Level="120" Damage="0" ManaCost="65" StaminaCost="20" Distance="0" EffectRadio="5" Delay="0" Type="-1" Attribute="0" BuffIcon="326" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1052" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="1503" AllowDW="0" AllowDK="1" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="0" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2001" Name="Dark Plasma" Level="130" Damage="30" ManaCost="22" StaminaCost="10" Distance="6" EffectRadio="5" Delay="5000" Type="0" Attribute="0" BuffIcon="0" ReqLevel="130" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2001" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="2" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2002" Name="Ice Break" Level="50" Damage="180" ManaCost="7" StaminaCost="1" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="295" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2002" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="1" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2003" Name="Ice Blast" Level="160" Damage="140" ManaCost="13" StaminaCost="10" Distance="6" EffectRadio="6" Delay="400" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1000" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2003" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2004" Name="Death Fire" Level="50" Damage="160" ManaCost="5" StaminaCost="1" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="100" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2004" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="1" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2005" Name="Bursting Flare" Level="160" Damage="70" ManaCost="10" StaminaCost="13" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="100" RegAgility="200" ReqVitality="0" ReqEnergy="800" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2005" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="3" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2006" Name="Death Ice" Level="50" Damage="160" ManaCost="5" StaminaCost="1" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="50" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="100" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2006" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="1" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2007" Name="Beginner Bless" Level="8" Damage="0" ManaCost="20" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="8" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="52" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2007" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2008" Name="Beginner Recovery" Level="100" Damage="0" ManaCost="40" StaminaCost="10" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="272" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="168" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2008" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="2" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2009" Name="Beginner Basic Defense Improvement" Level="13" Damage="0" ManaCost="30" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="-1" Attribute="0" BuffIcon="347" ReqLevel="13" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="72" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2009" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2010" Name="Beginner Attack Power Improvement" Level="18" Damage="0" ManaCost="40" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="-1" Attribute="0" BuffIcon="346" ReqLevel="18" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="92" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2010" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2011" Name="Beginner Bless" Level="10" Damage="0" ManaCost="40" StaminaCost="10" Distance="6" EffectRadio="6" Delay="3000" Type="-1" Attribute="0" BuffIcon="348" ReqLevel="10" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="150" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2011" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="1" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2012" Name="Chaos Blade" Level="160" Damage="350" ManaCost="19" StaminaCost="14" Distance="3" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2012" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="105" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="700" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2013" Name="Havok Spear" Level="160" Damage="150" ManaCost="92" StaminaCost="20" Distance="6" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2013" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2014" Name="Spiral Charge" Level="120" Damage="0" ManaCost="21" StaminaCost="17" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="365" ReqLevel="120" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2014" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2015" Name="Crusher Charge" Level="120" Damage="0" ManaCost="21" StaminaCost="17" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="366" ReqLevel="120" ReqStrength="900" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2015" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2016" Name="Elemental Charge" Level="120" Damage="0" ManaCost="65" StaminaCost="20" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="367" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1073" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2016" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2017" Name="Chaos Blade Magic Explosion" Level="120" Damage="400" ManaCost="0" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2012" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="700" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2018" Name="Fire Blood Magic Explosion" Level="120" Damage="200" ManaCost="0" StaminaCost="0" Distance="6" EffectRadio="4" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="732" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="700" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2019" Name="Ice Blood Magic Explosion" Level="120" Damage="200" ManaCost="0" StaminaCost="0" Distance="6" EffectRadio="2" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="731" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="1" Stat1Value="700" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2020" Name="Havok Spear Nova" Level="120" Damage="200" ManaCost="0" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="1" Attribute="0" BuffIcon="0" ReqLevel="120" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2013" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="3" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="110" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2021" Name="Fixed Fire" Level="100" Damage="0" ManaCost="100" StaminaCost="50" Distance="0" EffectRadio="0" Delay="0" Type="1" Attribute="0" BuffIcon="380" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="300" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2021" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="1" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="0" Stat1Value="0" Stat2="0" Stat2Value="0" Disable="0"/> <Skill ID="2022" Name="Bond" Level="0" Damage="0" ManaCost="0" StaminaCost="0" Distance="0" EffectRadio="4" Delay="0" Type="-1" Attribute="0" BuffIcon="0" ReqLevel="0" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2022" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2023" Name="Raining Arrow" Level="160" Damage="65" ManaCost="15" StaminaCost="7" Distance="7" EffectRadio="7" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1302" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2023" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2024" Name="Dex Booster" Level="100" Damage="0" ManaCost="10" StaminaCost="12" Distance="0" EffectRadio="0" Delay="50000" Type="-1" Attribute="0" BuffIcon="395" ReqLevel="100" ReqStrength="0" RegAgility="500" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2024" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2025" Name="Holy Bolt" Level="110" Damage="777" ManaCost="20" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="110" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1200" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2025" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="3" Stat1Value="150" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2026" Name="Improve Elemental Attack Power" Level="100" Damage="0" ManaCost="40" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="396" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1500" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2026" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2027" Name="Improve Elemental Defense" Level="100" Damage="0" ManaCost="40" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="397" ReqLevel="100" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="1500" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2027" AllowDW="0" AllowDK="0" AllowElf="3" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2028" Name="Charge Slash" Level="25" Damage="80" ManaCost="3" StaminaCost="0" Distance="6" EffectRadio="6" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="25" ReqStrength="0" RegAgility="80" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2028" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="1" Animation="1" ElementAttribute="6" ElementBonusDamage="115" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="100" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2029" Name="Wind Glaive" Level="45" Damage="150" ManaCost="6" StaminaCost="0" Distance="5" EffectRadio="3" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="45" ReqStrength="0" RegAgility="650" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2029" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="1" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2030" Name="Blade Storm" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2030" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2031" Name="Illusion Avatar" Level="100" Damage="200" ManaCost="40" StaminaCost="0" Distance="6" EffectRadio="0" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="100" ReqStrength="0" RegAgility="900" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2031" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="2" Animation="1" ElementAttribute="6" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="80" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2032" Name="Illusion Blade" Level="25" Damage="0" ManaCost="40" StaminaCost="0" Distance="0" EffectRadio="0" Delay="0" Type="-1" Attribute="0" BuffIcon="405" ReqLevel="25" ReqStrength="0" RegAgility="0" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2032" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="1" Animation="1" ElementAttribute="0" ElementBonusDamage="100" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="-1" Stat1Value="-1" Stat2="-1" Stat2Value="-1" Disable="0"/> <!-- Season 19 Part 1- 3 --> <Skill ID="2033" Name="Nuke - Spear Of Judgement" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2033" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="3" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2034" Name="Bolt-Black Hole" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2034" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="3" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2035" Name="WideArea-Wheelwind" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2035" AllowDW="3" AllowDK="3" AllowElf="3" AllowMG="3" AllowDL="3" AllowSum="3" AllowRF="3" AllowGL="3" AllowRW="3" AllowSL="3" AllowGC="3" AllowLW="3" AllowLM="3" AllowIK="3" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2036" Name="Oversting" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2036" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2085" Name="Wild Breath" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2085" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2037" Name="Meteostorm of Gale" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2037" AllowDW="5" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2040" Name="Saturating Sword Blow" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2040" AllowDW="0" AllowDK="5" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2043" Name="Gale of Destruction" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2043" AllowDW="0" AllowDK="5" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2044" Name="Raining Arrow of Saturation" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2044" AllowDW="0" AllowDK="0" AllowElf="5" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2047" Name="Holy Bolt of Gale" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2047" AllowDW="0" AllowDK="0" AllowElf="5" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2049" Name="Chaos Blade of Saturation" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2049" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="5" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2051" Name="Havok Sphere of Anger" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2051" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="5" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2054" Name="Wind Soul of Saturation" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2054" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="5" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2058" Name="Fire Beast of Saturation" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2058" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="5" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2060" Name="Deathside of Fury" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2060" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="5" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2061" Name="Dark side of saturation" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2061" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="5" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2063" Name="Review of Spirit of Saturation" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2063" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="5" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2065" Name="Oversting of saturation" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2065" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="5" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2068" Name="Gale Lightning Storm" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2068" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="5" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2071" Name="Fierce Attack of Saturation" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2071" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="5" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2073" Name="Gale's Bursting Flare" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2073" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="5" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2076" Name="Ultimate Force of Saturation" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2076" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="5" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2080" Name="Spearstorm of Saturation" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2080" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="5" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2082" Name="Bladestorm of Saturation" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2082" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="5" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2086" Name="Nuke (activated)" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2086" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2087" Name="Bolt (activated)" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2087" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2088" Name="Wide area (activated)" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2088" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="0" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="3" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> <Skill ID="2089" Name="Gale Wild Breath" Level="160" Damage="220" ManaCost="10" StaminaCost="10" Distance="6" EffectRadio="5" Delay="0" Type="0" Attribute="0" BuffIcon="0" ReqLevel="160" ReqStrength="0" RegAgility="1150" ReqVitality="0" ReqEnergy="0" ReqLeaderShip="0" ReqKillCount="0" Status1="0" Status2="0" Status3="0" BaseSkill="2089" AllowDW="0" AllowDK="0" AllowElf="0" AllowMG="0" AllowDL="0" AllowSum="0" AllowRF="0" AllowGL="3" AllowRW="0" AllowSL="0" AllowGC="0" AllowLW="0" AllowLM="0" AllowIK="0" Animation="1" ElementAttribute="6" ElementBonusDamage="190" AttackDelay="0" MountCheck="0" PVMDamage="100" PVPDamage="100" Stat1="2" Stat1Value="50" Stat2="-1" Stat2Value="-1" Disable="0"/> </SkillList>
|