Thief
Jump to navigation
Jump to search
The thief class is the only shit 1st job
| Image | Skill Name | Damage | Description |
|---|---|---|---|
| File:Throw Stone.png | Throw Stone | Low | Throws a small stone at the target, dealing minor physical damage and briefly interrupting actions. |
| File:Hiding.png | Hiding | None | Allows the user to hide from enemies, becoming invisible for a short duration unless detected. |
| File:Envenom.png | Envenom | Medium | Attacks the enemy with a poisoned strike, dealing damage and applying poison over time. |
| Throw Stone | Hiding | Envenom | Back Sliding | |
|---|---|---|---|---|
| GIF | File:Throw Stone.gif | File:Hiding.gif | File:Envenom.gif | File:Back Sliding.gif |
| Image | File:Throw Stone.png | File:Hiding.png | File:Envenom.png | File:Back Sliding.png |
| Damage | 175% ATK | 200% ATK | ||
| Description | Throws a small stone at the target, dealing minor physical damage and briefly interrupting actions. | Allows the user to hide from enemies, becoming invisible for a short duration unless detected. | Attacks the enemy with a poisoned strike, dealing damage and applying poison over time. | Bingbing the bangbang |
| Skill Name | Throw Stone | Hiding | Envenom |
|---|---|---|---|
| GIF | File:Throw Stone.gif | File:Hiding.gif | File:Envenom.gif |
| Image | File:Throw Stone.png | File:Hiding.png | File:Hiding.png |
| Damage | Low | None | Medium |
| Description | Throws a small stone at the target, dealing minor physical damage and briefly interrupting actions. | Allows the user to hide from enemies, becoming invisible for a short duration unless detected. | Attacks the enemy with a poisoned strike, dealing damage and applying poison over time. |
| File:Envenom.gif |
| File:Envenom.png |
| Envenom |
| 200% ATK |
| Attacks the enemy with a poisoned strike, dealing damage over time. |
Envenom
| File:Envenom.gif |
| File:Envenom.png |
| Envenom |
| Medium Damage |
| Attacks the enemy with a poisoned strike, dealing damage over time. |
| File:ThrowStone.gif |
| Throw Stone |
| Damage: Low |
| Throws a stone at the enemy. |
| File:Hiding.gif |
| Hiding |
| Damage: None |
| Evades enemies for a short time. |
| File:Envenom.gif |
| Envenom |
| Damage: Medium |
| Attacks the enemy with a poisoned strike. |
| File:ThrowStone.gif |
| Throw Stone |
| Damage: Low |
| Throws a stone at the enemy. |
| File:Hiding.gif |
| Hiding |
| Damage: None |
| Evades enemies for a short time. |
| File:ThrowStone.gif |
| Throw Stone |
| Damage: Low |
| Throws a stone at the enemy. This description wraps inside the table so it doesn’t overflow. |
| File:Hiding.gif |
| Hiding |
| Damage: None |
| Become invisible for a short time to evade attacks. The text wraps nicely inside this card. |
| File:Envenom.gif |
| Envenom |
| Damage: Medium |
| Coats your weapon in venom, dealing poison damage over time. Again, text wraps correctly. |
| File:ThrowStone.gif |
| File:ThrowStone.png |
| Throw Stone |
| Damage: Low |
| Throws a stone at the enemy. This description wraps inside the table so it doesn’t overflow. |
| File:Hiding.gif |
| File:Hiding.png |
| Hiding |
| Damage: None |
| Become invisible for a short time to evade attacks. The text wraps nicely inside this card. |
| File:Envenom.gif |
| File:Envenom.png |
| Envenom |
| Damage: Medium |
| Coats your weapon in venom, dealing poison damage over time. Again, text wraps correctly. |
| File:ThrowStone.gif |
| File:ThrowStone.png |
| Throw Stone |
| Damage: Low |
| Throws a stone at the enemy. This description wraps inside the table so it doesn’t overflow. |
| File:Hiding.gif |
| File:Hiding.png |
| Hiding |
| Damage: None |
| Become invisible for a short time to evade attacks. The text wraps nicely inside this card. |
| File:Envenom.gif |
| File:Envenom.png |
| Envenom |
| Damage: Medium |
| Coats your weapon in venom, dealing poison damage over time. Again, text wraps correctly. |
<button type="button" class="prev">◀</button>
<select class="levelSelect"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> <option value="6">6</option> <option value="7">7</option> <option value="8">8</option> <option value="9">9</option> <option value="10">10</option> </select>
<button type="button" class="next">▶</button>
<script>
const wrapper = document.querySelector('span[style*="inline-flex"]');
if (wrapper) {
const select = wrapper.querySelector('.levelSelect');
const prev = wrapper.querySelector('.prev');
const next = wrapper.querySelector('.next');
prev.addEventListener('click', () => {
if (select.selectedIndex > 0) select.selectedIndex--;
});
next.addEventListener('click', () => {
if (select.selectedIndex < select.options.length - 1) select.selectedIndex++;
});
}
</script>