Anvil
Loading...
Searching...
No Matches
Anvil.API.NwClass Class Referencesealed

A creature/character class definition. More...

Public Member Functions

byte GetRecommendedAbilityScore (Ability ability)
 Gets the ability score for the specified ability that is shown during character creation.
 
IReadOnlyList< byte > GetSavingThrowTable (SavingThrow savingThrow)
 Gets a list containing the saving throw progression granted by this class.
The list is 0-indexed, with level 1 starting at element 0.
 

Static Public Member Functions

static ? NwClass FromClassId (int classId)
 Resolves a NwClass from a class id.
 
static ? NwClass FromClassType (ClassType classType)
 Resolves a NwClass from a Anvil.API.ClassType.
 
static implicit operator NwClass? (ClassType classType)
 

Properties

IReadOnlyList< ClassAbilityGainListAbilityGainTable [get]
 Gets a list containing the ability score progression granted by this class (e.g. Dragon Disciple).
The list is 0-indexed, with level 1 starting at element 0.
 
int ArcaneSpellUsePerDayLevel [get]
 If positive, this specifies the number of levels in this class that together add one level to an arcane class when determining the spell slots based on class level.
 
IReadOnlyList< byte > AttackBonusTable [get]
 Gets a list containing the base attack bonus progression for this class.
The list is 0-indexed, with level 1 starting at element 0.
 
IReadOnlyList< byte > BonusFeatsTable [get]
 Gets a list containing the bonus feat progression for this class (e.g. Fighters).
The list is 0-indexed, with level 1 starting at element 0.
 
bool CanCastSpontaneously [get]
 Gets if this class can spontaneously cast certain domain spells (e.g. Cleric).
 
bool CanLearnFromScrolls [get]
 Gets if this class can learn spells from reading scrolls (e.g. Wizards)
 
float CasterLevelMultiplier [get]
 Gets the Caster Level multiplier for this class.
 
ClassType ClassType [get]
 Gets the associated Id for this class.
 
StrRef Description [get]
 Gets the description name of this class.
 
int DivineSpellUsePerDayLevel [get]
 If positive, this specifies the number of levels in this class that together add one level to a divine class when determining the spell slots based on class level.
 
IReadOnlyList< byte > EffectiveCRTable [get]
 Gets a list containing the CR progression for this class.
This value is used for purposes of encounter challenge rating calculations.
The list is 0-indexed, with level 1 starting at element 0.
 
byte EpicLevel [get]
 Gets the maximum amount of levels that can be taken into this class pre-epic (before level 21).
 
IReadOnlyList< ClassFeat > Feats [get]
 Gets a list of the feats associated with this class.
 
bool HasArcaneSpellFailure [get]
 Gets if this class is subject to the effects of arcane spell failure.
 
bool HasDomains [get]
 Gets if this class can choose divine domains as a part of their class (e.g. Clerics)
 
bool HasMemorizedSpells [get]
 Gets if this class gains spells by memorization (e.g. Wizards)
 
bool HasMulticlassPenalty [get]
 Gets if this class counts towards the muliclass penalty for experience.
 
bool HasSpecialization [get]
 Gets if this class can choose a spell specialization/school as a part of their class (e.g. Wizards)
 
byte HitDie [get]
 Gets what size of die is used to roll hit points on level-up. (4, 6, 8, 10, 12, etc.)
 
string? IconResRef [get]
 Gets the ResRef specifying the icon displayed in the game for this class.
 
byte Id [get]
 Gets the id of this class.
 
bool InvertRestrictions [get]
 Gets if the alignments specified in Restrictions and RestrictionTypes are the only alignments allowed to gain levels in this class (true), rather than being the alignments prohibited from gaining them (false).
 
bool IsArcaneCaster [get]
 Gets if this class is considered an arcane caster. False indicates that the caster is considered a divine caster.
 
bool IsPlayerClass [get]
 Gets if this class may be selected by a player.
 
bool IsSpellbookRestricted [get]
 Gets if this class is restricted to selecting spells from a spell book (e.g. Wizards)
 
bool IsSpellCaster [get]
 Gets if this class is a s.
 
byte MaxLevel [get]
 Gets the maximum amount of levels that can be taken into this class.
0 means there is no limit.
 
byte MinAssociateLevel [get]
 Gets the minimum level required to receive the associate for the class.
 
int MinCastingLevel [get]
 Gets the minimum level required before this class may cast spells. (e.g. Paladin/Ranger)
 
StrRef Name [get]
 Gets the name of this class as shown on the character sheet.
 
StrRef NameLower [get]
 Gets the name of this class, in lowercase.
 
StrRef NamePlural [get]
 Gets the name of this class, in plural form.
 
IReadOnlyList< sbyte > NaturalACGainTable [get]
 Gets a list containing the natural AC progression granted by this class (e.g. Pale Masters).
The list is 0-indexed, with level 1 starting at element 0.
 
uint PackageIndex [get]
 Gets the associated packages.2da row index for this class.
 
TwoDimArray< ClassPreReqTableEntry >? PreReqTable [get]
 Gets the 2da table defining the prerequisites for this class (making this class a prestige class).
 
Ability PrimaryAbility [get]
 Gets the primary ability score for this class.
Not used for spellcasting. See SpellCastingAbility.
 
ClassRestrictions Restrictions [get]
 Gets the alignment restrictions that must be met to take this class.
This acts as a black/whitelist depending on RestrictionTypes and InvertRestrictions.
 
ClassRestrictionTypes RestrictionTypes [get]
 Gets the type of restrictions that Restrictions applies to.
 
byte SkillPointBase [get]
 Gets the number of skill points gained per level from this class before modifiers.
 
IReadOnlyList< ClassSkill > Skills [get]
 Gets the list of skills available to this class.
 
Ability SpellCastingAbility [get]
 Gets the ability score used for spell casting - save DCs, extra spell slots.
 
IReadOnlyList< ClassSpellGainList > SpellGainTable [get]
 Gets a list containing the spell slot progression for this class.
The list is 0-indexed, with level 1 starting at element 0.
 
IReadOnlyList< ClassSpellGainList > SpellKnownTable [get]
 Gets a list containing the known spell progression for this class.
The list is 0-indexed, with level 1 starting at element 0.
 
string? SpellTableColumn [get]
 Gets the name of the column that this class references in spells.2da.
 

Detailed Description

A creature/character class definition.

Member Function Documentation

◆ FromClassId()

static ? NwClass Anvil.API.NwClass.FromClassId ( int classId)
inlinestatic

Resolves a NwClass from a class id.

Parameters
classIdThe id of the class to resolve.
Returns
The associated NwClass instance. Null if the class id is invalid.

◆ FromClassType()

static ? NwClass Anvil.API.NwClass.FromClassType ( ClassType classType)
inlinestatic

Resolves a NwClass from a Anvil.API.ClassType.

Parameters
classTypeThe class type to resolve.
Returns
The associated NwClass instance. Null if the class type is invalid.

◆ GetRecommendedAbilityScore()

byte Anvil.API.NwClass.GetRecommendedAbilityScore ( Ability ability)
inline

Gets the ability score for the specified ability that is shown during character creation.

Parameters
abilityThe ability score to query.
Returns
The ability score recommended during character creation.

◆ GetSavingThrowTable()

IReadOnlyList< byte > Anvil.API.NwClass.GetSavingThrowTable ( SavingThrow savingThrow)
inline

Gets a list containing the saving throw progression granted by this class.
The list is 0-indexed, with level 1 starting at element 0.

Parameters
savingThrowThe saving throw to query. SavingThrow.All is not supported.

byte reflexSaveLevel15 = nwClass.GetSavingThrowTable(SavingThrow.Reflex)[14];

Property Documentation

◆ AttackBonusTable

IReadOnlyList<byte> Anvil.API.NwClass.AttackBonusTable
get

Gets a list containing the base attack bonus progression for this class.
The list is 0-indexed, with level 1 starting at element 0.

byte babLevel15 = nwClass.AttackBonusTable[14];


The documentation for this class was generated from the following file: