Talk:Draconic Resilience: Difference between revisions

From Baldur's Gate 3 Wiki
Latest comment: 13 March by Nattern
Jump to navigation Jump to search
(Reply)
Tags: Mobile edit Mobile web edit Reply Source
(Response to talk)
Line 12: Line 12:
:::Base AC = 13
:::Base AC = 13
:::Tell me if my understanding is wrong. [[User:RYANZKIE|RYANZKIE]] ([[User talk:RYANZKIE|talk]]) 10:24, 13 March 2024 (CET)
:::Tell me if my understanding is wrong. [[User:RYANZKIE|RYANZKIE]] ([[User talk:RYANZKIE|talk]]) 10:24, 13 March 2024 (CET)
::::Here is the code for Draconic Resilience and Unarmoured Defense (Barbarian):
::::{{code|ACOverrideFormula(13,true,Dexterity)}}<br>{{code|ACOverrideFormula(10,true,Dexterity,Constitution)}}<br>The first number is Base Armour Class, the second is if bonuses are allowed (like a shield, spells and enchantments. This is set to false for [[Barkskin]]), and after that any ability modifiers that should be added to the AC. As you can see they both have different formulas and therefore cannot stack.<br>-[[User:Nattern|Nattern]] ([[User talk:Nattern|talk]]) 11:01, 13 March 2024 (CET)

Revision as of 12:01, 13 March 2024

Does not work with Barb or Monk's AC boost.

  • Hi, thank you for notifying us. This is written on both the Unarmoured Defence pages and Mage Armour, so I'm not sure why it's not here. Nattern (talk) 08:03, 29 February 2024 (CET)Reply[reply]
Dragonic Resilience is the same as Mage Armour, they both set the base armor to 13 when not wearing an armor. However, Unarmoured Defence "adds" your Constitution Modifier to the base armor when not wearing an armor. This in my opinion should stack. RYANZKIE (talk) 05:47, 13 March 2024 (CET)Reply[reply]
That's not how it works, Unarmoured Defence doesn't "add AC". Even in tabletop these are different ways of gaining AC, each with their own formula. You can't mix these formulas, only one applies. The D&D rulebook says "Some spells and class features give you a different way to calculate your AC. If you have multiple features that give you different ways to calculate your AC, you choose which one to use." This was done specifically to avoid stacking, which is part of the whole "bounded accuracy" philosophy in 5e, where all numbers are deliberately kept smaller Sparkle (talk) 06:41, 13 March 2024 (CET)Reply[reply]
It is clear in its definition that it adds modifier to the AC.
Description
Your body is as resilient as any armour. While not wearing armour, you add your Constitution Modifier to your Armour Class. Wearing Heavy Armour impedes your Rage.
By formula this is simply
Base AC + Constitution Modifier
In the case of Dragonic Resilience, the formula as per definition is
Base AC = 13
Tell me if my understanding is wrong. RYANZKIE (talk) 10:24, 13 March 2024 (CET)Reply[reply]
Here is the code for Draconic Resilience and Unarmoured Defense (Barbarian):
ACOverrideFormula(13,true,Dexterity)
ACOverrideFormula(10,true,Dexterity,Constitution)
The first number is Base Armour Class, the second is if bonuses are allowed (like a shield, spells and enchantments. This is set to false for Barkskin), and after that any ability modifiers that should be added to the AC. As you can see they both have different formulas and therefore cannot stack.
-Nattern (talk) 11:01, 13 March 2024 (CET)Reply[reply]