");$( "#content-area" ).prepend($addFlag);} }// This function handles animation for the new ToC, which currently includes:// 1. Fading the ToC in and out to prevent it from covering up the Info section in the footer ; function handleTocAnim( $tocBox, winHeight, docHeight, scrollTop ) { // We're going to check if we're near the bottom for an animation to hide the ToC so we don't // cover up the Info section in the footer var bottomBuffer = 384; //px var isNearBottom = scrollTop + winHeight > docHeight - bottomBuffer; // Fetch the value for the animFlag key var tocAnimating = $tocBox.data( "animFlag" ); // If ToC has been hidden by the fade anim, display will be 'none' when // finished animating var tocHidden = $tocBox.css( 'display' ) === 'none'; if( isNearBottom ) { // If we're near the bottom, and the ToC is not animating // and not hidden, then hide it if( !tocAnimating && !tocHidden ) { $tocBox.data( "animFlag", true ) $tocBox.fadeOut( 400, function() { $tocBox.data( "animFlag", false ); }); } } else { // If we're not near the bottom, and the ToC is not animating // and hidden, then unhide it if( !tocAnimating && tocHidden ) { $tocBox.data( "animFlag", true ); $tocBox.fadeIn( 400, function() { $tocBox.data( "animFlag", false ); }); } } }// Calculate the available height for the ToC Box ; function calcAvailableHeight( height ) {return height * 80.0 / 100.0;}// This function resizes specific page elements, depending on // window size and whether the ToC is present, to keep things // consistent.// The boolean debug arg enables verbose logging. ; function handleReflow( $, winOuterWidth, winInnerHeight, maxMobileWidth, debug ) {if( debug ) {console.log( "Checking if page layout should be reflowed..." );}// We want to reflow the layout whether or not we have the TOC, // with the hasTOC bool as a flag for if it exists on the pagevar tocFlag = $("#content-side");var hasToC = true; // FORCE HAS TOC, DEPLOYING SITEWIDE -supersoup// Check number of H2 elements. If <= 3, early returnvar numH2 = $("h2");if( numH2.length <= 3 ) {return;}// Cache varsvar $mainContainer = $("#main-content");var $logoContainer = $(".hgg-logo-space");var $navContainer = $(".hgg-menu-icon");var $contentArea = $("#content-area");// Null-check variablesvar anyNull = $mainContainer.length && $logoContainer.length && $navContainer.length && $contentArea.length;if( !($mainContainer.length) && debug ) {console.log( "$mainContainer null in reflowLayout..." );}if( !($logoContainer.length) && debug ) {console.log( "$logoContainer null in reflowLayout..." );}if( !($navContainer.length) && debug ) {console.log( "$navContainer null in reflowLayout...")}if( !($contentArea.length) && debug ) {console.log( "$contentArea null in reflowLayout..." );} if( debug ) {console.log( "anyNull: " + anyNull );console.log( "hasTOC: " + hasToC );}if( hasToC ) {// The previous process for initializing offsetTopForView didn't play well when// refreshing the page while partially down the post, switching to pulling the // header height for consistency -supersoupvar offsetTopForView = $("header").height() ; //pxif (offsetTopForView === undefined || offsetTopForView < 0) {offsetTopForView = 0;}var $toc = $( ".toc-box" );if( $toc.length > 0 ) {var availableHeight = calcAvailableHeight( winInnerHeight - offsetTopForView );if( debug ) {console.log( "window.innerHeight: " + winInnerHeight );console.log( "availableHeight: " + availableHeight );console.log( "toc[0].scrollHeight: " + $toc[0].scrollHeight );console.log( "toc.height(): " + $toc.height() );}if( $toc.outerHeight() > availableHeight ) {$toc.css( 'height', availableHeight );if( debug ) {console.log( "Setting ToC height to ", availableHeight );}} else {var newHeight = availableHeight < $toc[0].scrollHeight ? availableHeight : $toc[0].scrollHeight;$toc.css( 'height', newHeight );if( debug ) {console.log( "Setting ToC height to ", newHeight );}}/*// Update largest sizevar maxSize = $toc.data( "maxSize" );var outerHeight = $toc.outerHeight;if( maxSize === 0 || maxSize == undefined || maxSize == NaN || maxSize < cssHeight ) {$toc.data( "maxSize", $toc.outerHeight);console.log( "maxSize is now " + $toc.outerHeight );}*/if( $toc.height() < $toc[0].scrollHeight ) {$toc.css( 'overflow-x', 'hidden' );$toc.css( 'overflow-y', 'auto' );}else {$toc.css( 'overflow-x', 'hidden' );$toc.css( 'overflow-y', 'none' );}}if( winOuterWidth >= 1600 ) {$mainContainer.css( "margin-left", "15.95rem" );$logoContainer.css( "margin-left", "-6.1rem" );$navContainer.css( "margin-right", "-8.0rem" );} else if( winOuterWidth < 1600 && winOuterWidth > maxMobileWidth ) {$mainContainer.css( "margin-left", "14.8rem" );$logoContainer.css( "margin-left", "-3.8rem" );$navContainer.css( "margin-right", "-3.8rem" );} else if( winOuterWidth <= maxMobileWidth ) {// Clear applied CSS$mainContainer.css( "margin-left", "0" );$logoContainer.css( "margin-left", "0" );$navContainer.css( "margin-right", "0" );} else {if( debug ) {console.log( "Unhandled window width in reflowLayout() - With ToC" );}}} else {if( winOuterWidth >= 1600 ) {// Don't do anything yet on non-ToC pages} else if( winOuterWidth < 1600 && winOuterWidth > maxMobileWidth ) {$contentArea.css( "margin-left", "0");} else if( winOuterWidth <= maxMobileWidth ) {// Don't do anything yet on non-ToC pages} else {if( debug ) {console.log( "Unhandled window width in reflowLayout() - Without ToC" );}}} }// Handles reflowing content on the page depending on different variables; (function (window, $, undefined) {$.fn.reflowLayout = function() {// Mobile width for reflow, probably want to sync// with max mobile width for the ToCconst MAX_MOBILE_WIDTH = 1438;// Should we enable verbose logging for debugging?// SHOULD NOT BE TRUE IN PRODUCTION! -supersoupvar debug = false;handleReflow( $, window.outerWidth, window.innerHeight, MAX_MOBILE_WIDTH, debug );$(window).on( 'load', function () {handleReflow( $, window.outerWidth, window.innerHeight, MAX_MOBILE_WIDTH, debug );});// For reflowing when browser size changes$(window).on( 'resize', function () {handleReflow( $, window.outerWidth, window.innerHeight, MAX_MOBILE_WIDTH, debug );});/*$(window).on( 'scroll', function () {var $toc = $( ".toc-box" );if( $toc.length === 0 )return;console.log( "availableHeight: " + calcAvailableHeight( window.innerHeight ) );console.log( "toc[0].scrollHeight: " + $toc[0].scrollHeight );console.log( "toc.outerHeight(): " + $toc.outerHeight() );});*/};})(this, jQuery);// Transform guide content by visually organizing it into cards ; (function(window, $, undefined) { $.fn.cardify = function() { var $contentBody = $("#content-body"); if($contentBody === 0) { return; } var $contentBodyChildren = $contentBody.children(); var $h2s = $contentBody.children("h2"); console.log("H2 children of #content-body: " + $h2s.length); if($h2s.length === 0) { return; } for(var i = 0; i < $h2s.length; i++) { var $array = $contentBodyChildren.nextUntil("h2"); $array.each( function(index) { console.log("Element " + index + ": " + $(this).html()); }); // console.log("Card " + i + ":" + $contentBodyChildren.nextUntil("h2").html()); } } }(this, jQuery));// Create the top level TOC before the first heading // The boolean debug arg enables verbose logging. ; function createTopLevelTOC( $, debug ) {var $contentBody = $("#content-body");if( $contentBody === 0 ) {return;}var headingsToFind = ["h2", "h3"]; var $headings = $contentBody.find(headingsToFind.join(","));if( debug ) {console.log(`Headings found: ${$headings.length}`);}if( $headings.length === 0 ) {return;}var tocContainer = document.createElement("div");tocContainer.id="top_toc_container";tocContainer.classList.add("top_toc_container");var tocTitle = document.createElement("p");tocTitle.classList.add("top_toc_title");tocTitle.innerHTML = "Table of Contents";tocContainer.append(tocTitle);var tocList = document.createElement("ul");tocList.classList.add("top_toc_list");let h2Count = 1;let h3Count = 1;for( let i = 0; i < $headings.length; i++ ) {var item = document.createElement("li");var itemTagName = $headings[i].tagName;var tagIsH3 = itemTagName === "H3";if ( debug ) {console.log(`Item ${i} tagName: ${itemTagName}`);}var count = i+1;if( tagIsH3 ) {item.classList.add("top_toc_item_h3");count = h3Count;h3Count++;}else {item.classList.add("top_toc_item_h2");count = h2Count;h3Count = 1; // Reset h3 counth2Count++;}var innerText = `${tagIsH3 ? " - " : ""} ${$headings[i].innerText}`;item.innerHTML =`${innerText}`;tocList.append(item);}tocContainer.append(tocList);var $topHeading = $headings[0];$topHeading.before(tocContainer);if( debug ) {console.log("Successfully added top level ToC");}}// The main function for creating, populating, and managing the new ToC ; (function (window, $, undefined) { $.fn.createTOC = function (settings) {const MAX_MOBILE_WIDTH = 1438;// Before anything else, if this is a post in a Category that we // specifically want to force the ToC on, let's handle that// THIS IS NO LONGER NEEDED, as we're pushing ToC sitewide -supersoup// handleForceToC( $ );// We want to create the inline top level ToC if we're not generating // the sidebar tocif ( $(window).width() <= MAX_MOBILE_WIDTH ) {createTopLevelTOC( $, false );}// For now, we only want to add the new ToC to manually flagged posts.// The post is flagged with the presence of a
// contained within the content of the post. Originally, this div was being used// to wrap the ToC, but I (supersoup) am going to move the ToC out to a new div.// So, the first thing we want to do is test for this div, early return if not // found, or remove it and recreate a #content-side div elsewhere if it is found.var tocFlag = $("#content-side");var hasToC = !(tocFlag.length === 0);// If #content-side element is foundif( hasToC ) {// Get rid of tosFlag #content-side elementtocFlag.remove();}// Check number of H2 and H3 elements. If <= 3, early returnvar numH2 = $("h2");var numH3 = $("h3");if( numH2.length + numH3.length <= 3 ) {return;}// Proceed with .CreateTOC() var option = $.extend({ title: "hgg-toc", insert: "body", }, settings); var ACTIVE_CLASS = 'active'; var list = ["h2", "h3"]; var $headings = this.find(list.join(",")); var tocBox = document.createElement("ul"); var $tocBox = $(tocBox); tocBox.className = "toc-box"; var idList = []; $headings.map(function (i, head) { var nodeName = head.nodeName; var id = 'toc_' + i + '_' + nodeName; head.id = id; idList.push(id); var row = document.createElement("li"); row.className = 'toc-item toc-' + nodeName; var link = document.createElement('a'); link.innerText = head.innerText; link.className = 'toc-item-link'; link.href = '#' + id; row.appendChild(link); tocBox.appendChild(row); }); // Control the takeover of the highlighted elements var isTakeOverByClick = false; // Event delegate, add click ,Highlight the currently clicked item $tocBox.on("click", ".toc-item", function (ev) { // Set as true ,Represents the click event to take over the control of the highlighted element isTakeOverByClick = true; var $item = $(this); var $itemSiblings = $item.siblings(); $itemSiblings.removeClass(ACTIVE_CLASS); $item.addClass(ACTIVE_CLASS); });// Recreate #content-side element in new locationvar $tocDiv = $("
");$( "#content-area" ).prepend($tocDiv); // Want it to be the first subdiv of #content-areavar headBox = document.createElement("div");headBox.className = "toc-titler";headBox.innerHTML = option.title;var wrapBox = document.createElement("div");wrapBox.className = "wrap-toc";wrapBox.appendChild(headBox);wrapBox.appendChild(tocBox);// If on mobile, set sidebar hiddenif( $(window).width() <= MAX_MOBILE_WIDTH ) {wrapBox.style.display = 'none';} else {wrapBox.style.display = null;}var $insertBox = $(option.insert);var $helperBox = $("
");$helperBox.append(wrapBox);$insertBox.prepend($helperBox);// The style of the storage container boxvar CACHE_WIDTH = $insertBox.css('width');var CACHE_PADDING_TOP = $insertBox.css('paddingTop');var CACHE_PADDING_RIGHT = $insertBox.css('paddingRight');var CACHE_PADDING_BOTTOM = $insertBox.css('paddingBottom');var CACHE_PADDING_LEFT = $insertBox.css('paddingLeft');var CACHE_MARGIN_TOP = $insertBox.css('marginTop'); // var scrollTop = $('html,body').scrollTop(); // var offsetTop = $insertBox.offset().top; // var marginTop = parseInt($insertBox.css('marginTop')); // var offsetTopForView = offsetTop - scrollTop - marginTop; // For initialization on load$(window).on( 'load', function () {initTocAnimData( $insertBox );}); // Rolling ceiling $(window).scroll(function () {// The previous process for initializing offsetTopForView didn't play well when// refreshing the page while partially down the post, switching to pulling the // main-header height for consistency -supersoupvar offsetTopForView = $(".hgg-top-nav").height() ; //px// IE6/7/8: // For pages without doctype declaration, document.body.scrollTop can be used to get the height of scrollTop; // For pages with doctype declaration, document.documentElement.scrollTop can be used;// Safari: // Safari is special, it has its own function to get scrollTop: window.pageYOffset;// Firefox: // Relatively standard browsers such as Firefox can save more worry, just use document.documentElement.scrollTop;var scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop; // Scroll highlight // Only when the click event cancels the control of the highlighted element, the scroll event can have the control of the highlighted element !isTakeOverByClick && $.each(idList, function (index, id) { var $head = $('#' + id); var $item = $('[href="#' + id + '"]').parent(); var $itemSiblings = $item.siblings();var offsetBuffer = 64; // px, we want the class swap to trigger slightly before so we show an accurate active element// when zooming to a specific element var offsetTopHead = $head.offset().top - offsetBuffer; var isActived = $item.hasClass(ACTIVE_CLASS); if (scrollTop >= offsetTopHead) { $itemSiblings.removeClass(ACTIVE_CLASS); !isActived && $item.addClass(ACTIVE_CLASS); } else { $item.removeClass(ACTIVE_CLASS); } }); // Set to false, which means that the click event will cancel the control of the highlighted element isTakeOverByClick = false;// Handle animation for the ToChandleTocAnim( $insertBox, $(window).height(), $(document).height(), scrollTop );// Handle any changes to ToC CSS on scrollvar isFixed = $helperBox.css("position") === "fixed"; if (scrollTop >= offsetTopForView) {if (isFixed) return;$tocBox.css({overflow: 'auto',padding: 0,});$helperBox.css({position: 'fixed',top: CACHE_MARGIN_TOP,width: CACHE_WIDTH,paddingTop: CACHE_PADDING_TOP,paddingRight: CACHE_PADDING_RIGHT,paddingBottom: CACHE_PADDING_BOTTOM,paddingLeft: CACHE_PADDING_LEFT,backgroundColor: $tocBox.css('backgroundColor')});} else {if (!isFixed) return;$helperBox.css({position: 'static',padding: 0});$tocBox.css({overflow: 'auto',paddingTop: CACHE_PADDING_TOP,paddingRight: CACHE_PADDING_RIGHT,paddingBottom: CACHE_PADDING_BOTTOM,paddingLeft: CACHE_PADDING_LEFT,});} }); };}(this, jQuery));
by Kody Wirth | Last Updated: Jan 6, 2022

As a Titan inDestiny 2, the dream of the Last City rests upon your shoulders. Being equipped with some of the most powerful armor available means you’re expected to get your hands dirty. Expect to play like a tank, get up close and personal, and let your guns — and your fists — do the talking.
This mentality is embedded in every aspect of the Titan class, but it’s most evident in the subclass abilities. But which is thebestTitan subclassDestiny 2, and which ones aren’t worth touching?
Every Titan Subclass Ranked
Beyond Lightaggressively adjusted the ability pool for every class, but it’s possibly shaken up the Titan subclass order the most. Stasis and a handful of tweaks to the residual abilities in other subclasses have made way for AOE-focused supers that mesh well with grenade and melee combinations.
So if you want to step into the armor-clad boots of a Titan or need to refresh your subclass game, here ate our rankings for the best Titan subclasses inDestiny 2.
10. Code of the Aggressor — Sentinel Subclass

Abilities
- Shield Bash:This melee ability unleashes a powerful Shield Bash that dazes the enemy.
- Superior Arsenal:Kills with your grenades recharge grenade energy.
- In the Trenches:Reduces the cooldown of your Super when you kill combatant assailants near one another.
- Second Shield:Grants an extra Shield Throw charge when using Sentinel Shield.
You won’t see much support by way of buffs or synergy with your Fireteam with this one. Instead, everything’s poured into the effectiveness of your shield.
You gain a melee shield charge that can wipe our smaller enemies while confusing and suppressing others. To further encourage offensive play, you also gain small amounts of super energy when defeating enemies while surrounded. It gives you the ability to gain additional throwable shields and recharge your grenades faster on top of that.
While this is definitely not the best Titan subclass, it’s not necessarily a bad subclass to use. You just need to build your Guardian around the grenade and super benefits to make it effective, making it a far less versatile option than others on this list.
What’s it best for? Dungeons and Battlegrounds. Anytime you need to take on vast hordes of minor enemies, this subclass can help you do that.
9. Code of the Earthshaker — Striker Subclass

Abilities
- Seismic Strike:After sprinting, shoulder-slam into your enemy and release to release an Arc explosion.
- Aftershocks:Recharge your grenade by damaging enemies with Seismic Strike.
- Magnitude:Grants an extra grenade and extends the duration of grenade effects.
- Terminal Velocity:Increase the damage and duration of Fists of Havoc’s ground slam attack.
Earthshaker provides a nice blend of melee and grenade abilities. Using the shoulder charge attack adds grenade charges (thanks to Aftershocks) and allows you to hold up to two grenades at a time.
The ability to do large-scale DPS with both your melee and super is great for taking on massive amounts of enemies. Leveraging your High Lift movement ability to execute Terminal Velocity can make for a deadly precise finisher that leaves a pulsing damage field in its wake. Unfortunately, that’s where the benefits of this subclass end.
The main issue is that other subclasses have surpassed the benefits of Earthshaker. Stasis has made it obsolete in PvP, and its limited super abilities only make it useful for clearing ADS, not taking down bosses. Maybe with some fine-tuning, it will become relevant again, but for now, only use this if Arc damage is boosted.
What’s it best for? Strikes or Dungeons, especially if any game mode has Arc damage as the primary damage type.
8. Code of the Siegebreaker — Sunbreaker Subclass

Abilities
- Mortar Blast:Release a Solar explosion with your melee ability, and set enemies on fire.
- Sol Invictus:Restore health with solar kills, and leave damage-inflicting Sunspots in your wake.
- Sun Warrior:Increase your damage and recharge grenade/melee abilities when moving through a Sunspot.
- Endless Siege:Create Sunspots with your Hammers, and throw them faster while standing within Sunspots.
Siegebreaker tries to balance high DPS, defeating minor enemies, and providing support to your Fireteam. It’s a rare blend that you typically don’t see in Titan subclasses, but a welcome one when taking on higher tier events like Nightfalls and even certain Raids.
Your Sunspots, which are created with Solar kills, act as consistent damage-dealing areas that can shred through other ADS or let you quickly surround bosses. They also grant the Sun Warrior buff, which increases damage dealt, increases your super’s duration, and recharges other abilities. With the right Exotic, you can add this buff to your teammates as well.
On top of all this, you can increase attack speed with your super and regenerate health by getting Solar kills. It even spawns Warmind Cells, which makes this even more valuable for taking on large amounts of enemies. The only real drawback is that you need to coordinate your playstyle with your Fireteam and build your Guardian around this subclass.
What’s it best for? This subclass is ideal for PvEand Gambit, but it’s best with a coordinated team that’s ready to take advantage of the boosts it provides.
7. Code of the Commander — Sentinel Subclass

Abilities
- Controlled Demolition:Shoot and fire Void detonators, which deal damage to targets.
- Resupply:Regain health and grenade/melee energy when firing Void detonators.
- Tactical Strike:Cause a Void explosion when striking enemies.
- Banner Shield:Create a defensive wall while guarding with Sentinel Shield. Increases the weapon damage of ally projectiles shot through the wall. Replaces Sentinel Shield as subclass Super.
Code of the Commander acts as a heavy support option that makes you a damage-absorbing tank that can pass along buffs to your Fireteam. It’s great for crowd control and protecting your team at the same time.
Possibly the best feature is the Detonator ability. By damaging enemies with Void abilities, you attach a Detonator that will explode upon their death. Doing this to multiple enemies at once creates a massive damage chain while simultaneously recharging you and your Fireteam’s abilities.
However, it’s the super that makes this subclass so good. It seems like a strange variation of the Aggressor shield on the surface, but this one is larger and lets you protect teammates. It also grants a damage buff and allows you to still go on the offense like with Aggressor.
What’s it best for? Nightfalls and other high-level PvE activities.
6. Code of the Missile — Striker Subclass

Abilities
- Ballistic Slam:Jump up and slam into the ground to damage nearby enemies.
- Impact Conversion:Gain Super energy and activate Intertia Override when you hit enemies with Ballistic Slam.
- Inertia Override:Increase weapon damage and fully reload your gun when you pick up ammo while sliding.
- Thundercrash:Leap into the air and crash into nearby enemies to inflict meteoric damage.
Code of the Missile makes you a bit of a glass cannon, but the control is well worth it. The Thundercrash Super allows you to shoot off like a missile, navigate through the air, and land a blow against enemies. It’s great when facing enemies from a distance but doesn’t do as much damage as you’d expect.
This lack of damage is made up for by an effective melee attack that almost works like a miniature Super. And the more you use it, the more super energy you gain, allowing you to continuously leverage AOE damage over and over again.
When you have to use your guns, the Inertia Override lets you immediately reload when sliding over ammo. This makes this subclass great for dealing quick damage and encourages fast and nimble play. It may not be as powerful, but it has plenty of perks.
What’s it best for? Gambit due to how well you can clear out waves of enemies with all of your abilities.
5. Code of the Devastator — Sunbreaker Subclass

Abilities
- Throwing Hammer:Pretty straightforward here. Toss a hammer at your enemies. As soon as you pick your hammer back up, your melee ability fully recharges.
- Roaring Flames:This ability allows you to increase the damage of any solar ability you get a kill with. Let the fire roar by stacking this ability up to three times.
- Tireless Warrior:Tireless Warrior synergizes nicely with the Throwing Hammer ability. Throw your hammer and hit someone, and you’ll instantly trigger your health regeneration.
- Burning Maul:Time to summon a flaming Thor maul and clear out the field with a massive earthquake. This ability replaces Hammer of Sol as subclass Super.
This one is a personal favorite because there’s nothing better than laying down a massive hammer on enemies. And thankfully, those hits translate to a ridiculous amount of melee damage with your spin or slam attack. You can easily take down a third of a boss’s health bar, clear out ADS or major enemies by the time your Super is used up.
All of the punch is with your Super, as your melee ability is throwing a hammer. The benefit is that you can pick it back up or let it cook and explode in a rupture of flames. Oh, and if you get three kills this way, you can increase Solar damage for a bit.
This subclass is pure fun and lays out a ton of damage. Just know that you’ll often find yourself defenseless if you get too greedy, so try to balance out your offensive capabilities with some defensive buffs to keep you going.
What’s it best for? Strikes, Nightfall, and Dungeons as long as you have more defensive members of your Fireteam to balance out your abilities.
4. Code of the Juggernaut — Striker Subclass

Abilities
- Frontal Assault:Increase your weapon stability/weapon damage as well as reload your weapon by striking an enemy with this melee ability.
- Reversal:Health regeneration is instantly trigged by any melee kill.
- Knockout:Increase your melee range/damage by breaking an enemy’s shield or critically wounding them.
- Trample:Extends the duration of Fists of Havoc when you destroy enemies with it.
At one point, this was the best Titan subclass for PvP inDestiny 2. You could easily break shields, gain back health, and follow-up with a devastating punch using your melee abilities. Basically, as long as you kept on hitting, you kept on going.
The same could be said about the Super, which allowed you to keep laying out ground slams as long as you kept taking out enemies. The crazy thing is that the health regen triggered by melee kills would kick in with super kills.
Inthe Crucible, this subclass was devastating. Then, of course, Stasis came and changed all that. It’s still viable to run, just don’t expect it to be as good as it once was.
What’s it best for? Crucible and Gambit due to the lengthy ability usage and health regeneration.
3. Code of the Fire-Forged — Sunbreaker Subclass

Abilities
- Hammer Strike:Batter’s up! This is a melee ability that lets you swing a blazing hammer that weakens enemies while sprinting.
- Tempered Metal:You and nearby allies gain bonus reload speed and movement speed when you get a Solar ability kill.
- Explosive Pyre:Kill an opponent with Hammer of Sol and watch them explode!
- Vulcan’s Rage: Your hammer will shatter upon making impact and shower your opponents with sizzling molten embers.
Another surprisingly well-balanced subclass, Code of the Fire-Forged grants some seriously powerful buffs. The Hammer Strike melee ability debuffs enemies and the Tempered Metal buff improves your reload and movement speed after elemental kills. Throw in the excellent Super and Explosive Pyre ability, and you can quickly meltdown any target.
What’s great about this subclass is that you can play it without thinking about your build. It works well for clearing out enemies as well as breaking down large chunks of boss health. It can even work well against other Guardians if you’re able to get enough hammers out in play.
It’s very much a team-oriented subclass that benefits everyone. And like the Siegebreaker, it serves as a well-balanced ability set that promotes healing, defense, and offense all in one.
What’s it best for? PvE and Gambit, thanks to the debuff ability in your melee and the excessive amount of AOE damage provided by your super.
2. Code of the Protector — Sentinel Subclass

Abilities
- Defensive Strike:Make an overshield around you and nearby allies by eliminating an enemy with Defensive Strike. While this overshield is active, Final Blows grant melee energy.
- Rallying Force:Restore health for you and your allies through each melee kill.
- Turn the Tide:The Defensive Strike overshield lasts longer, increases melee damage, and improves reload speed.
- Ward of Dawn:When your Super energy is full, an indestrutible dome will be created that protest you and your allies. Gain a temporary increase to weapon damage when either you or your allies pass through Ward of Dawn.
A classic ability from the originalDestinythat has only become better over time. It serves as the one true defensive ability for Titans that still allows you to be aggressive through overshields when punching enemies and a continuous method of health regeneration. And on top of that, every kill while the overshield is popped increases melee damage and reload speed.
The coolest thing about this ability is that you can still run with the shield featured in the other Sentinel Codes, but you can also pop the Ward of Dawn by holding down your super buttons. This is crucial for Raid events and ensures you can boost your Fireteam’s stats while protecting them.
This serves as the best balance of offense and defense for a Titan. You can still get in the thick of things without the risk of being overwhelmed, but you can then step back to play support for your team when things get crazy.
What’s it best for? It’s the best Titan subclass for Raids inDestiny 2.
1. Behemoth — Stasis Subclass

Abilities
- Shiver Strike:Summon a Stasis gauntlet, jump forward, and deliver a devastating jab that will send your enemy backward and slow other nearby enemies.
- Glacial Quake:Forge a powerful Stasis gauntlet and slam it into the ground. This will quickly even the playing field by sending frost shockwaves full of Stasis crystals that will freeze all surrounding enemies.
Stasis may be the biggest change to the overall subclass meta sinceThe Taken King. For Titans, it literally makes you feel like Superman (if he were morally okay with freezing and shattering his enemies). No joke — you pop the Super, execute an AOE slam attack, and fly toward the nearest enemy with your alternate.
The Behemoth subclass is one of the most broken but enjoyable melee-centric powersets inDestiny. Add in the Glacier Grenades and your ability to rush oncoming enemies, and you’re virtually unstoppable against minor enemies and a serious threat to everything else.
And while we can’t cover it here, the new Aspect and Fragment system for this subclass is a great reinvention of the skill tree. Instead of being locked in, you can unlock, equip and switch multiple variations that change your playstyle. The cool thing is that they can keep introducing them, as they do with Mods, without having to wait for an entirely new powerset. All in all, it’s an excellent and deadly subclass that, even with a handful of nerfs, is completely unrivaled.
What’s it best for? Everything. Right now, this is the best Titan subclass for PvE and PvP inDestiny 2.
Attack With Titan
The best Titan subclass Destiny 2 is always good time. Right now, Stasis is by far the best, but be on the lookout for some additional balancing updates later this year. To stay up-to-date on these changes, be sure to sign up for our newsletter and if you liked this article, share it to your favorite social platforms.
Happy gaming!

Related Reading
- Best Destiny 2 Settings
- Best PvE Weapons in Destiny 2
- Best PvP Weapons in Destiny 2
- Best SMGs in Destiny 2
- Best Snipers in Destiny 2
- Best Scout Rifles in Destiny 2
- Best Sidearms in Destiny 2
- Best Shotguns in Destiny 2
- Best Pulse Rifles in Destiny 2
- Best Hand Cannons in Destiny 2
- Best Auto Rifles in Destiny 2
Submit a Comment
FAQs
What is the best subclass for Titans Destiny 2? ›
The Sunbreaker Titan has always been a reliable choice since the Red War. Solar 3.0 made Sunbreaker one of the best subclasses for solo content by making your titan almost impossible to kill.
What is the strongest subclass in Destiny 2? ›Abilities: Well of Radiance is arguably the strongest Super in the entire game, so running it is a no-brainer.
Who is the strongest Titan in Destiny? ›The titan Saint-14 is an exo titan who has been around since the early days of the Last City and the Vanguard. He was the right hand of the Speaker and the first Titan Vanguard. A few notes on his acievements: He's known as the greatest Titan to ever exist.
What is the strongest subclass for Titan? ›Sunbreaker Titan has been the strongest Titan subclass since the overhaul the Solar element received in Season of the Haunted. With certain setups, Sunbreaker was able to do absurd damage with the Throwing Hammer melee ability in the past.
What is the best Titan neutral exotic Destiny 2? ›- 8 Armamentarium.
- 7 Helm Of Saint-14.
- 6 Synthoceps.
- 5 Dunemarchers.
- 4 Heart Of Inmost Light.
- 3 No Backup Plans.
- 2 Cuirass Of The Falling Star.
- 1 Loreley Splendor Helm.
Like with Ikora Rey, Cayde-6 is known for his use of a specific element in the Guardian subclasses, his being the Gunslinger.
Who is the strongest god in Destiny 2? ›Xivu Arath is the youngest of the three siblings, but in terms of sheer physical strength, she is the strongest.
What is the least played subclass in Destiny 2? ›Hunters are generally the most popular, with titans either being the least popular or very close in population compared to warlocks.
Who is the strongest Titan God? ›Cronus: Titan Ruler of the Universe
Although he was the youngest son of Gaea and Uranus, Cronus was also the strongest of the Greek Titans.
8 He Is The Strongest Titan
Part of what makes Zavala a capable leader is that he is, arguably, the strongest Titan in existence... barring the player's character, of course. His raw strength is unparalleled and even without his Ghost, he's managed to survive injuries that would kill anyone else.
What is the weakest Titan? ›
Pieck's Cart Titan is arguably the weakest of the Nine, but it comes with several advantages. Unlike its eight brethren, the Cart Titan walks on all four legs, making it an excellent method of transport. Pieck often has large structures attached to her back, which carry both people and weapons.
Who is the strongest Titan ranked? ›Founding Titan is the first and the strongest Titan of all the nine. If the Founding Titan is someone from Royal Bloodline, then it will possess limitless power. Eren Yeager was not someone of royal blood that's why he asked for Zeke's help to use the Founding Titan to its fullest.
Which Titan is the most good? ›1. Founding Titan. The Founding Titan is the strongest Titan because it controls all the other giants. It also can produce them, such as the Wall Titans.
Which new Titan Exotic is better? ›Heart of Inmost Light — Destiny 2 Best Titan Exotics
It's an impressive piece of gear that improves every aspect of Titan performance in both PVE and PVP without requiring much thought, making it unquestionably the best all-around Titan Exotic in Destiny 2 as of this writing.
Armamentarium is a fantastic, versatile Titan exotic that can get the job done in both PvP and PvE. Its effect is simple: you gain an extra grenade charge to use however you see fit. This boon can certainly be used across subclasses, but it grants a particularly useful ability when paired with Strand.
Should I pick Titan Hunter or Warlock in Destiny 2? ›We recommend giving the Titan a go if you find that soloing content is too tough with the other two classes. It's a little more forgiving, as you can take more damage and keep pushing past checkpoints, even if you have to run through them.
Who is Cayde's daughter? ›Ana Bray is Cayde's daughter.
Who was ace to Cayde-6? ›Ace is Cayde-6's son who he mostly forgot about after becoming an Exo. Little is known about Ace other than that Cayde, unable to contact his family after he sold himself to Clovis Bray's Exo Program, kept a journal which he addressed to Ace. Cayde also named his prized hand cannon, the Ace of Spades, after him.
Did Cayde-6 have a girlfriend? ›Did Cayde-6 have a girlfriend? Cayde's Letter Fragments in Destiny 2 reveal that Cayde had a wife and a son whom he nicknamed "Ace", he threw his life away from gambling, and that his only means of escape was to sell himself to Clovis Bray's Exo program.
Who is strongest in the god? ›Trimurti is considered to be the most powerful god as he is a combination of Brahma [The Creator], Vishnu [The Preserver] & Shiva [The Destroyer].
Who is Destiny god? ›
Followers of Ancient Greek religion regarded not only the Moirai but also the gods, particularly Zeus, as responsible for deciding and carrying out destiny, respectively. Followers of Christianity consider God to be the only force with control over one's fate and that He has a plan for every person.
What is the most used subclass in Destiny 2? ›Hunters are Destiny 2's most popular class by a large margin, doubling the number of Guardians that play Warlock or Titan. With their majestic capes and well-designed subclasses, it's easy to see why. Hunters can offer a bit of everything, ranging from powerful Supers to team buffs.
What is the most picked class in Destiny 2? ›Hunter – the Hunter is arguably the most popular class in the game because it's generally the easiest to learn and use. The primary job of this class is to deal as much damage as possible without dying, which is made easier thanks to their handy Dodge class ability.
What is the hardest class in Destiny? ›Some subclasses, that are relatively hard to get into are: Stasis Warlock, Solar Warlock, Stasis Hunter, Solar Hunter and Stasis Titan. Some subclasses that are hard to master are: Stasis Warlock, Arc Warlock, Stasis Hunter, Arc Hunter, Void Hunter, Void Titan and Stasis Titan.
Who is the most evil Titan? ›After starting the Rumbling, Eren and his army of Titans exterminated 80% of the world's entire population. With this in mind, it seems fair to say that Eren is easily the most evil character in the entire AttackonTitan series.
Who defeated the 12 Titans? ›Zeus and his brothers and sisters finally defeated the Titans after 10 years of fierce battles (the Titanomachia). The Titans were then hurled down by Zeus and imprisoned in a cavity beneath Tartarus.
Can Levi beat Founding Titan? ›3 Levi Cannot Kill Any Of The Founding Titans, Including Eren. There is a theory that no Ackerman, even though they are more than capable of doing so, will be able to kill any of the Nine Founding Titans, Eren included.
Who is the weakest Teen Titan? ›Silkie is physically the weakest character on Teen Titans. He has a relatively peaceful nature, and, though he has some abilities, they pale in comparison to the others on the show.
Who will replace Zavala? ›Destiny fans mourn the loss of Lance Reddick
Bungie's reference to “performances yet to come” indicates that Commander Zavala will not be recast. Instead, Reddick will continue to portray the role posthumously, at least until the storylines to which he contributed voice acting have been concluded.
So, if you asked any Guardian throughout the Battle of Twilight Gap what weapon Zavala was using, they would answer "Thunderlord, obviously" — as he has been explicitly depicted wielding the exotic machine gun in the webcomic.
What is Zavala's ghost name? ›
Targe is the Ghost of Commander Zavala.
What are Titans good for Destiny 2? ›Destiny 2 Titan Class
They can provide both devastating power and solid defenses through their various abilities. Titans need to be on the frontline using their Barricade Class ability to provide decent cover, soak up damage, and battle the enemy up close with their especially potent Melee abilities.
Best Titan PvP build: Sentinel Overshield Overlord. This Titan build hones in on the Titan's secret weapon; the Overshield. It also enhances suppression effects and powers allies with Charged with Light. Casting Ward of Dawn with Bastion creates an Overshield for the player and their allies.
What is the best Titan stats Destiny 2? ›Stats: Resilience (increased damage reduction and faster barricade cooldown) and Strength are the two most important stats. Mods: Mods that help reduce the cooldown for the Shield Throw are best for this build. Melee Kickstart, Outreach, Hands-On, and Heavy Handed are some of the best.
What is the weak point of Titans? ›To defeat a Titan, their weak point - the nape is the target, behind the neck. Severing limbs such as arms or legs will make it easier to attack the nape.
Can Titans blink in Destiny 2? ›Blink and you'll miss it.
Titans and Hunters, however, have a couple of new tricks up their sleeves — including a revised and returning Arc 3.0 Hunter Blink. In Arc 3.0, Hunters are getting back the ability to Blink that they had back in the original Destiny.
The Drifter is very old. He was reawakened by the Traveler in a mysterious time of great suffering known as the Dark Age, long before Guardians like the player were revived. He isn't a Hunter, Titan, or Warlock. He's a Lightbearer — a soul revived by the Traveler — from a different time.
What is the most op class in Destiny 2? ›1. Warlock Dawnblade (Solar 3.0) A subclass primarily used for support, Dawnblade fills its lack of ad clear and boss damage with some of the most powerful buffs in the game. Radiant provides a whopping 25% increase to damage, and Restoration provides continuous health regeneration even through damage.
Who is the most powerful Hunter Destiny 2? ›Lady Efrideet is the only other remaining Iron Lord. By all accounts, she is likely the oldest and most powerful of the Hunters.
What is the strongest Titan build? ›Titan Solar Loreley Splendor Helm Build
Lovingly known as the 'bonk Titan', the Loreley Splendor Helm Solar Titan has exceptional survivability, using powerful aspects and the healing power of Sunspots, all tapping into Restoration and Cure keywords. This is truly one of the hardest to kill Guardians.
Who is the most famous Titan Destiny? ›
One of the most iconic and legendary of all titans, is of course, Saint-14, the exo veteran that lead a crusade against the first fallen House of Devils to threaten the City.
Does mobility matter on Titan? ›Mobility and the Dodge Ability
Hunters get an extra benefit from their Mobility stat that many newer players don't realize. Similar to how Recovery affects rift cooldown on Warlocks and Resilience affects barricade cooldown on Titans, the Mobility stat affects the cooldown of the Hunter class abilities.
Armamentarium is a fantastic, versatile Titan exotic that can get the job done in both PvP and PvE. Its effect is simple: you gain an extra grenade charge to use however you see fit. This boon can certainly be used across subclasses, but it grants a particularly useful ability when paired with Strand.
What is the best Titan void grenade? ›Vortex Grenades are the undisputed champ of Void Grenades in Destiny 2 PVE. They deal great damage and can clear out groups of enemies at a time. They're especially fantastic for Warlocks, but are usually the best choice for anyone running Void.