GuildWiki

GuildWiki has been locked down: anonymous editing and account creation are disabled. Current registered users are unaffected. Leave any comments on the Community Portal.

READ MORE

GuildWiki
(added explanation of the diffrence of the new O begining format)
 
(30 intermediate revisions by 14 users not shown)
Line 1: Line 1:
 
==Overall Format==
 
==Overall Format==
The skill template is a single line that is a base64 encoded bit stream as defined in [http://www.faqs.org/rfcs/rfc3548.html rfc3548] using + and / as the 62nd and 63rd characters respectively.
+
The skill template is a single line that is a based on base64 encoded bit stream as defined in [http://www.faqs.org/rfcs/rfc3548.html rfc3548]. The difference between Base64 and the Skill template format is the use of + and / as the 62nd and 63rd characters respectively, and all binary codes should be used and interpreted in the ''lowest-bit-first order''.
   
 
Numbers of varying number of bits are placed into the bitstream, in the following sequence:
 
Numbers of varying number of bits are placed into the bitstream, in the following sequence:
   
 
If generated before 4/5/2007 update:
 
If generated before 4/5/2007 update:
*4 bits - always 0, assumed to indicate the version and that this is a Skill Template.
+
*4 bits - always 0, Version number of the Skill Template.
  +
  +
 
If generated after 4/5/2007 update:
 
If generated after 4/5/2007 update:
*4 bits - always 14, indicates version and that this is a Skill Template
+
*4 bits - always 14, Indicates that this is a Skill Template
*4 bits - always 0, could be used for race in upcoming GW:EN
+
*4 bits - always 0, Version number of the skill Template
  +
The next bits also wary:
 
  +
*2 bits - always 0, perhaps reserved to indicate size of profession fields. If began with 0
 
*6 bits - always 0. if began with 14
 
 
The rest is the same before and after the update:
 
The rest is the same before and after the update:
  +
*4 bits - Primary profession (see table below)
 
  +
''Profession information''
*4 bits - Secondary profession (see table below)
 
  +
*2 bits - Code to calculate the number of encoded bits per profession code ('p'). To calculate p, double it and add 4 (p=code*2+4).
  +
*p bits - Primary profession (see table below)
  +
*p bits - Secondary profession (see table below)
  +
  +
''Attributes information''
 
*4 bits - The number of attributes specified in the template
 
*4 bits - The number of attributes specified in the template
*4 bits - Size of attribute codes. All attribute codes are the same size, and the size (in bits) is equal to 4 plus this number. For example, if the size is 2, each of the attribute codes will be 6 bits.
+
*4 bits - Code to calculate the number of encoded bits of the attribute codes ('a'). All attribute codes are the same size, and the size (in bits) is equal to 4 plus this number (a=code+4).
*Sequence of attribute codes and values
+
*Per attribute:
**(4 + size) bits - attribute code (see table below)
+
**a bits - attribute code (see table below)
 
**4 bits - value of attribute, this is 1 - 12, and does not take into account runes, headgear, etc.
 
**4 bits - value of attribute, this is 1 - 12, and does not take into account runes, headgear, etc.
*4 bits - Size of the skill codes. This works in the same way as the attribute size, except that each skill code is (8 + size) bits.
 
*Sequence of exactly 8 skill codes
 
**(8 + size) bits - skill code (see table below)
 
   
  +
''Skill information''
===Octal to base 64===
 
  +
*4 bits - Code to calculate then number of encoded bits of the skill codes ('s). All skill codes are the same size, and the size (in bits) is equal to 8 plus this number (s=code+8).
Windows Calculator can convert base 10 to octal (base 8) while in scientific calculator mode, and pairs of octal digits can be easily be converted to base 64 digits using this table.
 
  +
*Per skill (eight times):
  +
**s bits - skill code (see table below)
  +
  +
===Base 64 Code Table===
  +
Windows Calculator can convert base 10 to octal (base 8) while in scientific calculator mode, and pairs of octal digits can be easily converted to base 64 digits with lowest-bit-first using this table.
   
 
{| {{STDT}}
 
{| {{STDT}}
 
|-
 
|-
|00||A||10||I||20||Q||30||Y||40||g||50||o||60||w||70||4
+
!Dec||Oct||Char||Dec||Oct||Char||Dec||Oct||Char||Dec||Oct||Char||Dec||Oct||Char||Dec||Oct||Char||Dec||Oct||Char||Dec||Oct||Char
 
|-
 
|-
|01||B||11||J||21||R||31||Z||41||h||51||p||61||x||71||5
+
|00||00||'''A'''||08||10||'''I'''||16||20||'''Q'''||24||30||'''Y'''||32||40||'''g'''||40||50||'''o'''||48||60||'''w'''||56||70||'''4'''
 
|-
 
|-
|02||C||12||K||22||S||32||a||42||i||52||q||62||y||72||6
+
|01||01||'''B'''||09||11||'''J'''||17||21||'''R'''||25||31||'''Z'''||33||41||'''h'''||41||51||'''p'''||49||61||'''x'''||57||71||'''5'''
 
|-
 
|-
|03||D||13||L||23||T||33||b||43||j||53||r||63||z||73||7
+
|02||02||'''C'''||10||12||'''K'''||18||22||'''S'''||26||32||'''a'''||34||42||'''i'''||42||52||'''q'''||50||62||'''y'''||58||72||'''6'''
 
|-
 
|-
|04||E||14||M||24||U||34||c||44||k||54||s||64||0||74||8
+
|03||03||'''D'''||11||13||'''L'''||19||23||'''T'''||27||33||'''b'''||35||43||'''j'''||43||53||'''r'''||51||63||'''z'''||59||73||'''7'''
 
|-
 
|-
|05||F||15||N||25||V||35||d||45||l||55||t||65||1||75||9
+
|04||04||'''E'''||12||14||'''M'''||20||24||'''U'''||28||34||'''c'''||36||44||'''k'''||44||54||'''s'''||52||64||'''0'''||60||74||'''8'''
 
|-
 
|-
|06||G||16||O||26||W||36||e||46||m||56||u||66||2||76||+
+
|05||05||'''F'''||13||15||'''N'''||21||25||'''V'''||29||35||'''d'''||37||45||'''l'''||45||55||'''t'''||53||65||'''1'''||61||75||'''9'''
 
|-
 
|-
|07||H||17||P||27||X||37||f||47||n||57||v||67||3||77||/
+
|06||06||'''G'''||14||16||'''O'''||22||26||'''W'''||30||36||'''e'''||38||46||'''m'''||46||56||'''u'''||54||66||'''2'''||62||76||'''+'''
  +
|-
  +
|07||07||'''H'''||15||17||'''P'''||23||27||'''X'''||31||37||'''f'''||39||47||'''n'''||47||57||'''v'''||55||67||'''3'''||63||77||'''/'''
 
|}
 
|}
   
 
===Example===
 
===Example===
The following example shows how to decypher the skill template ''AxNREp8XH/CgJwEBBAAAXmAA'' which is a Warrior / Assassin build:
+
The following example shows how to decypher the skill template ''OwpiMypMBg1cxcBAMBdmtIKAA'' which is a Assassin/Dervish build:
  +
   
 
{| {{STDT}}
 
{| {{STDT}}
 
|- align= center
 
|- align= center
! Base64 code || colspan = 6 | A || colspan = 6 | x || colspan = 6 | N || colspan = 6 | R || colspan = 6 | E || colspan = 6 | p || colspan = 6 | etc.
+
! Base64 code || colspan = 6 | O || colspan = 6 | w || colspan = 6 | p || colspan = 6 | i || colspan = 6 | M || colspan = 6 | y || colspan = 6 | etc.
 
|- align= center
 
|- align= center
| Decimal || colspan = 6 | 0 || colspan = 6 | 49 || colspan = 6 | 13 || colspan = 6 | 17 || colspan = 6 | 4 || colspan = 6 | 41 || colspan = 6 | etc.
+
| Decimal || colspan = 6 | 14 || colspan = 6 | 48 || colspan = 6 | 41 || colspan = 6 | 34 || colspan = 6 | 12 || colspan = 6 | 50 || colspan = 6 | etc.
 
|- align= center
 
|- align= center
 
| rowspan=2 | Binary || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || 16 || 32 || etc.
 
| rowspan=2 | Binary || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || 16 || 32 || etc.
 
|- align= center
 
|- align= center
| 0 || 0 || 0 || 0 || 0 || 0 || 1 || 0 || 0 || 0 || 1 || 1 || 1 || 0 || 1 || 1 || 0 || 0 || 1 || 0 || 0 || 0 || 1 || 0 || 0 || 0 || 1 || 0 || 0 || 0 || 1 || 0 || 0 || 1 || 0 || 1 || etc.
+
| 0 || 1 || 1 || 1 || 0 || 0 || 0 || 0 || 0 || 0 || 1 || 1 || 1 || 0 || 0 || 1 || 0 || 1 || 0 || 1 || 0 || 0 || 0 || 1 || 0 || 0 || 1 || 1 || 0 || 0 || 0 || 1 || 0 || 0|| 1 || 1 || etc.
 
|- align= center
 
|- align= center
! Content || colspan=6 | Template<br>type || colspan=4 | Primary<br>Profession || colspan=4 | Secondary<br>Profession || colspan=4 | No. of<br>attributes || colspan=4 | Attribute<br>bit length || colspan=5 | Attribute 1 || colspan=4 | Attribute 1<br>rank || colspan=5 | Attribute 2 || etc.
+
! Content || colspan=4 | Type || colspan=4 | Version || colspan=2 | Profession<BR>bit length || colspan=4 | Primary<br>Profession || colspan=4 | Secondary<br>Profession || colspan=4 | No. of<br>attributes || colspan=4 | Attribute<br>bit length || colspan=6 | Attribute 1 || colspan=4 | Attribute 1<br>rank || etc.
 
|- align= center
 
|- align= center
| Binary || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || 1 || 2 || 4 || 8 || 1 || 2 || 4 || 8 || 1 || 2 || 4 || 8 || 1 || 2 || 4 || 8 || 16 || 1 || 2 || 4 || 8 ||1 || 2 || 4 || 8 || 16 || etc.
+
| Binary || 1 || 2 || 4 || 8 || 1 || 2 || 4 || 8 || 1 || 2 || 1 || 2 || 4 || 8 || 1 || 2 || 4 || 8 || 1 || 2 || 4 || 8 || 1 || 2 || 4 || 8 || 1 || 2 || 4 || 8 || 16 || 32 || 1 || 2 || 4 || 8 || etc.
 
|- align= center
 
|- align= center
| Decimal || colspan=6 | 0 || colspan=4 | 1 || colspan=4 | 7 || colspan=4 | 3 || colspan=4 | 1 || colspan=5 | 17 || colspan=4 | 8 || colspan=5 | 20 || etc.
+
| Decimal || colspan=4 | 14 || colspan=4 | 0 || colspan=2 | 0 || colspan=4 | 7 || colspan=4 | 10 || colspan=4 | 2 || colspan=4 | 2 || colspan=6 | 35 || colspan=4 | 12 || etc.
 
|- align= center
 
|- align= center
! Meaning || colspan=6 | Skill template || colspan=4 | Warrior || colspan=4 | Assassin || colspan=4 | 3 attributes || colspan=4 | 1 + 4 = 5 bit || colspan=5 | Strength || colspan=4 | 8 || colspan=5 | Swordsmanship || etc.
+
! Meaning || colspan=4 | Skill<BR>Template || colspan=4 | 0 || colspan=2 | 0*2+4=4 bits || colspan=4 | Assassin || colspan=4 | Dervish || colspan=4 | 2 attributes || colspan=4 | 2 + 4 = 6 bit || colspan=6 | Critical<BR>Strikes || colspan=4 | 12 || etc.
 
|}
 
|}
   
Line 139: Line 150:
 
'''Invalid skills''' can be found in game, nevertheless, like '''Locked Skills''', you cannot equip them (In most cases, they are monsters skills or skills left over from the prophecies alpha/beta versions of the game).
 
'''Invalid skills''' can be found in game, nevertheless, like '''Locked Skills''', you cannot equip them (In most cases, they are monsters skills or skills left over from the prophecies alpha/beta versions of the game).
   
  +
{{Skill Template format/skills}}
 
*0 - (blank)
 
*1 - [[Healing Signet]]
 
*2 - [[Resurrection Signet]]
 
*3 - [[Signet of Capture]]
 
*4 - [[BAMPH !]] (Locked Skill)
 
*5 - [[Power Block]]
 
*6 - [[Mantra of Earth]]
 
*7 - [[Mantra of Flame]]
 
*8 - [[Mantra of Frost]]
 
*9 - [[Mantra of Lightning]]
 
*10 - [[Hex Breaker]]
 
*11 - [[Distortion]]
 
*12 - [[Mantra of Celerity]] (Locked Skill)
 
*13 - [[Mantra of Recovery]]
 
*14 - [[Mantra of Persistence]]
 
*15 - [[Mantra of Inscriptions]]
 
*16 - [[Mantra of Concentration]]
 
*17 - [[Mantra of Resolve]]
 
*18 - [[Mantra of Signets]]
 
*19 - [[Fragility]]
 
*20 - [[Confusion]] (Locked Skill)
 
*21 - [[Inspired Enchantment]]
 
*22 - [[Inspired Hex]]
 
*23 - [[Power Spike]]
 
*24 - [[Power Leak]]
 
*25 - [[Power Drain]]
 
*26 - [[Empathy]]
 
*27 - [[Shatter Delusions]]
 
*28 - [[Backfire]]
 
*29 - [[Blackout]]
 
*30 - [[Diversion]]
 
*31 - [[Conjure Phantasm]]
 
*32 - [[Illusion of Weakness]]
 
*33 - [[Illusionary Weaponry]]
 
*34 - [[Sympathetic Visage]]
 
*35 - [[Ignorance]]
 
*36 - [[Arcane Conundrum]]
 
*37 - [[Illusion of Haste]]
 
*38 - [[Channeling]]
 
*39 - [[Energy Surge]]
 
*40 - [[Ether Feast]]
 
*41 - [[Ether Lord]]
 
*42 - [[Energy Burn]]
 
*43 - [[Clumsiness]]
 
*44 - [[Phantom Pain]]
 
*45 - [[Ethereal Burden]]
 
*46 - [[Guilt]]
 
*47 - [[Ineptitude]]
 
*48 - [[Spirit of Failure]]
 
*49 - [[Mind Wrack]]
 
*50 - [[Wastrel's Worry]]
 
*51 - [[Shame]]
 
*52 - [[Panic]]
 
*53 - [[Migraine]]
 
*54 - [[Crippling Anguish]]
 
*55 - [[Fevered Dreams]]
 
*56 - [[Soothing Images]]
 
*57 - [[Cry of Frustration]]
 
*58 - [[Signet of Midnight]]
 
*59 - [[Signet of Weariness]]
 
*60 - [[Signet of Illusions]]
 
*61 - [[Leech Signet]]
 
*62 - [[Signet of Humility]]
 
*63 - [[Keystone Signet]]
 
*64 - [[Mimic]] (Locked Skill)
 
*65 - [[Arcane Mimicry]]
 
*66 - [[Spirit Shackles]]
 
*67 - [[Shatter Hex]]
 
*68 - [[Drain Enchantment]]
 
*69 - [[Shatter Enchantment]]
 
*70 - [[Disappear]] (Locked Skill)
 
*71 - [[Unnatural Signet]] (Locked Skill)
 
*72 - [[Elemental Resistance]]
 
*73 - [[Physical Resistance]]
 
*74 - [[Echo]]
 
*75 - [[Arcane Echo]]
 
*76 - [[Imagined Burden]]
 
*77 - [[Chaos Storm]]
 
*78 - [[Epidemic]]
 
*79 - [[Energy Drain]]
 
*80 - [[Energy Tap]]
 
*81 - [[Arcane Thievery]]
 
*82 - [[Mantra of Recall]]
 
*83 - [[Animate Bone Horror]]
 
*84 - [[Animate Bone Fiend]]
 
*85 - [[Animate Bone Minions]]
 
*86 - [[Grenth's Balance]]
 
*87 - [[Verata's Gaze]]
 
*88 - [[Verata's Aura]]
 
*89 - [[Deathly Chill]]
 
*90 - [[Verata's Sacrifice]]
 
*91 - [[Well of Power]]
 
*92 - [[Well of Blood]]
 
*93 - [[Well of Suffering]]
 
*94 - [[Well of the Profane]]
 
*95 - [[Putrid Explosion]]
 
*96 - [[Soul Feast]]
 
*97 - [[Necrotic Traversal]]
 
*98 - [[Consume Corpse]]
 
*99 - [[Parasitic Bond]]
 
*100 - [[Soul Barbs]]
 
*101 - [[Barbs]]
 
*102 - [[Shadow Strike]]
 
*103 - [[Price of Failure]]
 
*104 - [[Death Nova]]
 
*105 - [[Deathly Swarm]]
 
*106 - [[Rotting Flesh]]
 
*107 - [[Virulence]]
 
*108 - [[Suffering]]
 
*109 - [[Life Siphon]]
 
*110 - [[Unholy Feast]]
 
*111 - [[Awaken the Blood]]
 
*112 - [[Desecrate Enchantments]]
 
*113 - [[Tainted Flesh]]
 
*114 - [[Aura of the Lich]]
 
*115 - [[Blood Renewal]]
 
*116 - [[Dark Aura]]
 
*117 - [[Enfeeble]]
 
*118 - [[Enfeebling Blood]]
 
*119 - [[Blood is Power]]
 
*120 - [[Blood of the Master]]
 
*121 - [[Spiteful Spirit]]
 
*122 - [[Malign Intervention]]
 
*123 - [[Insidious Parasite]]
 
*124 - [[Spinal Shivers]]
 
*125 - [[Wither]]
 
*126 - [[Life Transfer]]
 
*127 - [[Mark of Subversion]]
 
*128 - [[Soul Leech]]
 
*129 - [[Defile Flesh]]
 
*130 - [[Demonic Flesh]]
 
*131 - [[Barbed Signet]]
 
*132 - [[Plague Signet]]
 
*133 - [[Dark Pact]]
 
*134 - [[Order of Pain]]
 
*135 - [[Faintheartedness]]
 
*136 - [[Shadow of Fear]]
 
*137 - [[Rigor Mortis]]
 
*138 - [[Dark Bond]]
 
*139 - [[Infuse Condition]]
 
*140 - [[Malaise]]
 
*141 - [[Rend Enchantments]]
 
*142 - [[Lingering Curse]]
 
*143 - [[Strip Enchantment]]
 
*144 - [[Chilblains]]
 
*145 - [[Signet of Agony]]
 
*146 - [[Offering of Blood]]
 
*147 - [[Dark Fury]]
 
*148 - [[Order of the Vampire]]
 
*149 - [[Plague Sending]]
 
*150 - [[Mark of Pain]]
 
*151 - [[Feast of Corruption]]
 
*152 - [[Taste of Death]]
 
*153 - [[Vampiric Gaze]]
 
*154 - [[Plague Touch]]
 
*155 - [[Vile Touch]]
 
*156 - [[Vampiric Touch]]
 
*157 - [[Blood Ritual]]
 
*158 - [[Touch of Agony]]
 
*159 - [[Weaken Armor]]
 
*160 - [[Windborne Speed]]
 
*161 - [[Lightning Storm]] (Locked Skill)
 
*162 - [[Gale]]
 
*163 - [[Whirlwind]]
 
*164 - [[Elemental Attunement]]
 
*165 - [[Armor of Earth]]
 
*166 - [[Kinetic Armor]]
 
*167 - [[Eruption]]
 
*168 - [[Magnetic Aura]]
 
*169 - [[Earth Attunement]]
 
*170 - [[Earthquake]]
 
*171 - [[Stoning]]
 
*172 - [[Stone Daggers]]
 
*173 - [[Grasping Earth]]
 
*174 - [[Aftershock]]
 
*175 - [[Ward Against Elements]]
 
*176 - [[Ward Against Melee]]
 
*177 - [[Ward Against Foes]]
 
*178 - [[Ether Prodigy]]
 
*179 - [[Incendiary Bonds]]
 
*180 - [[Aura of Restoration]]
 
*181 - [[Ether Renewal]]
 
*182 - [[Conjure Flame]]
 
*183 - [[Inferno]]
 
*184 - [[Fire Attunement]]
 
*185 - [[Mind Burn]]
 
*186 - [[Fireball]]
 
*187 - [[Meteor]]
 
*188 - [[Flame Burst]]
 
*189 - [[Rodgort's Invocation]]
 
*190 - [[Mark of Rodgort]]
 
*191 - [[Immolate]]
 
*192 - [[Meteor Shower]]
 
*193 - [[Phoenix]]
 
*194 - [[Flare]]
 
*195 - [[Lava Font]]
 
*196 - [[Searing Heat]]
 
*197 - [[Fire Storm]]
 
*198 - [[Glyph of Elemental Power]]
 
*199 - [[Glyph of Energy]]
 
*200 - [[Glyph of Lesser Energy]]
 
*201 - [[Glyph of Concentration]]
 
*202 - [[Glyph of Sacrifice]]
 
*203 - [[Glyph of Renewal]]
 
*204 - [[Rust]]
 
*205 - [[Lightning Surge]]
 
*206 - [[Armor of Frost]]
 
*207 - [[Conjure Frost]]
 
*208 - [[Water Attunement]]
 
*209 - [[Mind Freeze]]
 
*210 - [[Ice Prison]]
 
*211 - [[Ice Spikes]]
 
*212 - [[Frozen Burst]]
 
*213 - [[Shard Storm]]
 
*214 - [[Ice Spear]]
 
*215 - [[Maelstrom]]
 
*216 - [[Iron Mist]]
 
*217 - [[Crystal Wave]]
 
*218 - [[Obsidian Flesh]]
 
*219 - [[Obsidian Flame]]
 
*220 - [[Blinding Flash]]
 
*221 - [[Conjure Lightning]]
 
*222 - [[Lightning Strike]]
 
*223 - [[Chain Lightning]]
 
*224 - [[Enervating Charge]]
 
*225 - [[Air Attunement]]
 
*226 - [[Mind Shock]]
 
*227 - [[Glimmering Mark]]
 
*228 - [[Thunderclap]]
 
*229 - [[Lightning Orb]]
 
*230 - [[Lightning Javelin]]
 
*231 - [[Shock]]
 
*232 - [[Lightning Touch]]
 
*233 - [[Swirling Aura]]
 
*234 - [[Deep Freeze]]
 
*235 - [[Blurred Vision]]
 
*236 - [[Mist Form]]
 
*237 - [[Water Trident]]
 
*238 - [[Armor of Mist]]
 
*239 - [[Ward Against Harm]]
 
*240 - [[Smite]]
 
*241 - [[Life Bond]]
 
*242 - [[Balthazar's Spirit]]
 
*243 - [[Strength of Honor]]
 
*244 - [[Life Attunement]]
 
*245 - [[Protective Spirit]]
 
*246 - [[Divine Intervention]]
 
*247 - [[Symbol of Wrath]]
 
*248 - [[Retribution]]
 
*249 - [[Holy Wrath]]
 
*250 - [[Essence Bond]]
 
*251 - [[Scourge Healing]]
 
*252 - [[Banish]]
 
*253 - [[Scourge Sacrifice]]
 
*254 - [[Vigorous Spirit]]
 
*255 - [[Watchful Spirit]]
 
*256 - [[Blessed Aura]]
 
*257 - [[Aegis]]
 
*258 - [[Guardian]]
 
*259 - [[Shield of Deflection]]
 
*260 - [[Aura of Faith]]
 
*261 - [[Shield of Regeneration]]
 
*262 - [[Shield of Judgment]]
 
*263 - [[Protective Bond]]
 
*264 - [[Pacifism]]
 
*265 - [[Amity]]
 
*266 - [[Peace and Harmony]]
 
*267 - [[Judge's Insight]]
 
*268 - [[Unyielding Aura]]
 
*269 - [[Mark of Protection]]
 
*270 - [[Life Barrier]]
 
*271 - [[Zealot's Fire]]
 
*272 - [[Balthazar's Aura]]
 
*273 - [[Spell Breaker]]
 
*274 - [[Healing Seed]]
 
*275 - [[Mend Condition]]
 
*276 - [[Restore Condition]]
 
*277 - [[Mend Ailment]]
 
*278 - [[Purge Conditions]]
 
*279 - [[Divine Healing]]
 
*280 - [[Heal Area]]
 
*281 - [[Orison of Healing]]
 
*282 - [[Word of Healing]]
 
*283 - [[Dwayna's Kiss]]
 
*284 - [[Divine Boon]]
 
*285 - [[Healing Hands]]
 
*286 - [[Heal Other]]
 
*287 - [[Heal Party]]
 
*288 - [[Healing Breeze]]
 
*289 - [[Vital Blessing]]
 
*290 - [[Mending]]
 
*291 - [[Live Vicariously]]
 
*292 - [[Infuse Health]]
 
*293 - [[Signet of Devotion]]
 
*294 - [[Signet of Judgment]]
 
*295 - [[Purge Signet]]
 
*296 - [[Bane Signet]]
 
*297 - [[Blessed Signet]]
 
*298 - [[Martyr]]
 
*299 - [[Shielding Hands]]
 
*300 - [[Contemplation of Purity]]
 
*301 - [[Remove Hex]]
 
*302 - [[Smite Hex]]
 
*303 - [[Convert Hexes]]
 
*304 - [[Light of Dwayna]]
 
*305 - [[Resurrect]]
 
*306 - [[Rebirth]]
 
*307 - [[Reversal of Fortune]]
 
*308 - [[Succor]]
 
*309 - [[Holy Veil]]
 
*310 - [[Divine Spirit]]
 
*311 - [[Draw Conditions]]
 
*312 - [[Holy Strike]]
 
*313 - [[Healing Touch]]
 
*314 - [[Restore Life]]
 
*315 - [[Vengeance]]
 
*316 - [["To the Limit!"]]
 
*317 - [[Battle Rage]]
 
*318 - [[Defy Pain]]
 
*319 - [[Rush]]
 
*320 - [[Hamstring]]
 
*321 - [[Wild Blow]]
 
*322 - [[Power Attack]]
 
*323 - [[Desperation Blow]]
 
*324 - [[Thrill of Victory]]
 
*325 - [[Distracting Blow]]
 
*326 - [[Protector's Strike]]
 
*327 - [[Griffon's Sweep]]
 
*328 - [[Pure Strike]]
 
*329 - [[Skull Crack]]
 
*330 - [[Cyclone Axe]]
 
*331 - [[Hammer Bash]]
 
*332 - [[Bull's Strike]]
 
*333 - [["I Will Avenge You!"]]
 
*334 - [[Axe Rake]]
 
*335 - [[Cleave]]
 
*336 - [[Executioner's Strike]]
 
*337 - [[Dismember]]
 
*338 - [[Eviscerate]]
 
*339 - [[Penetrating Blow]]
 
*340 - [[Disrupting Chop]]
 
*341 - [[Swift Chop]]
 
*342 - [[Axe Twist]]
 
*343 - [["For Great Justice!"]]
 
*344 - [[Flurry]]
 
*345 - [[Defensive Stance]]
 
*346 - [[Frenzy]]
 
*347 - [[Endure Pain]]
 
*348 - [["Watch Yourself!"]]
 
*349 - [[Sprint]]
 
*350 - [[Belly Smash]]
 
*351 - [[Mighty Blow]]
 
*352 - [[Crushing Blow]]
 
*353 - [[Crude Swing]]
 
*354 - [[Earth Shaker]]
 
*355 - [[Devastating Hammer]]
 
*356 - [[Irresistible Blow]]
 
*357 - [[Counter Blow]]
 
*358 - [[Backbreaker]]
 
*359 - [[Heavy Blow]]
 
*360 - [[Staggering Blow]]
 
*361 - [[Dolyak Signet]]
 
*362 - [[Warrior's Cunning]]
 
*363 - [[Shield Bash]]
 
*364 - [["Charge!"]]
 
*365 - [["Victory is Mine!"]]
 
*366 - [["Fear Me!"]]
 
*367 - [["Shields Up!"]]
 
*368 - [["I Will Survive!"]]
 
*369 - [["Don't Believe Their Lies!"]] (Locked Skill)
 
*370 - [[Berserker Stance]]
 
*371 - [[Balanced Stance]]
 
*372 - [[Gladiator's Defense]]
 
*373 - [[Deflect Arrows]]
 
*374 - [[Warrior's Endurance]]
 
*375 - [[Dwarven Battle Stance]]
 
*376 - [[Disciplined Stance]]
 
*377 - [[Wary Stance]]
 
*378 - [[Shield Stance]]
 
*379 - [[Bull's Charge]]
 
*380 - [[Bonetti's Defense]]
 
*381 - [[Hundred Blades]]
 
*382 - [[Sever Artery]]
 
*383 - [[Galrath Slash]]
 
*384 - [[Gash]]
 
*385 - [[Final Thrust]]
 
*386 - [[Seeking Blade]]
 
*387 - [[Riposte]]
 
*388 - [[Deadly Riposte]]
 
*389 - [[Flourish]]
 
*390 - [[Savage Slash]]
 
*391 - [[Hunter's Shot]]
 
*392 - [[Pin Down]]
 
*393 - [[Crippling Shot]]
 
*394 - [[Power Shot]]
 
*395 - [[Barrage]]
 
*396 - [[Dual Shot]]
 
*397 - [[Quick Shot]]
 
*398 - [[Penetrating Attack]]
 
*399 - [[Distracting Shot]]
 
*400 - [[Precision Shot]]
 
*401 - [[Splinter Shot]]
 
*402 - [[Determined Shot]]
 
*403 - [[Called Shot]]
 
*404 - [[Poison Arrow]]
 
*405 - [[Oath Shot]]
 
*406 - [[Debilitating Shot]]
 
*407 - [[Point Blank Shot]]
 
*408 - [[Concussion Shot]]
 
*409 - [[Punishing Shot]]
 
*410 - [[Call of Ferocity]] (Locked Skill)
 
*411 - [[Charm Animal]]
 
*412 - [[Call of Protection]]
 
*413 - [[Call of Elemental Protection]] (Locked Skill)
 
*414 - [[Call of Vitality]] (Locked Skill)
 
*415 - [[Call of Haste]]
 
*416 - [[Call of Healing]] (Locked Skill)
 
*417 - [[Call of Resilience]] (Locked Skill)
 
*418 - [[Call of Feeding]] (Locked Skill)
 
*419 - [[Call of the Hunter]] (Locked Skill)
 
*420 - [[Call of Brutality]] (Locked Skill)
 
*421 - [[Call of Disruption]] (Locked Skill)
 
*422 - [[Revive Animal]]
 
*423 - [[Symbiotic Bond]]
 
*424 - [[Throw Dirt]]
 
*425 - [[Dodge]]
 
*426 - [[Savage Shot]]
 
*427 - [[Antidote Signet]]
 
*428 - [[Incendiary Arrows]]
 
*429 - [[Melandru's Arrows]]
 
*430 - [[Marksman's Wager]]
 
*431 - [[Ignite Arrows]]
 
*432 - [[Read the Wind]]
 
*433 - [[Kindle Arrows]]
 
*434 - [[Choking Gas]]
 
*435 - [[Apply Poison]]
 
*436 - [[Comfort Animal]]
 
*437 - [[Bestial Pounce]]
 
*438 - [[Maiming Strike]]
 
*439 - [[Feral Lunge]]
 
*440 - [[Scavenger Strike]]
 
*441 - [[Melandru's Assault]]
 
*442 - [[Ferocious Strike]]
 
*443 - [[Predator's Pounce]]
 
*444 - [[Brutal Strike]]
 
*445 - [[Disrupting Lunge]]
 
*446 - [[Troll Unguent]]
 
*447 - [[Otyugh's Cry]]
 
*448 - [[Escape]]
 
*449 - [[Practiced Stance]]
 
*450 - [[Whirling Defense]]
 
*451 - [[Melandru's Resilience]]
 
*452 - [[Dryder's Defenses]]
 
*453 - [[Lightning Reflexes]]
 
*454 - [[Tiger's Fury]]
 
*455 - [[Storm Chaser]]
 
*456 - [[Serpent's Quickness]]
 
*457 - [[Dust Trap]]
 
*458 - [[Barbed Trap]]
 
*459 - [[Flame Trap]]
 
*460 - [[Healing Spring]]
 
*461 - [[Spike Trap]]
 
*462 - [[Winter]]
 
*463 - [[Winnowing]]
 
*464 - [[Edge of Extinction]]
 
*465 - [[Greater Conflagration]]
 
*466 - [[Conflagration]]
 
*467 - [[Fertile Season]]
 
*468 - [[Symbiosis]]
 
*469 - [[Primal Echoes]]
 
*470 - [[Predatory Season]]
 
*471 - [[Frozen Soil]]
 
*472 - [[Favorable Winds]]
 
*473 - [[High Winds]] (Locked Skill)
 
*474 - [[Energizing Wind]]
 
*475 - [[Quickening Zephyr]]
 
*476 - [[Nature's Renewal]]
 
*477 - [[Muddy Terrain]]
 
*478 - [[Bleeding]] (Invalid)
 
*479 - [[Blind]] (Invalid)
 
*480 - [[Burning]] (Invalid)
 
*481 - [[Crippled]] (Invalid)
 
*482 - [[Deep Wound]] (Invalid)
 
*483 - [[Disease]] (Invalid)
 
*484 - [[Poison]] (Invalid)
 
*485 - [[Dazed]] (Invalid)
 
*486 - [[Weakness]] (Invalid)
 
*487 - [[Cleansed]] (Invalid)
 
*488 - [[Eruption]] (Locked Skill)
 
*489 - [[Fire Storm]] (Locked Skill)
 
*490 - [[Vital Blessing]] (Locked Skill)
 
*491 - [[Fount of Maguuma]] (Invalid)
 
*492 - [[Healing Fountain]] (Invalid)
 
*493 - [[Icy Ground]] (Invalid)
 
*494 - [[Maelstrom]] (Locked Skill)
 
*495 - [[Mursaat Tower]] (Invalid)
 
*496 - [[Quick Sand]] (Invalid)
 
*497 - [[Curse of the Bloodstone]] (Invalid)
 
*498 - [[Chain Lightning]] (Locked Skill)
 
*499 - [[Obelisk Lightning]] (Locked Skill)
 
*500 - [[Tar]] (Invalid)
 
*501 - [[Siege Attack]] (Invalid)
 
*502 - [[Resurrect Party]] (Invalid)
 
*503 - [[Scepter of Orr's Aura]] (Invalid)
 
*504 - [[Scepter of Orr's Power]] (Invalid)
 
*505 - [[Burden Totem]] (Invalid)
 
*506 - [[Spinter Mine]] (Invalid)
 
*507 - [[Entanglement]] (Invalid)
 
*508 - [[Dwarven Powder Keg]] (Invalid)
 
*509 - [[Seed of Resurrection]] (Invalid)
 
*510 - [[Deafening Roar]] (Invalid)
 
*511 - [[Brutal Mauling]] (Invalid)
 
*512 - [[Crippling Attack]] (Invalid)
 
*513 - [[Charm Animal]] (Skill Locked)
 
*514 - [[Breaking Charm]] (Locked Skill)
 
*515 - [[Charr Buff]] (Locked Skill or invalid ? )
 
*516 - [[Claim Resource]] (Invalid)
 
*517 - [[Claim Resource]] (Invalid)
 
*518 - [[Claim Resource]] (Invalid)
 
*519 - [[Claim Resource]] (Invalid)
 
*520 - [[Claim Resource]] (Invalid)
 
*521 - [[Claim Resource]] (Invalid)
 
*522 - [[Claim Resource]] (Invalid)
 
*523 - [[Claim Resource]] (Invalid)
 
*524 - [[Dozen Shot]] (Locked Skill or invalid ? )
 
*525 - [[Nibble]] (Invalid)
 
*526 - [[Claim Resource]] (Invalid)
 
*527 - [[Claim Resource]] (Invalid)
 
*528 - [[Reflection]] (Locked Skill or invalid ? )
 
*529 - [[Spectral Agony]] (Locked Skill)
 
*530 - [[Giant Stomp]] (Invalid)
 
*531 - [[Agnar's Rage]] (Invalid)
 
*532 - [[Healing Breaze]] (Locked Skill)
 
*533 - [[Crystal Haze]] (Invalid)
 
*534 - [[Crystal Bonds]] (Invalid)
 
*535 - [[Jagged Crystal Skin]] (Invalid)
 
*536 - [[Crystal Hibernation]] (Invalid)
 
*537 - [[Stun Immunity]] (Locked Skill or invalid ? )
 
*538 - [[Invulnerability]] (Locked Skill or invalid ? )
 
*539 - [[Hunger of the Lich]] (Locked Skill or invalid ? )
 
*540 - [[Embrace the Pain]] (Locked Skill or invalid ? )
 
*541 - [[Life Vortex]] (Locked Skill or invalid ? )
 
*542 - [[Oracle Link]] (Locked Skill or invalid ? )
 
*543 - [[Guardian Pacify]] (Locked Skill or invalid ? )
 
*544 - [[Soul Vortex]] (Invalid)
 
*545 - [[Soul Vortex]] (Locked Skill)
 
*546 - [[Spectral Agony]] (Invalid)
 
*547 - [[Natural Resistance]] (Invalid)
 
*548 - [[Natural Resistance]] (Invalid)
 
*549 - [[Natural Resistance]] (Invalid)
 
*550 - [[Critical Hit Probability]] (Locked Skill or invalid ? )
 
*551 - [[Stun on Critical Hit]] (Locked Skill or invalid ? )
 
*552 - [[Blood Splattering]] (Locked Skill or invalid ? )
 
*553 - [[Inanimate Object]] (Locked Skill or invalid ? )
 
*554 - [[Undead Sensitivity to Light]] (Locked Skill or invalid ? )
 
*555 - [[Energy Boost]] (Locked Skill or invalid ? )
 
*556 - [[Health Drain]] (Locked Skill or invalid ? )
 
*557 - [[Immunity to Critical Hits]] (Locked Skill or invalid ? )
 
*558 - [[Titans get plus Health regen and set ennemies on fire each time he is hit]] (Locked Skill or invalid ? )
 
*559 - [[Undying]] (Locked Skill or invalid ? )
 
*560 - [[Resurrect]] (Locked Skill or invalid ? )
 
*561 - [[Seal Regen]] (Locked Skill or invalid ? )
 
*562 - [[Lightning Orb]] (Locked Skill or invalid ? )
 
*563 - [[Wurm Siege]] (Invalid)
 
*564 - [[Wurm Siege]] (Invalid)
 
*565 - [[Claim Resource]] (Invalid)
 
*566 - [[Shiver Touch]] (Locked Skill or invalid ? )
 
*567 - [[Spontaneous Combustion]] (Invalid)
 
*568 - [[Vanish]] (Locked Skill or invalid ? )
 
*569 - [["Victory or Death!"]] (Invalid)
 
*570 - [[Mark of Insecurity]]
 
*571 - [[Disrupting Dagger]]
 
*572 - [[Deadly Paradox]]
 
*573 - [[Teleport Players]] (Locked Skill or invalid ? )
 
*574 - [[Quest Skill for Coastal Exam]] (Locked Skill or invalid ? )
 
*575 - [[Holy Blessing]] (Invalid)
 
*576 - [[Statue's Blessing]] (Invalid)
 
*577 - [[Siege Attack]] (Locked Skill or invalid ? )
 
*578 - [[Siege Attack]] (Invalid)
 
*579 - [[Domain of Skill Damage]]
 
*580 - [[Domain of Energy Draining]]
 
*581 - [[Domain of Elements]]
 
*582 - [[Domain of Health Draining]]
 
*583 - [[Domain of Slow]]
 
*584 - [[Divine Fire]] (Invalid)
 
*585 - [[Swamp Water]] (Invalid)
 
*586 - [[Janthir's Gaze]] (Locked Skill or invalid ? )
 
*587 - [[Fake Spell]] (Locked Skill or invalid ? )
 
*588 - [[Charm Animal]] (Invalid)
 
*589 - [[Stormcaller]] (Invalid)
 
*590 - [[Knock]] (Invalid)
 
*591 - [[Quest Skill]] (Locked Skill or invalid ? )
 
*592 - [[Rurik Must Live]] (Locked Skill or invalid ? )
 
*593 - [[Concealment]] (Locked Skill or invalid ? )
 
*594 - [[Lich's Phylactery]] (Locked Skill or invalid ? )
 
*595 - [[Restore Life]] (Locked Skill)
 
*596 - [[Chimera of Intensity]] (Invalid)
 
*597 - [[(TEMP)Double Adrenaline Chance]] (Locked Skill)
 
*598 - [[(TEMP)Bonus Triple Adrenaline on Kill]] (Locked Skill)
 
*599 - [[(TEMP)Bonus AI]]
 
*600 - [[(TEMP)Armor Penetration]]
 
*601 - [[(TEMP)Armor Penetration Chance]]
 
*602 - [[(TEMP)Bonus AI Vs Damage Type]]
 
*603 - [[(TEMP)Bonus AI Vs Elemental Damage]]
 
*604 - [[(TEMP)Bonus AI Vs Physical Damage]]
 
*605 - [[(TEMP)Bonus AI Vs Species]]
 
*606 - [[(TEMP)Bonus AI While Attacking]]
 
*607 - [[(TEMP)Bonus AI While Casting]]
 
*608 - [[(TEMP)Bonus AI While Enchanted]]
 
*609 - [[[[(TEMP)Bonus AI While Health < 50%]]]]
 
*610 - [[[[(TEMP)Bonus AI While Health > 50%]]]]
 
*611 - [[(TEMP)Bonus AI While Hexed]]
 
*612 - [[(TEMP)1 Attrib]]
 
*613 - [[(TEMP)1 Attrib]]
 
*614 - [[(TEMP)Bonus Lengthen Condition]]
 
*615 - [[(TEMP)Bonus Shorten Condition]]
 
*616 - [[Bonus Damage]]
 
*617 - [[Bonus Damage]]
 
*618 - [[Bonus Damage]]
 
*619 - [[Bonus Damage]]
 
*620 - [[Bonus Damage]]
 
*621 - [[Bonus Damage]]
 
*622 - [[(TEMP)Bonus Damage While Enchanted]]
 
*623 - [[Bonus Damage]]
 
*624 - [[Bonus Damage]]
 
*625 - [[Bonus Damage]]
 
*626 - [[Bonus Damage]]
 
*627 - [[(TEMP)Bonus Energy]]
 
*628 - [[(TEMP)Bonus Energy While Enchanted]]
 
*629 - [[[[(TEMP)Bonus Energy While < 50% Health]]]]
 
*630 - [[[[(TEMP)Bonus Energy While Health > 50%]]]]
 
*631 - [[(TEMP)Bonus Energy While Hexed]]
 
*632 - [[(TEMP)Bonus Fast Attack]]
 
*633 - [[(TEMP)Bonus Fast Attack Chance]]
 
*634 - [[(TEMP)Bonus Fast Cast Chance]]
 
*635 - [[(TEMP)Bonus Fast Cast Chance Attrib]]
 
*636 - [[(TEMP)Bonus Fast Spell Recharge Chance]]
 
*637 - [[(TEMP)Bonus Fast Spell Recharge Chance Attrib]]
 
*638 - [[(TEMP)Bonus Gain Energy On Block]]
 
*639 - [[(TEMP)Bonus Gain Energy On Hit]]
 
*640 - [[(TEMP)Bonus Gain Energy On Parry]]
 
*641 - [[(TEMP)Bonus Gain Energy Using Attack Skill]]
 
*642 - [[(TEMP)Bonus Gain Energy When Blocked]]
 
*643 - [[(TEMP)Bonus Gain Health On Hit]]
 
*644 - [[(TEMP)Bonus Gain Health On Parry]]
 
*645 - [[(TEMP)Bonus Health]]
 
*646 - [[(TEMP)Bonus Health While Enchanted]]
 
*647 - [[(TEMP)Bonus Health While Hexed]]
 
*648 - [[(TEMP)Bonus Health While In Stance]]
 
*649 - [[(TEMP)Bonus Instant Spell Recharge]]
 
*650 - [[(TEMP)Reduce Damage Chance]]
 
*651 - [[(TEMP)Reduce Damage While Enchanted]]
 
*652 - [[(TEMP)Reduce Damage While Hexed]]
 
*653 - [[(TEMP)Reduce Damage While In Stance]]
 
*654 - [[Energy Stealing]]
 
*655 - [[Energy Stealing]]
 
*656 - [[Life Stealing]]
 
*657 - [[Life Stealing]]
 
*658 - [[(TEMP)% Miss]]
 
*659 - [[(TEMP)Reduce Armor While Attacking]]
 
*660 - [[(TEMP)Reduce Armor While Casting]]
 
*661 - [[(TEMP)Reduce Critical Hit]]
 
*662 - [[(TEMP)Reduce Damage]]
 
*663 - [[(TEMP)Lower Max Energy]]
 
*664 - [[(TEMP)Lower Energy Regen]]
 
*665 - [[(TEMP)Lower Max Health]]
 
*666 - [[(TEMP)Lower Health Regen]]
 
*667 - [[(TEMP)Slow Attack]]
 
*668 - [[(TEMP)Slow Cast]]
 
*669 - [[Infused]]
 
*670 - [[Regal]]
 
*671 - [[Imposing]]
 
*672 - [[Sleek]]
 
*673 - [[Costume]]
 
*674 - [[Animal]]
 
*675 - [[Cultist's]]
 
*676 - [[Ragged]]
 
*677 - [[Wicked]]
 
*678 - [[Necrotic]]
 
*679 - [[Vile]]
 
*680 - [[Devilish]]
 
*681 - [[Bloodstained]]
 
*682 - [[Storm]]
 
*683 - [[Stone]]
 
*684 - [[Savant's]]
 
*685 - [[Transcendent]]
 
*686 - [[Flame]]
 
*687 - [[Frost]]
 
*688 - [[Divine]]
 
*689 - [[Prophet's]]
 
*690 - [[Servant's]]
 
*691 - [[Defender's]]
 
*692 - [[Monk's]]
 
*693 - [[Absorption]]
 
*694 - [[Lieutenant's]]
 
*695 - [[Stoneskin]]
 
*696 - [[Brawler's]]
 
*697 - [[Axeman's]]
 
*698 - [[Piledriver's]]
 
*699 - [[Swordsman's]]
 
*700 - [[Tactician's]]
 
*701 - [[Tamer's]]
 
*702 - (hidden)
 
*703 - [[Hunter's]]
 
*704 - [[Expert's]]
 
*705 - [[Traveler's]]
 
*706 - [[Vigor]]
 
*707 - [[(TEMP)Attribute Nonstacking]]
 
*708 - [[(TEMP)Attribute Stacking]]
 
*709 - [[Domination]]
 
*710 - [[Fast Casting]]
 
*711 - [[Hex Disruption]]
 
*712 - [[Illusions]]
 
*713 - [[Inspiration]]
 
*714 - [[Blood Magic]]
 
*715 - [[Curses]]
 
*716 - [[Cursing]]
 
*717 - [[Death Magic]]
 
*718 - [[Necropathy]]
 
*719 - [[The Plague]]
 
*720 - [[Sacrifice]]
 
*721 - [[Feigned Sacrifice]]
 
*722 - [[Soul Reaping]]
 
*723 - [[Vampire]]
 
*724 - [[(TEMP)Increases Enchantment duration.]]
 
*725 - [[(TEMP)Increases Hex duration.]]
 
*726 - [[(TEMP)Increases Stance duration.]]
 
*727 - [[Thunder]]
 
*728 - [[Air Magic]]
 
*729 - [[Stone]]
 
*730 - [[Earth Magic]]
 
*731 - [[The Bibliophile]]
 
*732 - [[Energy Storage]]
 
*733 - [[Scintillation]]
 
*734 - [[Fire Magic]]
 
*735 - [[Fluidity]]
 
*736 - [[Water Magic]]
 
*737 - [[Purity]]
 
*738 - [[Blessings]]
 
*739 - [[Divine Favor]]
 
*740 - [[Peace]]
 
*741 - [[Healing]]
 
*742 - [[Rapid Healing]]
 
*743 - [[Protection]]
 
*744 - [[Justice]]
 
*745 - [[Smiting]]
 
*746 - [[Absorption]]
 
*747 - [[Fury]]
 
*748 - [[Might]]
 
*749 - [[Toughness]]
 
*750 - [[Axe Mastery]]
 
*751 - [[Hammer Mastery]]
 
*752 - [[Sword Mastery]]
 
*753 - [[Tactics]]
 
*754 - [[Beast Mastery]]
 
*755 - [[Marksmanship]]
 
*756 - [[Barrage]]
 
*757 - [[Rapid Shot]]
 
*758 - [[Deadliness]]
 
*759 - [[Preparation]]
 
*760 - [[Expertise]]
 
*761 - [[Survival]]
 
*762 - [[(TEMP)Unblockable]]
 
*763 - [[Jaundiced Gaze]]
 
*764 - [[Wail of Doom]]
 
*765 - [[Hero's Insight]]
 
*766 - [[Gaze of Contempt]]
 
*767 - [[Berzerker's Insight]]
 
*768 - [[Slayer's Insight]]
 
*769 - [[Viper's Defense]]
 
*770 - [[Return]]
 
*771 - [[Aura of Displacement]]
 
*772 - [[Generous Was Tsungrai]]
 
*773 - [[Mighty Was Vorizun]]
 
*774 - [[To The Death!]]
 
*775 - [[Death Blossom]]
 
*776 - [[Twisting Fangs]]
 
*777 - [[Horns of the Ox]]
 
*778 - [[Falling Spider]]
 
*779 - [[Black Lotus Strike]]
 
*780 - [[Fox Fangs]]
 
*781 - [[Moebius Strike]]
 
*782 - [[Jagged Strike]]
 
*783 - [[Unsuspecting Strike]]
 
*784 - [[Entangling Asp]]
 
*785 - [[Mark of Death]]
 
*786 - [[Iron Palm]]
 
*787 - [[Resilient Weapon]]
 
*788 - [[Blind Was Mingson]]
 
*789 - [[Grasping Was Kuurong]]
 
*790 - [[Vengeful Was Khanhei]]
 
*791 - [[Flesh of My Flesh]]
 
*792 - [[Splinter Weapon]]
 
*793 - [[Weapon of Warding]]
 
*794 - [[Wailing Weapon]]
 
*795 - [[Nightmare Weapon]]
 
*796 - [[Sorrow's Flame]]
 
*797 - [[Sorrow's Fist]]
 
*798 - [[Blast Furnace]]
 
*799 - [[Beguiling Haze]]
 
*800 - [[Enduring Toxin]]
 
*801 - [[Shroud of Silence]]
 
*802 - [[Expose Defenses]]
 
*803 - [[Power Leech]]
 
*804 - [[Arcane Languor]]
 
*805 - [[Animate Vampiric Horror]]
 
*806 - [[Cultist's Fervor]]
 
*807 - (hidden)
 
*808 - [[Reaper's Mark]]
 
*809 - [[Shatterstone]]
 
*810 - [[Protector's Defense]]
 
*811 - [[Run as One]]
 
*812 - [[Defiant Was Xinrae]]
 
*813 - [[Lyssa's Aura]]
 
*814 - [[Shadow Refuge]]
 
*815 - [[Scorpion Wire]]
 
*816 - [[Mirrored Stance]]
 
*817 - [[Discord]]
 
*818 - [[Well of Weariness]]
 
*819 - [[Vampiric Spirit]]
 
*820 - [[Depravity]]
 
*821 - [[Icy Veins]]
 
*822 - [[Weaken Knees]]
 
*823 - [[Burning Speed]]
 
*824 - [[Lava Arrows]]
 
*825 - [[Bed of Coals]]
 
*826 - [[Shadow Form]]
 
*827 - [[Siphon Strength]]
 
*828 - [[Vile Miasma]]
 
*829 - (hidden)
 
*830 - [[Ray of Judgment]]
 
*831 - [[Primal Rage]]
 
*832 - [[Animate Flesh Golem]]
 
*833 - (hidden)
 
*834 - [[Reckless Haste]]
 
*835 - [[Blood Bond]]
 
*836 - [[Ride the Lightning]]
 
*837 - [[Energy Boon]]
 
*838 - [[Dwayna's Sorrow]]
 
*839 - [["Retreat!"]]
 
*840 - [[Poisoned Heart]]
 
*841 - [[Fetid Ground]]
 
*842 - [[Arc Lightning]]
 
*843 - [[Gust]]
 
*844 - [[Churning Earth]]
 
*845 - [[Liquid Flame]]
 
*846 - [[Steam]]
 
*847 - [[Boon Signet]]
 
*848 - [[Reverse Hex]]
 
*849 - [[Lacerating Chop]]
 
*850 - [[Fierce Blow]]
 
*851 - [[Sun and Moon Slash]]
 
*852 - [[Splinter Shot]]
 
*853 - [[Melandru's Shot]]
 
*854 - [[Snare]]
 
*855 - (hidden)
 
*856 - (hidden)
 
*857 - (hidden)
 
*858 - [[Dancing Daggers]]
 
*859 - [[Conjure Nightmare]]
 
*860 - [[Signet of Disruption]]
 
*861 - (hidden)
 
*862 - [[Ravenous Gaze]]
 
*863 - [[Order of Apostasy]]
 
*864 - [[Oppressive Gaze]]
 
*865 - [[Lightning Hammer]]
 
*866 - [[Vapor Blade]]
 
*867 - [[Healing Light]]
 
*868 - (hidden)
 
*869 - [["Coward!"]]
 
*870 - [[Pestilence]]
 
*871 - [[Shadowsong]]
 
*872 - (hidden)
 
*873 - (hidden)
 
*874 - (hidden)
 
*875 - (hidden)
 
*876 - [[Signet of Shadows]]
 
*877 - [[Lyssa's Balance]]
 
*878 - [[Visions of Regret]]
 
*879 - [[Illusion of Pain]]
 
*880 - [[Stolen Speed]]
 
*881 - [[Ether Signet]]
 
*882 - [[Signet of Disenchantment]]
 
*883 - [[Vocal Minority]]
 
*884 - [[Searing Flames]]
 
*885 - [[Shield Guardian]]
 
*886 - [[Restful Breeze]]
 
*887 - [[Signet of Rejuvenation]]
 
*888 - [[Whirling Axe]]
 
*889 - [[Forceful Blow]]
 
*890 - (hidden)
 
*891 - [["None Shall Pass!"]]
 
*892 - [[Quivering Blade]]
 
*893 - [[Seeking Arrows]]
 
*894 - (hidden)
 
*895 - (hidden)
 
*896 - (hidden)
 
*897 - (hidden)
 
*898 - [[Overload]]
 
*899 - [[Images of Remorse]]
 
*900 - [[Shared Burden]]
 
*901 - [[Soul Bind]]
 
*902 - [[Blood of the Aggressor]]
 
*903 - [[Icy Prism]]
 
*904 - [[Furious Axe]]
 
*905 - [[Auspicious Blow]]
 
*906 - [["On Your Knees!"]]
 
*907 - [[Dragon Slash]]
 
*908 - [[Marauder's Shot]]
 
*909 - [[Focused Shot]]
 
*910 - [[Spirit Rift]]
 
*911 - [[Union]]
 
*912 - (hidden)
 
*913 - [[Tranquil Was Tanasen]]
 
*914 - [[Consume Soul]]
 
*915 - [[Spirit Light]]
 
*916 - [[Lamentation]]
 
*917 - [[Rupture Soul]]
 
*918 - [[Spirit to Flesh]]
 
*919 - [[Spirit Burn]]
 
*920 - [[Destruction]]
 
*921 - [[Dissonance]]
 
*922 - (hidden)
 
*923 - [[Disenchantment]]
 
*924 - (hidden)
 
*925 - [[Recall]]
 
*926 - [[Sharpen Daggers]]
 
*927 - [[Shameful Fear]]
 
*928 - [[Shadow Shroud]]
 
*929 - [[Shadow of Haste]]
 
*930 - [[Auspicious Incantation]]
 
*931 - [[Power Return]]
 
*932 - [[Complicate]]
 
*933 - [[Shatter Storm]]
 
*934 - [[Unnatural Signet]]
 
*935 - [[Rising Bile]]
 
*936 - [[Envenom Enchantments]]
 
*937 - [[Shockwave]]
 
*938 - [[Ward of Stability]]
 
*939 - [[Icy Shackles]]
 
*940 - (hidden)
 
*941 - [[Blessed Light]]
 
*942 - [[Withdraw Hexes]]
 
*943 - [[Extinguish]]
 
*944 - [[Signet of Strength]]
 
*945 - (hidden)
 
*946 - [[Trapper's Focus]]
 
*947 - [[Brambles]]
 
*948 - [[Desperate Strike]]
 
*949 - [[Way of the Fox]]
 
*950 - [[Shadowy Burden]]
 
*951 - [[Siphon Speed]]
 
*952 - [[Death's Charge]]
 
*953 - [[Power Flux]]
 
*954 - [[Expel Hexes]]
 
*955 - [[Rip Enchantment]]
 
*956 - (hidden)
 
*957 - [[Spell Shield]]
 
*958 - [[Healing Whisper]]
 
*959 - [[Ethereal Light]]
 
*960 - [[Release Enchantments]]
 
*961 - [[Lacerate]]
 
*962 - [[Spirit Transfer]]
 
*963 - [[Restoration]]
 
*964 - [[Vengeful Weapon]]
 
*965 - (hidden)
 
*966 - (hidden)
 
*967 - (hidden)
 
*968 - (hidden)
 
*969 - (hidden)
 
*970 - (hidden)
 
*971 - (hidden)
 
*972 - (hidden)
 
*973 - [[Blinding Powder]]
 
*974 - [[Mantis Touch]]
 
*975 - [[Exhausting Assault]]
 
*976 - [[Repeating Strike]]
 
*977 - [[Way of the Lotus]]
 
*978 - [[Mark of Instability]]
 
*979 - [[Mistrust]]
 
*980 - [[Feast of Souls]]
 
*981 - [[Recuperation]]
 
*982 - [[Shelter]]
 
*983 - [[Weapon of Shadow]]
 
*984 - (hidden)
 
*985 - [[Caltrops]]
 
*986 - [[Nine Tail Strike]]
 
*987 - [[Way of the Empty Palm]]
 
*988 - [[Temple Strike]]
 
*989 - [[Golden Phoenix Strike]]
 
*990 - [[Expunge Enchantments]]
 
*991 - [[Deny Hexes]]
 
*992 - [[Triple Chop]]
 
*993 - [[Enraged Smash]]
 
*994 - [[Renewing Smash]]
 
*995 - [[Tiger Stance]]
 
*996 - [[Standing Slash]]
 
*997 - [[Famine]]
 
*998 - (hidden)
 
*999 - (hidden)
 
*1000 - (hidden)
 
*1001 - (hidden)
 
*1002 - (hidden)
 
*1003 - (hidden)
 
*1004 - (hidden)
 
*1005 - (hidden)
 
*1006 - (hidden)
 
*1007 - (hidden)
 
*1008 - (hidden)
 
*1009 - (hidden)
 
*1010 - (hidden)
 
*1011 - (hidden)
 
*1012 - (hidden)
 
*1013 - (hidden)
 
*1014 - (hidden)
 
*1015 - (hidden)
 
*1016 - (hidden)
 
*1017 - (hidden)
 
*1018 - [[Critical Eye]]
 
*1019 - [[Critical Strike]]
 
*1020 - [[Blades of Steel]]
 
*1021 - [[Jungle Strike]]
 
*1022 - [[Wild Strike]]
 
*1023 - [[Leaping Mantis Sting]]
 
*1024 - [[Black Mantis Thrust]]
 
*1025 - [[Disrupting Stab]]
 
*1026 - [[Golden Lotus Strike]]
 
*1027 - [[Critical Defenses]]
 
*1028 - [[Way of Perfection]]
 
*1029 - [[Dark Apostasy]]
 
*1030 - [[Locust's Fury]]
 
*1031 - [[Shroud of Distress]]
 
*1032 - [[Heart of Shadow]]
 
*1033 - [[Impale]]
 
*1034 - [[Seeping Wound]]
 
*1035 - [[Assassin's Promise]]
 
*1036 - [[Signet of Malice]]
 
*1037 - [[Dark Escape]]
 
*1038 - [[Crippling Dagger]]
 
*1039 - (hidden)
 
*1040 - [[Spirit Walk]]
 
*1041 - [[Unseen Fury]]
 
*1042 - [[Flashing Blades]]
 
*1043 - [[Dash]]
 
*1044 - [[Dark Prison]]
 
*1045 - [[Palm Strike]]
 
*1046 - (hidden)
 
*1047 - (hidden)
 
*1048 - [[Revealed Enchantment]]
 
*1049 - [[Revealed Hex]]
 
*1050 - (hidden)
 
*1051 - (hidden)
 
*1052 - [[Accumulated Pain]]
 
*1053 - [[Psychic Distraction]]
 
*1054 - [[Ancestor's Visage]]
 
*1055 - [[Recurring Insecurity]]
 
*1056 - [[Kitah's Burden]]
 
*1057 - [[Psychic Instability]]
 
*1058 - (hidden)
 
*1059 - [[Hex Eater Signet]]
 
*1060 - (hidden)
 
*1061 - [[Feedback]]
 
*1062 - [[Arcane Larceny]]
 
*1063 - (hidden)
 
*1064 - (hidden)
 
*1065 - (hidden)
 
*1066 - [[Spoil Victor]]
 
*1067 - [[Lifebane Strike]]
 
*1068 - [[Bitter Chill]]
 
*1069 - [[Taste of Pain]]
 
*1070 - [[Defile Enchantments]]
 
*1071 - [[Shivers of Dread]]
 
*1072 - (hidden)
 
*1073 - (hidden)
 
*1074 - (hidden)
 
*1075 - [[Vampiric Swarm]]
 
*1076 - [[Blood Drinker]]
 
*1077 - [[Vampiric Bite]]
 
*1078 - [[Wallow's Bite]]
 
*1079 - [[Enfeebling Touch]]
 
*1080 - (hidden)
 
*1081 - [[Teinai's Wind]]
 
*1082 - [[Shock Arrow]]
 
*1083 - [[Unsteady Ground]]
 
*1084 - [[Sliver Armor]]
 
*1085 - [[Ash Blast]]
 
*1086 - [[Dragon's Stomp]]
 
*1087 - (hidden)
 
*1088 - [[Second Wind]]
 
*1089 - (hidden)
 
*1090 - [[Smoldering Embers]]
 
*1091 - [[Double Dragon]]
 
*1092 - (hidden)
 
*1093 - [[Teinai's Heat]]
 
*1094 - [[Breath of Fire]]
 
*1095 - [[Star Burst]]
 
*1096 - [[Glyph of Essence]]
 
*1097 - [[Teinai's Prison]]
 
*1098 - [[Mirror of Ice]]
 
*1099 - [[Teinai's Crystals]]
 
*1100 - (hidden)
 
*1101 - (hidden)
 
*1102 - (hidden)
 
*1103 - (hidden)
 
*1104 - (hidden)
 
*1105 - (hidden)
 
*1106 - (hidden)
 
*1107 - (hidden)
 
*1108 - (hidden)
 
*1109 - (hidden)
 
*1110 - (hidden)
 
*1111 - (hidden)
 
*1112 - (hidden)
 
*1113 - [[Kirin's Wrath]]
 
*1114 - [[Spirit Bond]]
 
*1115 - [[Air of Enchantment]]
 
*1116 - (hidden)
 
*1117 - [[Heaven's Delight]]
 
*1118 - [[Healing Burst]]
 
*1119 - [[Karei's Healing Circle]]
 
*1120 - [[Jamei's Gaze]]
 
*1121 - [[Gift of Health]]
 
*1122 - (hidden)
 
*1123 - [[Life Sheath]]
 
*1124 - (hidden)
 
*1125 - (hidden)
 
*1126 - [[Empathic Removal]]
 
*1127 - (hidden)
 
*1128 - [[Resurrection Chant]]
 
*1129 - [[Word of Censure]]
 
*1130 - [[Spear of Light]]
 
*1131 - [[Stonesoul Strike]]
 
*1132 - (hidden)
 
*1133 - [[Drunken Blow]]
 
*1134 - [[Leviathan's Sweep]]
 
*1135 - [[Jaizhenju Strike]]
 
*1136 - [[Penetrating Chop]]
 
*1137 - [[Yeti Smash]]
 
*1138 - (hidden)
 
*1139 - (hidden)
 
*1140 - (hidden)
 
*1141 - [["You Will Die!"]]
 
*1142 - [[Auspicious Parry]]
 
*1143 - (hidden)
 
*1144 - [[Silverwing Slash]]
 
*1145 - (hidden)
 
*1146 - [[Shove]]
 
*1147 - (hidden)
 
*1148 - (hidden)
 
*1149 - (hidden)
 
*1150 - (hidden)
 
*1151 - (hidden)
 
*1152 - (hidden)
 
*1153 - (hidden)
 
*1154 - (hidden)
 
*1155 - (hidden)
 
*1156 - (hidden)
 
*1157 - (hidden)
 
*1158 - (hidden)
 
*1159 - (hidden)
 
*1160 - (hidden)
 
*1161 - (hidden)
 
*1162 - (hidden)
 
*1163 - (hidden)
 
*1164 - (hidden)
 
*1165 - (hidden)
 
*1166 - (hidden)
 
*1167 - (hidden)
 
*1168 - (hidden)
 
*1169 - (hidden)
 
*1170 - (hidden)
 
*1171 - (hidden)
 
*1172 - (hidden)
 
*1173 - (hidden)
 
*1174 - (hidden)
 
*1175 - (hidden)
 
*1176 - (hidden)
 
*1177 - (hidden)
 
*1178 - (hidden)
 
*1179 - (hidden)
 
*1180 - (hidden)
 
*1181 - (hidden)
 
*1182 - (hidden)
 
*1183 - (hidden)
 
*1184 - (hidden)
 
*1185 - (hidden)
 
*1186 - (hidden)
 
*1187 - (hidden)
 
*1188 - (hidden)
 
*1189 - (hidden)
 
*1190 - (hidden)
 
*1191 - [[Sundering Attack]]
 
*1192 - [[Zojun's Shot]]
 
*1193 - (hidden)
 
*1194 - [[Predatory Bond]]
 
*1195 - [[Heal as One]]
 
*1196 - [[Zojun's Haste]]
 
*1197 - [[Needling Shot]]
 
*1198 - [[Broad Head Arrow]]
 
*1199 - [[Glass Arrows]]
 
*1200 - [[Archer's Signet]]
 
*1201 - [[Savage Pounce]]
 
*1202 - [[Enraged Lunge]]
 
*1203 - [[Bestial Mauling]]
 
*1204 - (hidden)
 
*1205 - [[Poisonous Bite]]
 
*1206 - [[Pounce]]
 
*1207 - [[Celestial Stance]]
 
*1208 - (hidden)
 
*1209 - [[Bestial Fury]]
 
*1210 - (hidden)
 
*1211 - [[Viper's Nest]]
 
*1212 - [[Equinox]]
 
*1213 - [[Tranquility]]
 
*1214 - (hidden)
 
*1215 - [[Clamor of Souls]]
 
*1216 - (hidden)
 
*1217 - [[Ritual Lord]]
 
*1218 - [[Cruel Was Daoshen]]
 
*1219 - [[Protective Was Kaolai]]
 
*1220 - [[Attuned Was Songkai]]
 
*1221 - [[Resilient Was Xiko]]
 
*1222 - [[Lively Was Naomei]]
 
*1223 - [[Anguished Was Lingwah]]
 
*1224 - [[Draw Spirit]]
 
*1225 - [[Channeled Strike]]
 
*1226 - [[Spirit Boon Strike]]
 
*1227 - [[Essence Strike]]
 
*1228 - [[Spirit Siphon]]
 
*1229 - [[Explosive Growth]]
 
*1230 - [[Boon of Creation]]
 
*1231 - [[Spirit Channeling]]
 
*1232 - [[Armor of Unfeeling]]
 
*1233 - [[Soothing Memories]]
 
*1234 - [[Mend Body and Soul]]
 
*1235 - [[Dulled Weapon]]
 
*1236 - [[Binding Chains]]
 
*1237 - [[Painful Bond]]
 
*1238 - [[Signet of Creation]]
 
*1239 - [[Signet of Spirits]]
 
*1240 - [[Soul Twisting]]
 
*1241 - (hidden)
 
*1242 - (hidden)
 
*1243 - (hidden)
 
*1244 - [[Ghostly Haste]]
 
*1245 - [[Gaze from Beyond]]
 
*1246 - [[Ancestor's Rage]]
 
*1247 - [[Pain]]
 
*1248 - (hidden)
 
*1249 - [[Displacement]]
 
*1250 - [[Preservation]]
 
*1251 - [[Life]]
 
*1252 - [[Earthbind]]
 
*1253 - [[Bloodsong]]
 
*1254 - (hidden)
 
*1255 - [[Wanderlust]]
 
*1256 - (hidden)
 
*1257 - [[Spirit Light Weapon]]
 
*1258 - [[Brutal Weapon]]
 
*1259 - [[Guided Weapon]]
 
*1260 - [[Meekness]]
 
*1261 - [[Frigid Armor]]
 
*1262 - [[Healing Ring]]
 
*1263 - [[Renew Life]]
 
*1264 - [[Doom]]
 
*1265 - [[Wielder's Boon]]
 
*1266 - [[Soothing]]
 
*1267 - [[Vital Weapon]]
 
*1268 - [[Weapon of Quickening]]
 
*1269 - [[Signet of Rage]]
 
*1270 - (hidden)
 
*1271 - (hidden)
 
*1272 - (hidden)
 
*1273 - (hidden)
 
*1274 - (hidden)
 
*1275 - (hidden)
 
*1276 - (hidden)
 
*1277 - (hidden)
 
*1278 - (hidden)
 
*1279 - (hidden)
 
*1280 - (hidden)
 
*1281 - (hidden)
 
*1282 - (hidden)
 
*1283 - (hidden)
 
*1284 - (hidden)
 
*1285 - (hidden)
 
*1286 - (hidden)
 
*1287 - (hidden)
 
*1288 - (hidden)
 
*1289 - (hidden)
 
*1290 - (hidden)
 
*1291 - (hidden)
 
*1292 - (hidden)
 
*1293 - (hidden)
 
*1294 - (hidden)
 
*1295 - (hidden)
 
*1296 - (hidden)
 
*1297 - (hidden)
 
*1298 - (hidden)
 
*1299 - (hidden)
 
*1300 - (hidden)
 
*1301 - (hidden)
 
*1302 - (hidden)
 
*1303 - (hidden)
 
*1304 - (hidden)
 
*1305 - (hidden)
 
*1306 - (hidden)
 
*1307 - (hidden)
 
*1308 - (hidden)
 
*1309 - (hidden)
 
*1310 - (hidden)
 
*1311 - (hidden)
 
*1312 - (hidden)
 
*1313 - (hidden)
 
*1314 - (hidden)
 
*1315 - (hidden)
 
*1316 - (hidden)
 
*1317 - (hidden)
 
*1318 - (hidden)
 
*1319 - (hidden)
 
*1320 - (hidden)
 
*1321 - (hidden)
 
*1322 - (hidden)
 
*1323 - (hidden)
 
*1324 - (hidden)
 
*1325 - (hidden)
 
*1326 - [[Trade Winds]]
 
*1327 - [[Dragon Blast]]
 
*1328 - [[Imperial Majestry]]
 
*1329 - (hidden)
 
*1330 - (hidden)
 
*1331 - (hidden)
 
*1332 - (hidden)
 
*1333 - [[Extend Conditions]]
 
*1334 - [[Hypochondria]]
 
*1335 - [[Wastrel's Demise]]
 
*1336 - [[Spiritual Pain]]
 
*1337 - [[Drain Delusions]]
 
*1338 - [[Persistence of Memory]]
 
*1339 - [[Symbols of Inspiration]]
 
*1340 - [[Symbolic Celerity]]
 
*1341 - [[Frustration]]
 
*1342 - [[Tease]]
 
*1343 - [[Ether Phantom]]
 
*1344 - [[Web of Disruption]]
 
*1345 - [[Enchanter's Conundrum]]
 
*1346 - [[Signet of Illusions]]
 
*1347 - [[Discharge Enchantment]]
 
*1348 - [[Hex Eater Vortex]]
 
*1349 - [[Mirror of Disenchantment]]
 
*1350 - [[Simple Thievery]]
 
*1351 - [[Animate Shambling Horror]]
 
*1352 - [[Order of Undeath]]
 
*1353 - [[Putrid Flesh]]
 
*1354 - [[Feast for the Dead]]
 
*1355 - [[Jagged Bones]]
 
*1356 - [[Contagion]]
 
*1357 - (hidden)
 
*1358 - [[Ulcerous Lungs]]
 
*1359 - [[Pain of Disenchantment]]
 
*1360 - [[Mark of Fury]]
 
*1361 - (hidden)
 
*1362 - [[Corrupt Enchantment]]
 
*1363 - [[Signet of Sorrow]]
 
*1364 - [[Signet of Suffering]]
 
*1365 - [[Signet of Lost Souls]]
 
*1366 - [[Well of Darkness]]
 
*1367 - [[Blinding Surge]]
 
*1368 - [[Chilling Winds]]
 
*1369 - [[Lightning Bolt]]
 
*1370 - [[Storm Djinn's Haste]]
 
*1371 - [[Stone Striker]]
 
*1372 - [[Sandstorm]]
 
*1373 - [[Stone Sheath]]
 
*1374 - [[Ebon Hawk]]
 
*1375 - [[Stoneflesh Aura]]
 
*1376 - [[Glyph of Restoration]]
 
*1377 - [[Ether Prism]]
 
*1378 - [[Master of Magic]]
 
*1379 - [[Glowing Gaze]]
 
*1380 - [[Savannah Heat]]
 
*1381 - [[Flame Djinn's Haste]]
 
*1382 - [[Freezing Gust]]
 
*1383 - (hidden)
 
*1384 - (hidden)
 
*1385 - (hidden)
 
*1386 - (hidden)
 
*1387 - (hidden)
 
*1388 - (hidden)
 
*1389 - (hidden)
 
*1390 - [[Judge's Intervention]]
 
*1391 - [[Supportive Spirit]]
 
*1392 - [[Watchful Healing]]
 
*1393 - [[Healer's Boon]]
 
*1394 - [[Healer's Covenant]]
 
*1395 - [[Balthazar's Pendulum]]
 
*1396 - [[Words of Comfort]]
 
*1397 - [[Light of Deliverance]]
 
*1398 - [[Scourge Enchantment]]
 
*1399 - [[Shield of Absorption]]
 
*1400 - [[Reversal of Damage]]
 
*1401 - [[Mending Touch]]
 
*1402 - [[Critical Chop]]
 
*1403 - [[Agonizing Chop]]
 
*1404 - [[Flail]]
 
*1405 - [[Charging Strike]]
 
*1406 - [[Headbutt]]
 
*1407 - [[Lion's Comfort]]
 
*1408 - [[Rage of the Ntouka]]
 
*1409 - [[Mokele Smash]]
 
*1410 - [[Overbearing Smash]]
 
*1411 - [[Signet of Stamina]]
 
*1412 - [["You're All Alone!"]]
 
*1413 - [[Burst of Aggression]]
 
*1414 - [[Enraging Charge]]
 
*1415 - [[Crippling Slash]]
 
*1416 - [[Barbarous Slice]]
 
*1417 - [[Vial of Purified Water]]
 
*1418 - [[Disarm Trap]]
 
*1419 - (hidden)
 
*1420 - (hidden)
 
*1421 - (hidden)
 
*1422 - (hidden)
 
*1423 - [[Master of Magic]]
 
*1424 - (hidden)
 
*1425 - (hidden)
 
*1426 - (hidden)
 
*1427 - (hidden)
 
*1428 - (hidden)
 
*1429 - (hidden)
 
*1430 - (hidden)
 
*1431 - (hidden)
 
*1432 - (hidden)
 
*1433 - (hidden)
 
*1434 - (hidden)
 
*1435 - (hidden)
 
*1436 - (hidden)
 
*1437 - (hidden)
 
*1438 - [[Junundu Feast]]
 
*1439 - [[Junundu Strike]]
 
*1440 - [[Junundu Smash]]
 
*1441 - [[Junundu Siege]]
 
*1442 - [[Junundu Tunnel]]
 
*1443 - [[Leave Junundu]]
 
*1444 - (hidden)
 
*1445 - (hidden)
 
*1446 - (hidden)
 
*1447 - (hidden)
 
*1448 - (hidden)
 
*1449 - (hidden)
 
*1450 - (hidden)
 
*1451 - (hidden)
 
*1452 - (hidden)
 
*1453 - (hidden)
 
*1454 - (hidden)
 
*1455 - (hidden)
 
*1456 - (hidden)
 
*1457 - (hidden)
 
*1458 - (hidden)
 
*1459 - (hidden)
 
*1460 - (hidden)
 
*1461 - (hidden)
 
*1462 - (hidden)
 
*1463 - (hidden)
 
*1464 - (hidden)
 
*1465 - [[Prepared Shot]]
 
*1466 - [[Burning Arrow]]
 
*1467 - [[Arcing Shot]]
 
*1468 - [[Strike as One]]
 
*1469 - [[Crossfire]]
 
*1470 - [[Barbed Arrows]]
 
*1471 - [[Scavenger's Focus]]
 
*1472 - [[Toxicity]]
 
*1473 - [[Quicksand]]
 
*1474 - [[Storm's Embrace]]
 
*1475 - [[Trapper's Speed]]
 
*1476 - [[Tripwire]]
 
*1477 - (hidden)
 
*1478 - [[Renewing Surge]]
 
*1479 - [[Offering of Spirit]]
 
*1480 - [[Spirit's Gift]]
 
*1481 - [[Death Pact Signet]]
 
*1482 - [[Reclaim Essence]]
 
*1483 - [[Banishing Strike]]
 
*1484 - [[Mystic Sweep]]
 
*1485 - [[Eremite's Attack]]
 
*1486 - [[Reap Impurities]]
 
*1487 - [[Twin Moon Sweep]]
 
*1488 - [[Victorious Sweep]]
 
*1489 - [[Irresistible Sweep]]
 
*1490 - [[Pious Assault]]
 
*1491 - [[Mystic Twister]]
 
*1492 - (hidden)
 
*1493 - [[Grenth's Fingers]]
 
*1494 - (hidden)
 
*1495 - [[Aura of Thorns]]
 
*1496 - [[Balthazar's Rage]]
 
*1497 - [[Dust Cloak]]
 
*1498 - [[Staggering Force]]
 
*1499 - [[Pious Renewal]]
 
*1500 - [[Mirage Cloak]]
 
*1501 - (hidden)
 
*1502 - [[Arcane Zeal]]
 
*1503 - [[Mystic Vigor]]
 
*1504 - [[Watchful Intervention]]
 
*1505 - [[Vow of Piety]]
 
*1506 - [[Vital Boon]]
 
*1507 - [[Heart of Holy Flame]]
 
*1508 - [[Extend Enchantments]]
 
*1509 - [[Faithful Intervention]]
 
*1510 - [[Sand Shards]]
 
*1511 - (hidden)
 
*1512 - [[Lyssa's Haste]]
 
*1513 - [[Guiding Hands]]
 
*1514 - [[Fleeting Stability]]
 
*1515 - [[Armor of Sanctity]]
 
*1516 - [[Mystic Regeneration]]
 
*1517 - [[Vow of Silence]]
 
*1518 - [[Avatar of Balthazar]]
 
*1519 - [[Avatar of Dwayna]]
 
*1520 - [[Avatar of Grenth]]
 
*1521 - [[Avatar of Lyssa]]
 
*1522 - [[Avatar of Melandru]]
 
*1523 - [[Meditation]]
 
*1524 - [[Eremite's Zeal]]
 
*1525 - [[Natural Healing]]
 
*1526 - [[Imbue Health]]
 
*1527 - [[Mystic Healing]]
 
*1528 - [[Dwayna's Touch]]
 
*1529 - [[Pious Restoration]]
 
*1530 - [[Signet of Pious Light]]
 
*1531 - [[Intimidating Aura]]
 
*1532 - [[Mystic Sandstorm]]
 
*1533 - [[Winds of Disenchantment]]
 
*1534 - [[Rending Touch]]
 
*1535 - [[Crippling Sweep]]
 
*1536 - [[Wounding Strike]]
 
*1537 - [[Wearying Strike]]
 
*1538 - [[Lyssa's Assault]]
 
*1539 - [[Chilling Victory]]
 
*1540 - [[Conviction]]
 
*1541 - [[Enchanted Haste]]
 
*1542 - [[Pious Concentration]]
 
*1543 - [[Pious Haste]]
 
*1544 - [[Whirling Charge]]
 
*1545 - [[Test of Faith]]
 
*1546 - [[Blazing Spear]]
 
*1547 - [[Mighty Throw]]
 
*1548 - [[Cruel Spear]]
 
*1549 - [[Harrier's Toss]]
 
*1550 - [[Unblockable Throw]]
 
*1551 - [[Spear of Lightning]]
 
*1552 - [[Wearying Spear]]
 
*1553 - [[Anthem of Fury]]
 
*1554 - [[Crippling Anthem]]
 
*1555 - [[Defensive Anthem]]
 
*1556 - [[Godspeed]]
 
*1557 - [[Anthem of Flame]]
 
*1558 - [["Go for the Eyes!"]]
 
*1559 - [[Anthem of Envy]]
 
*1560 - [[Song of Power]]
 
*1561 - [[Zealous Anthem]]
 
*1562 - [[Aria of Zeal]]
 
*1563 - [[Lyric of Zeal]]
 
*1564 - [[Ballad of Restoration]]
 
*1565 - [[Chorus of Restoration]]
 
*1566 - [[Aria of Restoration]]
 
*1567 - [[Song of Concentration]]
 
*1568 - [[Anthem of Guidance]]
 
*1569 - [[Energizing Chorus]]
 
*1570 - [[Song of Purification]]
 
*1571 - [[Hexbreaker Aria]]
 
*1572 - [["Brace Yourself!"]]
 
*1573 - [[Awe]]
 
*1574 - [[Enduring Harmony]]
 
*1575 - [[Blazing Finale]]
 
*1576 - [[Burning Refrain]]
 
*1577 - [[Finale of Restoration]]
 
*1578 - [[Mending Refrain]]
 
*1579 - [[Purifying Finale]]
 
*1580 - [[Bladeturn Refrain]]
 
*1581 - [[Glowing Signet]]
 
*1582 - (hidden)
 
*1583 - [[Leader's Zeal]]
 
*1584 - [[Leader's Comfort]]
 
*1585 - [[Signet of Synergy]]
 
*1586 - [[Angelic Protection]]
 
*1587 - [[Angelic Bond]]
 
*1588 - [[Cautery Signet]]
 
*1589 - [["Stand Your Ground!"]]
 
*1590 - [["Lead the Way!"]]
 
*1591 - [["Make Haste!"]]
 
*1592 - [["We Shall Return!"]]
 
*1593 - [["Never Give Up!"]]
 
*1594 - [["Help Me!"]]
 
*1595 - [["Fall Back!"]]
 
*1596 - [["Incoming!"]]
 
*1597 - [["They're on Fire!"]]
 
*1598 - [["Never Surrender!"]]
 
*1599 - [["It's just a flesh wound."]]
 
*1600 - [[Barbed Spear]]
 
*1601 - [[Vicious Attack]]
 
*1602 - [[Stunning Strike]]
 
*1603 - [[Merciless Spear]]
 
*1604 - [[Disrupting Throw]]
 
*1605 - [[Wild Throw]]
 
*1606 - (hidden)
 
*1607 - (hidden)
 
*1608 - (hidden)
 
*1609 - (hidden)
 
*1610 - (hidden)
 
*1611 - (hidden)
 
*1612 - (hidden)
 
*1613 - (hidden)
 
*1614 - (hidden)
 
*1615 - (hidden)
 
*1616 - (hidden)
 
*1617 - (hidden)
 
*1618 - (hidden)
 
*1619 - (hidden)
 
*1620 - (hidden)
 
*1621 - (hidden)
 
*1622 - (hidden)
 
*1623 - (hidden)
 
*1624 - (hidden)
 
*1625 - (hidden)
 
*1626 - (hidden)
 
*1627 - (hidden)
 
*1628 - (hidden)
 
*1629 - (hidden)
 
*1630 - (hidden)
 
*1631 - (hidden)
 
*1632 - (hidden)
 
*1633 - [[Malicious Strike]]
 
*1634 - [[Shattering Assault]]
 
*1635 - [[Golden Skull Strike]]
 
*1636 - [[Black Spider Strike]]
 
*1637 - [[Golden Fox Strike]]
 
*1638 - [[Deadly Haste]]
 
*1639 - [[Assassin's Remedy]]
 
*1640 - [[Fox's Promise]]
 
*1641 - [[Feigned Neutrality]]
 
*1642 - [[Hidden Caltrops]]
 
*1643 - [[Assault Enchantments]]
 
*1644 - [[Wastrel's Collapse]]
 
*1645 - [[Lift Enchantment]]
 
*1646 - [[Augury of Death]]
 
*1647 - [[Signet of Toxic Shock]]
 
*1648 - [[Signet of Twilight]]
 
*1649 - [[Way of the Assassin]]
 
*1650 - [[Shadow Walk]]
 
*1651 - [[Death's Retreat]]
 
*1652 - [[Shadow Prison]]
 
*1653 - [[Swap]]
 
*1654 - [[Shadow Meld]]
 
*1655 - [[Price of Pride]]
 
*1656 - [[Air of Disenchantment]]
 
*1657 - [[Signet of Clumsiness]]
 
*1658 - [[Symbolic Posture]]
 
*1659 - [[Toxic Chill]]
 
*1660 - [[Well of Silence]]
 
*1661 - [[Glowstone]]
 
*1662 - [[Mind Blast]]
 
*1663 - [[Elemental Flame]]
 
*1664 - [[Invoke Lightning]]
 
*1665 - (hidden)
 
*1666 - (hidden)
 
*1667 - (hidden)
 
*1668 - (hidden)
 
*1669 - (hidden)
 
*1670 - (hidden)
 
*1671 - (hidden)
 
*1672 - (hidden)
 
*1673 - (hidden)
 
*1674 - (hidden)
 
*1675 - (hidden)
 
*1676 - (hidden)
 
*1677 - (hidden)
 
*1678 - (hidden)
 
*1679 - (hidden)
 
*1680 - (hidden)
 
*1681 - (hidden)
 
*1682 - (hidden)
 
*1683 - [[Pensive Guardian]]
 
*1684 - [[Scribe's Insight]]
 
*1685 - [[Holy Haste]]
 
*1686 - [[Glimmer of Light]]
 
*1687 - [[Zealous Benediction]]
 
*1688 - [[Defender's Zeal]]
 
*1689 - [[Signet of Mystic Wrath]]
 
*1690 - [[Signet of Removal]]
 
*1691 - [[Dismiss Condition]]
 
*1692 - [[Divert Hexes]]
 
*1693 - [[Counterattack]]
 
*1694 - [[Magehunter Strike]]
 
*1695 - [[Soldier's Strike]]
 
*1696 - [[Decapitate]]
 
*1697 - [[Magehunter's Smash]]
 
*1698 - [[Soldier's Stance]]
 
*1699 - [[Soldier's Defense]]
 
*1700 - [[Frenzied Defense]]
 
*1701 - [[Steady Stance]]
 
*1702 - [[Steelfang Slash]]
 
*1703 - (hidden)
 
*1704 - (hidden)
 
*1705 - (hidden)
 
*1706 - (hidden)
 
*1707 - (hidden)
 
*1708 - (hidden)
 
*1709 - (hidden)
 
*1710 - (hidden)
 
*1711 - (hidden)
 
*1712 - (hidden)
 
*1713 - (hidden)
 
*1714 - (hidden)
 
*1715 - (hidden)
 
*1716 - (hidden)
 
*1717 - (hidden)
 
*1718 - (hidden)
 
*1719 - [[Screaming Shot]]
 
*1720 - [[Keen Arrow]]
 
*1721 - [[Rampage as One]]
 
*1722 - [[Forked Arrow]]
 
*1723 - [[Disrupting Accuracy]]
 
*1724 - [[Expert's Dexterity]]
 
*1725 - [[Roaring Winds]]
 
*1726 - [[Magebane Shot]]
 
*1727 - [[Natural Stride]]
 
*1728 - [[Heket's Rampage]]
 
*1729 - [[Smoke Trap]]
 
*1730 - [[Infuriating Heat]]
 
*1731 - [[Vocal was Sogolon]]
 
*1732 - [[Destructive was Glaive]]
 
*1733 - [[Wielder's Strike]]
 
*1734 - [[Gaze of Fury]]
 
*1735 - (hidden)
 
*1736 - [[Spirit's Strength]]
 
*1737 - [[Wielder's Zeal]]
 
*1738 - [[Sight Beyond Sight]]
 
*1739 - [[Renewing Memories]]
 
*1740 - [[Wielder's Remedy]]
 
*1741 - [[Ghostmirror Light]]
 
*1742 - [[Signet of Ghostly Might]]
 
*1743 - [[Signet of Binding]]
 
*1744 - [[Caretaker's Charge]]
 
*1745 - [[Anguish]]
 
*1746 - (hidden)
 
*1747 - [[Empowerment]]
 
*1748 - [[Recovery]]
 
*1749 - [[Weapon of Fury]]
 
*1750 - [[Xinrae's Weapon]]
 
*1751 - [[Warmonger's Weapon]]
 
*1752 - [[Weapon of Remedy]]
 
*1753 - [[Rending Sweep]]
 
*1754 - [[Onslaught]]
 
*1755 - [[Mystic Corruption]]
 
*1756 - [[Grenth's Grasp]]
 
*1757 - [[Veil of Thorns]]
 
*1758 - [[Harrier's Grasp]]
 
*1759 - [[Vow of Strength]]
 
*1760 - [[Ebon Dust Aura]]
 
*1761 - [[Zealous Vow]]
 
*1762 - [[Heart of Fury]]
 
*1763 - [[Zealous Renewal]]
 
*1764 - [[Attacker's Insight]]
 
*1765 - [[Rending Aura]]
 
*1766 - [[Featherfoot Grace]]
 
*1767 - [[Reaper's Sweep]]
 
*1768 - [[Harrier's Haste]]
 
*1769 - [[Focused Anger]]
 
*1770 - [[Natural Temper]]
 
*1771 - [[Song of Restoration]]
 
*1772 - [[Lyric of Purification]]
 
*1773 - [[Soldier's Fury]]
 
*1774 - [[Aggressive Refrain]]
 
*1775 - [[Energizing Finale]]
 
*1776 - [[Signet of Aggression]]
 
*1777 - [[Remedy Signet]]
 
*1778 - [[Signet of Return]]
 
*1779 - [["Make Your Time!"]]
 
*1780 - [["Can't Touch This!"]]
 
*1781 - [["Find Their Weakness!"]]
 
*1782 - [["The Power Is Yours!"]]
 
*1783 - [[Slayer's Spear]]
 
*1784 - [[Swift Javelin]]
 
*1785 - (hidden)
 
*1786 - (hidden)
 
*1787 - (hidden)
 
*1788 - (hidden)
 
*1789 - (hidden)
 
*1790 - (hidden)
 
*1791 - (hidden)
 
*1792 - (hidden)
 
*1793 - (hidden)
 
*1794 - (hidden)
 
*1795 - (hidden)
 
*1796 - (hidden)
 
*1797 - (hidden)
 
*1798 - (hidden)
 
*1799 - (hidden)
 
*1800 - (hidden)
 
*1801 - (hidden)
 
*1802 - (hidden)
 
*1803 - (hidden)
 
*1804 - (hidden)
 
*1805 - (hidden)
 
*1806 - (hidden)
 
*1807 - (hidden)
 
*1808 - (hidden)
 
*1809 - (hidden)
 
*1810 - (hidden)
 
*1811 - (hidden)
 
*1812 - (hidden)
 
*1813 - (hidden)
 
*1814 - [[Lightbringer's Gaze]]
 
*1815 - [[Lightbringer Signet]]
 
*1816 - [[Sunspear Rebirth Signet]]
 
*1817 - (hidden)
 
*1818 - (hidden)
 
*1819 - (hidden)
 
*1820 - (hidden)
 
*1821 - (hidden)
 
*1822 - (hidden)
 
*1823 - (hidden)
 
*1824 - (hidden)
 
*1825 - (hidden)
 
*1826 - (hidden)
 
*1827 - (hidden)
 
*1828 - (hidden)
 
*1829 - (hidden)
 
*1830 - (hidden)
 
*1831 - (hidden)
 
*1832 - (hidden)
 
*1833 - (hidden)
 
*1834 - (hidden)
 
*1835 - (hidden)
 
*1836 - (hidden)
 
*1837 - (hidden)
 
*1838 - (hidden)
 
*1839 - (hidden)
 
*1840 - (hidden)
 
*1841 - (hidden)
 
*1842 - (hidden)
 
*1843 - (hidden)
 
*1844 - (hidden)
 
*1845 - (hidden)
 
*1846 - (hidden)
 
*1847 - (hidden)
 
*1848 - (hidden)
 
*1849 - (hidden)
 
*1850 - (hidden)
 
*1851 - (hidden)
 
*1852 - (hidden)
 
*1853 - (hidden)
 
*1854 - (hidden)
 
*1855 - (hidden)
 
*1856 - (hidden)
 
*1857 - (hidden)
 
*1858 - (hidden)
 
*1859 - (hidden)
 
*1860 - (hidden)
 
*1861 - [[Choking Breath]]
 
*1862 - [[Junundu Bite]]
 
*1863 - [[Blinding Breath]]
 
*1864 - [[Burning Breath]]
 
*1865 - [[Junundu Wail]]
 
*1866 - (hidden)
 
*1867 - (hidden)
 
*1868 - (hidden)
 
*1869 - (hidden)
 
*1870 - (hidden)
 
*1871 - (hidden)
 
*1872 - (hidden)
 
*1873 - (hidden)
 
*1874 - (hidden)
 
*1875 - (hidden)
 
*1876 - (hidden)
 
*1877 - (hidden)
 
*1878 - (hidden)
 
*1879 - (hidden)
 
*1880 - (hidden)
 
*1881 - (hidden)
 
*1882 - (hidden)
 
*1883 - (hidden)
 
*1884 - (hidden)
 
*1885 - (hidden)
 
*1886 - (hidden)
 
*1887 - (hidden)
 
*1888 - (hidden)
 
*1889 - (hidden)
 
*1890 - (hidden)
 
*1891 - (hidden)
 
*1892 - (hidden)
 
*1893 - (hidden)
 
*1894 - (hidden)
 
*1895 - (hidden)
 
*1896 - (hidden)
 
*1897 - (hidden)
 
*1898 - (hidden)
 
*1899 - (hidden)
 
*1900 - (hidden)
 
*1901 - (hidden)
 
*1902 - (hidden)
 
*1903 - (hidden)
 
*1904 - (hidden)
 
*1905 - (hidden)
 
*1906 - (hidden)
 
*1907 - (hidden)
 
*1908 - (hidden)
 
*1909 - (hidden)
 
*1910 - (hidden)
 
*1911 - (hidden)
 
*1912 - (hidden)
 
*1913 - (hidden)
 
*1914 - (hidden)
 
*1915 - (hidden)
 
*1916 - (hidden)
 
*1917 - (hidden)
 
*1918 - [[Ram]]
 
*1919 - [[Harden Shell]]
 
*1920 - [[Rollerbeetle Dash]]
 
*1921 - [[Super Rollerbeetle]]
 
*1922 - [[Rollerbeetle Echo]]
 
*1923 - [[Distracting Lunge]]
 
*1924 - [[Rollerbeetle Blast]]
 
*1925 - [[Spit Rocks]]
 
 
A lot of skill codes are missing. Please add them.
 
   
 
==Related articles==
 
==Related articles==
*[[Equipment Template format]]
+
*[[Equipment template format]]
 
*[[Skill Template]]
 
*[[Skill Template]]
  +
*[[User:Dr ishmael/Skill ID index]]
   
 
[[Category:File format]]
 
[[Category:File format]]

Latest revision as of 11:13, 23 March 2009

Overall Format[ | ]

The skill template is a single line that is a based on base64 encoded bit stream as defined in rfc3548. The difference between Base64 and the Skill template format is the use of + and / as the 62nd and 63rd characters respectively, and all binary codes should be used and interpreted in the lowest-bit-first order.

Numbers of varying number of bits are placed into the bitstream, in the following sequence:

If generated before 4/5/2007 update:

  • 4 bits - always 0, Version number of the Skill Template.


If generated after 4/5/2007 update:

  • 4 bits - always 14, Indicates that this is a Skill Template
  • 4 bits - always 0, Version number of the skill Template


The rest is the same before and after the update:

Profession information

  • 2 bits - Code to calculate the number of encoded bits per profession code ('p'). To calculate p, double it and add 4 (p=code*2+4).
  • p bits - Primary profession (see table below)
  • p bits - Secondary profession (see table below)

Attributes information

  • 4 bits - The number of attributes specified in the template
  • 4 bits - Code to calculate the number of encoded bits of the attribute codes ('a'). All attribute codes are the same size, and the size (in bits) is equal to 4 plus this number (a=code+4).
  • Per attribute:
    • a bits - attribute code (see table below)
    • 4 bits - value of attribute, this is 1 - 12, and does not take into account runes, headgear, etc.

Skill information

  • 4 bits - Code to calculate then number of encoded bits of the skill codes ('s). All skill codes are the same size, and the size (in bits) is equal to 8 plus this number (s=code+8).
  • Per skill (eight times):
    • s bits - skill code (see table below)

Base 64 Code Table[ | ]

Windows Calculator can convert base 10 to octal (base 8) while in scientific calculator mode, and pairs of octal digits can be easily converted to base 64 digits with lowest-bit-first using this table.

Dec Oct Char Dec Oct Char Dec Oct Char Dec Oct Char Dec Oct Char Dec Oct Char Dec Oct Char Dec Oct Char
00 00 A 08 10 I 16 20 Q 24 30 Y 32 40 g 40 50 o 48 60 w 56 70 4
01 01 B 09 11 J 17 21 R 25 31 Z 33 41 h 41 51 p 49 61 x 57 71 5
02 02 C 10 12 K 18 22 S 26 32 a 34 42 i 42 52 q 50 62 y 58 72 6
03 03 D 11 13 L 19 23 T 27 33 b 35 43 j 43 53 r 51 63 z 59 73 7
04 04 E 12 14 M 20 24 U 28 34 c 36 44 k 44 54 s 52 64 0 60 74 8
05 05 F 13 15 N 21 25 V 29 35 d 37 45 l 45 55 t 53 65 1 61 75 9
06 06 G 14 16 O 22 26 W 30 36 e 38 46 m 46 56 u 54 66 2 62 76 +
07 07 H 15 17 P 23 27 X 31 37 f 39 47 n 47 57 v 55 67 3 63 77 /

Example[ | ]

The following example shows how to decypher the skill template OwpiMypMBg1cxcBAMBdmtIKAA which is a Assassin/Dervish build:


Base64 code O w p i M y etc.
Decimal 14 48 41 34 12 50 etc.
Binary 1 2 4 8 16 32 1 2 4 8 16 32 1 2 4 8 16 32 1 2 4 8 16 32 1 2 4 8 16 32 1 2 4 8 16 32 etc.
0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 1 0 1 0 1 0 0 0 1 0 0 1 1 0 0 0 1 0 0 1 1 etc.
Content Type Version Profession
bit length
Primary
Profession
Secondary
Profession
No. of
attributes
Attribute
bit length
Attribute 1 Attribute 1
rank
etc.
Binary 1 2 4 8 1 2 4 8 1 2 1 2 4 8 1 2 4 8 1 2 4 8 1 2 4 8 1 2 4 8 16 32 1 2 4 8 etc.
Decimal 14 0 0 7 10 2 2 35 12 etc.
Meaning Skill
Template
0 0*2+4=4 bits Assassin Dervish 2 attributes 2 + 4 = 6 bit Critical
Strikes
12 etc.

Codes[ | ]

Profession Codes[ | ]

Attribute Codes[ | ]

Skill codes[ | ]

Note:

Locked Skills cannot be found in game without making special templates.

Invalid skills can be found in game, nevertheless, like Locked Skills, you cannot equip them (In most cases, they are monsters skills or skills left over from the prophecies alpha/beta versions of the game).

Related articles[ | ]