Skip to content

Instantly share code, notes, and snippets.

@Archomeda
Last active January 29, 2016 19:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Archomeda/713828a7c96a7b7fe52d to your computer and use it in GitHub Desktop.
Save Archomeda/713828a7c96a7b7fe52d to your computer and use it in GitHub Desktop.
Print GW2 skills in HTML
var fs = require('fs');
var https = require('https');
Array.prototype.isSubsetOf = function(other) {
for (var i = 0; i < this.length; i++) {
if (other.indexOf(this[i]) == -1) {
return false;
}
}
return true;
}
Array.prototype.compare = function(other) {
if (this.length != other.length) {
return false;
}
for (var i = 0; i < this.length; i++) {
if (this[i].compare) {
if (!this[i].compare(other[i])) {
return false;
}
}
if (this[i] !== other[i]) {
return false;
}
}
return true;
}
String.prototype.isNumeric = function() {
return !isNaN(parseFloat(this)) && isFinite(this);
}
String.prototype.capitalizeFirstLetter = function() {
return this.charAt(0).toUpperCase() + this.slice(1);
}
function get(options, onData) {
var retry = function(e) {
console.log('Error!', e);
get(options, onData); // Let's retry
};
var data = '';
var req = https.request(options, res => {
res.on('data', d => {
data += d;
});
res.on('end', () => {
onData(data);
});
});
req.end();
req.on('error', retry);
}
function getApi(ids, onData) {
var options = {
hostname: 'api.guildwars2.com',
port: 443,
path: '/v2/skills?ids=' + ids.join(),
method: 'GET'
};
get(options, data => {
onData(JSON.parse(data));
});
}
function convertIdsToAnchor(ids) {
if (ids instanceof Array) {
var anchors = [];
for (var i in ids) {
anchors[i] = convertIdsToAnchor(ids[i]);
}
return anchors;
} else {
return '<a href="#skill-' + ids + '">' + ids + '</a>';
}
}
function getSkillById(skills, id) {
for (var i in skills) {
if (skills[i].id == id) {
return skills[i];
}
}
return null;
}
getApi(['all'], skills => {
console.log('Found', skills.length, 'skills on the API');
skills.sort((a, b) => a.id - b.id );
var skillIds = skills.map(skill => skill.id);
var stream = fs.createWriteStream('skills-api-table.html');
stream.write('<html>');
stream.write('<head><style>');
stream.write('* { font-family: Verdana; font-size: 11px; }');
stream.write('table { border-spacing: 10px; border-collapse: collapse; }');
stream.write('th, td { border-bottom: 1px solid black; padding: 10px; }');
stream.write('ul { margin: 0 0 5px 0; }');
stream.write('.skill-icon { max-width: 128px; }');
stream.write('.fact-icon { max-width: 24px; vertical-align: middle; }');
stream.write('.id { font-weight: bold; }');
stream.write('.description { font-style: italic; }');
stream.write('.warning-skill { background-color: cyan; }');
stream.write('.error-skill { background-color: yellow; }');
stream.write('.warnings { color: darkblue; }');
stream.write('.errors { color: red; }');
stream.write('</style></head>');
stream.write('<body><table><tr>');
stream.write('<th>Icon</th>');
stream.write('<th>API</th>');
stream.write('</tr>');
for (var i = 0; i < skills.length; i++) {
var skill = skills[i];
var processed_properties = [];
// Check for inconsistencies first
var warnings = [];
var errors = [];
for (var j = 0; j < skills.length; j++) {
var skill2 = skills[j];
if (skill2.id != skill.id && skill2.name == skill.name) {
// Possible duplicate
var duplicate = true;
duplicate = duplicate && skill2.description == skill.description;
duplicate = duplicate && skill2.professions.compare(skill.professions);
duplicate = duplicate && skill2.type == skill.type;
duplicate = duplicate && skill2.weapon_type == skill.weapon_type;
duplicate = duplicate && skill2.slot == skill.slot;
duplicate = duplicate && skill2.attunement == skill.attunement;
if (duplicate) {
warnings.push('Skill is a possible duplicate of skill ' + convertIdsToAnchor(skill2.id));
}
}
}
if (!skill.professions || skill.professions.length == 0) {
errors.push('Skill is not assigned to any profession');
}
if (skill.toolbelt_skill) {
if (skill.professions.indexOf('Engineer') == -1) {
errors.push('Toolbelt skill defined on a non-engineer');
}
}
if (skill.attunement) {
if (skill.professions.indexOf('Elementalist') == -1) {
errors.push('Attunement defined on a non-elementalist');
}
}
if (skill.cost) {
if (skill.professions.indexOf('Warrior') == -1 && skill.professions.indexOf('Revenant') == -1 && skill.professions.indexOf('Necromancer') == -1 && skill.professions.indexOf('Ranger') == -1) {
errors.push('Cost defined on a non-warrior, -revenant, -necromancer or -ranger');
}
}
if (skill.initiative) {
if (skill.professions.indexOf('Thief') == -1) {
errors.push('Initiative defined on a non-thief');
}
}
if (skill.dual_wield) {
if (skill.professions.indexOf('Thief') == -1) {
errors.push('Dual wield defined on a non-thief');
}
}
if (skill.flip_skill) {
var flipSkill = getSkillById(skills, skill.flip_skill);
if (flipSkill == null) {
errors.push('Flip skill ' + skill.flip_skill + ' does not exist');
} else {
if (!skill.professions.isSubsetOf(flipSkill.professions)) {
errors.push('Professions of flip skill ' + skill.flip_skill + ' is not a subset of the professions of this skill');
}
if (flipSkill.type != skill.type) {
errors.push('Flip skill ' + skill.flip_skill + ' does not have the same type');
}
if (flipSkill.weapon_type != skill.weapon_type) {
errors.push('Flip skill ' + skill.flip_skill + ' does not have the same weapon type');
}
if (flipSkill.slot != skill.slot) {
errors.push('Flip skill ' + skill.flip_skill + ' does not have the same slot');
}
// Apperently this is possible
//if (flipSkill.attunement != skill.attunement) {
// errors.push('Flip skill ' + skill.flip_skill + ' does not have the same attunement');
//}
if (flipSkill.dual_wield != skill.dual_wield) {
errors.push('Flip skill ' + skill.flip_skill + ' does not have the same dual wield');
}
}
}
if (skill.next_chain) {
var nextChain = getSkillById(skills, skill.next_chain);
if (nextChain == null) {
errors.push('Next chain skill ' + skill.next_chain + ' does not exist');
} else {
if (nextChain.prev_chain != skill.id) {
errors.push('Next chain skill ' + skill.next_chain + ' does not link back to this skill through prev chain skill');
}
if (!skill.professions.isSubsetOf(nextChain.professions)) {
errors.push('Professions of next chain skill ' + skill.next_chain + ' is not a subset of the professions of this skill');
}
if (nextChain.type != skill.type) {
errors.push('Next chain skill ' + skill.next_chain + ' does not have the same type');
}
if (nextChain.weapon_type != skill.weapon_type) {
errors.push('Next chain skill ' + skill.next_chain + ' does not have the same weapon type');
}
if (nextChain.slot != skill.slot) {
errors.push('Next chain skill ' + skill.next_chain + ' does not have the same slot');
}
if (nextChain.attunement != skill.attunement) {
errors.push('Next chain skill ' + skill.next_chain + ' does not have the same attunement');
}
if (nextChain.dual_wield != skill.dual_wield) {
errors.push('Next chain skill ' + skill.next_chain + ' does not have the same dual wield');
}
}
}
if (skill.prev_chain) {
var prevChain = getSkillById(skills, skill.prev_chain);
if (prevChain == null) {
errors.push('Prev chain skill ' + skill.prev_chain + ' does not exist');
} else {
if (prevChain.next_chain != skill.id) {
errors.push('Prev chain skill ' + skill.prev_chain + ' does not link back to this skill through next chain skill');
}
if (!skill.professions.isSubsetOf(prevChain.professions)) {
errors.push('Professions of prev chain skill ' + skill.prev_chain + ' is not a subset of the professions of this skill');
}
if (prevChain.type != skill.type) {
errors.push('Prev chain skill ' + skill.prev_chain + ' does not have the same type');
}
if (prevChain.weapon_type != skill.weapon_type) {
errors.push('Prev chain skill ' + skill.prev_chain + ' does not have the same weapon type');
}
if (prevChain.slot != skill.slot) {
errors.push('Prev chain skill ' + skill.prev_chain + ' does not have the same slot');
}
if (prevChain.attunement != skill.attunement) {
errors.push('Prev chain skill ' + skill.prev_chain + ' does not have the same attunement');
}
if (prevChain.dual_wield != skill.dual_wield) {
errors.push('Prev chain skill ' + skill.prev_chain + ' does not have the same dual wield');
}
}
}
if (skill.transform_skills) {
for (var j = 0; j < skill.transform_skills.length; j++) {
var transform = getSkillById(skills, skill.transform_skills[j]);
if (transform == null) {
errors.push('Transform skill ' + skill.transform_skills[j] + ' does not exist');
} else {
if (!skill.professions.isSubsetOf(transform.professions)) {
errors.push('Professions of transform skill ' + skill.transform_skills[j] + ' is not a subset of the professions of this skill');
}
}
}
}
if (skill.bundle_skills) {
for (var j = 0; j < skill.bundle_skills.length; j++) {
var bundle = getSkillById(skills, skill.bundle_skills[j]);
if (bundle == null) {
errors.push('Bundle skill ' + skill.bundle_skills[j] + ' does not exist');
} else {
if (!skill.professions.isSubsetOf(bundle.professions)) {
errors.push('Professions of bundle skill ' + skill.bundle_skills[j] + ' is not a subset of the professions of this skill');
}
}
}
}
if (skill.facts && skill.facts.length > 0) {
for (var j = 0; j < skill.facts.length; j++) {
var fact = skill.facts[j];
if (!fact.icon) {
warnings.push('Fact #' + j + ' is missing an icon');
}
}
}
// Output
stream.write('<tr id="skill-' + skill.id + '" class="' + (warnings.length > 0 ? 'warning-skill ' : '') + (errors.length > 0 ? 'error-skill ' : '') + '">');
// API
stream.write('<td><img class="skill-icon" src="' + skill.icon + '"></td>');
processed_properties.push('icon');
stream.write('<td>');
stream.write('<div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/' + skill.id + '" target="_blank">' + skill.id + '</a></span></div>');
processed_properties.push('id');
stream.write('<div>Chat link: <span class="chat-link">' + skill.chat_link + '</span></div>');
processed_properties.push('chat_link');
stream.write('<div>Name: <span class="name">' + skill.name + '</span></div>');
processed_properties.push('name');
stream.write('<div>Description: <span class="description">' + skill.description + '</span></div>');
processed_properties.push('description');
if (skill.professions && skill.professions.length > 0) {
stream.write('<div>Professions: <span class="professions"><ul><li>' + skill.professions.join('</li><li>') + '</li></ul></span></div>');
} else {
stream.write('<div>Professions: None</div>');
}
processed_properties.push('professions');
stream.write('<div>Type: <span class="type">' + skill.type + '</span></div>');
processed_properties.push('type');
stream.write('<div>Weapon type: <span class="weapon-type">' + skill.weapon_type + '</span></div>');
processed_properties.push('weapon_type');
stream.write('<div>Slot: <span class="slot">' + skill.slot + '</span></div>');
processed_properties.push('slot');
stream.write('<br><br>');
if (skill.flip_skill) {
stream.write('<div>Flip skill: <span class="flip-skill">' + convertIdsToAnchor(skill.flip_skill) + '</span></div>');
}
processed_properties.push('flip_skill');
if (skill.prev_chain) {
stream.write('<div>Prev chain: <span class="prev_chain">' + convertIdsToAnchor(skill.prev_chain) + '</span></div>');
}
processed_properties.push('prev_chain');
if (skill.next_chain) {
stream.write('<div>Next chain: <span class="next_chain">' + convertIdsToAnchor(skill.next_chain) + '</span></div>');
}
processed_properties.push('next_chain');
if (skill.categories && skill.categories.length > 0) {
stream.write('<div>Categories: <span class="categories"><ul><li>' + skill.categories.join('</li><li>') + '</li></ul></span></div>');
}
processed_properties.push('categories');
if (skill.attunement) {
stream.write('<div>Attunement: <span class="attunement">' + skill.attunement + '</span></div>');
}
processed_properties.push('attunement');
if (skill.toolbelt_skill) {
stream.write('<div>Toolbelt skill: <span class="toolbelt-skills">' + convertIdsToAnchor(skill.toolbelt_skill) + '</span></div>');
}
processed_properties.push('toolbelt_skill');
if (skill.dual_wield) {
stream.write('<div>Dual wield: <span class="dual-wield">' + skill.dual_wield + '</span></div>');
}
processed_properties.push('dual_wield');
if (skill.cost) {
stream.write('<div>Cost: <span class="cost">' + skill.cost + '</span></div>');
}
processed_properties.push('cost');
if (skill.initiative) {
stream.write('<div>initiative: <span class="initiative">' + skill.initiative + '</span></div>');
}
processed_properties.push('initiative');
if (skill.transform_skills && skill.transform_skills.length > 0) {
stream.write('<div>Transform skills: <span class="transform-skills"><ul><li>' + convertIdsToAnchor(skill.transform_skills).join('</li><li>') + '</li></ul></span></div>');
}
processed_properties.push('transform_skills');
if (skill.bundle_skills && skill.bundle_skills.length > 0) {
stream.write('<div>Bundle skills: <span class="bundle-skills"><ul><li>' + convertIdsToAnchor(skill.bundle_skills).join('</li><li>') + '</li></ul></span></div>');
}
processed_properties.push('bundle_skills');
var printFacts = function(stream, facts) {
for (var j = 0; j < facts.length; j++) {
var fact = facts[j];
stream.write('<li>' + (fact.icon ? '<img class="fact-icon" src="' + fact.icon + '"> ' : ''));
stream.write(fact.type + ' - ' + (fact.text ? fact.text + ': ' : ''));
switch (fact.type) {
case 'Recharge':
stream.write(fact.value + 's');
break;
case 'AttributeAdjust':
case 'Number':
case 'Range':
stream.write(fact.value.toString());
break;
case 'Buff':
if (fact.status) stream.write(fact.status);
if (fact.duration) stream.write(' (' + fact.duration + 's)');
if (fact.apply_count) stream.write(' (' + fact.apply_count + 'x)');
break;
case 'BuffConversion':
case 'Percent':
stream.write(fact.percent + '%');
break;
case 'ComboField':
stream.write(fact.field_type);
break;
case 'ComboFinisher':
stream.write(fact.finisher_type + ' (' + fact.percent + '%)');
break;
case 'Damage':
if (fact.damage) stream.write(' ' + fact.damage);
if (fact.hit_count) stream.write(' (' + fact.hit_count + 'x)');
if (fact.coefficient) stream.write(' (' + fact.coefficient + ')');
break;
case 'Distance':
case 'Radius':
stream.write(fact.distance.toString());
break;
case 'Duration':
case 'Time':
stream.write(fact.duration + 's');
break;
case 'NoData':
case 'Unblockable':
break;
case 'PrefixedBuff':
stream.write(fact.status);
if (fact.duration) stream.write(' (' + fact.duration + 's)');
if (fact.apply_count) stream.write(' (' + fact.apply_count + 'x)');
if (fact.prefix) {
stream.write('<br><img class="fact-icon" src="' + fact.prefix.icon + '"> ' + fact.prefix.text + ': ' + fact.prefix.status);
}
break;
}
if (fact.requires_trait) {
stream.write(' (requires trait ' + fact.requires_trait + ')');
}
stream.write('</li>');
}
}
if (skill.facts && skill.facts.length > 0) {
stream.write('<br><br><div class="facts">Facts:<ul>');
printFacts(stream, skill.facts);
stream.write('</ul></div>');
}
processed_properties.push('facts');
if (skill.traited_facts && skill.traited_facts.length > 0) {
stream.write('<br><br><div class="facts">Traited facts:<ul>');
printFacts(stream, skill.traited_facts);
stream.write('</ul></div>');
}
processed_properties.push('traited_facts');
if (warnings.length > 0) {
stream.write('<br><br><div class="warnings">Warnings:<ul><li>' + warnings.join('</li><li>') + '</li></ul></div>');
}
if (errors.length > 0) {
stream.write('<br><br><div class="errors">Errors:<ul><li>' + errors.join('</li><li>') + '</li></ul></div>');
}
stream.write('</td>');
// Check if we got all properties
for (var property in skill) {
if (skill.hasOwnProperty(property)) {
if (processed_properties.indexOf(property) == -1) {
console.warn("Property " + property + " not parsed in skill #" + skill.id + " (" + skill.name + ")");
}
}
}
}
stream.write('</table></body></html>')
});
This file has been truncated, but you can view the full file.
<html><head><style>* { font-family: Verdana; font-size: 11px; }table { border-spacing: 10px; border-collapse: collapse; }th, td { border-bottom: 1px solid black; padding: 10px; }ul { margin: 0 0 5px 0; }.skill-icon { max-width: 128px; }.fact-icon { max-width: 24px; vertical-align: middle; }.id { font-weight: bold; }.description { font-style: italic; }.warning-skill { background-color: cyan; }.error-skill { background-color: yellow; }.warnings { color: darkblue; }.errors { color: red; }</style></head><body><table><tr><th>Icon</th><th>API</th></tr><tr id="skill-1175" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D2D7D11874060D68760BFD519CFC77B6DF14981F/102928.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/1175" target="_blank">1175</a></span></div><div>Chat link: <span class="chat-link">[&BpcEAAA=]</span></div><div>Name: <span class="name">Bandage</span></div><div>Description: <span class="description">Call your allies for help. Restores health while you channel it.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li><li>Warrior</li><li>Engineer</li><li>Ranger</li><li>Thief</li><li>Elementalist</li><li>Mesmer</li><li>Necromancer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 5s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5486" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/65490660DC4D12927816F9A224CB982227597A35/103106.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5486" target="_blank">5486</a></span></div><div>Chat link: <span class="chat-link">[&Bm4VAAA=]</span></div><div>Name: <span class="name">Impale</span></div><div>Description: <span class="description">Spear your foes on a giant stone spike.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-15717">15717</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5487" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C13AA7EC94200C0E7E24C4E47164183991107EA4/103243.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5487" target="_blank">5487</a></span></div><div>Chat link: <span class="chat-link">[&Bm8VAAA=]</span></div><div>Name: <span class="name">Frozen Burst</span></div><div>Description: <span class="description">Detonate a burst of ice that chills nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 240</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5489" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/AD9670FD92547F6254DFA9CC6BF3B49845DF0C07/102901.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5489" target="_blank">5489</a></span></div><div>Chat link: <span class="chat-link">[&BnEVAAA=]</span></div><div>Name: <span class="name">Lightning Whip</span></div><div>Description: <span class="description">Lash your foe with lightning.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5490" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CE2D206242C6DDB571784315ABF4B51CBAC090A9/103319.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5490" target="_blank">5490</a></span></div><div>Chat link: <span class="chat-link">[&BnIVAAA=]</span></div><div>Name: <span class="name">Comet</span></div><div>Description: <span class="description">Drop a comet of ice on target foe, damaging and dazing foes in the area.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5491" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E57B9C0358A6B1CE4631E336D22614E9E544DD4B/102965.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5491" target="_blank">5491</a></span></div><div>Chat link: <span class="chat-link">[&BnMVAAA=]</span></div><div>Name: <span class="name">Fireball</span></div><div>Description: <span class="description">Cast a fireball that explodes on impact and hits multiple foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Radius - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5492" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/1C91E9C799469ACC6EAF1ACD4B0AD8ACAB0C69A2/103035.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5492" target="_blank">5492</a></span></div><div>Chat link: <span class="chat-link">[&BnQVAAA=]</span></div><div>Name: <span class="name">Fire Attunement</span></div><div>Description: <span class="description">Attune to fire, gaining heavy damage and burning abilities.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Profession</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Profession_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-29706">29706</a></span></div><br><br><div class="facts">Facts:<ul><li>Unblockable - Unblockable: </li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (15s) (1x) (requires trait 264)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5 (requires trait 264)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240 (requires trait 264)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5493" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/737E1B9F7855B9F5D3DE1C990CD42118EF3D1C92/102820.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5493" target="_blank">5493</a></span></div><div>Chat link: <span class="chat-link">[&BnUVAAA=]</span></div><div>Name: <span class="name">Water Attunement</span></div><div>Description: <span class="description">Attune to water, gaining superior support and healing abilities.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Profession</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Profession_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-29415">29415</a></span></div><br><br><div class="facts">Facts:<ul><li>Unblockable - Unblockable: </li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (5s) (1x) (requires trait 264)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5 (requires trait 264)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240 (requires trait 264)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240 (requires trait 1962)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5494" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4857F59020DE3B0950B9C91F3D234A1C1932984A/103048.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5494" target="_blank">5494</a></span></div><div>Chat link: <span class="chat-link">[&BnYVAAA=]</span></div><div>Name: <span class="name">Air Attunement</span></div><div>Description: <span class="description">Attune to air, gaining heavy damage and control abilities.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Profession</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Profession_3</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-29719">29719</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Unblockable - Unblockable: </li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (5s) (1x) (requires trait 264)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5 (requires trait 264)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240 (requires trait 264)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5495" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4B8056D9BD080DC8E74AE6A57B2B383A2D4265C9/102870.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5495" target="_blank">5495</a></span></div><div>Chat link: <span class="chat-link">[&BncVAAA=]</span></div><div>Name: <span class="name">Earth Attunement</span></div><div>Description: <span class="description">Attune to earth, gaining superior damage-over-time and defensive abilities.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Profession</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Profession_4</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-29618">29618</a></span></div><br><br><div class="facts">Facts:<ul><li>Unblockable - Unblockable: </li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/22F1BDACFBEBC8FF2BF77B22B3E535D2BA03D140/1012302.png"> Buff - Apply Buff/Condition: Stone Heart (1x) (requires trait 1674)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (5s) (1x) (requires trait 264)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5 (requires trait 264)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240 (requires trait 264)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5496" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C87956461091440D784C4038510316AAAD7B63E8/103096.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5496" target="_blank">5496</a></span></div><div>Chat link: <span class="chat-link">[&BngVAAA=]</span></div><div>Name: <span class="name">Drake's Breath</span></div><div>Description: <span class="description">Spray a cone of fire at foes while on the move.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 400</li><li>Recharge - Recharge: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (4x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (4x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5497" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B84B697E69B44D5EC3A0306AA2FB3128BBF30F78/103271.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5497" target="_blank">5497</a></span></div><div>Chat link: <span class="chat-link">[&BnkVAAA=]</span></div><div>Name: <span class="name">Flamewall</span></div><div>Description: <span class="description">Create a wall of flame at the target area that burns foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Duration - Duration: 8s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s (requires trait 1510)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5500" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/66441BE066120A2590B5AF031D56E221189ADC68/103158.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5500" target="_blank">5500</a></span></div><div>Chat link: <span class="chat-link">[&BnwVAAA=]</span></div><div>Name: <span class="name">Stone Shards</span></div><div>Description: <span class="description">Fling stone daggers at your foe to bleed them.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (6s) (3x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (6s) (3x) (requires trait 1507)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-5501" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/660B4E695A6026F9D70CA6B0D7565774805C6B0E/103255.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5501" target="_blank">5501</a></span></div><div>Chat link: <span class="chat-link">[&Bn0VAAA=]</span></div><div>Name: <span class="name">Meteor Shower</span></div><div>Description: <span class="description">Call down a meteor shower onto the target area.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Damage Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 9s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 24</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5502" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/45EC55C8CBDA67763A27690F38AD13D9A806F9ED/103320.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5502" target="_blank">5502</a></span></div><div>Chat link: <span class="chat-link">[&Bn4VAAA=]</span></div><div>Name: <span class="name">Glyph of Lesser Elementals</span></div><div>Description: <span class="description">Glyph. Summon a lesser elemental based on your attunement.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-25495">25495</a></span></div><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 60s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5503" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/3FA4D3DCA80A06036E7F6C77E84D94466D157766/103321.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5503" target="_blank">5503</a></span></div><div>Chat link: <span class="chat-link">[&Bn8VAAA=]</span></div><div>Name: <span class="name">Signet of Restoration</span></div><div>Description: <span class="description">Signet Passive: Grants health every time you cast a spell.
Signet Active: Heal yourself.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 3275</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing per Cast: 202</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5504" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/05A829F09171E079265B474B73650F59732EF471/103322.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5504" target="_blank">5504</a></span></div><div>Chat link: <span class="chat-link">[&BoAVAAA=]</span></div><div>Name: <span class="name">Discharge Lightning</span></div><div>Description: <span class="description">Blast your foe with lightning.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (10s) (2x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5505" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/27BDFC2C700596737F04DACB3C5BDA7493404F03/103323.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5505" target="_blank">5505</a></span></div><div>Chat link: <span class="chat-link">[&BoEVAAA=]</span></div><div>Name: <span class="name">Grasping Earth</span></div><div>Description: <span class="description">Immobilize your foe with hands erupting from the ground.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (3s) (10x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (1s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Channel Duration: 3s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5506" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/439907AB0901F4DEB5545A4FB3DC6217B5E46E98/103324.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5506" target="_blank">5506</a></span></div><div>Chat link: <span class="chat-link">[&BoIVAAA=]</span></div><div>Name: <span class="name">Glyph of Elemental Power</span></div><div>Description: <span class="description">Glyph. Gain a chance for spells to inflict a condition based on your attunement.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 45s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Trigger Chance: 25%</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> PrefixedBuff - Apply Buff/Condition: Burning (3s) (2x)<br><img class="fact-icon" src="https://render.guildwars2.com/file/1C91E9C799469ACC6EAF1ACD4B0AD8ACAB0C69A2/103035.png"> Apply Buff/Condition: Fire Attunement</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> PrefixedBuff - Apply Buff/Condition: Chilled (2s) (1x)<br><img class="fact-icon" src="https://render.guildwars2.com/file/737E1B9F7855B9F5D3DE1C990CD42118EF3D1C92/102820.png"> Apply Buff/Condition: Water Attunement</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/6CB0E64AF9AA292E332A38C1770CE577E2CDE0E8/102853.png"> PrefixedBuff - Apply Buff/Condition: Weakness (6s) (1x)<br><img class="fact-icon" src="https://render.guildwars2.com/file/4857F59020DE3B0950B9C91F3D234A1C1932984A/103048.png"> Apply Buff/Condition: Air Attunement</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> PrefixedBuff - Apply Buff/Condition: Crippled (5s) (1x)<br><img class="fact-icon" src="https://render.guildwars2.com/file/4B8056D9BD080DC8E74AE6A57B2B383A2D4265C9/102870.png"> Apply Buff/Condition: Earth Attunement</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Effect Recharge: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 30s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> PrefixedBuff - Apply Buff/Condition: Might (20s) (1x)<br><img class="fact-icon" src="https://render.guildwars2.com/file/1C91E9C799469ACC6EAF1ACD4B0AD8ACAB0C69A2/103035.png"> Apply Buff/Condition: Fire Attunement (requires trait 229)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> PrefixedBuff - Apply Buff/Condition: Regeneration (10s) (1x)<br><img class="fact-icon" src="https://render.guildwars2.com/file/737E1B9F7855B9F5D3DE1C990CD42118EF3D1C92/102820.png"> Apply Buff/Condition: Water Attunement (requires trait 229)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> PrefixedBuff - Apply Buff/Condition: Swiftness (10s) (1x)<br><img class="fact-icon" src="https://render.guildwars2.com/file/4857F59020DE3B0950B9C91F3D234A1C1932984A/103048.png"> Apply Buff/Condition: Air Attunement (requires trait 229)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> PrefixedBuff - Apply Buff/Condition: Protection (3s) (1x)<br><img class="fact-icon" src="https://render.guildwars2.com/file/4B8056D9BD080DC8E74AE6A57B2B383A2D4265C9/102870.png"> Apply Buff/Condition: Earth Attunement (requires trait 229)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5507" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/024A09E8342E54AEB9EDE624E4123138D21639D8/103038.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5507" target="_blank">5507</a></span></div><div>Chat link: <span class="chat-link">[&BoMVAAA=]</span></div><div>Name: <span class="name">Ether Renewal</span></div><div>Description: <span class="description">Cantrip. Heal yourself and cure a condition with every pulse.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Categories: <span class="categories"><ul><li>Cantrip</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 18s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 625</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1</li><li>Number - Pulses: 8</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-5508" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F3FBE8FF4D405637C7D61CB552A6451BB5F2D33F/103325.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5508" target="_blank">5508</a></span></div><div>Chat link: <span class="chat-link">[&BoQVAAA=]</span></div><div>Name: <span class="name">Flamestrike</span></div><div>Description: <span class="description">Strike your foe with flame.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5510" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/43AF784618DAC97FFAB43518A9F7B204A32335FA/103081.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5510" target="_blank">5510</a></span></div><div>Chat link: <span class="chat-link">[&BoYVAAA=]</span></div><div>Name: <span class="name">Water Trident</span></div><div>Description: <span class="description">Cast a water trident that damages foes and heals allies.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 1448</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Allied Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5515" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5EE193655A445A5E9ED31EE7121E01C0B113907E/103217.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5515" target="_blank">5515</a></span></div><div>Chat link: <span class="chat-link">[&BosVAAA=]</span></div><div>Name: <span class="name">Frozen Ground</span></div><div>Description: <span class="description">Coat the target area in ice, chilling foes that enter it.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Radius - Radius: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Ice</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5516" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/EEDA0B1847077DE93DBB0575D44BE0615FBCE728/103328.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5516" target="_blank">5516</a></span></div><div>Chat link: <span class="chat-link">[&BowVAAA=]</span></div><div>Name: <span class="name">Conjure Fiery Greatsword</span></div><div>Description: <span class="description">Conjure. Manifest a fiery greatsword in your hands and at the target location. When it lands, it damages and burns foes. Wielders of this weapon gain increased power and condition damage.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Elite</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Elite</span></div><br><br><div>Categories: <span class="categories"><ul><li>Conjure</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Unblockable - Unblockable: </li><li>Recharge - Recharge: 180s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/EEDA0B1847077DE93DBB0575D44BE0615FBCE728/103328.png"> Buff - Apply Buff/Condition: Conjure Fire Attributes (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/EEDA0B1847077DE93DBB0575D44BE0615FBCE728/103328.png"> Buff - Apply Buff/Condition: Conjure Fire Charges (60s) (15x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 150</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/EEDA0B1847077DE93DBB0575D44BE0615FBCE728/103328.png"> Buff - Apply Buff/Condition: Conjure Fire Charges (60s) (25x) (requires trait 328)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5517" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D7051607F7726AE1C3E4B80FE7F316244C075C0F/103329.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5517" target="_blank">5517</a></span></div><div>Chat link: <span class="chat-link">[&Bo0VAAA=]</span></div><div>Name: <span class="name">Fiery Rush</span></div><div>Description: <span class="description">Charge at your foe, leaving a line of fire behind you.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Fire Wall Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fire Wall Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5518" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/01D310FE65DBA378CBAFD13B2BFEDE59939C5153/102964.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5518" target="_blank">5518</a></span></div><div>Chat link: <span class="chat-link">[&Bo4VAAA=]</span></div><div>Name: <span class="name">Chain Lightning</span></div><div>Description: <span class="description">Hit multiple foes with arcs of chain lightning.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5519" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/49245DDFC55F4BBCAF0AA580B20A030F677221EF/103186.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5519" target="_blank">5519</a></span></div><div>Chat link: <span class="chat-link">[&Bo8VAAA=]</span></div><div>Name: <span class="name">Stoning</span></div><div>Description: <span class="description">Hurl a rock and weaken your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/6CB0E64AF9AA292E332A38C1770CE577E2CDE0E8/102853.png"> Buff - Apply Buff/Condition: Weakness (3s) (1x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-5520" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0D5599084DE820990E9F6D5A6853900553B205BC/103077.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5520" target="_blank">5520</a></span></div><div>Chat link: <span class="chat-link">[&BpAVAAA=]</span></div><div>Name: <span class="name">Frost Aura</span></div><div>Description: <span class="description">Protect yourself with frost armor that reduces incoming damage by 10%. While active, it chills foes that hit you. Each attacker can be affected by this only once per second.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/0D5599084DE820990E9F6D5A6853900553B205BC/103077.png"> Buff - Apply Buff/Condition: Frost Aura (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (2s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5521" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F12B0EDB12DD216E110ADA44A238559AF27396AD/103330.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5521" target="_blank">5521</a></span></div><div>Chat link: <span class="chat-link">[&BpEVAAA=]</span></div><div>Name: <span class="name">Obsidian Flesh</span></div><div>Description: <span class="description">Envelop yourself in stony armor, making yourself invulnerable.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> NoData - Prevents Capture-Point Contribution: </li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5522" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4B3D497E0F070BEE66642AF6293A77B891CEA95C/102976.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5522" target="_blank">5522</a></span></div><div>Chat link: <span class="chat-link">[&BpIVAAA=]</span></div><div>Name: <span class="name">Churning Earth</span></div><div>Description: <span class="description">Make the earth churn, crippling nearby foes before unleashing a seismic wave that damages and bleeds them.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 360</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (8s) (8x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (1s) (4x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (8s) (8x) (requires trait 1507)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-5524" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/1663AA3AC00FA2F31C4DD4040A759EAB0307B92A/103211.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5524" target="_blank">5524</a></span></div><div>Chat link: <span class="chat-link">[&BpQVAAA=]</span></div><div>Name: <span class="name">Dragon's Claw</span></div><div>Description: <span class="description">Fling fire in a claw-shaped spread at your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 400</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage per Projectile: (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-15718">15718</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5525" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0AFCBDA61E7BE315E50FE567B23632C803BF02A3/103107.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5525" target="_blank">5525</a></span></div><div>Chat link: <span class="chat-link">[&BpUVAAA=]</span></div><div>Name: <span class="name">Ring of Earth</span></div><div>Description: <span class="description">Bleed foes with a ring of rocky spikes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 240</li><li>Recharge - Recharge: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (12s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> NoData - Blocks Missiles: </li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5526" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0A436FC2FC1CFAB8610ECFF93ACFF31B0FB29733/103128.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5526" target="_blank">5526</a></span></div><div>Chat link: <span class="chat-link">[&BpYVAAA=]</span></div><div>Name: <span class="name">Arc Lightning</span></div><div>Description: <span class="description">Cast an arc of electricity at your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Stage 1 Damage: (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Stage 2 Damage: (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Stage 3 Damage: (4x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5527" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9D30A3547A777040C5FE730816A13932FDFDD77F/103104.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5527" target="_blank">5527</a></span></div><div>Chat link: <span class="chat-link">[&BpcVAAA=]</span></div><div>Name: <span class="name">Shocking Aura</span></div><div>Description: <span class="description">Envelop yourself with electrical energy that stuns nearby foes if they attack you. Each attacker can be affected by this only once every 2 seconds.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9D30A3547A777040C5FE730816A13932FDFDD77F/103104.png"> Buff - Apply Buff/Condition: Shocking Aura (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 1s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5528" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2F1CF7CA4E58215911CF5797F7939FEF51D9CB45/102977.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5528" target="_blank">5528</a></span></div><div>Chat link: <span class="chat-link">[&BpgVAAA=]</span></div><div>Name: <span class="name">Eruption</span></div><div>Description: <span class="description">Shake the ground until it erupts and damages foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (12s) (6x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Radius - Radius: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5529" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/23066340DF3C6E4F06A1B105479809E1647FF5D6/103332.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5529" target="_blank">5529</a></span></div><div>Chat link: <span class="chat-link">[&BpkVAAA=]</span></div><div>Name: <span class="name">Ride the Lightning</span></div><div>Description: <span class="description">Ride the lightning to your foe, then strike all nearby foes with an electrical burst. If a foe is hit by the burst, the skill's recharge is halved.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5530" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2931CBED030FDBF30F0A0B293A0010925B90FDA6/103250.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5530" target="_blank">5530</a></span></div><div>Chat link: <span class="chat-link">[&BpoVAAA=]</span></div><div>Name: <span class="name">Swirling Winds</span></div><div>Description: <span class="description">Create a swirling wind that destroys projectiles.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 400</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5531" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/50A93174F3F9A1042654A7B00F146F31B2FABC09/103333.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5531" target="_blank">5531</a></span></div><div>Chat link: <span class="chat-link">[&BpsVAAA=]</span></div><div>Name: <span class="name">Firestorm</span></div><div>Description: <span class="description">Call down a firestorm on the target area.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 8s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 10</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5532" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A1CF7CECF528E094A85D993569CD73B54FAF2C2D/103334.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5532" target="_blank">5532</a></span></div><div>Chat link: <span class="chat-link">[&BpwVAAA=]</span></div><div>Name: <span class="name">Flame Wave</span></div><div>Description: <span class="description">Shoot a fireball at your foe with each swing.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 4</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> NoData - Pierces: </li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5533" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CC31AFD564F8090A34500C052A66634016F129F0/103335.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5533" target="_blank">5533</a></span></div><div>Chat link: <span class="chat-link">[&Bp0VAAA=]</span></div><div>Name: <span class="name">Fiery Eruption</span></div><div>Description: <span class="description">Ram your sword into the ground and make fire erupt near your foes.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (6x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 10</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 150</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5534" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/22EDF7A7D620040CE1520552F45DE962AA625DA6/103281.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5534" target="_blank">5534</a></span></div><div>Chat link: <span class="chat-link">[&Bp4VAAA=]</span></div><div>Name: <span class="name">Tornado</span></div><div>Description: <span class="description">Cantrip. Gain stability and shape-shift into a tornado that damages and launches foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Elite</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Elite</span></div><br><br><div>Categories: <span class="categories"><ul><li>Cantrip</li></ul></span></div><div>Transform skills: <span class="transform-skills"><ul><li><a href="#skill-5752">5752</a></li><li><a href="#skill-5753">5753</a></li><li><a href="#skill-5754">5754</a></li><li><a href="#skill-10586">10586</a></li><li><a href="#skill-10586">10586</a></li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 150s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CB330EF25C62C05F1800A1C507B6AE4944551746/156653.png"> Distance - Launch: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Stability and Damage Pulse: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Duration - Duration: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> NoData - Unblockable: </li><li><img class="fact-icon" src="https://render.guildwars2.com/file/59E0DB6A699810641C959926ADFEF73E08CC255B/156655.png"> ComboField - Combo Field: Lightning</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Boon Application Interval: 3s</li><li>ComboFinisher - Combo Finisher: Whirl (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 18s (requires trait 528)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #11 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Professions of transform skill 10586 is not a subset of the professions of this skill</li><li>Professions of transform skill 10586 is not a subset of the professions of this skill</li></ul></div></td><tr id="skill-5535" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2FBB046640434531443F7920CFF205A2787932E3/103336.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5535" target="_blank">5535</a></span></div><div>Chat link: <span class="chat-link">[&Bp8VAAA=]</span></div><div>Name: <span class="name">Cleansing Fire</span></div><div>Description: <span class="description">Cantrip. Cure three conditions and burn foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Cantrip</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (4s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5536" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BEB6010EC947E8A9525899242E7F6D703D023128/103337.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5536" target="_blank">5536</a></span></div><div>Chat link: <span class="chat-link">[&BqAVAAA=]</span></div><div>Name: <span class="name">Lightning Flash</span></div><div>Description: <span class="description">Cantrip. Teleport to target area.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Cantrip</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 1</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5537" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/069C46F135A34A5E3F15270E3B086A25FA790D92/102780.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5537" target="_blank">5537</a></span></div><div>Chat link: <span class="chat-link">[&BqEVAAA=]</span></div><div>Name: <span class="name">Cone of Cold</span></div><div>Description: <span class="description">Spray an icy blast in a cone that damages foes and heals allies.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 400</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (4x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 185</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5538" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/801B94942A7411A4379E58C6BA363CA31D2AFCBB/103289.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5538" target="_blank">5538</a></span></div><div>Chat link: <span class="chat-link">[&BqIVAAA=]</span></div><div>Name: <span class="name">Shatterstone</span></div><div>Description: <span class="description">Cast a shatterstone that will explode at the target area.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (15s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5539" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BCEB22C05BD13F226612C81339AF9A7647F7B454/103229.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5539" target="_blank">5539</a></span></div><div>Chat link: <span class="chat-link">[&BqMVAAA=]</span></div><div>Name: <span class="name">Arcane Blast</span></div><div>Description: <span class="description">Arcane. Blast your foe with energy for critical damage.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Arcane</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1500</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-5540" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D171D89609420B0C11B52FD8632897B76D60F305/103338.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5540" target="_blank">5540</a></span></div><div>Chat link: <span class="chat-link">[&BqQVAAA=]</span></div><div>Name: <span class="name">Conjure Flame Axe</span></div><div>Description: <span class="description">Conjure. Manifest a lava axe in your hands and at the target location. Wielders of the weapon gain increased power and condition damage.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Conjure</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Unblockable - Unblockable: </li><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D171D89609420B0C11B52FD8632897B76D60F305/103338.png"> Buff - Apply Buff/Condition: Conjure Flame Attributes (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D171D89609420B0C11B52FD8632897B76D60F305/103338.png"> Buff - Apply Buff/Condition: Conjure Flame Charges (60s) (15x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 60s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/D171D89609420B0C11B52FD8632897B76D60F305/103338.png"> Buff - Apply Buff/Condition: Conjure Flame Charges (60s) (25x) (requires trait 328)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5541" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0D0451ADE6BA5B4864DF0A0DE62108AA45914747/103339.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5541" target="_blank">5541</a></span></div><div>Chat link: <span class="chat-link">[&BqUVAAA=]</span></div><div>Name: <span class="name">Lava Axe</span></div><div>Description: <span class="description">Throw a lava axe at your foe.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (8s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5542" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/78F000A3121FCFF9B56EA62625186F0E06D8A458/103340.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5542" target="_blank">5542</a></span></div><div>Chat link: <span class="chat-link">[&BqYVAAA=]</span></div><div>Name: <span class="name">Signet of Fire</span></div><div>Description: <span class="description">Signet Passive: Improves critical chance.
Signet Active: Burn your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (10s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/78F000A3121FCFF9B56EA62625186F0E06D8A458/103340.png"> Buff - Apply Buff/Condition: Signet of Fire (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (8s) (3x) (requires trait 347)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5546" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B4BCCD185B24380C953EAD0E5702BFAB96F3BF08/103342.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5546" target="_blank">5546</a></span></div><div>Chat link: <span class="chat-link">[&BqoVAAA=]</span></div><div>Name: <span class="name">Conjure Earth Shield</span></div><div>Description: <span class="description">Conjure. Manifest a magnetic shield in your hands and at the target location. Wielders of the weapon gain increased toughness and vitality.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Conjure</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Unblockable - Unblockable: </li><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B4BCCD185B24380C953EAD0E5702BFAB96F3BF08/103342.png"> Buff - Apply Buff/Condition: Conjure Earth Attributes (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B4BCCD185B24380C953EAD0E5702BFAB96F3BF08/103342.png"> Buff - Apply Buff/Condition: Conjure Earth Charges (60s) (15x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 60s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B4BCCD185B24380C953EAD0E5702BFAB96F3BF08/103342.png"> Buff - Apply Buff/Condition: Conjure Earth Charges (60s) (25x) (requires trait 328)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5547" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BBF16D6BF9CDA755420759F7D5F8D3FF6B2065DA/103343.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5547" target="_blank">5547</a></span></div><div>Chat link: <span class="chat-link">[&BqsVAAA=]</span></div><div>Name: <span class="name">Magnetic Surge</span></div><div>Description: <span class="description">Unleash a magnetic force, surging at your opponent and dazing them.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5548" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CFA80DB42022C240001D249CED6235CEF70C9042/103135.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5548" target="_blank">5548</a></span></div><div>Chat link: <span class="chat-link">[&BqwVAAA=]</span></div><div>Name: <span class="name">Lava Font</span></div><div>Description: <span class="description">Make lava erupt from the target area.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (4x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s (requires trait 1510)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5549" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/FE0B500420CE04976E45D370B0EC6EC874B1E5FE/103184.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5549" target="_blank">5549</a></span></div><div>Chat link: <span class="chat-link">[&Bq0VAAA=]</span></div><div>Name: <span class="name">Water Blast</span></div><div>Description: <span class="description">Spray a jet of water at your foe that splashes to heal nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 372</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Radius - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5550" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/755303C9C50299D8E3F7166B6C23EA18D20B3644/103067.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5550" target="_blank">5550</a></span></div><div>Chat link: <span class="chat-link">[&Bq4VAAA=]</span></div><div>Name: <span class="name">Ice Spike</span></div><div>Description: <span class="description">Drop a giant ice spike on foes to make them vulnerable.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (10s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Radius - Radius: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5551" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B91D94720FB5979FED339EC7B1E55071076B5E0F/103262.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5551" target="_blank">5551</a></span></div><div>Chat link: <span class="chat-link">[&Bq8VAAA=]</span></div><div>Name: <span class="name">Healing Rain</span></div><div>Description: <span class="description">Call down a healing rain on the target area, granting regeneration to allies and curing conditions once every three seconds.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 45s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (4s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 450</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1</li><li>Number - Pulses: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Water</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 2 (requires trait 362)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-5552" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/74BF0A9D002750671D0428CC28BFAC35372AE422/102797.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5552" target="_blank">5552</a></span></div><div>Chat link: <span class="chat-link">[&BrAVAAA=]</span></div><div>Name: <span class="name">Lightning Surge</span></div><div>Description: <span class="description">Charge a lightning surge that damages and blinds foes near your target when it discharges.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Radius - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5553" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F457134ECFA949C4A47525B30E07A1534542E172/103276.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5553" target="_blank">5553</a></span></div><div>Chat link: <span class="chat-link">[&BrEVAAA=]</span></div><div>Name: <span class="name">Gust</span></div><div>Description: <span class="description">Push foes backward with a burst of air.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 400</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5554" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0A1E58F3900AB25D79A7A9FDF343F1742915775C/103341.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5554" target="_blank">5554</a></span></div><div>Chat link: <span class="chat-link">[&BrIVAAA=]</span></div><div>Name: <span class="name">Mist Form</span></div><div>Description: <span class="description">Cantrip. Morph into an invulnerable, vaporous mist for a brief time.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-15795">15795</a></span></div><div>Categories: <span class="categories"><ul><li>Cantrip</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 75s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> NoData - Prevents Capture-Point Contribution: </li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Movement Speed Increase: 66%</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-15795">15795</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5555" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BBF16D6BF9CDA755420759F7D5F8D3FF6B2065DA/103343.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5555" target="_blank">5555</a></span></div><div>Chat link: <span class="chat-link">[&BrMVAAA=]</span></div><div>Name: <span class="name">Magnetic Wave</span></div><div>Description: <span class="description">Damage foes, cure three of your conditions, and reflect projectiles with a magnetic surge.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 300</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Reflection Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-5556" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C518536FBD1734CD9A19F4480153977BD09CBFD2/103344.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5556" target="_blank">5556</a></span></div><div>Chat link: <span class="chat-link">[&BrQVAAA=]</span></div><div>Name: <span class="name">Freezing Gust</span></div><div>Description: <span class="description">Chill your foe for a brief time.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (3s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5557" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/ED2422E6051855A76214FA9F292525C1359F0B59/103296.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5557" target="_blank">5557</a></span></div><div>Chat link: <span class="chat-link">[&BrUVAAA=]</span></div><div>Name: <span class="name">Fire Grab</span></div><div>Description: <span class="description">Damage foes in a cone in front of you. Deal more damage to burning foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 300</li><li>Recharge - Recharge: 45s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage vs. Burning: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5558" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/180D2C7CDB69E301401509737CEC35F90D57E358/102819.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5558" target="_blank">5558</a></span></div><div>Chat link: <span class="chat-link">[&BrYVAAA=]</span></div><div>Name: <span class="name">Cleansing Wave</span></div><div>Description: <span class="description">Heal yourself and nearby allies, curing a condition.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 1302</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5559" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/616E0903C7B4F903CEBA6CCE5BEFC13ED424A599/103078.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5559" target="_blank">5559</a></span></div><div>Chat link: <span class="chat-link">[&BrcVAAA=]</span></div><div>Name: <span class="name">Magnetic Grasp</span></div><div>Description: <span class="description">Immobilize your foe, making them vulnerable to a Magnetic Leap attack.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-17008">17008</a></span></div><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (2s) (1x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-5560" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4CCE5E636B2FCD33495780FB1BCD02A3666DEEBC/103290.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5560" target="_blank">5560</a></span></div><div>Chat link: <span class="chat-link">[&BrgVAAA=]</span></div><div>Name: <span class="name">Geyser</span></div><div>Description: <span class="description">Summon a geyser to heal nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5561" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9C090BF7E893030BABD5DC4BA4020262AD91CE2C/103134.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5561" target="_blank">5561</a></span></div><div>Chat link: <span class="chat-link">[&BrkVAAA=]</span></div><div>Name: <span class="name">Lightning Strike</span></div><div>Description: <span class="description">Strike your foe with lightning.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5562" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/54C5B6544376D03C1205955030300318E922083A/103345.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5562" target="_blank">5562</a></span></div><div>Chat link: <span class="chat-link">[&BroVAAA=]</span></div><div>Name: <span class="name">Gale</span></div><div>Description: <span class="description">Knock down your foe with a charged wind blast.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61A6A8A161FB7124336A6ED1FBAF9B1E030166A6/156664.png"> Time - Knockdown: 2s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5564" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0AFD20E6B71A0A967347EE55297079B80BB7AAA9/103346.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5564" target="_blank">5564</a></span></div><div>Chat link: <span class="chat-link">[&BrwVAAA=]</span></div><div>Name: <span class="name">Vapor Form</span></div><div>Description: <span class="description">Assume a mobile, vaporous form, returning to a downed state when the effect ends.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> NoData - Prevents Capture-Point Contribution: </li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5566" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/089F6BDA2B0ED0A77EA9DFDBA7272C09C1D26545/103347.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5566" target="_blank">5566</a></span></div><div>Chat link: <span class="chat-link">[&Br4VAAA=]</span></div><div>Name: <span class="name">Steam</span></div><div>Description: <span class="description">Blind your foe with superheated water.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5567" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CC6D556B7C3F95C49E54D697CC2B4E79105DC594/103348.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5567" target="_blank">5567</a></span></div><div>Chat link: <span class="chat-link">[&Br8VAAA=]</span></div><div>Name: <span class="name">Conjure Frost Bow</span></div><div>Description: <span class="description">Conjure. Manifest a frost bow in your hands and at the target location. Wielders of this weapon gain increased condition duration and healing power.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Conjure</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Unblockable - Unblockable: </li><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CC6D556B7C3F95C49E54D697CC2B4E79105DC594/103348.png"> Buff - Apply Buff/Condition: Conjure Frost Attributes (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CC6D556B7C3F95C49E54D697CC2B4E79105DC594/103348.png"> Buff - Apply Buff/Condition: Conjure Frost Charges (60s) (15x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 60s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CC6D556B7C3F95C49E54D697CC2B4E79105DC594/103348.png"> Buff - Apply Buff/Condition: Conjure Frost Charges (60s) (25x) (requires trait 328)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5568" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6A1AF3EF1C4441C1ED4A610B175459087A355163/103349.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5568" target="_blank">5568</a></span></div><div>Chat link: <span class="chat-link">[&BsAVAAA=]</span></div><div>Name: <span class="name">Frost Fan</span></div><div>Description: <span class="description">Damage foes with a spread of icy arrows that cause chill.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (7x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (1s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5569" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/1E78AF94DA0249583CBE14CD30CD24EF5FE21A40/103350.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5569" target="_blank">5569</a></span></div><div>Chat link: <span class="chat-link">[&BsEVAAA=]</span></div><div>Name: <span class="name">Glyph of Elemental Harmony</span></div><div>Description: <span class="description">Glyph. Heal yourself and gain a boon based on your attunement.
Fire: might.
Water: regeneration.
Air: swiftness.
Earth: protection.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 4894</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (20s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (10s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5570" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/950EABEE51A5B7E116609A2C4869B2BDF3760ED1/103351.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5570" target="_blank">5570</a></span></div><div>Chat link: <span class="chat-link">[&BsIVAAA=]</span></div><div>Name: <span class="name">Signet of Water</span></div><div>Description: <span class="description">Signet Passive: Cures a condition every ten seconds.
Signet Active: Chill your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/950EABEE51A5B7E116609A2C4869B2BDF3760ED1/103351.png"> Buff - Apply Buff/Condition: Signet of Water (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (8s) (3x) (requires trait 347)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5571" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/DC27E04D9F9CE5627D953752B5F334C7A304B7F5/103352.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5571" target="_blank">5571</a></span></div><div>Chat link: <span class="chat-link">[&BsMVAAA=]</span></div><div>Name: <span class="name">Signet of Earth</span></div><div>Description: <span class="description">Signet Passive: Improves toughness.
Signet Active: Immobilize and bleed your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/DC27E04D9F9CE5627D953752B5F334C7A304B7F5/103352.png"> Buff - Apply Buff/Condition: Signet of Earth (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (7s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (3s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (8s) (3x) (requires trait 347)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5572" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2995072EFD05AC80581CCEEB64BC592B3B6DE724/103353.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5572" target="_blank">5572</a></span></div><div>Chat link: <span class="chat-link">[&BsQVAAA=]</span></div><div>Name: <span class="name">Signet of Air</span></div><div>Description: <span class="description">Signet Passive: Grants a 25% increase in movement speed.
Signet Active: Blind your target and nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2995072EFD05AC80581CCEEB64BC592B3B6DE724/103353.png"> Buff - Apply Buff/Condition: Signet of Air (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (8s) (3x) (requires trait 347)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5573" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E32109BA04DE3CE0F2A8E30324D235910B739BFC/103354.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5573" target="_blank">5573</a></span></div><div>Chat link: <span class="chat-link">[&BsUVAAA=]</span></div><div>Name: <span class="name">Glyph of Renewal</span></div><div>Description: <span class="description">Glyph. Revive allies with different attunement effects.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5760">5760</a></span></div><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 165s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5593" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F85AD5D8C7C668B3FA7C0BE80699BDBAFAB5C47C/103358.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5593" target="_blank">5593</a></span></div><div>Chat link: <span class="chat-link">[&BtkVAAA=]</span></div><div>Name: <span class="name">Explosive Lava Axe</span></div><div>Description: <span class="description">Throw an explosive lava axe at the target location.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-5595" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/DCF09BD74F77D6A9ADDADDA4A4B75005E752FCFF/103359.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5595" target="_blank">5595</a></span></div><div>Chat link: <span class="chat-link">[&BtsVAAA=]</span></div><div>Name: <span class="name">Water Arrow</span></div><div>Description: <span class="description">Shoot an arrow of water that damages foes and heals allies around the area of impact.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 404</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Allied Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5597" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0C9AD275BAA47FD231B63EF108C447CF29196D57/103206.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5597" target="_blank">5597</a></span></div><div>Chat link: <span class="chat-link">[&Bt0VAAA=]</span></div><div>Name: <span class="name">Boil</span></div><div>Description: <span class="description">Boil the water around your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Duration - Duration: 6s (requires trait 1510)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5598" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F0A8380340E1E64FAFAAE87053422136664528CC/103205.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5598" target="_blank">5598</a></span></div><div>Chat link: <span class="chat-link">[&Bt4VAAA=]</span></div><div>Name: <span class="name">Magma Orb</span></div><div>Description: <span class="description">Shoot a blob of molten rock that explodes after a delay.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Explosion Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5599" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/08C4CF159F5D14132F0EFA29E59532122A4E2679/103223.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5599" target="_blank">5599</a></span></div><div>Chat link: <span class="chat-link">[&Bt8VAAA=]</span></div><div>Name: <span class="name">Lava Chains</span></div><div>Description: <span class="description">Cripple multiple foes with lava chains.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 1</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5600" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/74E5B6C9451DA56CB3BDC37B3952396D247B9F71/103207.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5600" target="_blank">5600</a></span></div><div>Chat link: <span class="chat-link">[&BuAVAAA=]</span></div><div>Name: <span class="name">Heat Wave</span></div><div>Description: <span class="description">Launch three waves of heat. Each burns foes and grants vigor to allies.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/58E92EBAF0DB4DA7C4AC04D9B22BCA5ECF0100DE/102843.png"> Buff - Apply Buff/Condition: Vigor (5s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (6s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5602" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D30CCEBC5B2A61039AFF0D691F46665B7E4F6B76/347235.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5602" target="_blank">5602</a></span></div><div>Chat link: <span class="chat-link">[&BuIVAAA=]</span></div><div>Name: <span class="name">Whirlpool</span></div><div>Description: <span class="description">Cantrip. Shape-shift into a swirling maelstrom that pulls foes into its destructive vortex.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Elite</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Elite</span></div><br><br><div>Categories: <span class="categories"><ul><li>Cantrip</li></ul></span></div><div>Transform skills: <span class="transform-skills"><ul><li><a href="#skill-5603">5603</a></li><li><a href="#skill-5603">5603</a></li><li><a href="#skill-5603">5603</a></li><li><a href="#skill-5603">5603</a></li><li><a href="#skill-5603">5603</a></li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 180s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Damage Pulse: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Boon Gain Interval: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Boon Application Interval: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Number - Pull: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 18s (requires trait 528)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5603" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/A9050BAB0847390C0112694321B0F6AEDF7AE1FB/102804.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5603" target="_blank">5603</a></span></div><div>Chat link: <span class="chat-link">[&BuMVAAA=]</span></div><div>Name: <span class="name">Whirlpool</span></div><div>Description: <span class="description">You cannot use skills as a whirlpool.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br></td><tr id="skill-5604" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E7D2EE09EFDD51A111D500D21138F2BC0C662430/102983.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5604" target="_blank">5604</a></span></div><div>Chat link: <span class="chat-link">[&BuQVAAA=]</span></div><div>Name: <span class="name">Water Missile</span></div><div>Description: <span class="description">Launch a slow-moving homing missile.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5605" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/1832787C0259396C20A171A9F41AFC2738BD2CD4/103116.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5605" target="_blank">5605</a></span></div><div>Chat link: <span class="chat-link">[&BuUVAAA=]</span></div><div>Name: <span class="name">Ice Globe</span></div><div>Description: <span class="description">Shoot a slow-moving, detonatable orb of ice.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5611">5611</a></span></div><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Projectile Dmg: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Detonation Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5606" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/719F9ED8D041C01BDB01431DF421C0D232387DD0/103360.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5606" target="_blank">5606</a></span></div><div>Chat link: <span class="chat-link">[&BuYVAAA=]</span></div><div>Name: <span class="name">Ice Wall</span></div><div>Description: <span class="description">Create a wall of ice that you can shatter, chilling foes near its location.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 320</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5607" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5B6C7302C05144C570730B349367DBCFAF4F09E6/103361.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5607" target="_blank">5607</a></span></div><div>Chat link: <span class="chat-link">[&BucVAAA=]</span></div><div>Name: <span class="name">Tidal Wave</span></div><div>Description: <span class="description">Charge forward with tidal force, damaging foes and healing allies.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 325</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Leap (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Wave Dmg: (1x) (requires trait 36)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5608" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/273795B0A735714112D2F902C45544B9D4383553/103362.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5608" target="_blank">5608</a></span></div><div>Chat link: <span class="chat-link">[&BugVAAA=]</span></div><div>Name: <span class="name">Water Fist</span></div><div>Description: <span class="description">Throw a punch of concentrated water.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5609" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0906F8CD5CDD3E9475D76DAD98DA2FCE2F59180A/103363.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5609" target="_blank">5609</a></span></div><div>Chat link: <span class="chat-link">[&BukVAAA=]</span></div><div>Name: <span class="name">Stone Kick</span></div><div>Description: <span class="description">Wrap your foot in stone and kick your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5610" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E9C3FC0D934DA6184FDDADBD66B3CD4FD72308A1/103364.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5610" target="_blank">5610</a></span></div><div>Chat link: <span class="chat-link">[&BuoVAAA=]</span></div><div>Name: <span class="name">Steam Vent</span></div><div>Description: <span class="description">Float to the surface on a burst of steam, blinding and burning foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5611" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/328097366ED464BCECA91C9E01AB4F0FC6AFFD9D/103365.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5611" target="_blank">5611</a></span></div><div>Chat link: <span class="chat-link">[&BusVAAA=]</span></div><div>Name: <span class="name">Ice Globe</span></div><div>Description: <span class="description">Detonate your ice globe to damage foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5614" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A876369AEC5C74110A4077B6930335C42A05B3AC/103366.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5614" target="_blank">5614</a></span></div><div>Chat link: <span class="chat-link">[&Bu4VAAA=]</span></div><div>Name: <span class="name">Detonate</span></div><div>Description: <span class="description">Detonate your ice wall to damage and chill foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (2s) (1x)</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #2 is missing an icon</li></ul></div></td><tr id="skill-5621" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4006DEE51CF3EC93F91B341924B6D0D1EFF9F25E/103367.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5621" target="_blank">5621</a></span></div><div>Chat link: <span class="chat-link">[&BvUVAAA=]</span></div><div>Name: <span class="name">Shield Smack</span></div><div>Description: <span class="description">Smack your foe with the magnetic shield.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-21646">21646</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-21646">21646</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (6s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5623" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/3C601AB809DAB4119DAF4B96DC0031C2CADABC9B/103368.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5623" target="_blank">5623</a></span></div><div>Chat link: <span class="chat-link">[&BvcVAAA=]</span></div><div>Name: <span class="name">Fortify</span></div><div>Description: <span class="description">Use magnetism to envelop yourself in a shield, becoming invulnerable.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 100</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> NoData - Prevents Capture-Point Contribution: </li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5624" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C3DA6AC980062B0A0EEA14CE51393748CFAE01CA/103369.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5624" target="_blank">5624</a></span></div><div>Chat link: <span class="chat-link">[&BvgVAAA=]</span></div><div>Name: <span class="name">Conjure Lightning Hammer</span></div><div>Description: <span class="description">Conjure. Manifest a lightning hammer in your hands and at the target location. Wielders of this weapon gain increased precision and ferocity.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Conjure</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Unblockable - Unblockable: </li><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/C3DA6AC980062B0A0EEA14CE51393748CFAE01CA/103369.png"> Buff - Apply Buff/Condition: Conjure Lightning Attributes (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/C3DA6AC980062B0A0EEA14CE51393748CFAE01CA/103369.png"> Buff - Apply Buff/Condition: Conjure Lightning Charges (60s) (15x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 60s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/C3DA6AC980062B0A0EEA14CE51393748CFAE01CA/103369.png"> Buff - Apply Buff/Condition: Conjure Lightning Charges (60s) (25x) (requires trait 328)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5625" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A7EDEA66DD7C5E9EFF65A4054B23FEB8070AD394/103370.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5625" target="_blank">5625</a></span></div><div>Chat link: <span class="chat-link">[&BvkVAAA=]</span></div><div>Name: <span class="name">Lightning Leap</span></div><div>Description: <span class="description">Leap at your foe and hit them with electrical damage.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li><li>ComboFinisher - Combo Finisher: Leap (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5635" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/AD24BD1B231424D2A8F223A6F899AC34D6AAAB26/103356.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5635" target="_blank">5635</a></span></div><div>Chat link: <span class="chat-link">[&BgMWAAA=]</span></div><div>Name: <span class="name">Arcane Power</span></div><div>Description: <span class="description">Arcane. Your next five attacks do critical damage.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Arcane</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 45s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/AD24BD1B231424D2A8F223A6F899AC34D6AAAB26/103356.png"> Buff - Apply Buff/Condition: Glyph of Arcane Power (30s) (5x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5638" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/367C5408D29E1C49AE52ED18A2EFD76C1B40EB5A/103372.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5638" target="_blank">5638</a></span></div><div>Chat link: <span class="chat-link">[&BgYWAAA=]</span></div><div>Name: <span class="name">Arcane Wave</span></div><div>Description: <span class="description">Arcane. Blast foes in the target area with an energy wave for critical damage.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Arcane</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-22572">22572</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5639" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C4FF5D0F0942BC27D7277CC9CB64280F451B16C5/103070.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5639" target="_blank">5639</a></span></div><div>Chat link: <span class="chat-link">[&BgcWAAA=]</span></div><div>Name: <span class="name">Armor of Earth</span></div><div>Description: <span class="description">Cantrip. Protect yourself with earth armor and gain protection and stability.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Cantrip</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 75s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (6s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (6s) (10x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5641" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A20219EB6F5FC52A0E537163B4A9051606C11B52/65735.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5641" target="_blank">5641</a></span></div><div>Chat link: <span class="chat-link">[&BgkWAAA=]</span></div><div>Name: <span class="name">Arcane Shield</span></div><div>Description: <span class="description">Arcane. Block attacks with an energy shield. If it blocks three attacks, it explodes for critical damage.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Arcane</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 75s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A20219EB6F5FC52A0E537163B4A9051606C11B52/65735.png"> Buff - Apply Buff/Condition: Arcane Shield (5s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5644" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6D6650C13B0DA019E8EEA0C50E5307C567D7405E/103373.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5644" target="_blank">5644</a></span></div><div>Chat link: <span class="chat-link">[&BgwWAAA=]</span></div><div>Name: <span class="name">Burning Speed</span></div><div>Description: <span class="description">Slide forward and blast the area, leaving behind a line of fire that burns foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Blast Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Fire Wall Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Duration - Fire Wall Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Blast Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fire Wall Duration: 6s (requires trait 1510)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-5646" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A7F6522CC73138ECBF15A04D62634A2FFFBFD246/103374.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5646" target="_blank">5646</a></span></div><div>Chat link: <span class="chat-link">[&Bg4WAAA=]</span></div><div>Name: <span class="name">Lightning Touch</span></div><div>Description: <span class="description">Shock your foe and inflict weakness.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 300</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/6CB0E64AF9AA292E332A38C1770CE577E2CDE0E8/102853.png"> Buff - Apply Buff/Condition: Weakness (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5648" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0F66B3C223C6A3951F534E6C0A91BD740332E11D/103225.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5648" target="_blank">5648</a></span></div><div>Chat link: <span class="chat-link">[&BhAWAAA=]</span></div><div>Name: <span class="name">Air Bubble</span></div><div>Description: <span class="description">Trap your foe in an air bubble and make them float to the surface.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 35s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/BAEECCBD49E913DBFED79C767816D769C6B1906B/156660.png"> Time - Float: 2s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5650" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/3EAE97B302136E0348DD2E1980B596FD6B2E404A/103226.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5650" target="_blank">5650</a></span></div><div>Chat link: <span class="chat-link">[&BhIWAAA=]</span></div><div>Name: <span class="name">Lightning Cage</span></div><div>Description: <span class="description">Create an electrical field that stuns foes crossing it.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 35s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li>ComboField - Combo Field: Lightning</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5652" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2AE052EA9CF61C71099C085608489E025419B0C9/103375.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5652" target="_blank">5652</a></span></div><div>Chat link: <span class="chat-link">[&BhQWAAA=]</span></div><div>Name: <span class="name">Air Pocket</span></div><div>Description: <span class="description">Release a slow-moving, detonatable air pocket. When it explodes, you teleport to that location.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5653">5653</a></span></div><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5653" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6693297328BDDDFFE29998512E53C6DBB1A62E2B/103376.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5653" target="_blank">5653</a></span></div><div>Chat link: <span class="chat-link">[&BhUWAAA=]</span></div><div>Name: <span class="name">Vacuum</span></div><div>Description: <span class="description">Detonate your air pocket to teleport to its location.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5655" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/06016B03B80B115DAE3ACB4F260B60D505970FBA/103377.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5655" target="_blank">5655</a></span></div><div>Chat link: <span class="chat-link">[&BhcWAAA=]</span></div><div>Name: <span class="name">Electrocute</span></div><div>Description: <span class="description">Charge the water around your foe with electricity.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (6s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5656" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/94A380301295E5FB99BD2511D87963991798CC34/103224.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5656" target="_blank">5656</a></span></div><div>Chat link: <span class="chat-link">[&BhgWAAA=]</span></div><div>Name: <span class="name">Forked Lightning</span></div><div>Description: <span class="description">Fire three bolts of lightning in an arc in front of you.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5657" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D06268ACB6255B05720E5534B2C2290102B10E02/102984.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5657" target="_blank">5657</a></span></div><div>Chat link: <span class="chat-link">[&BhkWAAA=]</span></div><div>Name: <span class="name">Rock Blade</span></div><div>Description: <span class="description">Shoot three rocky blades at your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Blades: 3</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-5658" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/05CD802922037FF3BD54026DF045740F28B3962F/103114.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5658" target="_blank">5658</a></span></div><div>Chat link: <span class="chat-link">[&BhoWAAA=]</span></div><div>Name: <span class="name">Rock Spray</span></div><div>Description: <span class="description">Spray a cone of gravel to bleed foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 400</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (10s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (10s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5659" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/EF6163519ACC1E4F58F556F1CA7EE57F0ADBD6E2/103378.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5659" target="_blank">5659</a></span></div><div>Chat link: <span class="chat-link">[&BhsWAAA=]</span></div><div>Name: <span class="name">Rock Anchor</span></div><div>Description: <span class="description">Anchor a rock to your foe, making them sink.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 35s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7D674324681E300974D90D02961EC27212ECBBE6/156667.png"> Time - Sink: 2s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5661" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CAC31726706760130AA5E207A77DB3A7E73C27D2/103379.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5661" target="_blank">5661</a></span></div><div>Chat link: <span class="chat-link">[&Bh0WAAA=]</span></div><div>Name: <span class="name">Murky Water</span></div><div>Description: <span class="description">Cloud the water to blind your target and nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li><li>ComboField - Combo Field: Smoke</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5662" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7400310F01394D5CF4F056103402717EDF27CB5C/103227.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5662" target="_blank">5662</a></span></div><div>Chat link: <span class="chat-link">[&Bh4WAAA=]</span></div><div>Name: <span class="name">Magnetic Current</span></div><div>Description: <span class="description">Pull yourself to your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 18s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Number - Pull: 600</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5666" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/011D983FEAFB946EF0F45E7F290838CFA31D63D0/103380.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5666" target="_blank">5666</a></span></div><div>Chat link: <span class="chat-link">[&BiIWAAA=]</span></div><div>Name: <span class="name">Glyph of Elementals</span></div><div>Description: <span class="description">Glyph. Summon an elemental based on your attunement.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Elite</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Elite</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-25490">25490</a></span></div><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 90s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 60s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5668" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CD08FDC23B56EBB19C90B909C65D9EE4D9FFF8C8/103183.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5668" target="_blank">5668</a></span></div><div>Chat link: <span class="chat-link">[&BiQWAAA=]</span></div><div>Name: <span class="name">Ring of Fire</span></div><div>Description: <span class="description">Encircle target area in flame, burning foes that enter.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (4s) (1x)</li><li>Buff - Apply Buff/Condition: Aoe 240 (1s) (240x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-5671" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C72B5BC2A1DC6243AF95C331BDC7CFE0D3F26F73/103182.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5671" target="_blank">5671</a></span></div><div>Chat link: <span class="chat-link">[&BicWAAA=]</span></div><div>Name: <span class="name">Static Field</span></div><div>Description: <span class="description">Create an electrical field that stuns foes crossing it.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li>ComboField - Combo Field: Lightning</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5675" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/000E1F53624D2F9B222E17D02A5A5ED40417CAB7/103039.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5675" target="_blank">5675</a></span></div><div>Chat link: <span class="chat-link">[&BisWAAA=]</span></div><div>Name: <span class="name">Phoenix</span></div><div>Description: <span class="description">Release a fiery phoenix that attacks foes in a line before exploding and returning to you, curing a condition and granting you vigor.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Explosion Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/58E92EBAF0DB4DA7C4AC04D9B22BCA5ECF0100DE/102843.png"> Buff - Apply Buff/Condition: Vigor (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-5678" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2AE8672D7A08BB4129B6F0F40C2BC10642D55C28/102884.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5678" target="_blank">5678</a></span></div><div>Chat link: <span class="chat-link">[&Bi4WAAA=]</span></div><div>Name: <span class="name">Fire Shield</span></div><div>Description: <span class="description">Envelop yourself in a fiery shield that burns foes and grants might each time you are struck (cooldown of 1 second per attacker).</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2AE8672D7A08BB4129B6F0F40C2BC10642D55C28/102884.png"> Buff - Apply Buff/Condition: Fire Shield (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (1s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/2AE8672D7A08BB4129B6F0F40C2BC10642D55C28/102884.png"> Buff - Apply Buff/Condition: Fire Shield (7s) (1x) (requires trait 340)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5679" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/610424237E18EA90F0D824454104355309FF5DDA/102959.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5679" target="_blank">5679</a></span></div><div>Chat link: <span class="chat-link">[&Bi8WAAA=]</span></div><div>Name: <span class="name">Flame Burst</span></div><div>Description: <span class="description">Burn foes at the target location.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (6s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Radius - Radius: 240</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5680" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/45A8C3A3F534C7E8E371D41C693AC87A019D2E65/103204.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5680" target="_blank">5680</a></span></div><div>Chat link: <span class="chat-link">[&BjAWAAA=]</span></div><div>Name: <span class="name">Burning Retreat</span></div><div>Description: <span class="description">Quickly roll backward, leaving behind a line of fire that burns.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Duration - Duration: 6s</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 8s (requires trait 1510)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-5681" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4CCE5E636B2FCD33495780FB1BCD02A3666DEEBC/103290.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5681" target="_blank">5681</a></span></div><div>Chat link: <span class="chat-link">[&BjEWAAA=]</span></div><div>Name: <span class="name">Geyser</span></div><div>Description: <span class="description">Create a geyser to heal nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 808</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Radius - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Water</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5682" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/541CA5AAA1E95B93346D4FF80C7C6CCCC9909A2E/103381.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5682" target="_blank">5682</a></span></div><div>Chat link: <span class="chat-link">[&BjIWAAA=]</span></div><div>Name: <span class="name">Windborne Speed</span></div><div>Description: <span class="description">You and nearby allies gain swiftness, while curing crippled, immobilized, and chilled.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Radius - Radius: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5683" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/97F7094E7F32BD1A4C547AD74167744BE44CBC3E/103303.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5683" target="_blank">5683</a></span></div><div>Chat link: <span class="chat-link">[&BjMWAAA=]</span></div><div>Name: <span class="name">Unsteady Ground</span></div><div>Description: <span class="description">Create unsteady ground that foes cannot cross.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5685" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/048054BEC158D010706002C22AF47952ECC5A33C/103108.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5685" target="_blank">5685</a></span></div><div>Chat link: <span class="chat-link">[&BjUWAAA=]</span></div><div>Name: <span class="name">Magnetic Aura</span></div><div>Description: <span class="description">Reflect projectiles with magnetic energy.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/048054BEC158D010706002C22AF47952ECC5A33C/103108.png"> Buff - Apply Buff/Condition: Magnetic Aura (4s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5686" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/69CFF22DD8599E35164720AC02A5F2044C33C7DD/103136.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5686" target="_blank">5686</a></span></div><div>Chat link: <span class="chat-link">[&BjYWAAA=]</span></div><div>Name: <span class="name">Shock Wave</span></div><div>Description: <span class="description">Create a shock wave that bleeds and immobilizes your target.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (20s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5687" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2E2837AB65D4283DD23673CB21450A9CC5D2F07F/103384.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5687" target="_blank">5687</a></span></div><div>Chat link: <span class="chat-link">[&BjcWAAA=]</span></div><div>Name: <span class="name">Updraft</span></div><div>Description: <span class="description">Gain swiftness from a gust of wind that launches nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 150</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CB330EF25C62C05F1800A1C507B6AE4944551746/156653.png"> Distance - Launch: 200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5690" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/01F24427AF4C18476A657647C39CB2F2374BDA57/102975.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5690" target="_blank">5690</a></span></div><div>Chat link: <span class="chat-link">[&BjoWAAA=]</span></div><div>Name: <span class="name">Earthquake</span></div><div>Description: <span class="description">Trigger a quake at your location, knocking down foes and dealing massive damage.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 240</li><li>Recharge - Recharge: 45s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61A6A8A161FB7124336A6ED1FBAF9B1E030166A6/156664.png"> Time - Knockdown: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5691" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CD08FDC23B56EBB19C90B909C65D9EE4D9FFF8C8/103183.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5691" target="_blank">5691</a></span></div><div>Chat link: <span class="chat-link">[&BjsWAAA=]</span></div><div>Name: <span class="name">Ring of Fire</span></div><div>Description: <span class="description">Damage nearby foes with a ring of fire, burning foes that pass through it.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (4s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Duration - Ring of Fire Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Ring of Fire Duration: 7s (requires trait 1510)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-5692" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/139899C1026E93EE0EDC44030B11E310E27D9807/103105.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5692" target="_blank">5692</a></span></div><div>Chat link: <span class="chat-link">[&BjwWAAA=]</span></div><div>Name: <span class="name">Dragon's Tooth</span></div><div>Description: <span class="description">Drop an explosive dragon's tooth on your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5693" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5DAC69FFBE4850EE6F9FA2532616C128D7AEF957/103309.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5693" target="_blank">5693</a></span></div><div>Chat link: <span class="chat-link">[&Bj0WAAA=]</span></div><div>Name: <span class="name">Ice Shards</span></div><div>Description: <span class="description">Fire three ice shards at your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (3x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5694" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A9B10F55FF0922633B0CCC3C42AB7C093372A8E2/102831.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5694" target="_blank">5694</a></span></div><div>Chat link: <span class="chat-link">[&Bj4WAAA=]</span></div><div>Name: <span class="name">Blinding Flash</span></div><div>Description: <span class="description">Blind your foe with a flash of light.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (6s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5695" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C5CB69247473AE2DEB35DB5F952A0C3832CC14F2/102858.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5695" target="_blank">5695</a></span></div><div>Chat link: <span class="chat-link">[&Bj8WAAA=]</span></div><div>Name: <span class="name">Rock Barrier</span></div><div>Description: <span class="description">Envelop yourself in a stony barrier that improves toughness.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5780">5780</a></span></div><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 30s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5696" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/EA6A082902800CC552393F24E03240A7A7D9C511/103080.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5696" target="_blank">5696</a></span></div><div>Chat link: <span class="chat-link">[&BkAWAAA=]</span></div><div>Name: <span class="name">Dust Devil</span></div><div>Description: <span class="description">Blind your foes with a blast of sand.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5697" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A0DF63425A55C89E3B96DA571F04B93CE16D7A35/103385.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5697" target="_blank">5697</a></span></div><div>Chat link: <span class="chat-link">[&BkEWAAA=]</span></div><div>Name: <span class="name">Fiery Whirl</span></div><div>Description: <span class="description">Advance forward, slashing foes in your way.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 8</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li><li>ComboFinisher - Combo Finisher: Whirl (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-5706" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/45EC55C8CBDA67763A27690F38AD13D9A806F9ED/103320.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5706" target="_blank">5706</a></span></div><div>Chat link: <span class="chat-link">[&BkoWAAA=]</span></div><div>Name: <span class="name">Glyph of Summoning</span></div><div>Description: <span class="description">Glyph. Summon an elemental based on your attunement.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 60s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5717" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/45A8C3A3F534C7E8E371D41C693AC87A019D2E65/103204.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5717" target="_blank">5717</a></span></div><div>Chat link: <span class="chat-link">[&BlUWAAA=]</span></div><div>Name: <span class="name">Burning Retreat</span></div><div>Description: <span class="description">Quickly roll backward, leaving behind a line of fire that burns.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/59E0DB6A699810641C959926ADFEF73E08CC255B/156655.png"> ComboField - Combo Field: Fire</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 4s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s (requires trait 1510)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5718" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CD08FDC23B56EBB19C90B909C65D9EE4D9FFF8C8/103183.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5718" target="_blank">5718</a></span></div><div>Chat link: <span class="chat-link">[&BlYWAAA=]</span></div><div>Name: <span class="name">Ring of Fire</span></div><div>Description: <span class="description">Damage nearby foes with a ring of fire, burning foes that pass through it.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 7s (requires trait 1510)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5719" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E50F019B7F732677016F959C67CB0EF7EC462D75/103386.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5719" target="_blank">5719</a></span></div><div>Chat link: <span class="chat-link">[&BlcWAAA=]</span></div><div>Name: <span class="name">Flame Leap</span></div><div>Description: <span class="description">Leap at your foe with a flaming attack that causes burning.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 550</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (8s) (1x)</li><li>ComboFinisher - Combo Finisher: Leap (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (10s) (1x) (requires trait 296)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-5720" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6652A34DDE59FB410EC21597B993796CA8B3EEED/103387.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5720" target="_blank">5720</a></span></div><div>Chat link: <span class="chat-link">[&BlgWAAA=]</span></div><div>Name: <span class="name">Frost Volley</span></div><div>Description: <span class="description">Rapidly fire at your foe, making them vulnerable with each hit.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (15s) (5x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-5721" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/140358662D0F91686AF712B15ECF1B912DBF4700/103388.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5721" target="_blank">5721</a></span></div><div>Chat link: <span class="chat-link">[&BlkWAAA=]</span></div><div>Name: <span class="name">Deep Freeze</span></div><div>Description: <span class="description">Encase your target in a block of solid ice.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (1s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5723" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6FB0BDB5ECB7DB4CA0FE1707450465C9BA80A501/103307.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5723" target="_blank">5723</a></span></div><div>Chat link: <span class="chat-link">[&BlsWAAA=]</span></div><div>Name: <span class="name">Ice Storm</span></div><div>Description: <span class="description">Call down an ice storm on the target area.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 24</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5725" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F513D2445AB3499CCC4B6E28044571583291A66D/103141.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5725" target="_blank">5725</a></span></div><div>Chat link: <span class="chat-link">[&Bl0WAAA=]</span></div><div>Name: <span class="name">Lightning Storm</span></div><div>Description: <span class="description">Randomly strike the surrounding area with lightning.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 360</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 10</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5726" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/65F53318C0B21E19E753A81FBA3E3A600D6E12DC/103389.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5726" target="_blank">5726</a></span></div><div>Chat link: <span class="chat-link">[&Bl4WAAA=]</span></div><div>Name: <span class="name">Lightning Swing</span></div><div>Description: <span class="description">Chain. Bash your foe.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5727">5727</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-5727">5727</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 150</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5727" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/33C2E0E10F440C64564B022BBFC947599A5D0610/103390.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5727" target="_blank">5727</a></span></div><div>Chat link: <span class="chat-link">[&Bl8WAAA=]</span></div><div>Name: <span class="name">Static Swing</span></div><div>Description: <span class="description">Chain. Strike your foe again.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5728">5728</a></span></div><div>Prev chain: <span class="prev_chain"><a href="#skill-5726">5726</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-5728">5728</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 150</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5728" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C0F04BDA46A916545ACEB1C4214C4F214BE96810/103391.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5728" target="_blank">5728</a></span></div><div>Chat link: <span class="chat-link">[&BmAWAAA=]</span></div><div>Name: <span class="name">Thunderclap</span></div><div>Description: <span class="description">Smash the ground and damage nearby foes.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Prev chain: <span class="prev_chain"><a href="#skill-5727">5727</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 150</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5732" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C72B5BC2A1DC6243AF95C331BDC7CFE0D3F26F73/103182.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5732" target="_blank">5732</a></span></div><div>Chat link: <span class="chat-link">[&BmQWAAA=]</span></div><div>Name: <span class="name">Static Field</span></div><div>Description: <span class="description">Manifest an electrical field that stuns foes crossing it.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 240</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 4s</li><li>ComboField - Combo Field: Lightning</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5733" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/69200409BE3757744A271E1F7676DFF134B80E06/103392.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5733" target="_blank">5733</a></span></div><div>Chat link: <span class="chat-link">[&BmUWAAA=]</span></div><div>Name: <span class="name">Wind Blast</span></div><div>Description: <span class="description">Launch your foe with a banishing smash.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li>Recharge - Recharge: 18s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CB330EF25C62C05F1800A1C507B6AE4944551746/156653.png"> Distance - Launch: 600</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5734" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/53207A9159611359DD9E4001F530F63CA7627FAD/103393.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5734" target="_blank">5734</a></span></div><div>Chat link: <span class="chat-link">[&BmYWAAA=]</span></div><div>Name: <span class="name">Glyph of Storms</span></div><div>Description: <span class="description">Glyph. Create a storm based on your attunement.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5735">5735</a></span></div><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 60s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5735" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/53207A9159611359DD9E4001F530F63CA7627FAD/103393.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5735" target="_blank">5735</a></span></div><div>Chat link: <span class="chat-link">[&BmcWAAA=]</span></div><div>Name: <span class="name">Ice Storm</span></div><div>Description: <span class="description">Glyph. Create an ice storm at the target area.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 18</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (10s) (1x) (requires trait 229)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5736" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/53207A9159611359DD9E4001F530F63CA7627FAD/103393.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5736" target="_blank">5736</a></span></div><div>Chat link: <span class="chat-link">[&BmgWAAA=]</span></div><div>Name: <span class="name">Firestorm</span></div><div>Description: <span class="description">Glyph. Create a firestorm at the target area.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (2s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (20s) (1x) (requires trait 229)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5737" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/53207A9159611359DD9E4001F530F63CA7627FAD/103393.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5737" target="_blank">5737</a></span></div><div>Chat link: <span class="chat-link">[&BmkWAAA=]</span></div><div>Name: <span class="name">Lightning Storm</span></div><div>Description: <span class="description">Glyph. Create a lightning storm at the target area.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 36</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 9s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (8s) (2x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (10s) (1x) (requires trait 229)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5738" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/53207A9159611359DD9E4001F530F63CA7627FAD/103393.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5738" target="_blank">5738</a></span></div><div>Chat link: <span class="chat-link">[&BmoWAAA=]</span></div><div>Name: <span class="name">Sandstorm</span></div><div>Description: <span class="description">Glyph. Create a sandstorm at the target area.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (3s) (1x)</li><li>Number - Pulses: 11</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (3s) (1x) (requires trait 229)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-5746" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9BAE0DB6B1F646685CCB08045924590E2CAA72AD/103394.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5746" target="_blank">5746</a></span></div><div>Chat link: <span class="chat-link">[&BnIWAAA=]</span></div><div>Name: <span class="name">Crippling Shield</span></div><div>Description: <span class="description">Throw your shield in a line, crippling struck foes.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Prev chain: <span class="prev_chain"><a href="#skill-21646">21646</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 450</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (2s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5747" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/987CB8ED19A4DC0F395195B7514C54F9FD5DFC5A/867448.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5747" target="_blank">5747</a></span></div><div>Chat link: <span class="chat-link">[&BnMWAAA=]</span></div><div>Name: <span class="name">Magnetic Shield</span></div><div>Description: <span class="description">Pull nearby foes to you with a magnetic force. Gain protection for each pulled foe.</span></div><div>Professions: None</div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Number - Pull: 400</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Skill is not assigned to any profession</li></ul></div></td><tr id="skill-5748" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BE287A4E7E416C5960C0613D3DD136DB1B10CA35/103216.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5748" target="_blank">5748</a></span></div><div>Chat link: <span class="chat-link">[&BnQWAAA=]</span></div><div>Name: <span class="name">Undercurrent</span></div><div>Description: <span class="description">Release a current of water to damage foes and regenerate allies.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7D674324681E300974D90D02961EC27212ECBBE6/156667.png"> Time - Sink: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5752" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/01D310FE65DBA378CBAFD13B2BFEDE59939C5153/102964.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5752" target="_blank">5752</a></span></div><div>Chat link: <span class="chat-link">[&BngWAAA=]</span></div><div>Name: <span class="name">Electrified Tornado</span></div><div>Description: <span class="description">Electrify your tornado form and make it shoot lightning.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5753" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/EA6A082902800CC552393F24E03240A7A7D9C511/103080.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5753" target="_blank">5753</a></span></div><div>Chat link: <span class="chat-link">[&BnkWAAA=]</span></div><div>Name: <span class="name">Dust Tornado</span></div><div>Description: <span class="description">Gather up dust into your tornado form, making it shoot out dust devils that blind foes.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 2</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5754" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F20A7D6B7FB71D520B4643CF120AF6A50DF7A2B0/102914.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5754" target="_blank">5754</a></span></div><div>Chat link: <span class="chat-link">[&BnoWAAA=]</span></div><div>Name: <span class="name">Debris Tornado</span></div><div>Description: <span class="description">Gather up debris into your tornado form and send it flying.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 1</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5760" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E32109BA04DE3CE0F2A8E30324D235910B739BFC/103354.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5760" target="_blank">5760</a></span></div><div>Chat link: <span class="chat-link">[&BoAWAAA=]</span></div><div>Name: <span class="name">Renewal of Air</span></div><div>Description: <span class="description">Glyph. Revive and teleport an ally to your location.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><div>Attunement: <span class="attunement">Air</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 165s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Revive Targets: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (10s) (1x) (requires trait 229)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-24409">24409</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5761" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E32109BA04DE3CE0F2A8E30324D235910B739BFC/103354.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5761" target="_blank">5761</a></span></div><div>Chat link: <span class="chat-link">[&BoEWAAA=]</span></div><div>Name: <span class="name">Renewal of Earth</span></div><div>Description: <span class="description">Glyph. Revive allies around you.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 165s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Revive Targets: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (3s) (1x) (requires trait 229)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-24411">24411</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5762" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E32109BA04DE3CE0F2A8E30324D235910B739BFC/103354.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5762" target="_blank">5762</a></span></div><div>Chat link: <span class="chat-link">[&BoIWAAA=]</span></div><div>Name: <span class="name">Renewal of Fire</span></div><div>Description: <span class="description">Glyph. Fire: Revive an ally; you're revived the next time you're downed.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><div>Attunement: <span class="attunement">Fire</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 165s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/E32109BA04DE3CE0F2A8E30324D235910B739BFC/103354.png"> Buff - Apply Buff/Condition: Renewal of Fire (15s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Revive Targets: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (20s) (1x) (requires trait 229)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-24407">24407</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5763" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E32109BA04DE3CE0F2A8E30324D235910B739BFC/103354.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5763" target="_blank">5763</a></span></div><div>Chat link: <span class="chat-link">[&BoMWAAA=]</span></div><div>Name: <span class="name">Renewal of Water</span></div><div>Description: <span class="description">Glyph. Water: Revive an ally with full health.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glyph</li></ul></span></div><div>Attunement: <span class="attunement">Water</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 165s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> Percent - Healing: 100%</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Revive Targets: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (10s) (1x) (requires trait 229)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-24410">24410</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5780" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BB59A576C805054EB94C66D8190490F273C7BBED/102974.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5780" target="_blank">5780</a></span></div><div>Chat link: <span class="chat-link">[&BpQWAAA=]</span></div><div>Name: <span class="name">Hurl</span></div><div>Description: <span class="description">Hurl the rocks from your barrier at your foe.</span></div><div>Professions: <span class="professions"><ul><li>Elementalist</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Attunement: <span class="attunement">Earth</span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #2 is missing an icon</li></ul></div></td><tr id="skill-5802" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/206FCC2A05035FDB306AB5136E5F3AC0FC6467F3/103395.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5802" target="_blank">5802</a></span></div><div>Chat link: <span class="chat-link">[&BqoWAAA=]</span></div><div>Name: <span class="name">Med Kit</span></div><div>Description: <span class="description">Device Kit. Equip a kit that replaces your weapon with healing skills.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Categories: <span class="categories"><ul><li>Kit</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-29772">29772</a></span></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (15s) (3x) (requires trait 477)</li></ul></div></td><tr id="skill-5805" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/C2A603094B5709BE213D391AFD4D33293C19EA38/103396.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5805" target="_blank">5805</a></span></div><div>Chat link: <span class="chat-link">[&Bq0WAAA=]</span></div><div>Name: <span class="name">Grenade Kit</span></div><div>Description: <span class="description">Device Kit. Equip a kit that replaces your weapon with grenade skills.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6110">6110</a></span></div><div>Categories: <span class="categories"><ul><li>Kit</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6172">6172</a></span></div></td><tr id="skill-5806" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D7236B1D9176DBEEA8C4570AE04965E902B14502/103172.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5806" target="_blank">5806</a></span></div><div>Chat link: <span class="chat-link">[&Bq4WAAA=]</span></div><div>Name: <span class="name">Poison Grenade</span></div><div>Description: <span class="description">Throw several grenades that explode in poisonous blasts.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/559B0AF9FB5E1243D2649FAAE660CCB338AACC19/102840.png"> Buff - Apply Buff/Condition: Poisoned (8s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180 (requires trait 514)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6167">6167</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5807" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/467E6BF83D152F95BC5D0B3573F4D2D71F5A4BFA/102830.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5807" target="_blank">5807</a></span></div><div>Chat link: <span class="chat-link">[&Bq8WAAA=]</span></div><div>Name: <span class="name">Shrapnel Grenade</span></div><div>Description: <span class="description">Throw grenades that explode in a hail of shrapnel, causing bleeding.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 180 (requires trait 514)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6170">6170</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5808" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5F7AB3AAB46F21CDBE633A953A4509EAE46C6920/103397.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5808" target="_blank">5808</a></span></div><div>Chat link: <span class="chat-link">[&BrAWAAA=]</span></div><div>Name: <span class="name">Flash Grenade</span></div><div>Description: <span class="description">Throw grenades that explode in blinding flashes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 180 (requires trait 514)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6169">6169</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5809" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D95F525D4F2898CDE205CCACE09FD35FEA78B6DD/103103.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5809" target="_blank">5809</a></span></div><div>Chat link: <span class="chat-link">[&BrEWAAA=]</span></div><div>Name: <span class="name">Freeze Grenade</span></div><div>Description: <span class="description">Throw grenades that chill foes with frigid blasts.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 180 (requires trait 514)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6168">6168</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5810" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5B2AB667667749BC1BC7AEFD27362E3E0E0F2FE6/103294.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5810" target="_blank">5810</a></span></div><div>Chat link: <span class="chat-link">[&BrIWAAA=]</span></div><div>Name: <span class="name">Grenade Barrage</span></div><div>Description: <span class="description">Throw several grenades at once.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 6</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 180 (requires trait 514)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6172">6172</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5811" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A8224970EEDE7C5A9A94DA2499646B0E6E787809/103398.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5811" target="_blank">5811</a></span></div><div>Chat link: <span class="chat-link">[&BrMWAAA=]</span></div><div>Name: <span class="name">Personal Battering Ram</span></div><div>Description: <span class="description">Gadget. Launch a target foe with a concealed ram head.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-29991">29991</a></span></div><div>Categories: <span class="categories"><ul><li>Gadget</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5982">5982</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CB330EF25C62C05F1800A1C507B6AE4944551746/156653.png"> Distance - Launch: 450</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-29991">29991</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5812" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/B06C59BBB1EC416859E04E7C9859BE020C4B3E17/103399.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5812" target="_blank">5812</a></span></div><div>Chat link: <span class="chat-link">[&BrQWAAA=]</span></div><div>Name: <span class="name">Bomb Kit</span></div><div>Description: <span class="description">Device Kit. Equip a kit that replaces your weapon with bomb skills.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6111">6111</a></span></div><div>Categories: <span class="categories"><ul><li>Kit</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5813">5813</a></span></div></td><tr id="skill-5813" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9ADBE10F0E4F7D75DC0BF54EBD5B360BE1AB9D09/103400.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5813" target="_blank">5813</a></span></div><div>Chat link: <span class="chat-link">[&BrUWAAA=]</span></div><div>Name: <span class="name">Big Ol' Bomb</span></div><div>Description: <span class="description">Set a timed charge with a big blast that launches nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 300</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CB330EF25C62C05F1800A1C507B6AE4944551746/156653.png"> Distance - Launch: 400</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360 (requires trait 483)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5818" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/FE750EEBB19017A516C521E3F2754F970318206D/103401.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5818" target="_blank">5818</a></span></div><div>Chat link: <span class="chat-link">[&BroWAAA=]</span></div><div>Name: <span class="name">Rifle Turret</span></div><div>Description: <span class="description">Turret. Build a rifle turret that shoots at foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6178">6178</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1000</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 1000</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (5s) (1x) (requires trait 1678)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Boon Application Interval: 10s (requires trait 1678)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5989">5989</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5820" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/AEB21DB6955411BD270BCE9B4663D07C64A30673/103245.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5820" target="_blank">5820</a></span></div><div>Chat link: <span class="chat-link">[&BrwWAAA=]</span></div><div>Name: <span class="name">Throw Junk</span></div><div>Description: <span class="description">Throw a bit of junk and inflict a random condition on your foe.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (3s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/6CB0E64AF9AA292E332A38C1770CE577E2CDE0E8/102853.png"> Buff - Apply Buff/Condition: Weakness (3s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 449)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5821" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/19E19A741B72550BF44E96F43C28571CCB059FBC/103402.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5821" target="_blank">5821</a></span></div><div>Chat link: <span class="chat-link">[&Br0WAAA=]</span></div><div>Name: <span class="name">Elixir B</span></div><div>Description: <span class="description">Elixir. Drink Elixir B to gain fury, might, retaliation, and swiftness.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6082">6082</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (30s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (10s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (12s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (36s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (12s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (12s) (1x) (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5822" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E406DB5F73E8AE312E0E04650FDAF0CCFCFC28FF/103403.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5822" target="_blank">5822</a></span></div><div>Chat link: <span class="chat-link">[&Br4WAAA=]</span></div><div>Name: <span class="name">Concussion Bomb</span></div><div>Description: <span class="description">Set an explosive that causes confusion to nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 180</li><li>Recharge - Recharge: 18s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/289AA0A4644F0E044DED3D3F39CED958E1DDFF53/102880.png"> Buff - Apply Buff/Condition: Confusion (5s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fuse Time: 1s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240 (requires trait 483)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fuse Time: 1s (requires trait 1944)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5823" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/95DF02395BB2C2EFD4D7BA5BE3ECC512E875EFEE/103404.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5823" target="_blank">5823</a></span></div><div>Chat link: <span class="chat-link">[&Br8WAAA=]</span></div><div>Name: <span class="name">Fire Bomb</span></div><div>Description: <span class="description">Set an explosive that burns nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 180</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x)</li><li>Number - Pulses: 4</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fuse Time: 1s</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (4s) (1x) (requires trait 433)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240 (requires trait 483)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fuse Time: 1s (requires trait 1944)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li><li>Fact #9 is missing an icon</li></ul></div></td><tr id="skill-5824" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2D0B6AC204047FE40504BFD7B0B1E015FEF75C2F/103405.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5824" target="_blank">5824</a></span></div><div>Chat link: <span class="chat-link">[&BsAWAAA=]</span></div><div>Name: <span class="name">Smoke Bomb</span></div><div>Description: <span class="description">Set a timed charge that creates a cloud of smoke, blinding nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 240</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (3s) (1x)</li><li>Number - Pulses: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fuse Time: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Interval: 2s</li><li>ComboField - Combo Field: Smoke</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fuse Time: 1s (requires trait 1944)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #3 is missing an icon</li><li>Fact #9 is missing an icon</li></ul></div></td><tr id="skill-5825" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9A37D45CBD05C029915ED90E4F08F6B8D2DFF8AB/102816.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5825" target="_blank">5825</a></span></div><div>Chat link: <span class="chat-link">[&BsEWAAA=]</span></div><div>Name: <span class="name">Slick Shoes</span></div><div>Description: <span class="description">Gadget. Spray oil behind you, knocking down foes. If underwater, foes entering the field are blinded.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-30828">30828</a></span></div><div>Categories: <span class="categories"><ul><li>Gadget</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5973">5973</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 45s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61A6A8A161FB7124336A6ED1FBAF9B1E030166A6/156664.png"> Time - Knockdown: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Oil Slick Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> NoData - Unblockable: </li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 60</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-30828">30828</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5827" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/40BE467F4D09226EA70526E4B61C0EDA270B6317/103170.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5827" target="_blank">5827</a></span></div><div>Chat link: <span class="chat-link">[&BsMWAAA=]</span></div><div>Name: <span class="name">Fragmentation Shot</span></div><div>Description: <span class="description">Fire a shot that bleeds the impacted target and then shatters, dealing damage to nearby enemies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6042">6042</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (5s) (1x) (requires trait 1878)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6042">6042</a></li><li>Fact #0 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-5828" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E630EC9663DDE5C165BC0304C636900C7D2006F9/103171.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5828" target="_blank">5828</a></span></div><div>Chat link: <span class="chat-link">[&BsQWAAA=]</span></div><div>Name: <span class="name">Poison Dart Volley</span></div><div>Description: <span class="description">Fire a volley of darts that poison foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6043">6043</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/559B0AF9FB5E1243D2649FAAE660CCB338AACC19/102840.png"> Buff - Apply Buff/Condition: Poisoned (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Darts: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/559B0AF9FB5E1243D2649FAAE660CCB338AACC19/102840.png"> Buff - Apply Buff/Condition: Poisoned (6s) (1x) (requires trait 1878)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6043">6043</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5829" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CBC5740B8092A6474595F8BFB2394D145D3AB0E8/103406.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5829" target="_blank">5829</a></span></div><div>Chat link: <span class="chat-link">[&BsUWAAA=]</span></div><div>Name: <span class="name">Static Shot</span></div><div>Description: <span class="description">Discharge a lightning shot that bounces between multiple foes, blinding and confusing them.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6044">6044</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/289AA0A4644F0E044DED3D3F39CED958E1DDFF53/102880.png"> Buff - Apply Buff/Condition: Confusion (3s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 4</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x) (requires trait 1878)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/289AA0A4644F0E044DED3D3F39CED958E1DDFF53/102880.png"> Buff - Apply Buff/Condition: Confusion (5s) (1x) (requires trait 1878)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5830" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/AA05DE91B26C2926046495CE0293966A3C1EA492/103187.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5830" target="_blank">5830</a></span></div><div>Chat link: <span class="chat-link">[&BsYWAAA=]</span></div><div>Name: <span class="name">Glue Shot</span></div><div>Description: <span class="description">Coat the target area with a glue puddle that immobilizes foes on impact, then cripples foes that remain within.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6045">6045</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 700</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Glue Puddle Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li>Number - Pulses: 4</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (2s) (1x) (requires trait 1878)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (2s) (1x) (requires trait 1878)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6045">6045</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5831" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/061D48DCAC954D91D8F8BD7F6B193201A695F92F/103407.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5831" target="_blank">5831</a></span></div><div>Chat link: <span class="chat-link">[&BscWAAA=]</span></div><div>Name: <span class="name">Blowtorch</span></div><div>Description: <span class="description">Unleash flames from your pistol to burn foes. Deals more damage the closer you are.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage at 200 Distance: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage at 400 Distance: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage at 600 Distance: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (8s) (3x) (requires trait 1878)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (8s) (2x) (requires trait 1878)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (8s) (1x) (requires trait 1878)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5832" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/951A3EDE5EC812BA2110B0A32D31C64EFB02F276/103408.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5832" target="_blank">5832</a></span></div><div>Chat link: <span class="chat-link">[&BsgWAAA=]</span></div><div>Name: <span class="name">Elixir X</span></div><div>Description: <span class="description">Elixir. Drink Elixir X to become a rampaging brute or whirling tornado. Underwater, become either a withering plague or a whirlpool.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Elite</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Elite</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><div>Transform skills: <span class="transform-skills"><ul><li><a href="#skill-5752">5752</a></li><li><a href="#skill-5753">5753</a></li><li><a href="#skill-5754">5754</a></li><li><a href="#skill-14485">14485</a></li><li><a href="#skill-14488">14488</a></li><li><a href="#skill-14489">14489</a></li><li><a href="#skill-14556">14556</a></li><li><a href="#skill-14490">14490</a></li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 105s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/22EDF7A7D620040CE1520552F45DE962AA625DA6/103281.png"> Buff - Apply Buff/Condition: Tornado (15s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D59294B049BF3412990AA9BAAF50809A0AA3EF0F/103571.png"> Buff - Apply Buff/Condition: Rampage (15s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/22EDF7A7D620040CE1520552F45DE962AA625DA6/103281.png"> Buff - Apply Buff/Condition: Tornado (18s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D59294B049BF3412990AA9BAAF50809A0AA3EF0F/103571.png"> Buff - Apply Buff/Condition: Rampage (18s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Movement Speed Increase: 50% (requires trait 528)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-20451">20451</a></li><li>Fact #0 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Transform skill 14485 does not exist</li><li>Transform skill 14488 does not exist</li><li>Transform skill 14489 does not exist</li><li>Transform skill 14556 does not exist</li><li>Transform skill 14490 does not exist</li></ul></div></td><tr id="skill-5834" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0FEB2FD10B5FE9CC4A3204A87A043AE45DD756F3/103409.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5834" target="_blank">5834</a></span></div><div>Chat link: <span class="chat-link">[&BsoWAAA=]</span></div><div>Name: <span class="name">Elixir H</span></div><div>Description: <span class="description">Elixir. Drink Elixir H to heal yourself and randomly gain protection, regeneration, or swiftness.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6119">6119</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 5560</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (10s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (6s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (12s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (12s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (15s) (3x) (requires trait 477)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5836" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C2E712121CA0F846441EB380A89351EB55D47C79/103410.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5836" target="_blank">5836</a></span></div><div>Chat link: <span class="chat-link">[&BswWAAA=]</span></div><div>Name: <span class="name">Flame Turret</span></div><div>Description: <span class="description">Turret. Deploy a turret that burns foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5900">5900</a></span></div><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6181">6181</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 450</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 500</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x) (requires trait 433)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (10s) (3x) (requires trait 1678)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Boon Application Interval: 10s (requires trait 1678)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5987">5987</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5837" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/45E806991F041B297A5D270A46C832E4E3B2A567/103110.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5837" target="_blank">5837</a></span></div><div>Chat link: <span class="chat-link">[&Bs0WAAA=]</span></div><div>Name: <span class="name">Net Turret</span></div><div>Description: <span class="description">Turret. Build a net turret that immobilizes nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5893">5893</a></span></div><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6179">6179</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 600</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (10s) (1x) (requires trait 1678)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Boon Application Interval: 10s (requires trait 1678)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5988">5988</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5838" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/EA2452FCE71C0F0B9755517324A47680BF45E79E/103201.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5838" target="_blank">5838</a></span></div><div>Chat link: <span class="chat-link">[&Bs4WAAA=]</span></div><div>Name: <span class="name">Thumper Turret</span></div><div>Description: <span class="description">Turret. Build a high-health thumper turret that damages nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5889">5889</a></span></div><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6180">6180</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 240</li><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (3s) (1x) (requires trait 1678)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Boon Application Interval: 10s (requires trait 1678)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5990">5990</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5842" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/02A02091B1EBDB782719EB6AE56F01E6372C500D/103091.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5842" target="_blank">5842</a></span></div><div>Chat link: <span class="chat-link">[&BtIWAAA=]</span></div><div>Name: <span class="name">Bomb</span></div><div>Description: <span class="description">Set an explosive that damages nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fuse Time: 1s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240 (requires trait 483)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fuse Time: 1s (requires trait 1944)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5857" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7D5297C096055DE43153D90F965763F8F2D5FF25/103413.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5857" target="_blank">5857</a></span></div><div>Chat link: <span class="chat-link">[&BuEWAAA=]</span></div><div>Name: <span class="name">Healing Turret</span></div><div>Description: <span class="description">Turret. Deploy a turret that heals you briefly, then regenerates you and your allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5980">5980</a></span></div><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6176">6176</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 2520</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 480</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (15s) (3x) (requires trait 477)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/58E92EBAF0DB4DA7C4AC04D9B22BCA5ECF0100DE/102843.png"> Buff - Apply Buff/Condition: Vigor (3s) (1x) (requires trait 1678)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Boon Application Interval: 10s (requires trait 1678)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6140">6140</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5860" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/960EC09F42A2654FD767FF30D41ECC4C08F62AA3/103414.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5860" target="_blank">5860</a></span></div><div>Chat link: <span class="chat-link">[&BuQWAAA=]</span></div><div>Name: <span class="name">Elixir C</span></div><div>Description: <span class="description">Elixir. Drink Elixir C, converting all conditions into random boons.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6078">6078</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5861" class="warning-skill error-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0E9264100B0A6A13395EF6083534E6DFB64C0BD8/103415.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5861" target="_blank">5861</a></span></div><div>Chat link: <span class="chat-link">[&BuUWAAA=]</span></div><div>Name: <span class="name">Elixir S</span></div><div>Description: <span class="description">Elixir. Drink Elixir S to shrink yourself, recover from stun, and evade attacks.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-15800">15800</a></span></div><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6084">6084</a></span></div><div>Transform skills: <span class="transform-skills"><ul><li><a href="#skill-10586">10586</a></li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> NoData - Prevents Capture-Point Contribution: </li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 4s (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div><br><br><div class="errors">Errors:<ul><li>Professions of transform skill 10586 is not a subset of the professions of this skill</li></ul></div></td><tr id="skill-5862" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/21D5024F75ED616BC79DE12FF9C23FBB723E7309/103416.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5862" target="_blank">5862</a></span></div><div>Chat link: <span class="chat-link">[&BuYWAAA=]</span></div><div>Name: <span class="name">Elixir U</span></div><div>Description: <span class="description">Elixir. Drink Elixir U, gaining quickness and either might or fury.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6088">6088</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4AB6401A6D6917C3D4F230764452BCCE1035B0D/1012835.png"> Buff - Apply Buff/Condition: Quickness (6s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (6s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (6s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4AB6401A6D6917C3D4F230764452BCCE1035B0D/1012835.png"> Buff - Apply Buff/Condition: Quickness (7s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (7s) (5x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (7s) (1x) (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5865" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4ED8F42447B076AF1DD410430974C7BE7A0F7F61/103417.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5865" target="_blank">5865</a></span></div><div>Chat link: <span class="chat-link">[&BukWAAA=]</span></div><div>Name: <span class="name">Utility Goggles</span></div><div>Description: <span class="description">Gadget. Break out of stun, gaining fury and immunity to blindness.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-29591">29591</a></span></div><div>Categories: <span class="categories"><ul><li>Gadget</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5975">5975</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Blindness Immunity Duration: 10s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-29591">29591</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5867" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6893776DEF9E05A535E5BA027F45FC71DA539245/103418.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5867" target="_blank">5867</a></span></div><div>Chat link: <span class="chat-link">[&BusWAAA=]</span></div><div>Name: <span class="name">Toss Elixir R</span></div><div>Description: <span class="description">Elixir. Toss Elixir R, curing conditions and reviving allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 100s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Revive Percent per Pulse: 17%</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 12s (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6091">6091</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-5868" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/1B0C0900BD7F04324E1695BCF97D5AF8AD0609B7/103419.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5868" target="_blank">5868</a></span></div><div>Chat link: <span class="chat-link">[&BuwWAAA=]</span></div><div>Name: <span class="name">Supply Crate</span></div><div>Description: <span class="description">Turret. Request a supply drop of turrets.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Elite</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Elite</span></div><br><br><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 120s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 2s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 3s (requires trait 1877)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6183">6183</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5874" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4E5DB8680A9257B543ECD8AC66D3B8BB33E82105/103420.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5874" target="_blank">5874</a></span></div><div>Chat link: <span class="chat-link">[&BvIWAAA=]</span></div><div>Name: <span class="name">Automatic Fire</span></div><div>Description: <span class="description">Overcharge your rifle turret to fire piercing shots that inflict vulnerability.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5957">5957</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (8s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Rate of Fire Increase: 50%</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 1000</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5882" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/99C41308F9993ED99233525FA009C203E50A6CAF/103423.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5882" target="_blank">5882</a></span></div><div>Chat link: <span class="chat-link">[&BvoWAAA=]</span></div><div>Name: <span class="name">Grenade</span></div><div>Description: <span class="description">Throw several grenades that explode.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 180 (requires trait 514)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6171">6171</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5889" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0E0257E37B6950F8A172FA4FC706330B6FFAF93E/103425.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5889" target="_blank">5889</a></span></div><div>Chat link: <span class="chat-link">[&BgEXAAA=]</span></div><div>Name: <span class="name">Thump</span></div><div>Description: <span class="description">Overcharge your thumper turret to launch nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5960">5960</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CB330EF25C62C05F1800A1C507B6AE4944551746/156653.png"> Distance - Launch: 400</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5893" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/530FE7A16BCE9DAF7839B5C251F6F7670796990B/103411.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5893" target="_blank">5893</a></span></div><div>Chat link: <span class="chat-link">[&BgUXAAA=]</span></div><div>Name: <span class="name">Electrified Net</span></div><div>Description: <span class="description">Overcharge your turret to fire an electrified net that immobilizes and stuns.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5984">5984</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 600</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Rate of Fire Increase: 50% (requires trait 1518)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 3s (requires trait 1877)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5900" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7251AEE5D2B4092224274EDDA9AACA6564E3DB3D/103426.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5900" target="_blank">5900</a></span></div><div>Chat link: <span class="chat-link">[&BgwXAAA=]</span></div><div>Name: <span class="name">Smoke Screen</span></div><div>Description: <span class="description">Overcharge your flame turret, releasing a smoke screen that blinds nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5985">5985</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Smoke</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-5904" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/A70C929E10EE010851B3FF5FCCBAE5630496B746/103427.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5904" target="_blank">5904</a></span></div><div>Chat link: <span class="chat-link">[&BhAXAAA=]</span></div><div>Name: <span class="name">Tool Kit</span></div><div>Description: <span class="description">Weapon Kit. Equip a kit that gives you a variety of tools.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6113">6113</a></span></div><div>Categories: <span class="categories"><ul><li>Kit</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5999">5999</a></span></div></td><tr id="skill-5905" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CDDCA8FE7405341E5CEE0C2F1167995079CC2752/103428.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5905" target="_blank">5905</a></span></div><div>Chat link: <span class="chat-link">[&BhEXAAA=]</span></div><div>Name: <span class="name">Pry Bar</span></div><div>Description: <span class="description">Confuse your foe by smacking them with a pry bar.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/289AA0A4644F0E044DED3D3F39CED958E1DDFF53/102880.png"> Buff - Apply Buff/Condition: Confusion (5s) (5x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 531)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5910" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A320BD9598EBF51BB0CBFA946F38E5EB0F23EAD3/103430.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5910" target="_blank">5910</a></span></div><div>Chat link: <span class="chat-link">[&BhYXAAA=]</span></div><div>Name: <span class="name">Rocket Boots</span></div><div>Description: <span class="description">Gadget. Fly forward, damaging foes with your rocket exhaust. Cures immobilized, crippled, and chilled.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-29522">29522</a></span></div><div>Categories: <span class="categories"><ul><li>Gadget</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5983">5983</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Rocket Distance: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-29522">29522</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-5912" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/47EF9C2CA3E84E05E2AF9DAC3242C6DC2D0BDCEE/103431.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5912" target="_blank">5912</a></span></div><div>Chat link: <span class="chat-link">[&BhgXAAA=]</span></div><div>Name: <span class="name">Rocket Turret</span></div><div>Description: <span class="description">Turret. Build a turret that fires rockets.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5913">5913</a></span></div><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6177">6177</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1000</li><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 1000</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (3s) (1x) (requires trait 1678)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Boon Application Interval: 10s (requires trait 1678)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5991">5991</a></li><li>Skill is a possible duplicate of skill <a href="#skill-22574">22574</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5913" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0F727C525F44EE69B2F07696C4D313B9A05DAECA/103432.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5913" target="_blank">5913</a></span></div><div>Chat link: <span class="chat-link">[&BhkXAAA=]</span></div><div>Name: <span class="name">Explosive Rockets</span></div><div>Description: <span class="description">Overcharge your turret to fire explosive rockets.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6134">6134</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61A6A8A161FB7124336A6ED1FBAF9B1E030166A6/156664.png"> Time - Knockdown: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 1000</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 1</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5916" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F15929CB40477955EBED54AE5F2239C904C2F65C/103433.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5916" target="_blank">5916</a></span></div><div>Chat link: <span class="chat-link">[&BhwXAAA=]</span></div><div>Name: <span class="name">Floating Mine</span></div><div>Description: <span class="description">Throw out a mine that explodes on contact.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5917" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/3C2B5C060DA920011A20ACDB96DB155D4BDE2A04/103434.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5917" target="_blank">5917</a></span></div><div>Chat link: <span class="chat-link">[&Bh0XAAA=]</span></div><div>Name: <span class="name">Anchor</span></div><div>Description: <span class="description">Sink your foe.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7D674324681E300974D90D02961EC27212ECBBE6/156667.png"> Time - Sink: 3s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5918" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/AF2C7706A22F0BCB7AAFF6D7640CE90894E0F671/102896.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5918" target="_blank">5918</a></span></div><div>Chat link: <span class="chat-link">[&Bh4XAAA=]</span></div><div>Name: <span class="name">Buoy</span></div><div>Description: <span class="description">Inflate a buoy, floating more quickly to the surface.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 15s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5927" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/573A10BFC3310A694740092B91E40C953EE80A03/103435.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5927" target="_blank">5927</a></span></div><div>Chat link: <span class="chat-link">[&BicXAAA=]</span></div><div>Name: <span class="name">Flamethrower</span></div><div>Description: <span class="description">Weapon Kit. Arm yourself with a flamethrower that replaces your weapon skills.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Kit</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5977">5977</a></span></div><div>Bundle skills: <span class="bundle-skills"><ul><li><a href="#skill-5928">5928</a></li><li><a href="#skill-5931">5931</a></li><li><a href="#skill-5930">5930</a></li><li><a href="#skill-5929">5929</a></li><li><a href="#skill-6159">6159</a></li></ul></span></div></td><tr id="skill-5928" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2CDBD11894D945140B3480BFEC960800086352E5/103269.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5928" target="_blank">5928</a></span></div><div>Chat link: <span class="chat-link">[&BigXAAA=]</span></div><div>Name: <span class="name">Flame Jet</span></div><div>Description: <span class="description">Spray fire in a cone pattern while moving, burning foes on the final attack. Deals 10% bonus damage to burning targets.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 425</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (10x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Attacks per Second: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (10x) (requires trait 493)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x) (requires trait 433)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5929" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D2B2120894BF221251F39F090E6F6353A79CCCFB/103300.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5929" target="_blank">5929</a></span></div><div>Chat link: <span class="chat-link">[&BikXAAA=]</span></div><div>Name: <span class="name">Napalm</span></div><div>Description: <span class="description">Burn foes with a wall of napalm at the target location.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x) (requires trait 433)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-5930" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/92CE7EBBFA670CB00809F8267802A6FA459E2EC8/103291.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5930" target="_blank">5930</a></span></div><div>Chat link: <span class="chat-link">[&BioXAAA=]</span></div><div>Name: <span class="name">Air Blast</span></div><div>Description: <span class="description">Push back foes and projectiles with a hot air blast.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 300</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback Distance: 400</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (2s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5931" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/703AA8FC9F98FA4F6700AF06796575D3020A05C6/103436.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5931" target="_blank">5931</a></span></div><div>Chat link: <span class="chat-link">[&BisXAAA=]</span></div><div>Name: <span class="name">Flame Blast</span></div><div>Description: <span class="description">Fire a napalm ball that rolls through foes and explodes.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-17260">17260</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 493)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5933" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/5D6E07C3D17AD7C701B199684C641F0E024961C8/103437.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5933" target="_blank">5933</a></span></div><div>Chat link: <span class="chat-link">[&Bi0XAAA=]</span></div><div>Name: <span class="name">Elixir Gun</span></div><div>Description: <span class="description">Weapon Kit. Arm yourself with an elixir gun that replaces your weapon skills.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6115">6115</a></span></div><div>Categories: <span class="categories"><ul><li>Kit</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5966">5966</a></span></div></td><tr id="skill-5934" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/AD30E269B4CFC6A3DF609FEDF4626802F6F5DCA9/103438.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5934" target="_blank">5934</a></span></div><div>Chat link: <span class="chat-link">[&Bi4XAAA=]</span></div><div>Name: <span class="name">Tranquilizer Dart</span></div><div>Description: <span class="description">Fire a dart that bleeds and weakens foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6048">6048</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/6CB0E64AF9AA292E332A38C1770CE577E2CDE0E8/102853.png"> Buff - Apply Buff/Condition: Weakness (1s) (1x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 493)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6048">6048</a></li><li>Fact #0 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-5935" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/02D0621609F209D943C6E4FFFEE4030A0FAD4E5E/103439.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5935" target="_blank">5935</a></span></div><div>Chat link: <span class="chat-link">[&Bi8XAAA=]</span></div><div>Name: <span class="name">Glob Shot</span></div><div>Description: <span class="description">Fire a bouncing glob that cripples foes and grants swiftness to you and your allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6047">6047</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 8s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 493)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5936" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D17CEA181773C2B17F9F05212D352BCACE55BCC3/103440.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5936" target="_blank">5936</a></span></div><div>Chat link: <span class="chat-link">[&BjAXAAA=]</span></div><div>Name: <span class="name">Acid Bomb</span></div><div>Description: <span class="description">Elixir. Leap backward, spraying an acidic elixir on the ground that damages nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Distance: 550</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 493)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (20s) (2x) (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5937" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/ACF8D7350B7D37FFE4E73D150B7F5B73243A72B1/103441.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5937" target="_blank">5937</a></span></div><div>Chat link: <span class="chat-link">[&BjEXAAA=]</span></div><div>Name: <span class="name">Super Elixir</span></div><div>Description: <span class="description">Elixir. Launch an elixir orb, healing allies on impact and creating an area of continual healing.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6046">6046</a></span></div><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Impact Heal: 700</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Pulse Heal: 204</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li>Number - Pulses: 11</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Converted to Boons: 1 (requires trait 520)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 12s (requires trait 473)</li><li>Number - Pulses: 13 (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (20s) (2x) (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6046">6046</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li><li>Fact #9 is missing an icon</li></ul></div></td><tr id="skill-5939" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A7EDBB397B9CCE7D59B27AFD7E670CD740E3324C/103442.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5939" target="_blank">5939</a></span></div><div>Chat link: <span class="chat-link">[&BjMXAAA=]</span></div><div>Name: <span class="name">Glue Bomb</span></div><div>Description: <span class="description">Set an explosive that explodes into a puddle of glue, immobilizing foes caught in the explosion and crippling foes in the puddle.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 240</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Puddle of Glue Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Interval: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fuse Time: 1s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 300 (requires trait 483)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Fuse Time: 1s (requires trait 1944)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5957" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/09EB220BF078A6F961E0B0D4F9969669F276DF50/103447.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5957" target="_blank">5957</a></span></div><div>Chat link: <span class="chat-link">[&BkUXAAA=]</span></div><div>Name: <span class="name">Detonate Rifle Turret</span></div><div>Description: <span class="description">Detonate your rifle turret.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 300 (requires trait 434)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120 (requires trait 434)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-5960" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/09EB220BF078A6F961E0B0D4F9969669F276DF50/103447.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5960" target="_blank">5960</a></span></div><div>Chat link: <span class="chat-link">[&BkgXAAA=]</span></div><div>Name: <span class="name">Detonate Thumper Turret</span></div><div>Description: <span class="description">Detonate your thumper turret.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 300 (requires trait 434)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120 (requires trait 434)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-5961" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/09EB220BF078A6F961E0B0D4F9969669F276DF50/103447.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5961" target="_blank">5961</a></span></div><div>Chat link: <span class="chat-link">[&BkkXAAA=]</span></div><div>Name: <span class="name">Detonate Healing Turret</span></div><div>Description: <span class="description">Detonate your healing turret.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 300 (requires trait 434)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120 (requires trait 434)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #2 is missing an icon</li></ul></div></td><tr id="skill-5962" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2AD45149C7EF0333E4DA505C0F65F87CD25F79D2/103449.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5962" target="_blank">5962</a></span></div><div>Chat link: <span class="chat-link">[&BkoXAAA=]</span></div><div>Name: <span class="name">Grappling Line</span></div><div>Description: <span class="description">Throw out a grappling line to pull your foe to you.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 449)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5963" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7A5BC2A960B96C905D4FD51B95F39B55D338E95D/103450.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5963" target="_blank">5963</a></span></div><div>Chat link: <span class="chat-link">[&BksXAAA=]</span></div><div>Name: <span class="name">Booby Trap</span></div><div>Description: <span class="description">Set off an explosive booby trap, launching nearby foes with a powerful blast.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CB330EF25C62C05F1800A1C507B6AE4944551746/156653.png"> Distance - Launch: 480</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-5965" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/FEC6520A677BD915091E0911023DD8B7EFBFEFA5/103451.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5965" target="_blank">5965</a></span></div><div>Chat link: <span class="chat-link">[&Bk0XAAA=]</span></div><div>Name: <span class="name">Fumigate</span></div><div>Description: <span class="description">Spray a cone of elixir fumes, inflicting poison and vulnerability to foes and curing conditions on allies with every strike.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 450</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/559B0AF9FB5E1243D2649FAAE660CCB338AACC19/102840.png"> Buff - Apply Buff/Condition: Poisoned (2s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (6s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x) (requires trait 493)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Converted to Boons: 5 (requires trait 520)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5966" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F877C354CBE4413DD7FA205D78B96C90110F4D32/103452.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5966" target="_blank">5966</a></span></div><div>Chat link: <span class="chat-link">[&Bk4XAAA=]</span></div><div>Name: <span class="name">Healing Mist</span></div><div>Description: <span class="description">Elixir. Vent a healing mist, granting regeneration to yourself and allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 35s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (12s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (20s) (2x) (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5967" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/DD3CC84046E2B5F35051D76D3500AA0A0578720D/103214.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5967" target="_blank">5967</a></span></div><div>Chat link: <span class="chat-link">[&Bk8XAAA=]</span></div><div>Name: <span class="name">Toss Elixir B</span></div><div>Description: <span class="description">Elixir. Toss Elixir B at a location, granting stability and one of the following boons to allies: fury, might, retaliation, or swiftness.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (4s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (30s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (5s) (3x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (12s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (36s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (12s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (12s) (1x) (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6092">6092</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5968" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C902FC9903EB00E3114254B402DBD76A6FFF7302/103173.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5968" target="_blank">5968</a></span></div><div>Chat link: <span class="chat-link">[&BlAXAAA=]</span></div><div>Name: <span class="name">Elixir R</span></div><div>Description: <span class="description">Elixir. Drink Elixir R to refill your endurance and remove immobilizing effects.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6086">6086</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Endurance Gained: 100</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5969" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9101F5A3D7A4F7F1075B4637FB3AEDE548BDC10F/103453.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5969" target="_blank">5969</a></span></div><div>Chat link: <span class="chat-link">[&BlEXAAA=]</span></div><div>Name: <span class="name">Toss Elixir C</span></div><div>Description: <span class="description">Elixir. Toss Elixir C, converting conditions into boons for allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Converted to Boons: 2</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6077">6077</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5970" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B630670FBE03680699BD036BE9509D90FADB0255/103454.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5970" target="_blank">5970</a></span></div><div>Chat link: <span class="chat-link">[&BlIXAAA=]</span></div><div>Name: <span class="name">Toss Elixir U</span></div><div>Description: <span class="description">Elixir. Toss Elixir U, creating a random spell at the target location.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 14s (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6089">6089</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5972" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/07FCC12EC765ABAD0FC36C1F2FC0F3EB75A0A0BE/103457.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5972" target="_blank">5972</a></span></div><div>Chat link: <span class="chat-link">[&BlQXAAA=]</span></div><div>Name: <span class="name">Toss Elixir S</span></div><div>Description: <span class="description">Elixir. Toss Elixir S, granting stealth to allies in the target area.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (6s) (1x) (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5973" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E04392C3D8ED985125973AEB99D8460C483263F9/103458.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5973" target="_blank">5973</a></span></div><div>Chat link: <span class="chat-link">[&BlUXAAA=]</span></div><div>Name: <span class="name">Superspeed</span></div><div>Description: <span class="description">Activate your slick shoes, enabling you to move at superior speeds.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/E04392C3D8ED985125973AEB99D8460C483263F9/103458.png"> Buff - Apply Buff/Condition: Superspeed (5s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5975" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5DF2A130174A73B268A1683DCF5ED39AD0325592/103460.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5975" target="_blank">5975</a></span></div><div>Chat link: <span class="chat-link">[&BlcXAAA=]</span></div><div>Name: <span class="name">Analyze</span></div><div>Description: <span class="description">Analyze a foe, applying vulnerability.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (8s) (10x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/62BFF65D1CE99B1B2B0928152BCC596EAC0D372B/102887.png"> Buff - Apply Buff/Condition: Revealed (6s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5977" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9FD24A39C91355664B9C4FDEA7A1A40662C2E1AF/103461.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5977" target="_blank">5977</a></span></div><div>Chat link: <span class="chat-link">[&BlkXAAA=]</span></div><div>Name: <span class="name">Incendiary Ammo</span></div><div>Description: <span class="description">Burn foes with your next three attacks.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Incendiary Ammo Duration: 45s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (4s) (2x) (requires trait 433)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5978" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/773C78BAE658DB62E0E33B36313F043ACC67690D/103462.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5978" target="_blank">5978</a></span></div><div>Chat link: <span class="chat-link">[&BloXAAA=]</span></div><div>Name: <span class="name">Toss Elixir H</span></div><div>Description: <span class="description">Elixir. Toss Elixir H to randomly grant protection, regeneration, or vigor to allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/58E92EBAF0DB4DA7C4AC04D9B22BCA5ECF0100DE/102843.png"> Buff - Apply Buff/Condition: Vigor (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (6s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (12s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/58E92EBAF0DB4DA7C4AC04D9B22BCA5ECF0100DE/102843.png"> Buff - Apply Buff/Condition: Vigor (12s) (1x) (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-6118">6118</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5980" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D7F356D2A7C6B42FF295CDA6765B0B45F508541A/103463.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5980" target="_blank">5980</a></span></div><div>Chat link: <span class="chat-link">[&BlwXAAA=]</span></div><div>Name: <span class="name">Cleansing Burst</span></div><div>Description: <span class="description">Overcharge your healing turret, supplying a burst of healing that cures two conditions.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5961">5961</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 2520</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 480</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/59E0DB6A699810641C959926ADFEF73E08CC255B/156655.png"> ComboField - Combo Field: Water</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 2</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5982" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7BE020D4435EB013414641E55ABC237F7CF858E8/103464.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5982" target="_blank">5982</a></span></div><div>Chat link: <span class="chat-link">[&Bl4XAAA=]</span></div><div>Name: <span class="name">Launch Personal Battering Ram</span></div><div>Description: <span class="description">Shoot a ram's head in front of you, impairing any struck foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9AE125E930C92FEA0DD99E7EBAEDE4CF5EC556B6/433474.png"> Buff - Apply Buff/Condition: Daze (1s) (1x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9AE125E930C92FEA0DD99E7EBAEDE4CF5EC556B6/433474.png"> Buff - Apply Buff/Condition: Daze (1s) (1x) (requires trait 1877)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-5983" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/183D3C1B6E1931B1D1EDCB3A236D7DFF77A19DD0/103465.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5983" target="_blank">5983</a></span></div><div>Chat link: <span class="chat-link">[&Bl8XAAA=]</span></div><div>Name: <span class="name">Rocket Kick</span></div><div>Description: <span class="description">Use your rocket boots to do an explosive kick that burns foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 300</li><li>Recharge - Recharge: 17s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5984" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/09EB220BF078A6F961E0B0D4F9969669F276DF50/103447.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5984" target="_blank">5984</a></span></div><div>Chat link: <span class="chat-link">[&BmAXAAA=]</span></div><div>Name: <span class="name">Detonate Net Turret</span></div><div>Description: <span class="description">Detonate your net turret.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 300 (requires trait 434)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120 (requires trait 434)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-5985" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/09EB220BF078A6F961E0B0D4F9969669F276DF50/103447.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5985" target="_blank">5985</a></span></div><div>Chat link: <span class="chat-link">[&BmEXAAA=]</span></div><div>Name: <span class="name">Detonate Flame Turret</span></div><div>Description: <span class="description">Detonate your flame turret.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 300 (requires trait 434)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120 (requires trait 434)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-5987" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C2E712121CA0F846441EB380A89351EB55D47C79/103410.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5987" target="_blank">5987</a></span></div><div>Chat link: <span class="chat-link">[&BmMXAAA=]</span></div><div>Name: <span class="name">Flame Turret</span></div><div>Description: <span class="description">Turret. Deploy a turret that burns foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5900">5900</a></span></div><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6181">6181</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 500</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x) (requires trait 433)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5836">5836</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5988" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/45E806991F041B297A5D270A46C832E4E3B2A567/103110.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5988" target="_blank">5988</a></span></div><div>Chat link: <span class="chat-link">[&BmQXAAA=]</span></div><div>Name: <span class="name">Net Turret</span></div><div>Description: <span class="description">Turret. Build a net turret that immobilizes nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6179">6179</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 600</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5837">5837</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5989" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/FE750EEBB19017A516C521E3F2754F970318206D/103401.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5989" target="_blank">5989</a></span></div><div>Chat link: <span class="chat-link">[&BmUXAAA=]</span></div><div>Name: <span class="name">Rifle Turret</span></div><div>Description: <span class="description">Turret. Build a rifle turret that shoots at foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6178">6178</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 1000</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5818">5818</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5990" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/EA2452FCE71C0F0B9755517324A47680BF45E79E/103201.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5990" target="_blank">5990</a></span></div><div>Chat link: <span class="chat-link">[&BmYXAAA=]</span></div><div>Name: <span class="name">Thumper Turret</span></div><div>Description: <span class="description">Turret. Build a high-health thumper turret that damages nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6180">6180</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 240 (requires trait 1233)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5838">5838</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5991" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/47EF9C2CA3E84E05E2AF9DAC3242C6DC2D0BDCEE/103431.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5991" target="_blank">5991</a></span></div><div>Chat link: <span class="chat-link">[&BmcXAAA=]</span></div><div>Name: <span class="name">Rocket Turret</span></div><div>Description: <span class="description">Turret. Build a turret that fires rockets.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6177">6177</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 1000</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Percent - Damage Increase: 15% (requires trait 429)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5912">5912</a></li><li>Skill is a possible duplicate of skill <a href="#skill-22574">22574</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5992" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/36E5D4B0B95401353321E8689B5148CD93D979DB/103466.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5992" target="_blank">5992</a></span></div><div>Chat link: <span class="chat-link">[&BmgXAAA=]</span></div><div>Name: <span class="name">Smack</span></div><div>Description: <span class="description">Chain. Smack your foe. Repair turrets.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5993">5993</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-5993">5993</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (6s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> Percent - Turret Heal Percent: 5%</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 531)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> Percent - Turret Heal Percent: 10% (requires trait 531)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5993" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6EDAFBF2233B69A80ECF0E1E23B9F4F735586B3E/103467.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5993" target="_blank">5993</a></span></div><div>Chat link: <span class="chat-link">[&BmkXAAA=]</span></div><div>Name: <span class="name">Whack</span></div><div>Description: <span class="description">Chain. Whack your foe. Repairs turrets.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-5994">5994</a></span></div><div>Prev chain: <span class="prev_chain"><a href="#skill-5992">5992</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-5994">5994</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (6s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> Percent - Turret Heal Percent: 5%</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 531)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> Percent - Turret Heal Percent: 10% (requires trait 531)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5994" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/540D3AC9DA08297B501DEAF9F129D67FF54E0805/103468.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5994" target="_blank">5994</a></span></div><div>Chat link: <span class="chat-link">[&BmoXAAA=]</span></div><div>Name: <span class="name">Thwack</span></div><div>Description: <span class="description">Thwack your foe. Repairs turrets.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Prev chain: <span class="prev_chain"><a href="#skill-5993">5993</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> Percent - Turret Heal Percent: 5%</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 1</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 531)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> Percent - Turret Heal Percent: 10% (requires trait 531)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5995" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7EB4C60EF77315B00ECDA9ED90A84963B7D01DE0/103469.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5995" target="_blank">5995</a></span></div><div>Chat link: <span class="chat-link">[&BmsXAAA=]</span></div><div>Name: <span class="name">Box of Nails</span></div><div>Description: <span class="description">Scatter nails that bleed and cripple foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Box of Nails Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5996" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/1244C52EA12E230336D30FA9CE14A4FEEBBDF0DB/103470.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5996" target="_blank">5996</a></span></div><div>Chat link: <span class="chat-link">[&BmwXAAA=]</span></div><div>Name: <span class="name">Magnet</span></div><div>Description: <span class="description">Pull your target to you.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 25s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-5998" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6A39B6A8C8AB5D4E0996074C4AD10736316D325A/103471.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5998" target="_blank">5998</a></span></div><div>Chat link: <span class="chat-link">[&Bm4XAAA=]</span></div><div>Name: <span class="name">Gear Shield</span></div><div>Description: <span class="description">Block attacks.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-5999" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C6D4C7EEA64C91B323B7FF9AE107EA7656A1DCD3/103472.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/5999" target="_blank">5999</a></span></div><div>Chat link: <span class="chat-link">[&Bm8XAAA=]</span></div><div>Name: <span class="name">Throw Wrench</span></div><div>Description: <span class="description">Throw a wrench that returns to you, striking foes each way.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 17s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (5s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 531)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-6003" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/30F4477E57FFF65C3302F5380D5FCB654CA2E95F/102815.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6003" target="_blank">6003</a></span></div><div>Chat link: <span class="chat-link">[&BnMXAAA=]</span></div><div>Name: <span class="name">Hip Shot</span></div><div>Description: <span class="description">Deliver a quick rifle shot from the hip that pierces targets.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Rifle</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 420)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #2 is missing an icon</li></ul></div></td><tr id="skill-6004" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A47830A4152F5F5DEC5D22975DE0449A57F2D570/102982.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6004" target="_blank">6004</a></span></div><div>Chat link: <span class="chat-link">[&BnQXAAA=]</span></div><div>Name: <span class="name">Net Shot</span></div><div>Description: <span class="description">Immobilize foes with a net shot.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Rifle</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (2s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6005" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6B29C1E841653F64FCB769236177CFC836C8B933/102798.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6005" target="_blank">6005</a></span></div><div>Chat link: <span class="chat-link">[&BnUXAAA=]</span></div><div>Name: <span class="name">Jump Shot</span></div><div>Description: <span class="description">Blast the ground, damaging nearby foes and leaping to your target.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Rifle</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 800</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Leap Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Landing Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (7s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Leap (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Leap Damage: (1x) (requires trait 420)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Landing Damage: (1x) (requires trait 420)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-6020" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/C2A603094B5709BE213D391AFD4D33293C19EA38/103396.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6020" target="_blank">6020</a></span></div><div>Chat link: <span class="chat-link">[&BoQXAAA=]</span></div><div>Name: <span class="name">Grenade Kit</span></div><div>Description: <span class="description">Equip a kit that gives you grenade skills.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Kit</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6172">6172</a></span></div></td><tr id="skill-6042" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/40BE467F4D09226EA70526E4B61C0EDA270B6317/103170.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6042" target="_blank">6042</a></span></div><div>Chat link: <span class="chat-link">[&BpoXAAA=]</span></div><div>Name: <span class="name">Fragmentation Shot</span></div><div>Description: <span class="description">Fire a shot that bleeds the impacted target and then shatters, dealing damage to nearby enemies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1050</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5827">5827</a></li><li>Fact #0 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-6043" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E630EC9663DDE5C165BC0304C636900C7D2006F9/103171.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6043" target="_blank">6043</a></span></div><div>Chat link: <span class="chat-link">[&BpsXAAA=]</span></div><div>Name: <span class="name">Poison Dart Volley</span></div><div>Description: <span class="description">Fire a volley of darts that poison foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1050</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/559B0AF9FB5E1243D2649FAAE660CCB338AACC19/102840.png"> Buff - Apply Buff/Condition: Poisoned (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Darts: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5828">5828</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6044" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CBC5740B8092A6474595F8BFB2394D145D3AB0E8/103406.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6044" target="_blank">6044</a></span></div><div>Chat link: <span class="chat-link">[&BpwXAAA=]</span></div><div>Name: <span class="name">Static Shot</span></div><div>Description: <span class="description">Discharge a lightning shot that blinds your target and confuses each subsequent foe it hits.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1050</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/289AA0A4644F0E044DED3D3F39CED958E1DDFF53/102880.png"> Buff - Apply Buff/Condition: Confusion (3s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 4</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6045" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/AA05DE91B26C2926046495CE0293966A3C1EA492/103187.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6045" target="_blank">6045</a></span></div><div>Chat link: <span class="chat-link">[&Bp0XAAA=]</span></div><div>Name: <span class="name">Glue Shot</span></div><div>Description: <span class="description">Coat the target area with a glue puddle that immobilizes foes on impact, then cripples foes that remain within.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1050</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Glue Puddle Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li>Number - Pulses: 4</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5830">5830</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-6046" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/ACF8D7350B7D37FFE4E73D150B7F5B73243A72B1/103441.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6046" target="_blank">6046</a></span></div><div>Chat link: <span class="chat-link">[&Bp4XAAA=]</span></div><div>Name: <span class="name">Super Elixir</span></div><div>Description: <span class="description">Elixir. Launch an elixir orb, healing allies on impact and creating an area of continual healing.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Impact Heal: 700</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Pulse Heal: 204</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5937">5937</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-6047" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/02D0621609F209D943C6E4FFFEE4030A0FAD4E5E/103439.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6047" target="_blank">6047</a></span></div><div>Chat link: <span class="chat-link">[&Bp8XAAA=]</span></div><div>Name: <span class="name">Elixir F</span></div><div>Description: <span class="description">Elixir. Fire a bouncing glob of Elixir F that cripples foes and grants swiftness to you and allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 8s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 4</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 493)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6048" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/AD30E269B4CFC6A3DF609FEDF4626802F6F5DCA9/103438.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6048" target="_blank">6048</a></span></div><div>Chat link: <span class="chat-link">[&BqAXAAA=]</span></div><div>Name: <span class="name">Tranquilizer Dart</span></div><div>Description: <span class="description">Fire a dart that bleeds and weakens foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/6CB0E64AF9AA292E332A38C1770CE577E2CDE0E8/102853.png"> Buff - Apply Buff/Condition: Weakness (1s) (1x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 493)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5934">5934</a></li><li>Fact #0 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-6053" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7F176FBD29DE3904651573F5161129AA5C4FD3D0/103473.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6053" target="_blank">6053</a></span></div><div>Chat link: <span class="chat-link">[&BqUXAAA=]</span></div><div>Name: <span class="name">Magnetic Shield</span></div><div>Description: <span class="description">Create a magnetic field that reflects projectiles and can be released to push back foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Shield</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6126">6126</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-6054" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/133D50B114C9FDAE9D9DF0FBA5E82ABD0A610EE7/103474.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6054" target="_blank">6054</a></span></div><div>Chat link: <span class="chat-link">[&BqYXAAA=]</span></div><div>Name: <span class="name">Static Shield</span></div><div>Description: <span class="description">Electrify your shield, preparing to throw it at foes. If you are hit, the shield discharges, stunning your nearby attacker.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Shield</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6057">6057</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Block Duration: 2s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 1s (requires trait 1877)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-6057" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7C3AA694D44340C00B76B414AC3168071AF292A0/103424.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6057" target="_blank">6057</a></span></div><div>Chat link: <span class="chat-link">[&BqkXAAA=]</span></div><div>Name: <span class="name">Throw Shield</span></div><div>Description: <span class="description">Throw your charged shield. Dazes foes it hits on the way out and back.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Shield</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 1s (requires trait 1877)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-6073" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/B70B5426F0B2F4924E08198069789121426F9517/103176.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6073" target="_blank">6073</a></span></div><div>Chat link: <span class="chat-link">[&BrkXAAA=]</span></div><div>Name: <span class="name">Detonate Mines</span></div><div>Description: <span class="description">Detonate your mines.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Speargun</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (5s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (3x) (requires trait 420)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (5s) (4x) (requires trait 517)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180 (requires trait 483)</li></ul></div></td><tr id="skill-6074" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/15A8056B3F69F03EAB7E095A0F18727CFFA00833/103480.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6074" target="_blank">6074</a></span></div><div>Chat link: <span class="chat-link">[&BroXAAA=]</span></div><div>Name: <span class="name">Deploy Net Wall</span></div><div>Description: <span class="description">Deploy the net wall at its current location, immobilizing foes caught within.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Speargun</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br></td><tr id="skill-6077" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9101F5A3D7A4F7F1075B4637FB3AEDE548BDC10F/103453.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6077" target="_blank">6077</a></span></div><div>Chat link: <span class="chat-link">[&Br0XAAA=]</span></div><div>Name: <span class="name">Toss Elixir C</span></div><div>Description: <span class="description">Elixir. Toss Elixir C, converting conditions into boons for allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Converted to Boons: 2</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5969">5969</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6078" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/960EC09F42A2654FD767FF30D41ECC4C08F62AA3/103414.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6078" target="_blank">6078</a></span></div><div>Chat link: <span class="chat-link">[&Br4XAAA=]</span></div><div>Name: <span class="name">Detonate Elixir C</span></div><div>Description: <span class="description">Elixir. Burst the bottle, converting conditions into boons for allies in your area.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div></td><tr id="skill-6082" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/7835AE041957D0DCCB7B2373CA76A90864017E09/103481.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6082" target="_blank">6082</a></span></div><div>Chat link: <span class="chat-link">[&BsIXAAA=]</span></div><div>Name: <span class="name">Detonate Elixir B</span></div><div>Description: <span class="description">Burst the bottle to grant stability and one of the following boons to allies: fury, might, retaliation, or swiftness.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br></td><tr id="skill-6084" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/7835AE041957D0DCCB7B2373CA76A90864017E09/103481.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6084" target="_blank">6084</a></span></div><div>Chat link: <span class="chat-link">[&BsQXAAA=]</span></div><div>Name: <span class="name">Detonate Elixir S</span></div><div>Description: <span class="description">Elixir. Transform. Burst the bottle, granting allies stealth.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div></td><tr id="skill-6086" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/7835AE041957D0DCCB7B2373CA76A90864017E09/103481.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6086" target="_blank">6086</a></span></div><div>Chat link: <span class="chat-link">[&BsYXAAA=]</span></div><div>Name: <span class="name">Detonate Elixir R</span></div><div>Description: <span class="description">Elixir. Burst the bottle, curing conditions on allies and reviving them.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div></td><tr id="skill-6088" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/7835AE041957D0DCCB7B2373CA76A90864017E09/103481.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6088" target="_blank">6088</a></span></div><div>Chat link: <span class="chat-link">[&BsgXAAA=]</span></div><div>Name: <span class="name">Detonate Elixir U</span></div><div>Description: <span class="description">Elixir. Burst the bottle, creating a random spell at the target location.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div></td><tr id="skill-6089" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B630670FBE03680699BD036BE9509D90FADB0255/103454.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6089" target="_blank">6089</a></span></div><div>Chat link: <span class="chat-link">[&BskXAAA=]</span></div><div>Name: <span class="name">Toss Elixir U</span></div><div>Description: <span class="description">Elixir. Toss Elixir U, creating a random spell at the target location.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5970">5970</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6090" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/07FCC12EC765ABAD0FC36C1F2FC0F3EB75A0A0BE/103457.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6090" target="_blank">6090</a></span></div><div>Chat link: <span class="chat-link">[&BsoXAAA=]</span></div><div>Name: <span class="name">Toss Elixir S</span></div><div>Description: <span class="description">Elixir. Toss Elixir S, granting stealth to allies in the area.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (6s) (1x) (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6091" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6893776DEF9E05A535E5BA027F45FC71DA539245/103418.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6091" target="_blank">6091</a></span></div><div>Chat link: <span class="chat-link">[&BssXAAA=]</span></div><div>Name: <span class="name">Toss Elixir R</span></div><div>Description: <span class="description">Elixir. Toss Elixir R, curing conditions and reviving allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 100s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Revive Percent per Pulse: 17%</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 12s (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5867">5867</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-6092" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/DD3CC84046E2B5F35051D76D3500AA0A0578720D/103214.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6092" target="_blank">6092</a></span></div><div>Chat link: <span class="chat-link">[&BswXAAA=]</span></div><div>Name: <span class="name">Toss Elixir B</span></div><div>Description: <span class="description">Elixir. Toss Elixir B at a location, granting stability and one of the following boons to allies: fury, might, retaliation, or swiftness.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (4s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (30s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (5s) (3x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (12s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (36s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (12s) (1x) (requires trait 473)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (12s) (1x) (requires trait 473)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5967">5967</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6093" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/FE750EEBB19017A516C521E3F2754F970318206D/103401.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6093" target="_blank">6093</a></span></div><div>Chat link: <span class="chat-link">[&Bs0XAAA=]</span></div><div>Name: <span class="name">Harpoon Turret</span></div><div>Description: <span class="description">Turret. Build a harpoon turret that shoots at foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6098">6098</a></span></div><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6182">6182</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1000</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Rate of Fire: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 1000</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6097" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/09EB220BF078A6F961E0B0D4F9969669F276DF50/103447.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6097" target="_blank">6097</a></span></div><div>Chat link: <span class="chat-link">[&BtEXAAA=]</span></div><div>Name: <span class="name">Detonate Harpoon Turret</span></div><div>Description: <span class="description">Detonate your harpoon turret.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 300 (requires trait 434)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120 (requires trait 434)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #2 is missing an icon</li></ul></div></td><tr id="skill-6098" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4E5DB8680A9257B543ECD8AC66D3B8BB33E82105/103420.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6098" target="_blank">6098</a></span></div><div>Chat link: <span class="chat-link">[&BtIXAAA=]</span></div><div>Name: <span class="name">Automatic Fire</span></div><div>Description: <span class="description">Overcharge your harpoon turret to fire a burst of automated shots.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6097">6097</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Rate of Fire Increase: 50%</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Distance - Attack Range: 1000</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-6102" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/ACF8D7350B7D37FFE4E73D150B7F5B73243A72B1/103441.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6102" target="_blank">6102</a></span></div><div>Chat link: <span class="chat-link">[&BtYXAAA=]</span></div><div>Name: <span class="name">Super Elixir</span></div><div>Description: <span class="description">Elixir. Shoot an elixir orb, healing allies when it bursts and creating an area of continual healing.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6104">6104</a></span></div><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Impact Heal: 700</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Pulse Heal: 204</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Converted to Boons: 1 (requires trait 520)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-15072">15072</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-6104" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/ACF8D7350B7D37FFE4E73D150B7F5B73243A72B1/103441.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6104" target="_blank">6104</a></span></div><div>Chat link: <span class="chat-link">[&BtgXAAA=]</span></div><div>Name: <span class="name">Super Elixir</span></div><div>Description: <span class="description">Elixir. Burst the orb, instantly healing your allies and creating an area of continual healing.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Impact Heal: 700</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Pulse Heal: 204</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li></ul></div></td><tr id="skill-6109" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/7342BF326738A4C5132F42CE0915D3A2184E52FB/60975.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6109" target="_blank">6109</a></span></div><div>Chat link: <span class="chat-link">[&Bt0XAAA=]</span></div><div>Name: <span class="name">Stow Med Kit</span></div><div>Description: <span class="description">Stow your med kit.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-29772">29772</a></span></div></td><tr id="skill-6110" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/7342BF326738A4C5132F42CE0915D3A2184E52FB/60975.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6110" target="_blank">6110</a></span></div><div>Chat link: <span class="chat-link">[&Bt4XAAA=]</span></div><div>Name: <span class="name">Stow Grenade Kit</span></div><div>Description: <span class="description">Stow your grenade kit.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6172">6172</a></span></div></td><tr id="skill-6111" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/7342BF326738A4C5132F42CE0915D3A2184E52FB/60975.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6111" target="_blank">6111</a></span></div><div>Chat link: <span class="chat-link">[&Bt8XAAA=]</span></div><div>Name: <span class="name">Stow Bomb Kit</span></div><div>Description: <span class="description">Stow your bomb kit.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5813">5813</a></span></div></td><tr id="skill-6113" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/7342BF326738A4C5132F42CE0915D3A2184E52FB/60975.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6113" target="_blank">6113</a></span></div><div>Chat link: <span class="chat-link">[&BuEXAAA=]</span></div><div>Name: <span class="name">Stow Tool Kit</span></div><div>Description: <span class="description">Stow your tool kit.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5999">5999</a></span></div></td><tr id="skill-6114" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/7342BF326738A4C5132F42CE0915D3A2184E52FB/60975.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6114" target="_blank">6114</a></span></div><div>Chat link: <span class="chat-link">[&BuIXAAA=]</span></div><div>Name: <span class="name">Stow Flamethrower</span></div><div>Description: <span class="description">Stow your flamethrower.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5977">5977</a></span></div></td><tr id="skill-6115" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/7342BF326738A4C5132F42CE0915D3A2184E52FB/60975.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6115" target="_blank">6115</a></span></div><div>Chat link: <span class="chat-link">[&BuMXAAA=]</span></div><div>Name: <span class="name">Stow Elixir Gun</span></div><div>Description: <span class="description">Stow your elixir gun.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-5966">5966</a></span></div></td><tr id="skill-6118" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/773C78BAE658DB62E0E33B36313F043ACC67690D/103462.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6118" target="_blank">6118</a></span></div><div>Chat link: <span class="chat-link">[&BuYXAAA=]</span></div><div>Name: <span class="name">Toss Elixir H</span></div><div>Description: <span class="description">Elixir. Toss Elixir H to randomly grant protection, regeneration, or vigor to allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><div>Categories: <span class="categories"><ul><li>Elixir</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/58E92EBAF0DB4DA7C4AC04D9B22BCA5ECF0100DE/102843.png"> Buff - Apply Buff/Condition: Vigor (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5978">5978</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6119" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/7835AE041957D0DCCB7B2373CA76A90864017E09/103481.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6119" target="_blank">6119</a></span></div><div>Chat link: <span class="chat-link">[&BucXAAA=]</span></div><div>Name: <span class="name">Detonate Elixir H</span></div><div>Description: <span class="description">Burst a bottle of Elixir H, randomly granting protection, regeneration, or swiftness to allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br></td><tr id="skill-6126" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BBD1A5F3730F423A037F42B10FFFACD2EF65C271/103483.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6126" target="_blank">6126</a></span></div><div>Chat link: <span class="chat-link">[&Bu4XAAA=]</span></div><div>Name: <span class="name">Magnetic Inversion</span></div><div>Description: <span class="description">Release the magnetic field to push back nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Shield</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-6134" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/09EB220BF078A6F961E0B0D4F9969669F276DF50/103447.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6134" target="_blank">6134</a></span></div><div>Chat link: <span class="chat-link">[&BvYXAAA=]</span></div><div>Name: <span class="name">Detonate Rocket Turret</span></div><div>Description: <span class="description">Detonate your rocket turret.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 300 (requires trait 434)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120 (requires trait 434)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-6140" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7D5297C096055DE43153D90F965763F8F2D5FF25/103413.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6140" target="_blank">6140</a></span></div><div>Chat link: <span class="chat-link">[&BvwXAAA=]</span></div><div>Name: <span class="name">Healing Turret</span></div><div>Description: <span class="description">Turret. Deploy a turret that heals you briefly, then regenerates you and your allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6176">6176</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 2520</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 480</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5857">5857</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6145" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A47830A4152F5F5DEC5D22975DE0449A57F2D570/102982.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6145" target="_blank">6145</a></span></div><div>Chat link: <span class="chat-link">[&BgEYAAA=]</span></div><div>Name: <span class="name">Net Wall</span></div><div>Description: <span class="description">Launch a deployable net wall to immobilize foes caught within.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Speargun</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6074">6074</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-6146" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/57B24F003B52D3110BE67903B3730FC5B7BBB496/103422.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6146" target="_blank">6146</a></span></div><div>Chat link: <span class="chat-link">[&BgIYAAA=]</span></div><div>Name: <span class="name">Retreating Grapple</span></div><div>Description: <span class="description">Retreat while firing a grappling line at your foe, then pull them toward you.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Speargun</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (6s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Retreat distance: 480</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Pull Distance: 600</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 420)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-6147" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E7FA19A9090635047BA24B6C3EA207E7E9ACE5B3/103203.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6147" target="_blank">6147</a></span></div><div>Chat link: <span class="chat-link">[&BgMYAAA=]</span></div><div>Name: <span class="name">Scatter Mines</span></div><div>Description: <span class="description">Shoot out a spread of remote-detonated mines.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Speargun</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6073">6073</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (5s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (3x) (requires trait 420)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6148" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E2E63E082D97DECFB5639895E89C630A4D4E00F0/103421.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6148" target="_blank">6148</a></span></div><div>Chat link: <span class="chat-link">[&BgQYAAA=]</span></div><div>Name: <span class="name">Homing Torpedo</span></div><div>Description: <span class="description">Fire a shot that homes in on your foe.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Speargun</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 420)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-6149" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/985C4F994116C66FA92B006EEDA479085592F1F5/103448.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6149" target="_blank">6149</a></span></div><div>Chat link: <span class="chat-link">[&BgUYAAA=]</span></div><div>Name: <span class="name">Timed Charge</span></div><div>Description: <span class="description">Fire a timed charge at your target, damaging and burning nearby foes when it detonates.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Speargun</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 18s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Explosion Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (4s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 8</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Explosion Damage: (1x) (requires trait 420)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (2x) (requires trait 433)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-6152" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/061D48DCAC954D91D8F8BD7F6B193201A695F92F/103407.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6152" target="_blank">6152</a></span></div><div>Chat link: <span class="chat-link">[&BggYAAA=]</span></div><div>Name: <span class="name">Blowtorch</span></div><div>Description: <span class="description">Unleash flames from your pistol to burn foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 800</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage at 265 Distance: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage at 530 Distance: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage at 800 Distance: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (6s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (8s) (1x) (requires trait 433)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (1x) (requires trait 433)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x) (requires trait 433)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6153" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/FC0C5A43332CBCEEFB32EF5331F89650FC0AF310/103111.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6153" target="_blank">6153</a></span></div><div>Chat link: <span class="chat-link">[&BgkYAAA=]</span></div><div>Name: <span class="name">Blunderbuss</span></div><div>Description: <span class="description">Fire a cloud of shrapnel that causes more damage the closer you are to foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Rifle</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 700</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage within 0-250 Range: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage within 250-400 Range: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage within 400-550 Range: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage within 550-700 Range: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (4s) (4x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (4s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (4s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage within 0-250 Range: (1x) (requires trait 420)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage within 250-400 Range: (1x) (requires trait 420)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage within 400-550 Range: (1x) (requires trait 420)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage within 550-700 Range: (1x) (requires trait 420)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6154" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5B1B070F59C3FDB22794910FBD1C4C7DBF3BD47E/102790.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6154" target="_blank">6154</a></span></div><div>Chat link: <span class="chat-link">[&BgoYAAA=]</span></div><div>Name: <span class="name">Overcharged Shot</span></div><div>Description: <span class="description">Fire a blast so strong it launches your foe as you fall backward and cures immobilized, crippled, and chilled.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Rifle</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CB330EF25C62C05F1800A1C507B6AE4944551746/156653.png"> Distance - Foe Launch Distance: 450</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Self Knockback Distance: 300</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 420)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6159" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/8027942FE405D7B0CC2EA60AE109AC6C9EDAD566/103299.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6159" target="_blank">6159</a></span></div><div>Chat link: <span class="chat-link">[&Bg8YAAA=]</span></div><div>Name: <span class="name">Smoke Vent</span></div><div>Description: <span class="description">Vent smoke from your flamethrower, blinding nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Thief</li><li>Mesmer</li><li>Warrior</li><li>Elementalist</li><li>Necromancer</li><li>Guardian</li><li>Ranger</li><li>Engineer</li><li>Revenant</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 180</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6161" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0F0F28210568DB66F8539D684314FC55D8C1022C/103177.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6161" target="_blank">6161</a></span></div><div>Chat link: <span class="chat-link">[&BhEYAAA=]</span></div><div>Name: <span class="name">Throw Mine</span></div><div>Description: <span class="description">Gadget. Throw out a remote-controlled land mine that damages, knocks back, and removes a boon from nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-6162">6162</a></span></div><div>Categories: <span class="categories"><ul><li>Gadget</li></ul></span></div><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6166">6166</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 18s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Proximity Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 240 (requires trait 483)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-30337">30337</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6162" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D97BF56EBB6D074BFEFC11E103D6D1F2360C6A17/102902.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6162" target="_blank">6162</a></span></div><div>Chat link: <span class="chat-link">[&BhIYAAA=]</span></div><div>Name: <span class="name">Detonate</span></div><div>Description: <span class="description">Detonate your mine to damage foes and remove a boon from them.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6166">6166</a></span></div><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 300 (requires trait 483)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-29473">29473</a></li></ul></div></td><tr id="skill-6163" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0F0F28210568DB66F8539D684314FC55D8C1022C/103177.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6163" target="_blank">6163</a></span></div><div>Chat link: <span class="chat-link">[&BhMYAAA=]</span></div><div>Name: <span class="name">Deploy Mine</span></div><div>Description: <span class="description">Deploy a remote-controlled mine that damages nearby foes and removes a boon.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Toolbelt skill: <span class="toolbelt-skills"><a href="#skill-6166">6166</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 18s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240 (requires trait 483)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-30893">30893</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-6164" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6AB7A3B167C393C8C19AE5F2ABEF79473234B6C2/103412.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6164" target="_blank">6164</a></span></div><div>Chat link: <span class="chat-link">[&BhQYAAA=]</span></div><div>Name: <span class="name">Mine Field</span></div><div>Description: <span class="description">Plant five mines around yourself.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 360</li><li>Recharge - Recharge: 17s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage per Mine: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Boons Removed: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage per Mine: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 240 (requires trait 483)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6166" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/D97BF56EBB6D074BFEFC11E103D6D1F2360C6A17/102902.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6166" target="_blank">6166</a></span></div><div>Chat link: <span class="chat-link">[&BhYYAAA=]</span></div><div>Name: <span class="name">Detonate Mine Field</span></div><div>Description: <span class="description">Detonate your mine, damaging nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage per Mine: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage per Mine: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 300 (requires trait 483)</li></ul></div></td><tr id="skill-6167" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D7236B1D9176DBEEA8C4570AE04965E902B14502/103172.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6167" target="_blank">6167</a></span></div><div>Chat link: <span class="chat-link">[&BhcYAAA=]</span></div><div>Name: <span class="name">Poison Grenade</span></div><div>Description: <span class="description">Throw several grenades that explode in poisonous blasts.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/559B0AF9FB5E1243D2649FAAE660CCB338AACC19/102840.png"> Buff - Apply Buff/Condition: Poisoned (8s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li>ComboField - Combo Field: Poison</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180 (requires trait 514)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5806">5806</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-6168" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D95F525D4F2898CDE205CCACE09FD35FEA78B6DD/103103.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6168" target="_blank">6168</a></span></div><div>Chat link: <span class="chat-link">[&BhgYAAA=]</span></div><div>Name: <span class="name">Freeze Grenade</span></div><div>Description: <span class="description">Throw grenades that chill foes with frigid blasts.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 120</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 180 (requires trait 514)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5809">5809</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6169" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5F7AB3AAB46F21CDBE633A953A4509EAE46C6920/103397.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6169" target="_blank">6169</a></span></div><div>Chat link: <span class="chat-link">[&BhkYAAA=]</span></div><div>Name: <span class="name">Flash Grenade</span></div><div>Description: <span class="description">Throw grenades that explode in blinding flashes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 120</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 180 (requires trait 514)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5808">5808</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6170" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/467E6BF83D152F95BC5D0B3573F4D2D71F5A4BFA/102830.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6170" target="_blank">6170</a></span></div><div>Chat link: <span class="chat-link">[&BhoYAAA=]</span></div><div>Name: <span class="name">Shrapnel Grenade</span></div><div>Description: <span class="description">Throw grenades that explode in a hail of shrapnel, causing bleeding.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 120</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 180 (requires trait 514)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5807">5807</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6171" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/99C41308F9993ED99233525FA009C203E50A6CAF/103423.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6171" target="_blank">6171</a></span></div><div>Chat link: <span class="chat-link">[&BhsYAAA=]</span></div><div>Name: <span class="name">Grenade</span></div><div>Description: <span class="description">Throw several grenades that explode.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 120</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 180 (requires trait 514)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5882">5882</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-6172" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5B2AB667667749BC1BC7AEFD27362E3E0E0F2FE6/103294.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6172" target="_blank">6172</a></span></div><div>Chat link: <span class="chat-link">[&BhwYAAA=]</span></div><div>Name: <span class="name">Grenade Barrage</span></div><div>Description: <span class="description">Throw several grenades at once.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Grenades: 6</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Explosion Radius: 120</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5810">5810</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6175" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7EB4C60EF77315B00ECDA9ED90A84963B7D01DE0/103469.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6175" target="_blank">6175</a></span></div><div>Chat link: <span class="chat-link">[&Bh8YAAA=]</span></div><div>Name: <span class="name">Box of Piranhas</span></div><div>Description: <span class="description">Release piranhas that bleed and cripple foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Bundle</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 4s</li><li>Number - Pulses: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-6176" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D7F356D2A7C6B42FF295CDA6765B0B45F508541A/103463.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6176" target="_blank">6176</a></span></div><div>Chat link: <span class="chat-link">[&BiAYAAA=]</span></div><div>Name: <span class="name">Regenerating Mist</span></div><div>Description: <span class="description">Release a mist of healing liquid to regenerate nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 21s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (3s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 480</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Water</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-6177" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4AD55892CDF01D61ECE318DD33304F531603D048/103935.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6177" target="_blank">6177</a></span></div><div>Chat link: <span class="chat-link">[&BiEYAAA=]</span></div><div>Name: <span class="name">Rocket</span></div><div>Description: <span class="description">Fire a rocket out of your belt that explodes on impact.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1500</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 429)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-22573">22573</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6178" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/FBBFE42D0BD0745F56BF30483240E67F0994562C/103254.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6178" target="_blank">6178</a></span></div><div>Chat link: <span class="chat-link">[&BiIYAAA=]</span></div><div>Name: <span class="name">Surprise Shot</span></div><div>Description: <span class="description">Fire a bullet out of your belt.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1000</li><li>Recharge - Recharge: 8s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-6179" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A47830A4152F5F5DEC5D22975DE0449A57F2D570/102982.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6179" target="_blank">6179</a></span></div><div>Chat link: <span class="chat-link">[&BiMYAAA=]</span></div><div>Name: <span class="name">Net Attack</span></div><div>Description: <span class="description">Fire a net from your belt to immobilize your foe.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 38s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (3s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-6180" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2F1CF7CA4E58215911CF5797F7939FEF51D9CB45/102977.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6180" target="_blank">6180</a></span></div><div>Chat link: <span class="chat-link">[&BiQYAAA=]</span></div><div>Name: <span class="name">Rumble</span></div><div>Description: <span class="description">Release a shock wave of inertial force to damage nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 240</li><li>Recharge - Recharge: 38s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-6181" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F0A8380340E1E64FAFAAE87053422136664528CC/103205.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6181" target="_blank">6181</a></span></div><div>Chat link: <span class="chat-link">[&BiUYAAA=]</span></div><div>Name: <span class="name">Throw Napalm</span></div><div>Description: <span class="description">Throw a ball of napalm that explodes on impact, burning foes around target location.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (2s) (1x)</li><li>Number - Pulses: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (4s) (1x) (requires trait 433)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (2s) (1x) (requires trait 433)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li><li>Fact #9 is missing an icon</li></ul></div></td><tr id="skill-6182" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D8E53BEF29C7BB9A9657017761126929EA0BCCAB/103235.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6182" target="_blank">6182</a></span></div><div>Chat link: <span class="chat-link">[&BiYYAAA=]</span></div><div>Name: <span class="name">Harpoon</span></div><div>Description: <span class="description">Launch a harpoon from your belt.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Toolbelt</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Toolbelt</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1000</li><li>Recharge - Recharge: 8s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-6183" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/1B0C0900BD7F04324E1695BCF97D5AF8AD0609B7/103419.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/6183" target="_blank">6183</a></span></div><div>Chat link: <span class="chat-link">[&BicYAAA=]</span></div><div>Name: <span class="name">Supply Crate</span></div><div>Description: <span class="description">Turret. Request a supply drop of turrets.</span></div><div>Professions: <span class="professions"><ul><li>Engineer</li></ul></span></div><div>Type: <span class="type">Elite</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Elite</span></div><br><br><div>Categories: <span class="categories"><ul><li>Turret</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 120s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-5868">5868</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9080" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C6C1B00FD5191CB2AA311E2205A3D90D9907BB9E/103587.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9080" target="_blank">9080</a></span></div><div>Chat link: <span class="chat-link">[&BngjAAA=]</span></div><div>Name: <span class="name">Leap of Faith</span></div><div>Description: <span class="description">Leap at your foe. On hit, blind nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Leap (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 653)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-9081" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/374A9BB028E19F0B5D04622A33B36FA67E0EC938/103574.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9081" target="_blank">9081</a></span></div><div>Chat link: <span class="chat-link">[&BnkjAAA=]</span></div><div>Name: <span class="name">Whirling Wrath</span></div><div>Description: <span class="description">Spin in place and swing your greatsword while hurling powerful projectiles.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (7x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 7</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 130</li><li>ComboFinisher - Combo Finisher: Whirl (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (7x) (requires trait 653)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-9082" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C2065BFF78BB134197076A2C7450013EE390E409/103634.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9082" target="_blank">9082</a></span></div><div>Chat link: <span class="chat-link">[&BnojAAA=]</span></div><div>Name: <span class="name">Shield of Wrath</span></div><div>Description: <span class="description">Create a shield to block the next three attacks. If the shield is not destroyed, it explodes and damages nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 36s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/C2065BFF78BB134197076A2C7450013EE390E409/103634.png"> Buff - Apply Buff/Condition: Shield of Wrath (4s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-9083" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/98FF447227E81AB44D9298F0E3BD62D553972B54/103089.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9083" target="_blank">9083</a></span></div><div>Chat link: <span class="chat-link">[&BnsjAAA=]</span></div><div>Name: <span class="name">"Receive the Light!"</span></div><div>Description: <span class="description">Shout. Heal yourself and allies in a cone in front of you.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Categories: <span class="categories"><ul><li>Shout</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Initial Self Heal: 3250</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Self Heal per Pulse: 650</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Allied Heal per Pulse: 1305</li><li>Number - Pulses: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Healing Breeze Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 4</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-9084" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4EB81AB80FA319D32A1A11566EA10639A14AC708/103635.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9084" target="_blank">9084</a></span></div><div>Chat link: <span class="chat-link">[&BnwjAAA=]</span></div><div>Name: <span class="name">"Retreat!"</span></div><div>Description: <span class="description">Shout. Grant aegis and swiftness to up to five nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Shout</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/DFB4D1B50AE4D6A275B349E15B179261EE3EB0AF/102854.png"> Buff - Apply Buff/Condition: Aegis (20s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (20s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9085" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BAB6060F7605D6F00901D22508E1B7A33D0A5DF7/103659.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9085" target="_blank">9085</a></span></div><div>Chat link: <span class="chat-link">[&Bn0jAAA=]</span></div><div>Name: <span class="name">"Save Yourselves!"</span></div><div>Description: <span class="description">Shout. Draw conditions from nearby allies to yourself. Gain multiple boons for a short duration.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Shout</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/58E92EBAF0DB4DA7C4AC04D9B22BCA5ECF0100DE/102843.png"> Buff - Apply Buff/Condition: Vigor (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (10s) (1x) (requires trait 604)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9086" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7C42A81ACFBFFE32A528DFCA8014E7C4476358C8/103202.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9086" target="_blank">9086</a></span></div><div>Chat link: <span class="chat-link">[&Bn4jAAA=]</span></div><div>Name: <span class="name">Protector's Strike</span></div><div>Description: <span class="description">Surround yourself and nearby allies with a shield. Damage foes that strike protected allies. Grant protection to yourself and nearby allies if you are not struck.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Mace</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 170</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9087" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5B2FE8C77DC2B00E75415AF578E5C550DE9B0CB5/103232.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9087" target="_blank">9087</a></span></div><div>Chat link: <span class="chat-link">[&Bn8jAAA=]</span></div><div>Name: <span class="name">Shield of Judgment</span></div><div>Description: <span class="description">Create a shielding wave in front of you that damages foes while giving protection and aegis to you and up to five allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Shield</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/DFB4D1B50AE4D6A275B349E15B179261EE3EB0AF/102854.png"> Buff - Apply Buff/Condition: Aegis (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-15834">15834</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9088" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/FC0E030F7E67C4C62F0A6717B9F1B80012A6F1C7/103127.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9088" target="_blank">9088</a></span></div><div>Chat link: <span class="chat-link">[&BoAjAAA=]</span></div><div>Name: <span class="name">Cleansing Flame</span></div><div>Description: <span class="description">Breathe magical flames that damage foes and cure conditions on allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Torch</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 400</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (10x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li><li>Number - Pulses: 9</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-9089" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/537D1557E29B42B95D07A1DB01493C7B63C4E402/103637.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9089" target="_blank">9089</a></span></div><div>Chat link: <span class="chat-link">[&BoEjAAA=]</span></div><div>Name: <span class="name">Zealot's Fire</span></div><div>Description: <span class="description">Throw your Zealot's Flame to damage the targeted foe.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Torch</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (3x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9090" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C3DB032B0C51CD2DC9EC01CFB1DFA406466D3B0E/103263.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9090" target="_blank">9090</a></span></div><div>Chat link: <span class="chat-link">[&BoIjAAA=]</span></div><div>Name: <span class="name">Smite</span></div><div>Description: <span class="description">Strike foes in the target area repeatedly.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 16</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 200</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 645)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9091" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BC380F0749013D4B5272B8599A510D0099F945BB/103026.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9091" target="_blank">9091</a></span></div><div>Chat link: <span class="chat-link">[&BoMjAAA=]</span></div><div>Name: <span class="name">Shield of Absorption</span></div><div>Description: <span class="description">Create a dome around you that pushes foes back and absorbs projectiles.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Shield</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9224">9224</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 24s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback Distance: 320</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Shield Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-9093" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9FF294A9CC489D4FE8CED934A0C4359964B67443/103638.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9093" target="_blank">9093</a></span></div><div>Chat link: <span class="chat-link">[&BoUjAAA=]</span></div><div>Name: <span class="name">Bane Signet</span></div><div>Description: <span class="description">Signet Passive: Improved Power
Signet Active: Knock down and damage your foe.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9241">9241</a></span></div><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9FF294A9CC489D4FE8CED934A0C4359964B67443/103638.png"> Buff - Apply Buff/Condition: Bane Signet (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61A6A8A161FB7124336A6ED1FBAF9B1E030166A6/156664.png"> Time - Knockdown: 3s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-9241">9241</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9095" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6FA3B95C9E040C54F1BC20ED2727FA1FE24B0296/103639.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9095" target="_blank">9095</a></span></div><div>Chat link: <span class="chat-link">[&BocjAAA=]</span></div><div>Name: <span class="name">Symbol of Judgment</span></div><div>Description: <span class="description">Draw a symbol on the ground that heals allies and damages foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 180</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (4x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 652</li><li>Number - Pulses: 4</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Symbol Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Revive Percent per Pulse: 8%</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (4x) (requires trait 649)</li><li>Number - Pulses: 6 (requires trait 558)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (3s) (1x) (requires trait 646)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Symbol Radius: 240 (requires trait 558)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-9096" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/504F0DCC6CAA760D550AED66504D41321FF3B41A/103640.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9096" target="_blank">9096</a></span></div><div>Chat link: <span class="chat-link">[&BogjAAA=]</span></div><div>Name: <span class="name">Wave of Light</span></div><div>Description: <span class="description">Push nearby foes back.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 240</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 650)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9097" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E7F5FFA84F0AE4EA0EC5AE54FA365C09925551A0/103641.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9097" target="_blank">9097</a></span></div><div>Chat link: <span class="chat-link">[&BokjAAA=]</span></div><div>Name: <span class="name">Flashing Blade</span></div><div>Description: <span class="description">Teleport to your target, striking them and blinding nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 565)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9098" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0F9DAB04690C9A01C80DEEE8D5792937F4EF6DC4/103642.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9098" target="_blank">9098</a></span></div><div>Chat link: <span class="chat-link">[&BoojAAA=]</span></div><div>Name: <span class="name">Orb of Wrath</span></div><div>Description: <span class="description">Fire a slow-moving orb at your foe.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 645)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9099" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/43B33FC616A6FAEFEC2AA2A5C50A4F93A4A5317A/103292.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9099" target="_blank">9099</a></span></div><div>Chat link: <span class="chat-link">[&BosjAAA=]</span></div><div>Name: <span class="name">Chains of Light</span></div><div>Description: <span class="description">Immobilize and make your foe vulnerable with ethereal chains.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (6s) (3x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 645)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9102" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D979B406E04C80687055B7C40A3837A4AB36B3D8/103645.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9102" target="_blank">9102</a></span></div><div>Chat link: <span class="chat-link">[&Bo4jAAA=]</span></div><div>Name: <span class="name">Shelter</span></div><div>Description: <span class="description">Block attacks while healing.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 4555</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Block Duration: 2s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9104" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/3CB42772DD937ACF48EF5FE4615EF33F49035450/103231.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9104" target="_blank">9104</a></span></div><div>Chat link: <span class="chat-link">[&BpAjAAA=]</span></div><div>Name: <span class="name">Zealot's Flame</span></div><div>Description: <span class="description">Set yourself alight, periodically burning up to three nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Torch</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9089">9089</a></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3CB42772DD937ACF48EF5FE4615EF33F49035450/103231.png"> Buff - Apply Buff/Condition: Zealot's Flame (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (6s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9105" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/29742A41232437EE7C7025E65CA21509040621AF/103646.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9105" target="_blank">9105</a></span></div><div>Chat link: <span class="chat-link">[&BpEjAAA=]</span></div><div>Name: <span class="name">Sword of Wrath</span></div><div>Description: <span class="description">Chain. Slash your foe once.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9106">9106</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-9106">9106</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 150</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 565)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9106" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C3446A6CD8E81B1A4B3E945DED582AD506ABEDC9/103647.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9106" target="_blank">9106</a></span></div><div>Chat link: <span class="chat-link">[&BpIjAAA=]</span></div><div>Name: <span class="name">Sword Arc</span></div><div>Description: <span class="description">Chain. Slash your foe again.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Prev chain: <span class="prev_chain"><a href="#skill-9105">9105</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-9227">9227</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 150</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 565)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9107" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C0ED0D01EA4116136DCBE4925B1C2B92A209B221/103648.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9107" target="_blank">9107</a></span></div><div>Chat link: <span class="chat-link">[&BpMjAAA=]</span></div><div>Name: <span class="name">Zealot's Defense</span></div><div>Description: <span class="description">Destroy ranged attacks while casting magical projectiles.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (8x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Block Duration: 3s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (8x) (requires trait 565)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9108" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/FF96FC6D501276A90FE8C3371167E9D3B2BCE409/103192.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9108" target="_blank">9108</a></span></div><div>Chat link: <span class="chat-link">[&BpQjAAA=]</span></div><div>Name: <span class="name">Faithful Strike</span></div><div>Description: <span class="description">Hit your foe with a final strike and heal nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Mace</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Prev chain: <span class="prev_chain"><a href="#skill-9110">9110</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 335</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9109" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0F7A60D7249F98413466A1F9F8382002F878B766/103194.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9109" target="_blank">9109</a></span></div><div>Chat link: <span class="chat-link">[&BpUjAAA=]</span></div><div>Name: <span class="name">True Strike</span></div><div>Description: <span class="description">Chain. Smash your foe.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Mace</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9110">9110</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-9110">9110</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9110" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/69DC2CC8B83C3A096207051F3ECAD96CB3FB75A8/103193.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9110" target="_blank">9110</a></span></div><div>Chat link: <span class="chat-link">[&BpYjAAA=]</span></div><div>Name: <span class="name">Pure Strike</span></div><div>Description: <span class="description">Chain. Bash your foe.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Mace</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9108">9108</a></span></div><div>Prev chain: <span class="prev_chain"><a href="#skill-9109">9109</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-9108">9108</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9111" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/27E2E665047EE1BBABD57E65660EF6037FFE38D4/103195.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9111" target="_blank">9111</a></span></div><div>Chat link: <span class="chat-link">[&BpcjAAA=]</span></div><div>Name: <span class="name">Symbol of Faith</span></div><div>Description: <span class="description">Symbol. Smash a mystic symbol onto the ground that damages foes and regenerates allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Mace</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Categories: <span class="categories"><ul><li>Symbol</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 120</li><li>Recharge - Recharge: 8s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (1s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Symbol Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Symbol Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x) (requires trait 649)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (3s) (1x) (requires trait 646)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Symbol Duration: 6s (requires trait 558)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Symbol Radius: 240 (requires trait 558)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-9112" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/3026A20C3F5BB0DD70ED2505CA771066BDF0A231/103278.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9112" target="_blank">9112</a></span></div><div>Chat link: <span class="chat-link">[&BpgjAAA=]</span></div><div>Name: <span class="name">Ray of Judgment</span></div><div>Description: <span class="description">Pass a ray over foes and allies. Foes are damaged and blinded. Allies gain regeneration and cure one condition.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 4</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9115" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0E4C27902671FBCB33713E3677604B0880EF0D60/103034.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9115" target="_blank">9115</a></span></div><div>Chat link: <span class="chat-link">[&BpsjAAA=]</span></div><div>Name: <span class="name">Virtue of Justice</span></div><div>Description: <span class="description">Virtue: Burn foes every few attacks.
Activate: You and your allies inflict burning on the next attack.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Profession</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Profession_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-29887">29887</a></span></div><div>Categories: <span class="categories"><ul><li>Virtue</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Attacks to Trigger: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (1x) (requires trait 603)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (5s) (3x) (requires trait 621)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (3s) (1x) (requires trait 572)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Attacks to Trigger: 3 (requires trait 603)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Blast Radius: 240 (requires trait 622)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9118" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/1B55CBCB3E1165FD5D0C7BC3CBEEB65C5BD9D07C/103258.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9118" target="_blank">9118</a></span></div><div>Chat link: <span class="chat-link">[&Bp4jAAA=]</span></div><div>Name: <span class="name">Virtue of Courage</span></div><div>Description: <span class="description">Virtue: Grants aegis every few seconds.
Activate: Grant aegis to yourself and nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Profession</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Profession_3</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9268">9268</a></span></div><div>Categories: <span class="categories"><ul><li>Virtue</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 75s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/DFB4D1B50AE4D6A275B349E15B179261EE3EB0AF/102854.png"> Buff - Apply Buff/Condition: Aegis (20s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Time - Aegis Refresh: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (5s) (1x) (requires trait 621)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (4s) (3x) (requires trait 612)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Time - Aegis Refresh: 30s (requires trait 612)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-9268">9268</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9120" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F12B07B5466A51AB2BFD2C0CB8F3994D3F9E610C/103652.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9120" target="_blank">9120</a></span></div><div>Chat link: <span class="chat-link">[&BqAjAAA=]</span></div><div>Name: <span class="name">Virtue of Resolve</span></div><div>Description: <span class="description">Virtue: Regenerates health.
Activate: Heal yourself and nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Profession</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Profession_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9250">9250</a></span></div><div>Categories: <span class="categories"><ul><li>Virtue</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F12B07B5466A51AB2BFD2C0CB8F3994D3F9E610C/103652.png"> Buff - Apply Buff/Condition: Virtue of Resolve (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 1625</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/F12B07B5466A51AB2BFD2C0CB8F3994D3F9E610C/103652.png"> Buff - Apply Buff/Condition: Resolve (1x) (requires trait 610)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (5s) (1x) (requires trait 621)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 3 (requires trait 610)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-9250">9250</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9122" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/01A7B33C91B5C696F527322E447B4AF56BB50B5C/103654.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9122" target="_blank">9122</a></span></div><div>Chat link: <span class="chat-link">[&BqIjAAA=]</span></div><div>Name: <span class="name">Wave of Wrath</span></div><div>Description: <span class="description">Make a powerful shock wave, hitting up to five foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9124" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/080F4AC49809C32040C80512EAEA769EE7EA4FB7/103109.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9124" target="_blank">9124</a></span></div><div>Chat link: <span class="chat-link">[&BqQjAAA=]</span></div><div>Name: <span class="name">Banish</span></div><div>Description: <span class="description">Launch your foe with a powerful smash.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Hammer</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CB330EF25C62C05F1800A1C507B6AE4944551746/156653.png"> Distance - Launch: 750</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9125" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/99430A49F97BA45EF101E611A69193D57BF70A7D/103655.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9125" target="_blank">9125</a></span></div><div>Chat link: <span class="chat-link">[&BqUjAAA=]</span></div><div>Name: <span class="name">Hammer of Wisdom</span></div><div>Description: <span class="description">Spirit Weapon. Summon an arcane hammer to defend you.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9134">9134</a></span></div><div>Categories: <span class="categories"><ul><li>SpiritWeapon</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 45s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (1s) (1x) (requires trait 635)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9128" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2E31D763EA1D05432949EBB39603CD6DBBE29870/103541.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9128" target="_blank">9128</a></span></div><div>Chat link: <span class="chat-link">[&BqgjAAA=]</span></div><div>Name: <span class="name">Sanctuary</span></div><div>Description: <span class="description">Consecration. Form a protective healing shelter for allies. Foes and projectiles cannot enter.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Consecration</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 90s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 266</li><li>Number - Pulses: 6</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/59E0DB6A699810641C959926ADFEF73E08CC255B/156655.png"> ComboField - Combo Field: Light</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 120</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li>Number - Pulses: 8 (requires trait 617)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 8s (requires trait 617)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-31295">31295</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-9134" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E85D36D9FD49D5F3CADBE9A2763A61213395E4E8/103656.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9134" target="_blank">9134</a></span></div><div>Chat link: <span class="chat-link">[&Bq4jAAA=]</span></div><div>Name: <span class="name">Command</span></div><div>Description: <span class="description">Command the Hammer of Wisdom to knock down your foe.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 750</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61A6A8A161FB7124336A6ED1FBAF9B1E030166A6/156664.png"> Time - Knockdown: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 1</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 640)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9137" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/FC80059BFD4258212CAEB303099B0639AF0308CA/103162.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9137" target="_blank">9137</a></span></div><div>Chat link: <span class="chat-link">[&BrEjAAA=]</span></div><div>Name: <span class="name">Strike</span></div><div>Description: <span class="description">Chain. Strike your foe.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9138">9138</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-9138">9138</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 653)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9138" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/009A1EFE24BB1DBFE44C04E6F0B7A44D9F27033B/103163.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9138" target="_blank">9138</a></span></div><div>Chat link: <span class="chat-link">[&BrIjAAA=]</span></div><div>Name: <span class="name">Vengeful Strike</span></div><div>Description: <span class="description">Chain. Strike your foe again.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9139">9139</a></span></div><div>Prev chain: <span class="prev_chain"><a href="#skill-9137">9137</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-9139">9139</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 653)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9139" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/50B1BB27B4789637E5ADD30B29976D0D9A4E13E0/103164.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9139" target="_blank">9139</a></span></div><div>Chat link: <span class="chat-link">[&BrMjAAA=]</span></div><div>Name: <span class="name">Wrathful Strike</span></div><div>Description: <span class="description">Attack with a final, powerful strike that applies might for each foe you strike.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Prev chain: <span class="prev_chain"><a href="#skill-9138">9138</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 653)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9140" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/98154156032BF6D7DC3EBF27801752461299E550/103315.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9140" target="_blank">9140</a></span></div><div>Chat link: <span class="chat-link">[&BrQjAAA=]</span></div><div>Name: <span class="name">Orb of Light</span></div><div>Description: <span class="description">Fire a moving orb of light that damages enemies and heals allies it touches. Detonate the orb to heal nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9141">9141</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 271</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9141" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/143778F5530435E3BF737AD29FD13D100AE1E525/103657.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9141" target="_blank">9141</a></span></div><div>Chat link: <span class="chat-link">[&BrUjAAA=]</span></div><div>Name: <span class="name">Detonate Orb of Light</span></div><div>Description: <span class="description">Detonate the orb to heal nearby allies. Orb of Light takes four times longer to recharge if detonated.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 788</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9143" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E315FF56624F5B2BB8BF51D00FA716FA4936F037/103268.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9143" target="_blank">9143</a></span></div><div>Chat link: <span class="chat-link">[&BrcjAAA=]</span></div><div>Name: <span class="name">Symbol of Swiftness</span></div><div>Description: <span class="description">Symbol. Sear a mystic symbol into the target area, damaging foes and granting swiftness to allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Categories: <span class="categories"><ul><li>Symbol</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Symbol Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Symbol Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x) (requires trait 649)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (3s) (1x) (requires trait 646)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Symbol Duration: 6s (requires trait 558)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Symbol Radius: 240 (requires trait 558)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-9144" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/62F8F469B1AEF1C440AAAB010B7268C2C32F364D/103658.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9144" target="_blank">9144</a></span></div><div>Chat link: <span class="chat-link">[&BrgjAAA=]</span></div><div>Name: <span class="name">Line of Warding</span></div><div>Description: <span class="description">Ward. Create a line in front of you that foes cannot cross.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Categories: <span class="categories"><ul><li>Ward</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9146" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B9FC18E67D7FEE5B64F60AB7700E5706CCB51DA6/103660.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9146" target="_blank">9146</a></span></div><div>Chat link: <span class="chat-link">[&BrojAAA=]</span></div><div>Name: <span class="name">Symbol of Wrath</span></div><div>Description: <span class="description">Symbol. Pierce the ground with a mystic symbol that damages foes while granting retaliation to allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Categories: <span class="categories"><ul><li>Symbol</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (1s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Symbol Duration: 4s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Symbol Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x) (requires trait 649)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (1s) (5x) (requires trait 604)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (3s) (1x) (requires trait 646)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Symbol Duration: 6s (requires trait 558)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Symbol Radius: 240 (requires trait 558)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-9147" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B975D6E5B32392524C034114E2A2201097BFDA35/103274.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9147" target="_blank">9147</a></span></div><div>Chat link: <span class="chat-link">[&BrsjAAA=]</span></div><div>Name: <span class="name">Binding Blade</span></div><div>Description: <span class="description">Throw blades at your foes, causing damage over time. Bound foes can be pulled to you. The effect ends when a foe moves out of range.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9226">9226</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Maximum Leash Range: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Maximum Blade Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Whirl (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 653)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-9149" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/DF5E50F51A3558C4A76B350F0ED373EF68084F09/103661.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9149" target="_blank">9149</a></span></div><div>Chat link: <span class="chat-link">[&Br0jAAA=]</span></div><div>Name: <span class="name">Wrath</span></div><div>Description: <span class="description">Focus a wrathful light ray on your foe.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (5x) (requires trait 650)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9150" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2A0C7B5FED084FCEE050BE9D6EB5B054A416E607/103662.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9150" target="_blank">9150</a></span></div><div>Chat link: <span class="chat-link">[&Br4jAAA=]</span></div><div>Name: <span class="name">Signet of Judgment</span></div><div>Description: <span class="description">Signet Passive: Reduces incoming damage.
Signet Active: Grant retaliation to nearby allies and weakness to nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9242">9242</a></span></div><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2A0C7B5FED084FCEE050BE9D6EB5B054A416E607/103662.png"> Buff - Apply Buff/Condition: Signet of Judgment (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/6CB0E64AF9AA292E332A38C1770CE577E2CDE0E8/102853.png"> Buff - Apply Buff/Condition: Weakness (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (3s) (1x) (requires trait 604)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9151" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7F660CD006085D42B5A9F16A281D0E15434A2304/103643.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9151" target="_blank">9151</a></span></div><div>Chat link: <span class="chat-link">[&Br8jAAA=]</span></div><div>Name: <span class="name">Signet of Wrath</span></div><div>Description: <span class="description">Signet Passive: Grants you increased condition damage.
Signet Active: Immobilize your target.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9244">9244</a></span></div><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7F660CD006085D42B5A9F16A281D0E15434A2304/103643.png"> Buff - Apply Buff/Condition: Signet of Wrath (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (3s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-9244">9244</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9152" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CA143E59076FDECC06DF0F209836104F359977E0/103663.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9152" target="_blank">9152</a></span></div><div>Chat link: <span class="chat-link">[&BsAjAAA=]</span></div><div>Name: <span class="name">"Hold the Line!"</span></div><div>Description: <span class="description">Shout. Grant protection and regeneration to allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Shout</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 35s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (6s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9153" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7B3B7DFE6C2422C74891CE17E0A3EF15722805F8/103664.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9153" target="_blank">9153</a></span></div><div>Chat link: <span class="chat-link">[&BsEjAAA=]</span></div><div>Name: <span class="name">"Stand Your Ground!"</span></div><div>Description: <span class="description">Shout. Grant stability to yourself and allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Shout</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (5s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (5s) (1x) (requires trait 604)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9154" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/344C7EEC3F6FE10568720E4F75EF91C37A58C43C/103665.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9154" target="_blank">9154</a></span></div><div>Chat link: <span class="chat-link">[&BsIjAAA=]</span></div><div>Name: <span class="name">Renewed Focus</span></div><div>Description: <span class="description">Meditation. Focus, making yourself invulnerable and recharging your virtues.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Elite</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Elite</span></div><br><br><div>Categories: <span class="categories"><ul><li>Meditation</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 90s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Duration - Duration: 3s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> NoData - Prevents Capture-Point Contribution: </li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9158" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/45904C2C787647E168F1A4B607471A32A8CB9609/103666.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9158" target="_blank">9158</a></span></div><div>Chat link: <span class="chat-link">[&BsYjAAA=]</span></div><div>Name: <span class="name">Signet of Resolve</span></div><div>Description: <span class="description">Signet Passive: Cures a condition from yourself every few seconds.
Signet Active: Heal yourself.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 8150</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Interval: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Interval: 8s (requires trait 579)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9159" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CDDCE227F218D8F1AFD49F46C57991E49666D964/103159.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9159" target="_blank">9159</a></span></div><div>Chat link: <span class="chat-link">[&BscjAAA=]</span></div><div>Name: <span class="name">Hammer Swing</span></div><div>Description: <span class="description">Chain. Strike your foe.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Hammer</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9160">9160</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-9160">9160</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9160" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/18AE09A5E9424FAA35EFA33BB903A1062ACEF354/103160.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9160" target="_blank">9160</a></span></div><div>Chat link: <span class="chat-link">[&BsgjAAA=]</span></div><div>Name: <span class="name">Hammer Bash</span></div><div>Description: <span class="description">Chain. Bash your foe.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Hammer</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9161">9161</a></span></div><div>Prev chain: <span class="prev_chain"><a href="#skill-9159">9159</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-9161">9161</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9161" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E56B3804B2F82E3256A82318E537D024DC57E271/103161.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9161" target="_blank">9161</a></span></div><div>Chat link: <span class="chat-link">[&BskjAAA=]</span></div><div>Name: <span class="name">Symbol of Protection</span></div><div>Description: <span class="description">Symbol. Smash a mystic symbol onto the ground that gives protection to you and your allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Hammer</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Prev chain: <span class="prev_chain"><a href="#skill-9160">9160</a></span></div><div>Categories: <span class="categories"><ul><li>Symbol</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Hammer Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Symbol Damage: (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (1s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Symbol Duration: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Symbol Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets (Hammer): 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets (Symbol): 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Symbol Damage: (3x) (requires trait 649)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (1s) (5x) (requires trait 558)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (3s) (1x) (requires trait 646)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Symbol Duration: 4s (requires trait 558)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Symbol Radius: 240 (requires trait 558)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-9163" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9FCB1995DC9106F6A1C9741142D4FF7DB407414F/103667.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9163" target="_blank">9163</a></span></div><div>Chat link: <span class="chat-link">[&BssjAAA=]</span></div><div>Name: <span class="name">Signet of Mercy</span></div><div>Description: <span class="description">Signet Passive: Improves healing.
Signet Active: Revive a nearby ally.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9243">9243</a></span></div><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 150s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9FCB1995DC9106F6A1C9741142D4FF7DB407414F/103667.png"> Buff - Apply Buff/Condition: Signet of Mercy (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-9243">9243</a></li><li>Skill is a possible duplicate of skill <a href="#skill-24414">24414</a></li><li>Skill is a possible duplicate of skill <a href="#skill-24415">24415</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9168" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/98B40D09401B44949604E073F5F793C660B7ED22/103669.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9168" target="_blank">9168</a></span></div><div>Chat link: <span class="chat-link">[&BtAjAAA=]</span></div><div>Name: <span class="name">Sword of Justice</span></div><div>Description: <span class="description">Spirit Weapon. Summon an arcane sword to defend you.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9171">9171</a></span></div><div>Categories: <span class="categories"><ul><li>SpiritWeapon</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 45s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9171" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/3CC64165DEE393B36469B572636096F5B76434A1/103670.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9171" target="_blank">9171</a></span></div><div>Chat link: <span class="chat-link">[&BtMjAAA=]</span></div><div>Name: <span class="name">Command</span></div><div>Description: <span class="description">Command the Sword of Justice to strike its location and damage nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (10s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 640)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9175" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D6B3F74013A80F14BADF5D2D0D1D9E40D64F9C04/103671.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9175" target="_blank">9175</a></span></div><div>Chat link: <span class="chat-link">[&BtcjAAA=]</span></div><div>Name: <span class="name">Bow of Truth</span></div><div>Description: <span class="description">Spirit Weapon. Summon an arcane bow to cure conditions on you and your allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9178">9178</a></span></div><div>Categories: <span class="categories"><ul><li>SpiritWeapon</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 30s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9178" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B0FBAE0E5743C746D174B2B95B1F80A8545D01DB/103672.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9178" target="_blank">9178</a></span></div><div>Chat link: <span class="chat-link">[&BtojAAA=]</span></div><div>Name: <span class="name">Command</span></div><div>Description: <span class="description">Command the Bow of Truth to barrage a location with healing arrows.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 64</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 40</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 9s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9182" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CFBE4110635CD25B68EE194E7DBE25166DAAA197/103673.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9182" target="_blank">9182</a></span></div><div>Chat link: <span class="chat-link">[&Bt4jAAA=]</span></div><div>Name: <span class="name">Shield of the Avenger</span></div><div>Description: <span class="description">Spirit Weapon. Summon an arcane shield to destroy incoming projectiles.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9185">9185</a></span></div><div>Categories: <span class="categories"><ul><li>SpiritWeapon</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 30s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9185" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/051BFE38A65D4DA471003998A9C005C0BB1BC698/103674.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9185" target="_blank">9185</a></span></div><div>Chat link: <span class="chat-link">[&BuEjAAA=]</span></div><div>Name: <span class="name">Command</span></div><div>Description: <span class="description">Command the Shield of the Avenger to fly out and weaken multiple foes while granting aegis to allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/DFB4D1B50AE4D6A275B349E15B179261EE3EB0AF/102854.png"> Buff - Apply Buff/Condition: Aegis (6s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/6CB0E64AF9AA292E332A38C1770CE577E2CDE0E8/102853.png"> Buff - Apply Buff/Condition: Weakness (6s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 640)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9187" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/646CD9EA044A959A0A0D6143B29707EADB31B2B9/103675.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9187" target="_blank">9187</a></span></div><div>Chat link: <span class="chat-link">[&BuMjAAA=]</span></div><div>Name: <span class="name">Purging Flames</span></div><div>Description: <span class="description">Consecration. Create a ring of fire that burns foes and cures conditions on allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Consecration</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 35s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/646CD9EA044A959A0A0D6143B29707EADB31B2B9/103675.png"> Buff - Apply Buff/Condition: Purging Flames (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s (requires trait 617)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-31159">31159</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-9189" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/77931F01AE91A00998BD286BA2930DCE1A354318/103677.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9189" target="_blank">9189</a></span></div><div>Chat link: <span class="chat-link">[&BuUjAAA=]</span></div><div>Name: <span class="name">Spear of Light</span></div><div>Description: <span class="description">Throw a spear that makes your foe vulnerable.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (5s) (1x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 565)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-9190" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C2231A914094E903355AFBCA550507507F00EEE8/103678.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9190" target="_blank">9190</a></span></div><div>Chat link: <span class="chat-link">[&BuYjAAA=]</span></div><div>Name: <span class="name">Zealot's Flurry</span></div><div>Description: <span class="description">Strike foes in front of you with a storm of jabs.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 275</li><li>Recharge - Recharge: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (8x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (8x) (requires trait 565)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9191" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0C2632BDBBEC0648A0F97196EF9A5106101FD339/103679.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9191" target="_blank">9191</a></span></div><div>Chat link: <span class="chat-link">[&BucjAAA=]</span></div><div>Name: <span class="name">Brilliance</span></div><div>Description: <span class="description">Blind all nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 275</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Whirl (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 565)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-9192" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/AAE6229FBB48173FB9ECE823EE0CEF6CD5510F28/103680.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9192" target="_blank">9192</a></span></div><div>Chat link: <span class="chat-link">[&BugjAAA=]</span></div><div>Name: <span class="name">Spear Wall</span></div><div>Description: <span class="description">Create a spear wall in front of you that damages foes passing through it.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 565)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-9193" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CB1473B0FBA70401F80E767FA03553CF251A02F1/103681.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9193" target="_blank">9193</a></span></div><div>Chat link: <span class="chat-link">[&BukjAAA=]</span></div><div>Name: <span class="name">Wrathful Grasp</span></div><div>Description: <span class="description">Throw a spear and pull your foe to you, burning them.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (3x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 565)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-9194" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7CF5FFD35624B6D243B97CE4344018C3F1E6ACB7/103682.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9194" target="_blank">9194</a></span></div><div>Chat link: <span class="chat-link">[&BuojAAA=]</span></div><div>Name: <span class="name">Mighty Blow</span></div><div>Description: <span class="description">Damage nearby foes with a mighty ground slam.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Hammer</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 300</li><li>Recharge - Recharge: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-9195" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/13A76EA2D6E91C94503F030E3A47F60A6B4153D2/103092.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9195" target="_blank">9195</a></span></div><div>Chat link: <span class="chat-link">[&BusjAAA=]</span></div><div>Name: <span class="name">Ring of Warding</span></div><div>Description: <span class="description">Ward. Create a ring around you that foes cannot cross. Trapped foes cannot exit the ring while it is active.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Hammer</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Categories: <span class="categories"><ul><li>Ward</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 180</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-9205" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5B1F0DD7672312BFFA0C365F5E40925BF6D16774/103692.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9205" target="_blank">9205</a></span></div><div>Chat link: <span class="chat-link">[&BvUjAAA=]</span></div><div>Name: <span class="name">Light of Judgment</span></div><div>Description: <span class="description">Fire a ball of light that heals allies and damages foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 69</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 4</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9206" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/01FF43DF349C5002226E1BD0ACF932F2AE010296/103693.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9206" target="_blank">9206</a></span></div><div>Chat link: <span class="chat-link">[&BvYjAAA=]</span></div><div>Name: <span class="name">Weight of Justice</span></div><div>Description: <span class="description">Sink your foe with the weight of justice.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> AttributeAdjust - Damage: 320</li><li>Number - Pulses: 2</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-9207" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0ABBECC059F05944C6C67AF772AEEC0208C2D158/103694.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9207" target="_blank">9207</a></span></div><div>Chat link: <span class="chat-link">[&BvcjAAA=]</span></div><div>Name: <span class="name">Purify</span></div><div>Description: <span class="description">Release an orb of cleansing light that cures conditions on allies it passes through. Detonate it to burn foes and cure conditions on allies in the blast radius.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-9234">9234</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9208" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/75106504AAE75F5C09285B70A6600274F47B35BE/103695.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9208" target="_blank">9208</a></span></div><div>Chat link: <span class="chat-link">[&BvgjAAA=]</span></div><div>Name: <span class="name">Pillar of Light</span></div><div>Description: <span class="description">Create a pillar of light that does damage every second at your foe's location.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (6x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 10</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9209" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/1933280FB808E26577A7241B06D7F25D4F6474A9/103696.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9209" target="_blank">9209</a></span></div><div>Chat link: <span class="chat-link">[&BvkjAAA=]</span></div><div>Name: <span class="name">Refraction</span></div><div>Description: <span class="description">Create a bubble that absorbs hostile projectiles and grant retaliation to allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 7s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (5s) (1x) (requires trait 604)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-9210" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D4D1FB807D49D45B7518E99E28D7A4F79DE7C5C2/103697.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9210" target="_blank">9210</a></span></div><div>Chat link: <span class="chat-link">[&BvojAAA=]</span></div><div>Name: <span class="name">Renewing Current</span></div><div>Description: <span class="description">Escape toward the surface and heal.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 1650</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9211" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C2D7973450635BF62EE70C5151B2D20EB39A4674/103698.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9211" target="_blank">9211</a></span></div><div>Chat link: <span class="chat-link">[&BvsjAAA=]</span></div><div>Name: <span class="name">Reveal the Depths</span></div><div>Description: <span class="description">Damage foes in an area that grows larger.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9212" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2404F8CF0AD33F6A9DD15BA3FF09C8207796EB6C/103699.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9212" target="_blank">9212</a></span></div><div>Chat link: <span class="chat-link">[&BvwjAAA=]</span></div><div>Name: <span class="name">Shackle</span></div><div>Description: <span class="description">Cripple your foe with shackles.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (1s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9224" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/299DDE0F181A754CDF396D6A5FA735080361EF46/103704.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9224" target="_blank">9224</a></span></div><div>Chat link: <span class="chat-link">[&BggkAAA=]</span></div><div>Name: <span class="name">Shield of Absorption</span></div><div>Description: <span class="description">Detonate the dome to heal nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Shield</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 1300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div></td><tr id="skill-9226" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/52060B4FF8B76A546473009232610BB21718C2A4/103586.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9226" target="_blank">9226</a></span></div><div>Chat link: <span class="chat-link">[&BgokAAA=]</span></div><div>Name: <span class="name">Pull</span></div><div>Description: <span class="description">Pull your foes to you.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Leash Range: 600</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9227" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/EE60D5DCE54CEF6108417BD7AF5758806D2A4066/103705.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9227" target="_blank">9227</a></span></div><div>Chat link: <span class="chat-link">[&BgskAAA=]</span></div><div>Name: <span class="name">Sword Wave</span></div><div>Description: <span class="description">Send out a cone attack, striking up to three foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Prev chain: <span class="prev_chain"><a href="#skill-9106">9106</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 300</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (3x) (requires trait 565)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9234" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0C2632BDBBEC0648A0F97196EF9A5106101FD339/103679.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9234" target="_blank">9234</a></span></div><div>Chat link: <span class="chat-link">[&BhIkAAA=]</span></div><div>Name: <span class="name">Purifying Blast</span></div><div>Description: <span class="description">Detonate the orb to burn foes and cure conditions on allies in the blast radius.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 8s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 300</li><li>ComboFinisher - Combo Finisher: Blast (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/6408C6EF002E2B19187735AFA7DCF616A4BFC5B3/102972.png"> Buff - Apply Buff/Condition: (10s) (25x) (requires trait 1233)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-9241" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9FF294A9CC489D4FE8CED934A0C4359964B67443/103638.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9241" target="_blank">9241</a></span></div><div>Chat link: <span class="chat-link">[&BhkkAAA=]</span></div><div>Name: <span class="name">Bane Signet</span></div><div>Description: <span class="description">Signet Passive: Improved Power
Signet Active: Knock down and damage your foe.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61A6A8A161FB7124336A6ED1FBAF9B1E030166A6/156664.png"> Time - Knockdown: 3s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9FF294A9CC489D4FE8CED934A0C4359964B67443/103638.png"> Buff - Apply Buff/Condition: Bane Signet (1x) (requires trait 579)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-9093">9093</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9242" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2A0C7B5FED084FCEE050BE9D6EB5B054A416E607/103662.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9242" target="_blank">9242</a></span></div><div>Chat link: <span class="chat-link">[&BhokAAA=]</span></div><div>Name: <span class="name">Signet of Judgment</span></div><div>Description: <span class="description">Signet Passive: Reduces incoming damage.
Signet Active: Grant retaliation to nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/6CB0E64AF9AA292E332A38C1770CE577E2CDE0E8/102853.png"> Buff - Apply Buff/Condition: Weakness (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/2A0C7B5FED084FCEE050BE9D6EB5B054A416E607/103662.png"> Buff - Apply Buff/Condition: Signet of Judgment (1x) (requires trait 579)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (3s) (1x) (requires trait 604)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9243" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9FCB1995DC9106F6A1C9741142D4FF7DB407414F/103667.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9243" target="_blank">9243</a></span></div><div>Chat link: <span class="chat-link">[&BhskAAA=]</span></div><div>Name: <span class="name">Signet of Mercy</span></div><div>Description: <span class="description">Signet Passive: Improves healing.
Signet Active: Revive a nearby ally.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 150s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9FCB1995DC9106F6A1C9741142D4FF7DB407414F/103667.png"> Buff - Apply Buff/Condition: Signet of Mercy (1x) (requires trait 579)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-9163">9163</a></li><li>Skill is a possible duplicate of skill <a href="#skill-24414">24414</a></li><li>Skill is a possible duplicate of skill <a href="#skill-24415">24415</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9244" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7F660CD006085D42B5A9F16A281D0E15434A2304/103643.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9244" target="_blank">9244</a></span></div><div>Chat link: <span class="chat-link">[&BhwkAAA=]</span></div><div>Name: <span class="name">Signet of Wrath</span></div><div>Description: <span class="description">Signet Passive: Grants you increased condition damage.
Signet Active: Immobilize your target.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (3s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7F660CD006085D42B5A9F16A281D0E15434A2304/103643.png"> Buff - Apply Buff/Condition: Signet of Wrath (1x) (requires trait 579)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-9151">9151</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9245" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/DB5FBEBBD092642AE39C99F7CD3521EB41C0D717/103644.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9245" target="_blank">9245</a></span></div><div>Chat link: <span class="chat-link">[&Bh0kAAA=]</span></div><div>Name: <span class="name">Smite Condition</span></div><div>Description: <span class="description">Meditation. Cure conditions and damage nearby foes. Deal more damage if a condition is cured.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Meditation</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage With No Conditions: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage With Condition: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 2</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9246" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4B93D8CA0663ABD94BAF9FCE80D6280A56C01099/103706.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9246" target="_blank">9246</a></span></div><div>Chat link: <span class="chat-link">[&Bh4kAAA=]</span></div><div>Name: <span class="name">Merciful Intervention</span></div><div>Description: <span class="description">Meditation. Shadowstep to an ally in the targeted area and heal around them. If no ally is present in the targeted area, this ability will not shadowstep.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Meditation</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 1960</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9247" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0130A69F3F5F55A493AE9BFCA965603330C605AA/103668.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9247" target="_blank">9247</a></span></div><div>Chat link: <span class="chat-link">[&Bh8kAAA=]</span></div><div>Name: <span class="name">Judge's Intervention</span></div><div>Description: <span class="description">Meditation. Teleport to your target and burn nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Meditation</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 45s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9248" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E260D443FB6104F1A0736CB30B4F080209559933/103684.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9248" target="_blank">9248</a></span></div><div>Chat link: <span class="chat-link">[&BiAkAAA=]</span></div><div>Name: <span class="name">Contemplation of Purity</span></div><div>Description: <span class="description">Meditation. Convert the conditions you are suffering from into boons.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Meditation</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 40s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9250" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F12B07B5466A51AB2BFD2C0CB8F3994D3F9E610C/103652.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9250" target="_blank">9250</a></span></div><div>Chat link: <span class="chat-link">[&BiIkAAA=]</span></div><div>Name: <span class="name">Virtue of Resolve</span></div><div>Description: <span class="description">Virtue: Regenerates health.
Activate: Heal yourself and nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Profession</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Profession_2</span></div><br><br><div>Categories: <span class="categories"><ul><li>Virtue</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 50s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F12B07B5466A51AB2BFD2C0CB8F3994D3F9E610C/103652.png"> Buff - Apply Buff/Condition: Virtue of Resolve (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 1625</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/F12B07B5466A51AB2BFD2C0CB8F3994D3F9E610C/103652.png"> Buff - Apply Buff/Condition: Resolve (1x) (requires trait 610)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (5s) (1x) (requires trait 621)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 3 (requires trait 610)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-9120">9120</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9251" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/09D77552CC232597FB2960EC3F43DA7BF5633FA1/103482.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9251" target="_blank">9251</a></span></div><div>Chat link: <span class="chat-link">[&BiMkAAA=]</span></div><div>Name: <span class="name">Wall of Reflection</span></div><div>Description: <span class="description">Consecration. Summon a barrier of mystic power that reflects projectiles.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Consecration</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 12s (requires trait 617)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-9253" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/06C916D4A05B790110976BD61E7DDE6932B5B2C6/103676.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9253" target="_blank">9253</a></span></div><div>Chat link: <span class="chat-link">[&BiUkAAA=]</span></div><div>Name: <span class="name">Hallowed Ground</span></div><div>Description: <span class="description">Consecration. Consecrate the ground around you, granting stability to allies inside.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Consecration</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 80s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/06C916D4A05B790110976BD61E7DDE6932B5B2C6/103676.png"> Buff - Apply Buff/Condition: Hallowed Ground (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Time - Boon Application Interval: 2s</li><li>Number - Pulses: 10</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Fire</li></ul></div><br><br><div class="facts">Traited facts:<ul><li>Number - Pulses: 12 (requires trait 617)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 12s (requires trait 617)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li><li>Fact #9 is missing an icon</li></ul></div></td><tr id="skill-9260" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/53752EA071EBA20C3C2D79EB3949ED73C6BBCA40/103683.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9260" target="_blank">9260</a></span></div><div>Chat link: <span class="chat-link">[&BiwkAAA=]</span></div><div>Name: <span class="name">Zealot's Embrace</span></div><div>Description: <span class="description">Send a wave toward your foe that immobilizes foes in a line.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Hammer</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-9265" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0EFCC1FD452CC19694D6BA3F390C1822C3FE73CD/103636.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9265" target="_blank">9265</a></span></div><div>Chat link: <span class="chat-link">[&BjEkAAA=]</span></div><div>Name: <span class="name">Empower</span></div><div>Description: <span class="description">Channel might to yourself and allies around you. Heal nearby allies when it ends.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 1500</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (10s) (12x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-9268" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/1B55CBCB3E1165FD5D0C7BC3CBEEB65C5BD9D07C/103258.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/9268" target="_blank">9268</a></span></div><div>Chat link: <span class="chat-link">[&BjQkAAA=]</span></div><div>Name: <span class="name">Virtue of Courage</span></div><div>Description: <span class="description">Virtue: Grants aegis every few seconds.
Activate: Grant aegis to yourself and nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Guardian</li></ul></span></div><div>Type: <span class="type">Profession</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Profession_3</span></div><br><br><div>Categories: <span class="categories"><ul><li>Virtue</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 75s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/DFB4D1B50AE4D6A275B349E15B179261EE3EB0AF/102854.png"> Buff - Apply Buff/Condition: Aegis (20s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Time - Aegis Refresh: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (5s) (1x) (requires trait 621)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (4s) (3x) (requires trait 612)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Time - Aegis Refresh: 30s (requires trait 612)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-9118">9118</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10168" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6CD969007198CB02410C0999A870300AADACABDC/103622.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10168" target="_blank">10168</a></span></div><div>Chat link: <span class="chat-link">[&BrgnAAA=]</span></div><div>Name: <span class="name">Confusing Images</span></div><div>Description: <span class="description">Channel a beam of energy that damages and confuses your foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (6x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/289AA0A4644F0E044DED3D3F39CED958E1DDFF53/102880.png"> Buff - Apply Buff/Condition: Confusion (7s) (6x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10169" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B741282BD5EE93C9FC43AE417878953D50BB3974/103156.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10169" target="_blank">10169</a></span></div><div>Chat link: <span class="chat-link">[&BrknAAA=]</span></div><div>Name: <span class="name">Chaos Storm</span></div><div>Description: <span class="description">Create a magical storm at the target location that applies random conditions to foes and boons to allies.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 35s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/DFB4D1B50AE4D6A275B349E15B179261EE3EB0AF/102854.png"> Buff - Apply Buff/Condition: Aegis (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/28C4EC547A3516AF0242E826772DA43A5EAC3DF3/102839.png"> Buff - Apply Buff/Condition: Chilled (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/559B0AF9FB5E1243D2649FAAE660CCB338AACC19/102840.png"> Buff - Apply Buff/Condition: Poisoned (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/6CB0E64AF9AA292E332A38C1770CE577E2CDE0E8/102853.png"> Buff - Apply Buff/Condition: Weakness (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Ethereal</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 1s (requires trait 686)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #12 is missing an icon</li></ul></div></td><tr id="skill-10170" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/58635B4F6E0264FC59BC80B73706EFB7DE0E9A34/103188.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10170" target="_blank">10170</a></span></div><div>Chat link: <span class="chat-link">[&BronAAA=]</span></div><div>Name: <span class="name">Mind Slash</span></div><div>Description: <span class="description">Chain. Slash your foe to make them vulnerable.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10171">10171</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-10171">10171</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10171" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CFFAD1180816A86DC03156B431A0B22C703FEAE4/103189.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10171" target="_blank">10171</a></span></div><div>Chat link: <span class="chat-link">[&BrsnAAA=]</span></div><div>Name: <span class="name">Mind Gash</span></div><div>Description: <span class="description">Chain. Gash your foe to make them vulnerable.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Prev chain: <span class="prev_chain"><a href="#skill-10170">10170</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-10172">10172</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10172" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4C1A68BFFDD61A4147BD41039BB82D0D4F4E766B/103190.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10172" target="_blank">10172</a></span></div><div>Chat link: <span class="chat-link">[&BrwnAAA=]</span></div><div>Name: <span class="name">Mind Spike</span></div><div>Description: <span class="description">Stab your foe and rip a boon off of them. Does additional damage when the target has no boons.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Prev chain: <span class="prev_chain"><a href="#skill-10171">10171</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage without Boons: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage with Boons: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Boons Removed: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10173" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D7202F9A1D73AAF4D478B892BDEE017AAFA93EFB/103722.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10173" target="_blank">10173</a></span></div><div>Chat link: <span class="chat-link">[&Br0nAAA=]</span></div><div>Name: <span class="name">Illusionary Leap</span></div><div>Description: <span class="description">Clone. Summon an illusion that leaps at your target, crippling them. After the initial leap, the clone will execute the Mind Slash sword chain.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10337">10337</a></span></div><div>Categories: <span class="categories"><ul><li>Clone</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (5s) (2x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10174" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/755CAC115104F0AA0630DCEB472D0678B62A916E/103723.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10174" target="_blank">10174</a></span></div><div>Chat link: <span class="chat-link">[&Br4nAAA=]</span></div><div>Name: <span class="name">Phantasmal Swordsman</span></div><div>Description: <span class="description">Phantasm. Create an illusion that attacks your foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Categories: <span class="categories"><ul><li>Phantasm</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li>ComboFinisher - Combo Finisher: Leap (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 682)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-10175" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B19B18E1D8314AA63BF9A7C7E0C561624BB2D97E/103724.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10175" target="_blank">10175</a></span></div><div>Chat link: <span class="chat-link">[&Br8nAAA=]</span></div><div>Name: <span class="name">Phantasmal Duelist</span></div><div>Description: <span class="description">Phantasm. Create an illusion that unloads its pistols on your foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Categories: <span class="categories"><ul><li>Phantasm</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (8x)</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (8x) (requires trait 682)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-10176" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/3A946C46446E0761924AB07CFC19FD5F9107FFD3/103725.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10176" target="_blank">10176</a></span></div><div>Chat link: <span class="chat-link">[&BsAnAAA=]</span></div><div>Name: <span class="name">Ether Feast</span></div><div>Description: <span class="description">Heal yourself. Gain additional health for each active illusion.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 5560</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Heal per Illusion: 640</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10177" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CED3F1AE9294F9C5045DA8017F25170CE87C0AE2/103726.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10177" target="_blank">10177</a></span></div><div>Chat link: <span class="chat-link">[&BsEnAAA=]</span></div><div>Name: <span class="name">Mirror</span></div><div>Description: <span class="description">Manipulation. Reflect projectiles, and heal yourself.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Categories: <span class="categories"><ul><li>Manipulation</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 3915</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CED3F1AE9294F9C5045DA8017F25170CE87C0AE2/103726.png"> Buff - Apply Buff/Condition: Mirror (2s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CED3F1AE9294F9C5045DA8017F25170CE87C0AE2/103726.png"> Buff - Apply Buff/Condition: Mirror (4s) (1x) (requires trait 677)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10185" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BEDBA7E72F06AA51D124B9B29EA53D4E3FEAFA48/103728.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10185" target="_blank">10185</a></span></div><div>Chat link: <span class="chat-link">[&BsknAAA=]</span></div><div>Name: <span class="name">Arcane Thievery</span></div><div>Description: <span class="description">Manipulation. Send three conditions you have to your foe and steal three of their boons.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Manipulation</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 45s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10186" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C6352A11D34B060628DE02A6509F6719403E7707/103198.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10186" target="_blank">10186</a></span></div><div>Chat link: <span class="chat-link">[&BsonAAA=]</span></div><div>Name: <span class="name">Temporal Curtain</span></div><div>Description: <span class="description">Create a wall of energy that grants swiftness to allies who cross it and cripplies foes who touch it. Allies may cross the wall more than once but receive less swiftness after the first crossing.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10363">10363</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (12s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-10187" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BA0BFC7465492CDE157741087CCA3D932F4E6542/103729.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10187" target="_blank">10187</a></span></div><div>Chat link: <span class="chat-link">[&BssnAAA=]</span></div><div>Name: <span class="name">Veil</span></div><div>Description: <span class="description">Glamour. Create a wall that grants stealth to you and your allies.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glamour</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 72s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Curtain Duration: 6s</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (3s) (1x) (requires trait 674)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Curtain Duration: 8s (requires trait 752)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-10189" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F05D9460F100725E43FD95072F497D28E16BF103/103730.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10189" target="_blank">10189</a></span></div><div>Chat link: <span class="chat-link">[&Bs0nAAA=]</span></div><div>Name: <span class="name">Phantasmal Mage</span></div><div>Description: <span class="description">Phantasm. Create an illusion that burns foes and grants fury to allies.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Torch</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Categories: <span class="categories"><ul><li>Phantasm</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (6s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 682)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1 (requires trait 691)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10196" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F701C71E489EA4E41B6CD37342AE29B6440017A0/103733.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10196" target="_blank">10196</a></span></div><div>Chat link: <span class="chat-link">[&BtQnAAA=]</span></div><div>Name: <span class="name">Mind Blast</span></div><div>Description: <span class="description">Create an explosion of magical energy, confusing your foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/289AA0A4644F0E044DED3D3F39CED958E1DDFF53/102880.png"> Buff - Apply Buff/Condition: Confusion (5s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10197" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BB7D7902B947C52DF3FC340AA66697F0CE669E31/103558.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10197" target="_blank">10197</a></span></div><div>Chat link: <span class="chat-link">[&BtUnAAA=]</span></div><div>Name: <span class="name">Portal Entre</span></div><div>Description: <span class="description">Glamour. Create an entry portal at your location that teleports allies to your exit portal.
(Creating a new entrance portal while you have an active portal will destroy the active portal.)</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10199">10199</a></span></div><div>Categories: <span class="categories"><ul><li>Glamour</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 72s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Range Threshold: 5000</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10199" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/AB225850554A994ACADC3EE21A6D59EC3F0FDE91/103734.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10199" target="_blank">10199</a></span></div><div>Chat link: <span class="chat-link">[&BtcnAAA=]</span></div><div>Name: <span class="name">Portal Exeunt</span></div><div>Description: <span class="description">Glamour. Create an exit portal.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glamour</li></ul></span></div><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Range Threshold: 5000</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 12s (requires trait 752)</li></ul></div></td><tr id="skill-10200" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/71CACFE9E642D9F4FB43D812AA78B9460C7CAD7D/103735.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10200" target="_blank">10200</a></span></div><div>Chat link: <span class="chat-link">[&BtgnAAA=]</span></div><div>Name: <span class="name">Blink</span></div><div>Description: <span class="description">Manipulation. Teleport to a target location.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Manipulation</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10201" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0A4D48345ABB02E606AB45FF9FB6D27FDA70E83C/103191.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10201" target="_blank">10201</a></span></div><div>Chat link: <span class="chat-link">[&BtknAAA=]</span></div><div>Name: <span class="name">Decoy</span></div><div>Description: <span class="description">Clone. Gain stealth and summon an illusion to attack your foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Clone</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (3s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (5s) (1x) (requires trait 674)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10202" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/AC1FF1F0953751DEF53E5C4A079A80F84239D05C/103736.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10202" target="_blank">10202</a></span></div><div>Chat link: <span class="chat-link">[&BtonAAA=]</span></div><div>Name: <span class="name">Mirror Images</span></div><div>Description: <span class="description">Clone. Summon two clones to attack your foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Clone</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 45s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10203" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6B4F2106E3E318654F46B1E4F52CC0234D981B0A/103737.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10203" target="_blank">10203</a></span></div><div>Chat link: <span class="chat-link">[&BtsnAAA=]</span></div><div>Name: <span class="name">Null Field</span></div><div>Description: <span class="description">Glamour. Create a field of energy that rips boons from foes and cures conditions on allies.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glamour</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 32s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>Number - Pulses: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Boons Removed: 1</li><li>ComboField - Combo Field: Ethereal</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 7s (requires trait 752)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-10204" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D9F87FB1FB2FF7471FC0AAEFB04A1F249F070D04/103738.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10204" target="_blank">10204</a></span></div><div>Chat link: <span class="chat-link">[&BtwnAAA=]</span></div><div>Name: <span class="name">Mantra of Distraction</span></div><div>Description: <span class="description">Mantra. Meditate, charging a spell that will daze your target.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10206">10206</a></span></div><div>Categories: <span class="categories"><ul><li>Mantra</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 2</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/E1E7C4D3A6E62F3D5C9F627CE8175BFB0C614CBE/156652.png"> AttributeAdjust - Attribute Adjust While Channeling: 600</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 3 (requires trait 692)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10206" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/051791B9C318745B7F617D39937F1A52B60D1C05/103739.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10206" target="_blank">10206</a></span></div><div>Chat link: <span class="chat-link">[&Bt4nAAA=]</span></div><div>Name: <span class="name">Power Lock</span></div><div>Description: <span class="description">Daze your foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 180</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 1s (requires trait 686)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10207" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/164A435EA2B0ADCA0BC92F09A254FD04A173DB30/103740.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10207" target="_blank">10207</a></span></div><div>Chat link: <span class="chat-link">[&Bt8nAAA=]</span></div><div>Name: <span class="name">Mantra of Resolve</span></div><div>Description: <span class="description">Mantra. Meditate, charging a spell that will cure conditions for you and nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10209">10209</a></span></div><div>Categories: <span class="categories"><ul><li>Mantra</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 2</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/E1E7C4D3A6E62F3D5C9F627CE8175BFB0C614CBE/156652.png"> AttributeAdjust - Attribute Adjust While Channeling: 600</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 3 (requires trait 692)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10209" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/1E329F3FA4BA08107AD9DC96F116BA1DE479BF73/103741.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10209" target="_blank">10209</a></span></div><div>Chat link: <span class="chat-link">[&BuEnAAA=]</span></div><div>Name: <span class="name">Power Cleanse</span></div><div>Description: <span class="description">Remove conditions from you and nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 2</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10211" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/440570B77C68F009A4EB6C0C0FFD3BE00FC11E96/103742.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10211" target="_blank">10211</a></span></div><div>Chat link: <span class="chat-link">[&BuMnAAA=]</span></div><div>Name: <span class="name">Mantra of Pain</span></div><div>Description: <span class="description">Mantra. Meditate, charging a spell that will damage your target.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10212">10212</a></span></div><div>Categories: <span class="categories"><ul><li>Mantra</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 2</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/E1E7C4D3A6E62F3D5C9F627CE8175BFB0C614CBE/156652.png"> AttributeAdjust - Attribute Adjust While Channeling: 600</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 3 (requires trait 692)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10212" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/3519C5C770CCEAF92926D9495999E1F8A23D5AF3/103743.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10212" target="_blank">10212</a></span></div><div>Chat link: <span class="chat-link">[&BuQnAAA=]</span></div><div>Name: <span class="name">Power Spike</span></div><div>Description: <span class="description">Damage your foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10213" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/73CCCC9F09D026A016C5D760EA952B59C8AAF8F0/103744.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10213" target="_blank">10213</a></span></div><div>Chat link: <span class="chat-link">[&BuUnAAA=]</span></div><div>Name: <span class="name">Mantra of Recovery</span></div><div>Description: <span class="description">Mantra. Meditate, charging a spell that will instantly heal you when activated.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10214">10214</a></span></div><div>Categories: <span class="categories"><ul><li>Mantra</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 2</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/E1E7C4D3A6E62F3D5C9F627CE8175BFB0C614CBE/156652.png"> AttributeAdjust - Attribute Adjust While Channeling: 600</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 3 (requires trait 692)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10214" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A999116605543595AEF225D26026127828AED66B/103745.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10214" target="_blank">10214</a></span></div><div>Chat link: <span class="chat-link">[&BuYnAAA=]</span></div><div>Name: <span class="name">Power Return</span></div><div>Description: <span class="description">Instantly heal yourself.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Healing: 2620</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10216" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/095CB8FCE947F9D538CAD84839B475F2EEAC4A0C/103746.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10216" target="_blank">10216</a></span></div><div>Chat link: <span class="chat-link">[&BugnAAA=]</span></div><div>Name: <span class="name">Phantasmal Warlock</span></div><div>Description: <span class="description">Phantasm. Summon an illusion that deals extra damage for each unique condition on the target foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Categories: <span class="categories"><ul><li>Phantasm</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 18s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Extra damage per condition: 10%</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 682)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10218" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/DA0126D7F32A973F4432E2070C0DB7252F561E90/103584.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10218" target="_blank">10218</a></span></div><div>Chat link: <span class="chat-link">[&BuonAAA=]</span></div><div>Name: <span class="name">Mind Stab</span></div><div>Description: <span class="description">Thrust your greatsword into the ground, damaging foes and removing 1 boon.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10219" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0F9E5C7DD5545290E3D41B5603FC0327EB9E6725/103615.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10219" target="_blank">10219</a></span></div><div>Chat link: <span class="chat-link">[&BusnAAA=]</span></div><div>Name: <span class="name">Spatial Surge</span></div><div>Description: <span class="description">Shoot a beam at your foe. The farther away they are, the more damage you deal.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage if range is less than 300: (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage if range is between 300-600: (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage if range is between 600-900: (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage if range is greater than 900: (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (5s) (2x) (requires trait 681)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10220" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5C16C0DE262ECCA295D80DA692EBC23A795DB9F7/103585.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10220" target="_blank">10220</a></span></div><div>Chat link: <span class="chat-link">[&BuwnAAA=]</span></div><div>Name: <span class="name">Illusionary Wave</span></div><div>Description: <span class="description">Push back all foes in front of you with a wave of magical energy.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 450</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 450</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10221" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/3EE57D40E5F2B376FF921FA7455D00319C7DB8A8/103747.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10221" target="_blank">10221</a></span></div><div>Chat link: <span class="chat-link">[&Bu0nAAA=]</span></div><div>Name: <span class="name">Phantasmal Berserker</span></div><div>Description: <span class="description">Phantasm. Create a phantasm that uses a whirling attack to damage and cripple foes.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Categories: <span class="categories"><ul><li>Phantasm</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (4x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (1s) (4x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 4</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (4x) (requires trait 682)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (2s) (4x) (requires trait 681)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10224" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/5153A32A73D9614706E946576363C9915CF8E7DB/103749.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10224" target="_blank">10224</a></span></div><div>Chat link: <span class="chat-link">[&BvAnAAA=]</span></div><div>Name: <span class="name">Phantasmal Rogue</span></div><div>Description: <span class="description">Phantasm. Summon a phantasmal rogue that deals double damage from behind.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_3</span></div><br><br><div>Categories: <span class="categories"><ul><li>Phantasm</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 682)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10229" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/03E0DB1019BF2ADABC737C03501A3E7C99B87702/103559.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10229" target="_blank">10229</a></span></div><div>Chat link: <span class="chat-link">[&BvUnAAA=]</span></div><div>Name: <span class="name">Magic Bullet</span></div><div>Description: <span class="description">Hit up to four foes with a single shot. The first target is stunned, the second is dazed, the third is blinded, and the fourth is confused.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Pistol</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/289AA0A4644F0E044DED3D3F39CED958E1DDFF53/102880.png"> Buff - Apply Buff/Condition: Confusion (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 3</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 3s (requires trait 686)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 3s (requires trait 686)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-10232" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CE55909D170BF3E2C9F9A22C559CDF43D1726CEC/103612.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10232" target="_blank">10232</a></span></div><div>Chat link: <span class="chat-link">[&BvgnAAA=]</span></div><div>Name: <span class="name">Signet of Domination</span></div><div>Description: <span class="description">Signet Passive: Improved condition damage.
Signet Active: Stun your foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 45s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CE55909D170BF3E2C9F9A22C559CDF43D1726CEC/103612.png"> Buff - Apply Buff/Condition: Signet of Domination (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 3s</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/143F46DEF466062F01C52B69922FFCEF73DCA801/156668.png"> Time - Stun: 4s (requires trait 686)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10234" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6F03529059F71F0CCEC9046F1932619ECB245EC4/57900.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10234" target="_blank">10234</a></span></div><div>Chat link: <span class="chat-link">[&BvonAAA=]</span></div><div>Name: <span class="name">Signet of Midnight</span></div><div>Description: <span class="description">Signet Passive: Improves condition duration.
Signet Active: Blind nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 360</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Condition Duration Increase: 20%</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10236" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/636A59096E48DD9B01D11F74EFECAEDCC4DB300D/103750.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10236" target="_blank">10236</a></span></div><div>Chat link: <span class="chat-link">[&BvwnAAA=]</span></div><div>Name: <span class="name">Signet of Inspiration</span></div><div>Description: <span class="description">Signet Passive: Grant swiftness and an additional random boon every ten seconds.
Signet Active: Copy all of your boons to nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/DFB4D1B50AE4D6A275B349E15B179261EE3EB0AF/102854.png"> Buff - Apply Buff/Condition: Aegis (10s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (20s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/58E92EBAF0DB4DA7C4AC04D9B22BCA5ECF0100DE/102843.png"> Buff - Apply Buff/Condition: Vigor (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10237" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/61E737065C9CFD372F58E1CD3BA748D6D5A02EF5/103751.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10237" target="_blank">10237</a></span></div><div>Chat link: <span class="chat-link">[&Bv0nAAA=]</span></div><div>Name: <span class="name">Mantra of Concentration</span></div><div>Description: <span class="description">Mantra. Meditate, charging a spell that will break stuns and grant stability to nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10238">10238</a></span></div><div>Categories: <span class="categories"><ul><li>Mantra</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 2</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/E1E7C4D3A6E62F3D5C9F627CE8175BFB0C614CBE/156652.png"> AttributeAdjust - Attribute Adjust While Channeling: 600</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Casts: 3 (requires trait 692)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10238" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A24CBDA1F0396AD51905B0F23794FE6FE6086A73/103752.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10238" target="_blank">10238</a></span></div><div>Chat link: <span class="chat-link">[&Bv4nAAA=]</span></div><div>Name: <span class="name">Power Break</span></div><div>Description: <span class="description">Break stuns and grant stability to nearby allies.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 2s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3D3A1C2D6D791C05179AB871902D28782C65C244/415959.png"> Buff - Apply Buff/Condition: Stability (2s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10244" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2D5057DE154D99382F4C6D6E1E6B06CCFEAA7AEF/103754.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10244" target="_blank">10244</a></span></div><div>Chat link: <span class="chat-link">[&BgQoAAA=]</span></div><div>Name: <span class="name">Illusion of Life</span></div><div>Description: <span class="description">Manipulation. Give allies Illusion of Life at the target location, allowing them to get up from downed state and keep fighting. Fully revives allies if they kill a foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Manipulation</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 120s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2D5057DE154D99382F4C6D6E1E6B06CCFEAA7AEF/103754.png"> Buff - Apply Buff/Condition: Illusion of Life (15s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> NoData - Prevents Capture-Point Contribution: </li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-25541">25541</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10245" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E1EB3BC23A10BA9150EF992B03A813F4A26217A8/103755.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10245" target="_blank">10245</a></span></div><div>Chat link: <span class="chat-link">[&BgUoAAA=]</span></div><div>Name: <span class="name">Mass Invisibility</span></div><div>Description: <span class="description">Manipulation. You and all your allies gain stealth for a short time.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Elite</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Elite</span></div><br><br><div>Categories: <span class="categories"><ul><li>Manipulation</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 90s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 10</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (8s) (1x) (requires trait 674)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10247" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/24B9A56E45B7AB5AA96FF3E85505DF60EA6EBD11/103756.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10247" target="_blank">10247</a></span></div><div>Chat link: <span class="chat-link">[&BgcoAAA=]</span></div><div>Name: <span class="name">Signet of Illusions</span></div><div>Description: <span class="description">Signet Passive: Grants more health to your illusions.
Signet Active: Recharges Mind Wrack, Cry of Frustration, Diversion, and Distortion.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Signet</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 60s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Illusion Health Bonus: 50%</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10251" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A05546CA54D82645FC9B1C0D30901FF80B3D60A3/103757.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10251" target="_blank">10251</a></span></div><div>Chat link: <span class="chat-link">[&BgsoAAA=]</span></div><div>Name: <span class="name">Illusionary Mariner</span></div><div>Description: <span class="description">Phantasm. Create an illusion that evades while attacking your foe in a flurry.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Categories: <span class="categories"><ul><li>Phantasm</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (7x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Final Strike Damage: (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (7x) (requires trait 682)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Final Strike Damage: (1x) (requires trait 682)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10255" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E4D0E740C1700E3ACFBBD25D7F0C0628E0204559/103758.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10255" target="_blank">10255</a></span></div><div>Chat link: <span class="chat-link">[&Bg8oAAA=]</span></div><div>Name: <span class="name">Vortex</span></div><div>Description: <span class="description">Create a vortex at your location, pulling nearby foes toward you.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Initial Pull Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li>ComboField - Combo Field: Ethereal</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-10258" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B406DBF83ABDA0C21E4FE76201D66324C84402E5/103759.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10258" target="_blank">10258</a></span></div><div>Chat link: <span class="chat-link">[&BhIoAAA=]</span></div><div>Name: <span class="name">Siren's Call</span></div><div>Description: <span class="description">Unleash sonic energy that bounces between multiple foes, damaging and bleeding them. When it hits allies, it applies might, vigor, or swiftness.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10355">10355</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/58E92EBAF0DB4DA7C4AC04D9B22BCA5ECF0100DE/102843.png"> Buff - Apply Buff/Condition: Vigor (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-10355">10355</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10259" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/16056467A7C59537B85B3DD2699E104D09A5B536/103760.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10259" target="_blank">10259</a></span></div><div>Chat link: <span class="chat-link">[&BhMoAAA=]</span></div><div>Name: <span class="name">Blinding Tide</span></div><div>Description: <span class="description">Befuddle your foes with a blinding flash of light.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (4s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10260" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/68FFCCE3D09FEC026758B8699FE42D0E2B28EE9A/103761.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10260" target="_blank">10260</a></span></div><div>Chat link: <span class="chat-link">[&BhQoAAA=]</span></div><div>Name: <span class="name">Illusion of Drowning</span></div><div>Description: <span class="description">Sink and damage your foe with an illusionary anchor.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7D674324681E300974D90D02961EC27212ECBBE6/156667.png"> Time - Sink: 2s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10267" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9B227C21B3AFF40C222C9031EBE00995F9B43423/103764.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10267" target="_blank">10267</a></span></div><div>Chat link: <span class="chat-link">[&BhsoAAA=]</span></div><div>Name: <span class="name">Phantasmal Disenchanter</span></div><div>Description: <span class="description">Phantasm. Summon an illusion that removes boons from foes and cures conditions on allies.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Phantasm</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 2</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Boons Removed: 2</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 4</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 682)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10273" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0C9C043BFFC0773E390D19462444ABEB02FD4C01/103100.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10273" target="_blank">10273</a></span></div><div>Chat link: <span class="chat-link">[&BiEoAAA=]</span></div><div>Name: <span class="name">Winds of Chaos</span></div><div>Description: <span class="description">Bounce an orb of energy between foes and allies that applies random boons to allies and random conditions to foes.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10352">10352</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (7s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 2</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-10352">10352</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10276" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/C1135A9C6D504426132CCB6200DAB6C66A756709/103766.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10276" target="_blank">10276</a></span></div><div>Chat link: <span class="chat-link">[&BiQoAAA=]</span></div><div>Name: <span class="name">Illusionary Counter</span></div><div>Description: <span class="description">Clone. Block the next attack. Counter by applying Torment and creating a clone that casts Ether Bolt.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10314">10314</a></span></div><div>Categories: <span class="categories"><ul><li>Clone</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/10BABF2708CA3575730AC662A2E72EC292565B08/598887.png"> Buff - Apply Buff/Condition: Torment (8s) (5x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Block Duration: 2s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10280" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/AED869739FD016F10AEFE4520B155DEE731005A0/103767.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10280" target="_blank">10280</a></span></div><div>Chat link: <span class="chat-link">[&BigoAAA=]</span></div><div>Name: <span class="name">Illusionary Riposte</span></div><div>Description: <span class="description">Clone. Block your foe and create an illusion when attacked.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10358">10358</a></span></div><div>Categories: <span class="categories"><ul><li>Clone</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Block Duration: 3s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10282" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4E08BB09C3E6BE013AE255D763A3EB7C99AE2644/103768.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10282" target="_blank">10282</a></span></div><div>Chat link: <span class="chat-link">[&BiooAAA=]</span></div><div>Name: <span class="name">Phantasmal Warden</span></div><div>Description: <span class="description">Phantasm. Create a phantasm that attacks your target and creates a defensive bubble, protecting itself and allies from projectiles.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_5</span></div><br><br><div>Categories: <span class="categories"><ul><li>Phantasm</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (12x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (12x) (requires trait 682)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10285" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/44F1C4034CB441FC110A00D551DE33ED5F95A704/103282.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10285" target="_blank">10285</a></span></div><div>Chat link: <span class="chat-link">[&Bi0oAAA=]</span></div><div>Name: <span class="name">The Prestige</span></div><div>Description: <span class="description">Disappear in a cloud of smoke, blinding nearby foes. Reappear three seconds later, burning nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Torch</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 240</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (5s) (1x) (requires trait 674)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Conditions Removed: 1 (requires trait 691)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10289" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D86BE93CF7CF021ABF757410EC52E038B15F1BB8/103770.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10289" target="_blank">10289</a></span></div><div>Chat link: <span class="chat-link">[&BjEoAAA=]</span></div><div>Name: <span class="name">Ether Bolt</span></div><div>Description: <span class="description">Chain. Shoot a bolt of energy at your target.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10290">10290</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/10BABF2708CA3575730AC662A2E72EC292565B08/598887.png"> Buff - Apply Buff/Condition: Torment (2s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10290" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/09C73FBE6CFA6AEFEF9A440AC162F2F5E8227867/103557.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10290" target="_blank">10290</a></span></div><div>Chat link: <span class="chat-link">[&BjIoAAA=]</span></div><div>Name: <span class="name">Ether Blast</span></div><div>Description: <span class="description">Chain. Shoot a second bolt of energy at your target.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10291">10291</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/10BABF2708CA3575730AC662A2E72EC292565B08/598887.png"> Buff - Apply Buff/Condition: Torment (3s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10291" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/66D5114144D3A271C72F48A124CCB70E040F3EE6/103771.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10291" target="_blank">10291</a></span></div><div>Chat link: <span class="chat-link">[&BjMoAAA=]</span></div><div>Name: <span class="name">Ether Clone</span></div><div>Description: <span class="description">Clone. Shoot out a third bolt of energy that damages your target. Summon a clone that casts Ether Bolt. Inflict torment instead if you have the maximum number of illusions.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Categories: <span class="categories"><ul><li>Clone</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/10BABF2708CA3575730AC662A2E72EC292565B08/598887.png"> Buff - Apply Buff/Condition: Torment (5s) (2x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10302" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A5720B5C9ED8CB02A3272944C50DF8426E22C5A0/103773.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10302" target="_blank">10302</a></span></div><div>Chat link: <span class="chat-link">[&Bj4oAAA=]</span></div><div>Name: <span class="name">Feedback</span></div><div>Description: <span class="description">Glamour. Create a dome around your foes that reflects projectiles.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glamour</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 32s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Shield Duration: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li>ComboField - Combo Field: Ethereal</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 8s (requires trait 752)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-34326">34326</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #4 is missing an icon</li></ul></div></td><tr id="skill-10310" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/56B7F719F90C04523796611A75BF960E539EB79A/103775.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10310" target="_blank">10310</a></span></div><div>Chat link: <span class="chat-link">[&BkYoAAA=]</span></div><div>Name: <span class="name">Phase Retreat</span></div><div>Description: <span class="description">Clone. Teleport away from your target, summoning a clone that casts Winds of Chaos.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Categories: <span class="categories"><ul><li>Clone</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 10s</li><li>ComboFinisher - Combo Finisher: Leap (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #2 is missing an icon</li></ul></div></td><tr id="skill-10311" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6A4DBEEAEDBDE616BA514F5BEB7666ED7066A3AA/103620.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10311" target="_blank">10311</a></span></div><div>Chat link: <span class="chat-link">[&BkcoAAA=]</span></div><div>Name: <span class="name">Time Warp</span></div><div>Description: <span class="description">Glamour. Create an area that warps time, granting you and your allies quickness while slowing enemies.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Elite</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Elite</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glamour</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 180s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4AB6401A6D6917C3D4F230764452BCCE1035B0D/1012835.png"> Buff - Apply Buff/Condition: Quickness (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F60D1EF5271D7B9319610855676D320CD25F01C6/961397.png"> Buff - Apply Buff/Condition: Slow (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li>Number - Pulses: 11</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Ethereal</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 12s (requires trait 752)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-10314" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/33B7ADCA30B5EF4C1B52F71F39596FDEE9ECD8EB/103776.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10314" target="_blank">10314</a></span></div><div>Chat link: <span class="chat-link">[&BkooAAA=]</span></div><div>Name: <span class="name">Counterspell</span></div><div>Description: <span class="description">Shoot out a bolt that blinds foes in a line.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/09770136BB76FD0DBE1CC4267DEED54774CB20F6/102837.png"> Buff - Apply Buff/Condition: Blinded (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10315" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/42066E7EE4A3770FE5D4550BD8EDA8237A0DB769/103777.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10315" target="_blank">10315</a></span></div><div>Chat link: <span class="chat-link">[&BksoAAA=]</span></div><div>Name: <span class="name">Stab</span></div><div>Description: <span class="description">Chain. Stab your foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10316">10316</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-10316">10316</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 150</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10316" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BBEF48C50DEB9CD79747FD515958A6FC1129EE7D/103778.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10316" target="_blank">10316</a></span></div><div>Chat link: <span class="chat-link">[&BkwoAAA=]</span></div><div>Name: <span class="name">Jab</span></div><div>Description: <span class="description">Chain. Jab your foe.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10317">10317</a></span></div><div>Prev chain: <span class="prev_chain"><a href="#skill-10315">10315</a></span></div><div>Next chain: <span class="next_chain"><a href="#skill-10317">10317</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 150</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10317" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/07EC312A152C19E306FD75A34B20C5C7D024AFB2/103779.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10317" target="_blank">10317</a></span></div><div>Chat link: <span class="chat-link">[&Bk0oAAA=]</span></div><div>Name: <span class="name">Evasive Strike</span></div><div>Description: <span class="description">Evade while delivering a powerful final attack.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><div>Prev chain: <span class="prev_chain"><a href="#skill-10316">10316</a></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 150</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10318" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/030FC57D58054841971901C1C4C6D42AC649F79D/103780.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10318" target="_blank">10318</a></span></div><div>Chat link: <span class="chat-link">[&Bk4oAAA=]</span></div><div>Name: <span class="name">Feigned Surge</span></div><div>Description: <span class="description">Clone. Surge forward, attacking foes in front of you, then teleport back to your starting location, creating a clone.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10322">10322</a></span></div><div>Categories: <span class="categories"><ul><li>Clone</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 8s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Impacts: 9</li><li>ComboFinisher - Combo Finisher: Leap (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-10322" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A52D5DAB274FC9A40B081E1B07A7F49C76450EC6/103784.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10322" target="_blank">10322</a></span></div><div>Chat link: <span class="chat-link">[&BlIoAAA=]</span></div><div>Name: <span class="name">Feign</span></div><div>Description: <span class="description">Teleport back to you starting point, leaving behind a clone.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10325" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/4AB3E7379D67F53B7815D67723B120FA1B0B549A/103785.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10325" target="_blank">10325</a></span></div><div>Chat link: <span class="chat-link">[&BlUoAAA=]</span></div><div>Name: <span class="name">Slipstream</span></div><div>Description: <span class="description">Create a current in front of you that rapidly propels you forward and pushes back foes that enter it.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Spear</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9A6A02DCA260929CD14B4A4402266006981FF51B/648509.png"> Distance - Knockback: 200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10327" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/D0AD055640295427DF09CC4FDFD75DD33DAEBDAC/103786.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10327" target="_blank">10327</a></span></div><div>Chat link: <span class="chat-link">[&BlcoAAA=]</span></div><div>Name: <span class="name">Spinning Revenge</span></div><div>Description: <span class="description">Clone. Grant retaliation to nearby allies, and summon a clone to attack your foe. You gain chaos armor.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><div>Categories: <span class="categories"><ul><li>Clone</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/27F233F7D4CE4E9EFE040E3D665B7B0643557B6E/102883.png"> Buff - Apply Buff/Condition: Retaliation (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/043B48A4DAF74DF16D48BA5F36E298D16CF471B6/103765.png"> Buff - Apply Buff/Condition: Chaos Armor (5s) (1x)</li><li>ComboFinisher - Combo Finisher: Whirl (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #5 is missing an icon</li></ul></div></td><tr id="skill-10328" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/ED0BA8B7AC0F232E383E0F7E26E6E27FEAE9A1F3/103787.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10328" target="_blank">10328</a></span></div><div>Chat link: <span class="chat-link">[&BlgoAAA=]</span></div><div>Name: <span class="name">Illusionary Whaler</span></div><div>Description: <span class="description">Phantasm. Create an illusion that confuses foes with a harpoon gun.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><div>Categories: <span class="categories"><ul><li>Phantasm</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 20s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (4x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/289AA0A4644F0E044DED3D3F39CED958E1DDFF53/102880.png"> Buff - Apply Buff/Condition: Confusion (3s) (4x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (4x) (requires trait 682)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10331" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/043B48A4DAF74DF16D48BA5F36E298D16CF471B6/103765.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10331" target="_blank">10331</a></span></div><div>Chat link: <span class="chat-link">[&BlsoAAA=]</span></div><div>Name: <span class="name">Chaos Armor</span></div><div>Description: <span class="description">Give yourself chaos armor, which gives yourself random boons and your foe random conditions whenever you are struck.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 35s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/043B48A4DAF74DF16D48BA5F36E298D16CF471B6/103765.png"> Buff - Apply Buff/Condition: Chaos Armor (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F69996772B9E18FD18AD0AABAB25D7E3FC42F261/102835.png"> Buff - Apply Buff/Condition: Regeneration (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/6CB0E64AF9AA292E332A38C1770CE577E2CDE0E8/102853.png"> Buff - Apply Buff/Condition: Weakness (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/289AA0A4644F0E044DED3D3F39CED958E1DDFF53/102880.png"> Buff - Apply Buff/Condition: Confusion (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (3s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10333" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/2E3FFCF506520375FEA923CAC4B25846035B5A0D/103789.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10333" target="_blank">10333</a></span></div><div>Chat link: <span class="chat-link">[&Bl0oAAA=]</span></div><div>Name: <span class="name">Mirror Blade</span></div><div>Description: <span class="description">Throw an illusionary greatsword that bounces between targets, damaging foes and giving might to allies. It creates a clone at its first target.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Greatsword</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 8s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (10s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (3s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 3</li><li>ComboFinisher - Combo Finisher: Projectile (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-10334" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/070633A302DA4865605316D1AF32DE40033CC0FE/103790.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10334" target="_blank">10334</a></span></div><div>Chat link: <span class="chat-link">[&Bl4oAAA=]</span></div><div>Name: <span class="name">Blurred Frenzy</span></div><div>Description: <span class="description">Strike your foe with a flurry of strikes, distorting the space around you, making you evade attacks.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 130</li><li>Recharge - Recharge: 12s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (8x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D0969802A76808ACD65A56A6D54F2A40E355F7C3/103284.png"> Buff - Apply Buff/Condition: Blur (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10337" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/BEDBA7E72F06AA51D124B9B29EA53D4E3FEAFA48/103728.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10337" target="_blank">10337</a></span></div><div>Chat link: <span class="chat-link">[&BmEoAAA=]</span></div><div>Name: <span class="name">Swap</span></div><div>Description: <span class="description">Swap places with your clone. Immobilize nearby foes.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 3</li><li>ComboFinisher - Combo Finisher: Leap (100%)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #3 is missing an icon</li></ul></div></td><tr id="skill-10341" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/3439B9C801F6F72F0701A1BA759B249FF428D5C2/103791.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10341" target="_blank">10341</a></span></div><div>Chat link: <span class="chat-link">[&BmUoAAA=]</span></div><div>Name: <span class="name">Phantasmal Defender</span></div><div>Description: <span class="description">Phantasm. Summon an illusion that gives Illusion of Defense to nearby allies when it attacks.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Phantasm</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3439B9C801F6F72F0701A1BA759B249FF428D5C2/103791.png"> Buff - Apply Buff/Condition: Illusion of Defense (5s) (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 682)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10352" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/0C9C043BFFC0773E390D19462444ABEB02FD4C01/103100.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10352" target="_blank">10352</a></span></div><div>Chat link: <span class="chat-link">[&BnAoAAA=]</span></div><div>Name: <span class="name">Winds of Chaos</span></div><div>Description: <span class="description">Bounce an orb of energy between foes and allies that applies random boons to allies and random conditions to foes.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Staff</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/96D90DF84CAFE008233DD1C2606A12C1A0E68048/102842.png"> Buff - Apply Buff/Condition: Fury (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (7s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B47BF5803FED2718D7474EAF9617629AD068EE10/102849.png"> Buff - Apply Buff/Condition: Burning (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 2</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-10273">10273</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10355" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/B406DBF83ABDA0C21E4FE76201D66324C84402E5/103759.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10355" target="_blank">10355</a></span></div><div>Chat link: <span class="chat-link">[&BnMoAAA=]</span></div><div>Name: <span class="name">Siren's Call</span></div><div>Description: <span class="description">Unleash sonic energy that bounces between multiple foes, damaging and bleeding them. When it hits allies, it applies might, vigor, or swiftness.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Trident</span></div><div>Slot: <span class="slot">Weapon_1</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (5s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/20CFC14967E67F7A3FD4A4B8722B4CF5B8565E11/102836.png"> Buff - Apply Buff/Condition: Swiftness (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/58E92EBAF0DB4DA7C4AC04D9B22BCA5ECF0100DE/102843.png"> Buff - Apply Buff/Condition: Vigor (2s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Bounces: 3</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-10258">10258</a></li><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10358" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/7ADC0ABCDBA004A5DE085096300DA2B9C191C84C/103792.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10358" target="_blank">10358</a></span></div><div>Chat link: <span class="chat-link">[&BnYoAAA=]</span></div><div>Name: <span class="name">Counter Blade</span></div><div>Description: <span class="description">Shoot out a bolt that dazes foes in a line.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Sword</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/07B6122FBF169A2124A23FBCB06A3B7991A35179/156658.png"> Time - Daze: 1s (requires trait 686)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10363" class=""><td><img class="skill-icon" src="https://render.guildwars2.com/file/E4D0E740C1700E3ACFBBD25D7F0C0628E0204559/103758.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10363" target="_blank">10363</a></span></div><div>Chat link: <span class="chat-link">[&BnsoAAA=]</span></div><div>Name: <span class="name">Into the Void</span></div><div>Description: <span class="description">Shatter your Temporal Curtain, pulling nearby enemies toward its position.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Focus</span></div><div>Slot: <span class="slot">Weapon_4</span></div><br><br><br><br><div class="facts">Facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 600</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div></td><tr id="skill-10366" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/317BE10A960E59E65F341518792F71101422E8B4/103762.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10366" target="_blank">10366</a></span></div><div>Chat link: <span class="chat-link">[&Bn4oAAA=]</span></div><div>Name: <span class="name">Deception</span></div><div>Description: <span class="description">Clone. Create a downed clone of yourself to attack your target.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Downed_2</span></div><br><br><div>Categories: <span class="categories"><ul><li>Clone</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 15s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3BD4670638470439F3325B444FAF7D5FA620CCE5/62777.png"> Buff - Apply Buff/Condition: Stealth (2s) (1x)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10377" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/6A4DBEEAEDBDE616BA514F5BEB7666ED7066A3AA/103620.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10377" target="_blank">10377</a></span></div><div>Chat link: <span class="chat-link">[&BokoAAA=]</span></div><div>Name: <span class="name">Time Warp</span></div><div>Description: <span class="description">Glamour. Create an area that warps time, granting you and your allies quickness. Enemies in the field are slowed.</span></div><div>Professions: <span class="professions"><ul><li>Mesmer</li></ul></span></div><div>Type: <span class="type">Elite</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Elite</span></div><br><br><div>Categories: <span class="categories"><ul><li>Glamour</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 180s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4AB6401A6D6917C3D4F230764452BCCE1035B0D/1012835.png"> Buff - Apply Buff/Condition: Quickness (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/F60D1EF5271D7B9319610855676D320CD25F01C6/961397.png"> Buff - Apply Buff/Condition: Slow (1s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 360</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li>ComboField - Combo Field: Ethereal</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 12s (requires trait 752)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #6 is missing an icon</li></ul></div></td><tr id="skill-10527" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F7E56628560660BBD504BB1661934814DD41A9A5/103097.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10527" target="_blank">10527</a></span></div><div>Chat link: <span class="chat-link">[&Bh8pAAA=]</span></div><div>Name: <span class="name">Well of Blood</span></div><div>Description: <span class="description">Well. Conjure a well of blood to heal allies.</span></div><div>Professions: <span class="professions"><ul><li>Necromancer</li></ul></span></div><div>Type: <span class="type">Heal</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Heal</span></div><br><br><div>Categories: <span class="categories"><ul><li>Well</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Initial Self Heal: 5240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png"> AttributeAdjust - Health per Second: 280</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li>ComboField - Combo Field: Light</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (3s) (1x) (requires trait 782)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-10670">10670</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #7 is missing an icon</li></ul></div></td><tr id="skill-10528" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/96100F58946716DF6E23E975287AA9680BD144FA/103799.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10528" target="_blank">10528</a></span></div><div>Chat link: <span class="chat-link">[&BiApAAA=]</span></div><div>Name: <span class="name">Ghastly Claws</span></div><div>Description: <span class="description">Summon spectral claws to slash your foe in a quick flurry of strikes, gaining life force per strike.</span></div><div>Professions: <span class="professions"><ul><li>Necromancer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Axe</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 8s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (8x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Life Force: 12%</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10529" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/A99518F9D00A760DE474B803522824415141493B/103800.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10529" target="_blank">10529</a></span></div><div>Chat link: <span class="chat-link">[&BiEpAAA=]</span></div><div>Name: <span class="name">Dark Pact</span></div><div>Description: <span class="description">Immobilize your foe.</span></div><div>Professions: <span class="professions"><ul><li>Necromancer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Dagger</span></div><div>Slot: <span class="slot">Weapon_3</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 600</li><li>Recharge - Recharge: 25s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/397A613651BFCA2832B6469CE34735580A2C120E/102844.png"> Buff - Apply Buff/Condition: Immobile (3s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Boons Converted to Conditions: 2</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10532" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CB2DB4DD6E995BB6ED4B463608753F2BBF590BF1/103521.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10532" target="_blank">10532</a></span></div><div>Chat link: <span class="chat-link">[&BiQpAAA=]</span></div><div>Name: <span class="name">Grasping Dead</span></div><div>Description: <span class="description">Summon skeletal hands to cripple foes in the target area.</span></div><div>Professions: <span class="professions"><ul><li>Necromancer</li></ul></span></div><div>Type: <span class="type">Weapon</span></div><div>Weapon type: <span class="weapon-type">Scepter</span></div><div>Slot: <span class="slot">Weapon_2</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 10s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (10s) (3x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (7s) (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (15s) (3x) (requires trait 801)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (11s) (1x) (requires trait 801)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10533" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/941C6A21F67EAD342859D2783715A10D79D0C236/103802.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10533" target="_blank">10533</a></span></div><div>Chat link: <span class="chat-link">[&BiUpAAA=]</span></div><div>Name: <span class="name">Summon Bone Fiend</span></div><div>Description: <span class="description">Minion. Summon a bone fiend that attacks foes at range. Delivers a crippling attack once every ten seconds.</span></div><div>Professions: <span class="professions"><ul><li>Necromancer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10570">10570</a></span></div><div>Categories: <span class="categories"><ul><li>Minion</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 24s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/070325E519C178D502A8160523766070D30C0C19/102838.png"> Buff - Apply Buff/Condition: Crippled (2s) (2x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (2x) (requires trait 858)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10540" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/E65DF0D89D5FF85CD772F8542A070737EAE457A1/102782.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10540" target="_blank">10540</a></span></div><div>Chat link: <span class="chat-link">[&BiwpAAA=]</span></div><div>Name: <span class="name">Putrid Explosion</span></div><div>Description: <span class="description">Explode a bone minion.</span></div><div>Professions: <span class="professions"><ul><li>Necromancer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/A513F3653D33FBA4220D2D307799F8A327A36A3B/156656.png"> ComboFinisher - Combo Finisher: Blast (100%)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 858)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10541" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9369C81D9A6B4E026BD4F39A1F11495F35C24F6D/103804.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10541" target="_blank">10541</a></span></div><div>Chat link: <span class="chat-link">[&Bi0pAAA=]</span></div><div>Name: <span class="name">Summon Bone Minions</span></div><div>Description: <span class="description">Minion. Summon two bone minions.</span></div><div>Professions: <span class="professions"><ul><li>Necromancer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Flip skill: <span class="flip-skill"><a href="#skill-10540">10540</a></span></div><div>Categories: <span class="categories"><ul><li>Minion</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Recharge - Recharge: 16s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 858)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li></ul></div></td><tr id="skill-10543" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/CD56F233547743C66BDF0C14BA3B2297AB3E04F1/103805.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10543" target="_blank">10543</a></span></div><div>Chat link: <span class="chat-link">[&Bi8pAAA=]</span></div><div>Name: <span class="name">Summon Flesh Wurm</span></div><div>Description: <span class="description">Minion. Summon an immobile flesh wurm to attack foes.</span></div><div>Professions: <span class="professions"><ul><li>Necromancer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Minion</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 32s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x) (requires trait 858)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10544" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/F26312E5CBFE5CA12261B66E194F21A5D205F314/103795.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10544" target="_blank">10544</a></span></div><div>Chat link: <span class="chat-link">[&BjApAAA=]</span></div><div>Name: <span class="name">Blood Is Power</span></div><div>Description: <span class="description">Corruption. Bleed yourself to grant might to allies around you and bleed your target.</span></div><div>Professions: <span class="professions"><ul><li>Necromancer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Corruption</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 1200</li><li>Recharge - Recharge: 30s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (1x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/2FA9DF9D6BC17839BBEA14723F1C53D645DDB5E1/102852.png"> Buff - Apply Buff/Condition: Might (8s) (8x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (30s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/79FF0046A5F9ADA3B4C4EC19ADB4CB124D5F0021/102848.png"> Buff - Apply Buff/Condition: Bleeding (10s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Allied Targets: 5</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/10BABF2708CA3575730AC662A2E72EC292565B08/598887.png"> Buff - Apply Buff/Condition: Torment (10s) (2x) (requires trait 816)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li></ul></div></td><tr id="skill-10545" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/60117AF6357DBEAFAA4B139BDC2494380680D52A/103008.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10545" target="_blank">10545</a></span></div><div>Chat link: <span class="chat-link">[&BjEpAAA=]</span></div><div>Name: <span class="name">Well of Corruption</span></div><div>Description: <span class="description">Well. Target area pulses, converting boons on foes into conditions.</span></div><div>Professions: <span class="professions"><ul><li>Necromancer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Well</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 40s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (6x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Time - Pulse: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 5s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Percent - Life Force: 1%</li><li>ComboField - Combo Field: Dark</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (3s) (1x) (requires trait 782)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-10671">10671</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-10546" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/44002EEFB097C4D23F5B0DF3004F90171D022EA8/103570.png"></td><td><div>ID: <span class="id"><a href="https://api.guildwars2.com/v2/skills/10546" target="_blank">10546</a></span></div><div>Chat link: <span class="chat-link">[&BjIpAAA=]</span></div><div>Name: <span class="name">Well of Suffering</span></div><div>Description: <span class="description">Well. Target area pulses, damaging foes and inflicting vulnerability.</span></div><div>Professions: <span class="professions"><ul><li>Necromancer</li></ul></span></div><div>Type: <span class="type">Utility</span></div><div>Weapon type: <span class="weapon-type">None</span></div><div>Slot: <span class="slot">Utility</span></div><br><br><div>Categories: <span class="categories"><ul><li>Well</li></ul></span></div><br><br><div class="facts">Facts:<ul><li>Range - Range: 900</li><li>Recharge - Recharge: 35s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/61AA4919C4A7990903241B680A69530121E994C7/156657.png"> Damage - Damage: (6x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/3A394C1A0A3257EB27A44842DDEEF0DF000E1241/102850.png"> Buff - Apply Buff/Condition: Vulnerability (5s) (2x)</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Number - Number of Targets: 5</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/9352ED3244417304995F26CB01AE76BB7E547052/156661.png"> Time - Pulse: 1s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png"> Time - Duration: 6s</li><li><img class="fact-icon" src="https://render.guildwars2.com/file/B0CD8077991E4FB1622D2930337ED7F9B54211D5/156665.png"> Distance - Radius: 240</li><li>ComboField - Combo Field: Dark</li></ul></div><br><br><div class="facts">Traited facts:<ul><li><img class="fact-icon" src="https://render.guildwars2.com/file/CD77D1FAB7B270223538A8F8ECDA1CFB044D65F4/102834.png"> Buff - Apply Buff/Condition: Protection (3s) (1x) (requires trait 782)</li></ul></div><br><br><div class="warnings">Warnings:<ul><li>Skill is a possible duplicate of skill <a href="#skill-10674">10674</a></li><li>Fact #0 is missing an icon</li><li>Fact #1 is missing an icon</li><li>Fact #8 is missing an icon</li></ul></div></td><tr id="skill-10547" class="warning-skill "><td><img class="skill-icon" src="https://render.guildwars2.com/file/9BB42A45780BC6D0F5F8157BC26A64A3C31DAF02/103088.png"></td><td><div>ID: <span class="id"><a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment