Editing Ranger

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
{| class="wikitable" style="float:right; margin-left: 10px;"
!colspan="5"|'''Class Role Report Card'''
!rowspan="7" style="background-color:#CCCCCC;" |[[File:AniRanger.gif]]
|-
| '''Healing''': Fair
|-
| '''Tanking''': Poor to Fair
|-
| '''DPS''': Excellent
|-
| '''Debuffing''': Fair
|-
| '''Buffing''': Good
|-
| '''Crowd Control''': Situational (Outdoors)
|}
Rangers are warriors attuned to the ways of nature, able to call upon the power of the wild to aid them in their fights. Rangers are primarily a melee class, able to wear chain armor and wield many kinds of weapons.
Rangers are warriors attuned to the ways of nature, able to call upon the power of the wild to aid them in their fights. Rangers are primarily a melee class, able to wear chain armor and wield many kinds of weapons.


Rangers are scouts and hunters, able to track enemies from a great distance and engage them with deadly ranged attacks, but rangers can also fight well in a melee, using two weapons to attack their foes. Rangers have spells drawn from nature. They can increase run speed and add to an ally's armor, health, or ability to attack. In a pinch, they can heal or directly damage enemies with fiery attacks.
Rangers are scouts and hunters, able to track enemies from a great distance and engage them with deadly ranged attacks, but rangers can also fight well in a melee, using two weapons to attack their foes. Rangers have spells drawn from nature. They can increase run speed and add to an ally's armor, health, or ability to attack. In a pinch, they can heal or directly damage enemies with fiery attacks.


=Introduction=
==Combat Skills==
 
If you are new to TAKP, please read through the [https://www.takproject.net/forums/index.php?threads/new-to-the-server-check-here.19791/ New to the Server] forum post, it explains a lot of the mechanics in this guide.
 
== Class Titles ==
{| class="wikitable"
! Level 1-50 !! Level 51-54 !! Level 55-59 !! Level 60-64 !! Level 65
|- style="text-align: center;"
| Ranger || Pathfinder || Outrider || Warder || Forest Stalker
|}
 
= Creation Guide =
 
== Picking Your Race ==
 
 
{| class="eoTable2 sortable" style="text-align:center"
|-
! RACE !! STR !! STA !! AGI !! DEX !! WIS !! INT !! CHA !! BONUS
|-
| style="text-align: left"| '''Half-Elf''' || 75 || 80 || 100 || 85 || 65 || 75 || 75 || 20
|-
| style="text-align: left"| '''Halfling''' || 75 || 85 || 105 || 90 || 85 || 67 || 50 || 20
|-
| style="text-align: left"| '''Human''' || 80 || 85 || 85 || 75 || 80 || 75 || 75 || 20
|-
| style="text-align: left"| '''Wood Elf''' || 70 || 75 || 105 || 80 || 85 || 75 || 75 || 20
|}
 
== Spending Your Bonus Points ==
Raid min/max: 20 STA
DPS: 20 STR
 
=Combat Skills=
 
[https://www.takproject.net/SkillCaps/ TAKP Skill Caps]
 
<table cellpadding='5' cellborder='0' cellspacing='0' width='45%'>
<table cellpadding='5' cellborder='0' cellspacing='0' width='45%'>
     <tr bgcolor="#cccccc">
     <tr bgcolor="#cccccc">
Line 67: Line 15:
<tr><td align="center" width="10%">1</td>
<tr><td align="center" width="10%">1</td>
<td align="center" width="10%">No</td>
<td align="center" width="10%">No</td>
<td>[[Skill_1hb|1 Hand Blunt]]</td>
<td>[[1 Hand Blunt]]</td>
<td align="center" width="20%">200</td>
<td align="center" width="20%">200</td>
<td align="center" width="25%">240</td>
<td align="center" width="25%">240</td>
Line 213: Line 161:
</tr>
</tr>
</table>
</table>
 
==Ranger Spells==
==Archery==
* For archery skill ups, target [https://www.takproject.net/allaclone/npc.php?id=79098 Ssolet Dnaas] in Warsliks Woods at 4014, 402 who is level 50, perma-rooted, and has high regen.
* Archery hate is weapon damage + arrow damage per shot without the multipliers, hit or miss.([https://wiki.takp.info/index.php/Changelog Source])
* Rangers above level 50 do double damage with Archery against non-moving, non-rooted targets.
 
'''Archery Damage'''
From a [https://www.takproject.net/forums/index.php?threads/archery-damage.25704/ TAKP Forum thread]:
Archery does not get a damage bonus here. Client::Attack() is the melee routine. The archery routine is DoArcheryAttackDmg() in special_attacks.cpp.
 
Archery damage still is not perfect here. I got it 99% right before Luclin launched and moved on to develop zones. Melee damage is more accurate and for example a Blade of War will do the correct 321/528 normal/crit max hits. I did some investigating on this today and it appears that there's some rounding error somewhere making normal shots do a couple extra damage and Trueshot damage is a bit too low. How Trueshot works exactly is a little fuzzy and simply multiplying by 1x or 1.05x doesn't fit perfectly. Currently Stonewood+Blessed max hits are 674 and 1154 when they should be 672 and 1150, and under TS max crit seems to be 2296 when it should be 2320 because our multiplier is 1x.
 
The basic archery damage math that I'm aware of as of now is this:
 
dmg = bow dmg + arrow dmg = 57 for stonewood + blessed arrows
max AM0 non-crit non-TS moving hit = INT(dmg * 2.95) = 168 for stonewood + blessed arrows
max AM0 non-crit non-TS stationary hit = doubled = 336 for stonewood + blessed arrows
max AM3 non-crit non-TS stationary hit = doubled = 672 for stonewood + blessed arrows
max AM3 critical non-TS stationary hit = INT(672*1.7+0.5)+8 = 1150 for stonewood + blessed arrows
max AM3 critical TS stationary hit = INT(INT(672*2.025)*1.7+0.5)+8 = 2320 for stonewood + blessed arrows
 
The problem I have is that I'm seeing 2.05 as the TS multiplier on some webpages (or +105%) and this doesn't fit. 2.025 doesn't fit perfectly for other bows either but it's still closer than 2.05. I'll probably bump our multiplier to +102%. The way it's implemented can't do fractions but if I had the precise logic I'd rip it out and hardcode it.
 
==[https://wiki.takp.info/index.php/Disciplines#Ranger_Disciplines Ranger Disciplines]==
Disciplines are given to all non-caster classes as a boost to combat mechanics for a brief period of time with cooldowns.
 
'''Usage:''' /discipline <DISC NAME>
 
*'''RESISTANT''' (Level 51 – Velious): +3 to all resistances increasing to +10 at 50th level. This discipline lasts for 1 minute, and has a base reuse time of 1 hour. The reuse time for this discipline will decrease as you level.
 
*'''FEARLESS''' (Level 54 – Velious): Immunity to “Fear” and all spells that cause “fear”. This discipline lasts for 11 seconds, and has a base reuse time of 1 hour. The reuse time for this discipline will decrease as you level.
 
*'''TRUESHOT''' (Level 55): Imbues your bow with energy, increase the damage done by each shot and improving your accuracy. This discipline lasts for 2 minutes, and has a base reuse time of 72 minutes. The reuse time for this discipline will decrease as the ranger gains additional levels. Shares cooldown timer with Weaponshield.
 
*'''WEAPONSHIELD''' (Level 60): Focuses your combat reflexes, allowing you to parry most melee attacks. Parries all melee attacks from the front. This discipline lasts for 18 seconds, and has a base reuse time of 72 minutes. The reuse time for this discipline will decrease as the ranger gains additional levels. Shares cooldown timer with Trueshot.
 
= Useful Items =
==Archery==
*'''[https://www.takproject.net/allaclone/item.php?id=17327 Fleeting Quiver]''': Best archery haste in game, hunt those highland lions! Keep it in top slot with at least one arrow in it for haste to apply with Endless Quiver AA.
 
*'''[https://www.takproject.net/allaclone/item.php?id=4539 Tolan's Darkwood Bracer]''': Summon arrows until you get Endless Quiver AA
 
*'''[https://www.takproject.net/allaclone/item.php?id=8330 Shardwing Arrow]''': 12 damage arrow; an arrow's [https://www.takproject.net/forums/index.php?threads/elemental-damage-table.28816/ elemental damage] requires low resist targets to be more effective than a Shardwing. (Pair with Endless Quiver)
 
'''Bane Damage Bows'''
* [https://www.takproject.net/allaclone/item.php?id=9242 Corrupted Shissar Bow] Bane: Shissar
* [https://www.takproject.net/allaclone/item.php?id=9243 Yttrium-Imbued Oak Bow] Bane: Seru
* [https://www.takproject.net/allaclone/item.php?id=28930 Great Bow of Slaughter] Bane: Greater Akheva
 
==Melee Weapons==
*'''[https://www.takproject.net/allaclone/item.php?id=20487 Swiftwind] & [https://www.takproject.net/allaclone/item.php?id=20488 Earthcaller]''': The Ranger Epic 1.0. Quest: [[Ranger Epic]]
*'''[https://www.takproject.net/allaclone/item.php?id=8916 Silver Blade of Thunder]''': The ''Halfling'' Ranger Epic! Karana only, Proc's ''Thunder Strike'' which has 15 pushback for help positioning mobs. Quest: [[Silver Blade of Thunder]].
 
==Utility==
*'''[https://www.takproject.net/allaclone/item.php?id=30008 Eyepatch of Plunder]''': Clickie 20% self-haste is better than nothing.
 
*'''[https://www.takproject.net/allaclone/item.php?id=1553 Vial of Velium Vapors]''': Skill up pottery to be able to craft a low cost Thurgadin teleport - Ranger port, but WITH your gear!
 
*'''[https://www.takproject.net/allaclone/item.php?id=32592 Seal of the Dwarven Emissary]''': Unlimited Thurgadin teleport from the  once-a-year [https://wiki.takp.info/index.php/Anniversary_Events#3rd_Year_Anniversary_Event Anniversary Event]. You won't regret doing this one!
 
*'''[[Horses]]:''' On EQMac there was a bug that let you use old models get the horse buff icon, which lets you meditate without riding a horse. The benefit of this is you can move at normal sow speeds while buying the cheapest horse, don't suffer from acceleration/deceleration effect of horses, can duck spells to interrupt casting, avoid sit agro, and not have to use Luclin models if you don't like the graphic. You can read about that setting [http://wiki.takp.info/index.php?title=Frequently_Asked_Questions#How_to_disable_Luclin_models.3F here].
 
= Alternate Advancement =
 
A full list of [[Alternate Advancement]] abilities.
 
== First 100 Alternate Advancement Points ==
In a [https://www.takproject.net/forums/index.php?threads/takp-generic-alternate-advancement-guide.19864/#post-99940 TAKP Forums post], Rimidal
recommended the following first 103 [[Alternate Advancement]] for new Rangers.
 
Assuming you picked ranger for fun with archery, so picking that specialization first.
 
* Archetype – Combat Fury 3 (12 AAs) – More crits is more damage, works for melee and bow damage.
 
* Class – Endless Quiver (9 AAs) – Viewed as a class defining ability for ranger, ability to shoot unlimited arrows of the best type.
 
* Class – Archery Master 3 (18 AAs) – Another “class defining” ability – increases bow damage by 30/60/100%! You will need to be ready to work around the TAKP limitations of arrows not hitting cornered mobs.
 
* Class – Innate Camouflage (5 AAs) – Instant casting fixed-duration invisibility without a spell gem, I just love this AA.
 
* PoP Ability – Ferocity 3 (9 AAs) – Extra DPS via additional double attacks.
 
* Class – Ambidexterity (9 AAs) – If you don’t plan to use your bow very much, then prioritise this first. Increases your chance to successfully dual wield
 
* PoP Ability – Fury of the Ages 3 (9 AAs) – More crits is more DPS and you're all about that life.
 
* Archetype – Natural Durability 3 (12 AAs) – Having more HPs is always useful because it lets you take more melee and spell damage.
 
* Pop Ability – Entrap (4 AAs) – Free quick recast manaless snare that doesn't require a spell gem, and as a bonus it generates much less threat than your Ensnare spell.
 
* Pop Advance – Planar Power 5 (10 AAs) – Boost your max stats - get more hitpoints and dex, all the good stuff.
 
Additional AAs to aim for: Combat Agility, Lightning Reflexes, Spell Casting Fury, Combat Stability, Innate Defense.
 
=Ranger Spells=
=== Level 9 Spells ===
=== Level 9 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
Line 735: Line 589:


=== Level 49 Spells ===
=== Level 49 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/51.gif [http://www.takproject.net/allaclone/spell.php?id=691 Call of Flame]
| Singele Target Fire Based Direct Damage
| 125
| Instant
| [[Evocation]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/117.gif [http://www.takproject.net/allaclone/spell.php?id=76 Ensnaring Roots]
| Damages a Single Target and Renders it Immobile
| 60
| 1 Minutes
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/158.gif [http://www.takproject.net/allaclone/spell.php?id=2595 Force of Nature]
| Single Target [[Damage Shield]], Increase Attack, and Increase Passive Hit Point Regeneration
| 100
| 15 Minutes and 42 Seconds
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/51.gif [http://www.takproject.net/allaclone/spell.php?id=78 Immolate]
| Reduces the Armor Class of a Single Target and Fire Based Damage over Time
| 120
| 1 Minutes
| [[Evocation]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/52.gif [http://www.takproject.net/allaclone/spell.php?id=60 Resist Fire]
| Inreases a Single Target's Fire Resistance
| 50
| 36 Minutes
| [[Abjuration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/155.gif [http://www.takproject.net/allaclone/spell.php?id=129 Shield of Brambles]
| Applies a [[Damage Shield]] to a Single Target
| 80
| 2 Mintutes and 54 Seconds
| [[Abjuration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/155.gif [http://www.takproject.net/allaclone/spell.php?id=518 Spikecoat]
| Self Only Increase Armor Class and applies a [[Damage Shield]]
| 110
| 1 Hour and 57 Minutes
| [[Abjuration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/18.gif [http://www.takproject.net/allaclone/item.php?id=15034 Superior Camouflage]
| Render a Single Target Invisible
| 40
| 24 Minutes
| [[Divination]]
| Single target (Self or Group Member Only)
|-
| http://www.takproject.net/allaclone//icons/81.gif [http://www.takproject.net/allaclone/spell.php?id=425 Wolf Form]
| Self Only Illusion Wolf, Increase Movement Speed, and Increast Attack
| 60
| 1 Hour and 12 Minutes
| [[Alteration]]
| Self only
|}
=== Level 50 Spells ===
=== Level 50 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/158.gif [http://www.takproject.net/allaclone/spell.php?id=1462 Call of Earth]
| Single Target [[Damage Shield]] and Increase Armor Class
| 50
| 1 Hour
| [[Abjuration]]
| Single target
|}
=== Level 51 Spells ===
=== Level 51 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/5.gif [http://www.takproject.net/allaclone/spell.php?id=512 Ensnare]
| Decreases the Movement Rate of a Single Target
| 35
| 6 Minutes and 48 Seconds
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/110.gif [http://www.takproject.net/allaclone/spell.php?id=1741 Jolt]
| Single Target Aggro Reduction
| 60
| Instant
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/123.gif [http://www.takproject.net/allaclone/spell.php?id=1397 Strength of Nature]
| Single Target Increase Attack and Maximum Hit Points
| 125
| 1 Hour
| [[Abjuration]]
| Single target
|}
=== Level 52 Spells ===
=== Level 52 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/138.gif [http://www.takproject.net/allaclone/spell.php?id=417 Extinguish Fatigue]
| Single Target Full Stamina Refresh
| 35
| Instant
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/127.gif [http://www.takproject.net/allaclone/spell.php?id=2596 Falcon Eye]
| Self Only Increase Chance to Hit by 20% with Archery and See Invisible
| 75
| 11 Minutes and 24 Seconds
| [[Alteration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/51.gif [http://www.takproject.net/allaclone/spell.php?id=57 Firestrike]
| Single Target Fire Based Direct Damage
| 155
| Instant
| [[Evocation]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/56.gif [http://www.takproject.net/allaclone/spell.php?id=3688 Icewind]
| Single Target Cold Based Direct Damage
| 180
| Instant
| [[Evocation]]
| Single target
|}
=== Level 53 Spells ===
=== Level 53 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/6.gif [http://www.takproject.net/allaclone/spell.php?id=430 Storm Strength]
| Increases the Strength of a Single Target
| 85
| 54 Minutes
| [[Alteration]]
| Single target
|}
=== Level 54 Spells ===
=== Level 54 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/159.gif [http://www.takproject.net/allaclone/spell.php?id=259 Drones of Doom]
| Single Target Magic Based Damage over Time
| 141
| 1 Minutes
| [[Conjuration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/104.gif [http://www.takproject.net/allaclone/spell.php?id=2597 Jolting Blades]
| Self Only Enchant Weapon with an [[Aggro]] Reduction [[Proc]]
| 120
| 20 Minutes
| [[Conjuration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/131.gif [http://www.takproject.net/allaclone/spell.php?id=422 Skin like Diamond]
| Increases the Armor Class and Maximum Hit Points of a Single Target
| 200
| 54 Minutes
| [[Abjuration]]
| Single target
|}
=== Level 55 Spells ===
=== Level 55 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/104.gif [http://www.takproject.net/allaclone/spell.php?id=1463 Call of Fire]
| Self Only Enchant Weapon with a Direct Damage and Stun [[Proc]]
| 50
| 10 Minutes
| [[Alteration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/118.gif [http://www.takproject.net/allaclone/spell.php?id=145 Chloroplast]
| Increases the Passive Hit Point Regeneration of a Single Target
| 200
| 12 Minutes and 42 Seconds
| [[Alteration]]
| Single Target
|-
| http://www.takproject.net/allaclone//icons/110.gif [http://www.takproject.net/allaclone/spell.php?id=1296 Cinder Jolt]
| Single Target Fire Based [[Aggro]] Reduction
| 60
| Instant
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/57.gif [http://www.takproject.net/allaclone/spell.php?id=61 Resist Cold]
| Increase a Single Target's Cold Resistance
| 50
| 36 Minutes
| [[Abjuration]]
| Single target
|}
=== Level 56 Spells ===
=== Level 56 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/87.gif [http://www.takproject.net/allaclone/spell.php?id=539 Chill Sight]
| Self Only Ultravision
| 75
| 36 Minutes
| [[Divination]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/81.gif [http://www.takproject.net/allaclone/spell.php?id=426 Greater Wolf Form]
| Self Only Illusion Wolf, Increase Movement Rate, and Increase Attack
| 90
| 1 Hour and 42 Minutes
| [[Alteration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/123.gif [http://www.takproject.net/allaclone/spell.php?id=2598 Mark of the Predator]
| Group Increase Attack
| 100
| 1 Hour and 15 Minutes
| [[Abjuration]]
| Group
|}
=== Level 57 Spells ===
=== Level 57 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/99.gif [http://www.takproject.net/allaclone/spell.php?id=15 Greater Healing]
| This spell is an upgrade to Healing.
| 150
| Instant
| [[Alteration]]
| Single target
|}
=== Level 58 Spells ===
=== Level 58 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/127.gif [http://www.takproject.net/allaclone/spell.php?id=2599 Eagle Eye]
| Self Only Increase Chance to Hit by 40% with Archery, See Invisible, and Ultravision
| 100
| 12 Minutes and 36 Seconds
| [[Alteration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/32.gif [http://www.takproject.net/allaclone/spell.php?id=49 Nullify Magic]
| Removes Two Magic Based Buffs/Debuffs from a Single Target
| 50
| Instant
| [[Abjuration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/155.gif [http://www.takproject.net/allaclone/spell.php?id=432 Shield of Spikes]
| Applies a [[Damage Shield]] to a Single Target
| 100
| 3 Minutes and 54 Seconds
| [[Abjuration]]
| Single target
|}
=== Level 59 Spells ===
=== Level 59 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/51.gif [http://www.takproject.net/allaclone/spell.php?id=1740 Calefaction]
| Single Target Fire Based Direct Damage
| 250
| Instant
| [[Evocation]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/131.gif [http://www.takproject.net/allaclone/spell.php?id=423 Skin like Nature]
| Increases the Armor Class, Maximum Hit Points, and Passive Hit Point Regeneration of a Single Target
| 300
| 1 Hour and 12 Minutes
| [[Abjuration]]
| Single target
|}
=== Level 60 Spells ===
=== Level 60 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
=== Level 61 Spells ===
| style="background-color:#CCCCCC" |  '''Name'''
=== Level 62 Spells ===
| style="background-color:#CCCCCC" | '''Effect(s)'''
=== Level 63 Spells ===
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
=== Level 64 Spells ===
| style="background-color:#CCCCCC" | '''Duration'''
=== Level 65 Spells ===
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/123.gif [http://www.takproject.net/allaclone/spell.php?id=1464 Call of the Predator]
| Group Increase Attack
| 200
| 1 Hour and 15 Minutes
| [[Abjuration]]
| Group
|-
| http://www.takproject.net/allaclone//icons/117.gif [http://www.takproject.net/allaclone/spell.php?id=490 Enveloping Roots]
| Damages a Single Target and Renders it Immobile
| 80
| 1 Minute
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/155.gif [http://www.takproject.net/allaclone/spell.php?id=519 Thorncoat]
| Self Only Increase Armor Class and applies a [[Damage Shield]]
| 175
| 2 Hours and 27 Minutes
| [[Abjuration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/158.gif [http://www.takproject.net/allaclone/spell.php?id=2600 Warder's Protection]
| Self Only [[Damage Shield]], Increase Attack, Increase Armor Class, and Increase Maximum Hit Points
| 350
| 2 Hours and 30 Minutes
| [[Abjuration]]
| Self only
|}


=== Level 61 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/32.gif [http://www.takproject.net/allaclone/spell.php?id=1526 Annul Magic]
| Removes Three Magic Based Effects from Single Target
| 75
| Instant
| [[Abjuration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/52.gif [http://www.takproject.net/allaclone/spell.php?id=1551 Circle of Winter]
| Group Increase Fire Resistance
| 150
| 36 Minutes
| [[Abjuration]]
| Group
|-
| http://www.takproject.net/allaclone//icons/41.gif [http://www.takproject.net/allaclone/spell.php?id=96 Counteract Disease]
| Cures the Target of stronger Disease Effects
| 50
| Instant
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/42.gif [http://www.takproject.net/allaclone/spell.php?id=95 Counteract Poison]
| Cures the Target of Stonger Poison Effects
| 50
| Instant
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/153.gif [http://www.takproject.net/allaclone/spell.php?id=1529 Exile Summoned]
| Single Summoned Target Magic Based Direct Damage
| 250
| Instant
| [[Evocation]]
| Summoned Beings
|}


=== Level 62 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/158.gif [http://www.takproject.net/allaclone/spell.php?id=3419 Call of the Rathe]
| Single Target [[Damage Shield]] and Increase Armor Class
| 150
| 1 Hour
| [[Abjuration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/99.gif [http://www.takproject.net/allaclone/spell.php?id=1290 Chloroblast]
| Heals a Single Target
| 175
| Instant
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/159.gif [http://www.takproject.net/allaclone/spell.php?id=665 Drifting Death]
| Single Target Magic Based Damage over Time
| 200
| 1 Minutes
| [[Conjuration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/155.gif [http://www.takproject.net/allaclone/spell.php?id=356 Shield of Thorns]
| Applies a [[Damage Shield]] to a Single Target
| 120
| 4 Minutes and 54 Seconds
| [[Abjuration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/123.gif [http://www.takproject.net/allaclone/spell.php?id=3487 Strength of Tunare]
| Group Increase Attack and Maximum Hit Points
| 250
| 1 Hour
| [[Abjuration]]
| Group
|}


=== Level 63 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/155.gif [http://www.takproject.net/allaclone/spell.php?id=1558 Bladecoat]
| Self Only Increase Armor Class and apply a [[Damage Shield]]
| 235
| 2 Hours and 48 Minutes
| [[Abjuration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/57.gif [http://www.takproject.net/allaclone/spell.php?id=1552 Circle of Summer]
| Group Increase Cold Resistance
| 150
| 36 Minutes
| [[Abjuration]]
| Group
|-
| http://www.takproject.net/allaclone//icons/117.gif [http://www.takproject.net/allaclone/spell.php?id=3192 Earthen Roots]
| Renders a Single Target Immobile
| 150
| 1 Minute
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/56.gif [http://www.takproject.net/allaclone/spell.php?id=3418 Frozen Wind]
| Single Target Cold Based Direct Damage
| 300
| Instant
| [[Evocation]]
| Single target
|}


=== Level 64 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/51.gif [http://www.takproject.net/allaclone/spell.php?id=3431 Brushfire]
| Single Target Fire Based Direct Damage
| 220
| Instant
| [[Evocation]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/104.gif [http://www.takproject.net/allaclone/spell.php?id=3415 Nature's Rebuke]
| Self Only Enchant Weapon with Magic Based Direct Damage [[Proc]]
| 400
| 1 Hour
| [[Alteration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/118.gif [http://www.takproject.net/allaclone/spell.php?id=1568 Regrowth]
| Increase the Passive Hit Point Regeneration of a Single Target
| 300
| 16 Minutes and 36 Seconds
| [[Alteration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/123.gif [http://www.takproject.net/allaclone/spell.php?id=3417 Spirit of the Predator]
| Group Increase Attack
| 300
| 1 Hour and 20 Minutes
| [[Abjuration]]
| Group
|}


=== Level 65 Spells ===
{| class="wikitable" width='92%'  style="background-color:#FFFFF;"
| style="background-color:#CCCCCC" |  '''Name'''
| style="background-color:#CCCCCC" | '''Effect(s)'''
| style="background-color:#CCCCCC; text-align:center;" | '''Mana'''
| style="background-color:#CCCCCC" | '''Duration'''
| style="background-color:#CCCCCC; text-align:center;" | '''Skill'''
| style="background-color:#CCCCCC" | '''Target Type'''
|-
| http://www.takproject.net/allaclone//icons/104.gif [http://www.takproject.net/allaclone/spell.php?id=3420 Cry of Thunder]
| Self Only Enchant Weapon with Magic Based Direct Damage [[Proc]]
| 400
| 1 Hour
| [[Alteration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/21.gif [http://www.takproject.net/allaclone/spell.php?id=2887 Mask of the Stalker]
| Self Only Increase Player Size, Magnify Vision, Increase Passive Mana Regeneration, and See Invisible
| 150
| 3 Hours
| [[Alteration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/131.gif [http://www.takproject.net/allaclone/spell.php?id=1559 Natureskin]
| Single Target Increase Armor Class, Maximum Hitpoints, and Passive Hit Point Regeneration
| 400
| 1 Hour and 21 Minutes
| [[Abjuration]]
| Single target
|-
| http://www.takproject.net/allaclone//icons/158.gif [http://www.takproject.net/allaclone/spell.php?id=3039 Protection of the Wild]
| Self Only [[Damage Shield]], Increase Attack, Increase Armor Class, and Increase Maximum Hit Points
| 450
| 2 Hours and 30 Minutes
| [[Abjuration]]
| Self only
|-
| http://www.takproject.net/allaclone//icons/4.gif [http://www.takproject.net/allaclone/spell.php?id=2517 Spirit of Eagle]
| Single Target See Invisible, Increase Movement Rate, Levitation, and Infravision
| 125
| 1 Hours
| [[Alteration]]
| Single target
|}


==References==
==References==
Line 1,341: Line 621:
[[Category: Hybrid]]
[[Category: Hybrid]]
[[Category: Role: DPS]]
[[Category: Role: DPS]]
[[Category: Spells]]

Please note that all contributions to The Al`Kabor Project Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see The Al'Kabor Project Wiki:Copyrights for details). Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)