equipment.Interface.SuitGrade - Elite-Dangerous-Almanac/Almanac-Core GitHub Wiki

@elite-dangerous-almanac/core / equipment / SuitGrade

Interface: SuitGrade

Defined in: src/equipment/suits.ts:71

The stats of one suit at one equipment grade.

Remarks

A suit defends in two layers, and each layer has its own four resistances. The four here are the armour's: they apply to the Suit.health pool, and the Damage Resistance modification moves them. The shield's four sit on Suit, because a grade leaves them alone.

Example

import { getSuitByFamily, getSuitGrade } from '@elite-dangerous-almanac/core/equipment/suits';

const suit = getSuitByFamily('tacticalsuit')!;
// The shield is weak against a laser; the armour behind it is strong.
suit.shieldThermalResistance; // -> -0.5
getSuitGrade(suit, 5)!.armourThermalResistance; // -> 0.8

Properties

armourExplosiveResistance

readonly armourExplosiveResistance: number

Defined in: src/equipment/suits.ts:87

Armour explosive damage resistance as a fraction.


armourKineticResistance

readonly armourKineticResistance: number

Defined in: src/equipment/suits.ts:81

Armour kinetic damage resistance as a fraction; negative values increase damage.


armourPlasmaResistance

readonly armourPlasmaResistance: number

Defined in: src/equipment/suits.ts:85

Armour plasma damage resistance as a fraction; negative values increase damage.


armourThermalResistance

readonly armourThermalResistance: number

Defined in: src/equipment/suits.ts:83

Armour thermal damage resistance as a fraction.


modificationSlots

readonly modificationSlots: number

Defined in: src/equipment/suits.ts:75

Permanent engineering-modification slots available, from 0 through 4.


shieldRegeneration

readonly shieldRegeneration: number

Defined in: src/equipment/suits.ts:79

Shield points regenerated per second.


shieldStrength

readonly shieldStrength: number

Defined in: src/equipment/suits.ts:77

Base shield strength in shield points.


symbol

readonly symbol: string

Defined in: src/equipment/suits.ts:73

Frontier item symbol for this exact suit and grade.

⚠️ **GitHub.com Fallback** ⚠️