/** * IF not null, this plug has an energy cost. This contains the details of that cost. */ export interface DestinyDefinitionsItemsDestinyItemPlugDefinitionEnergyCost { /** * The Energy cost for inserting this plug. */ energyCost?: number; /** * The type of energy that this plug costs, as a reference to the DestinyEnergyTypeDefinition of the energy type. */ energyTypeHash?: number; /** * The type of energy that this plug costs, in enum form. */ energyType?: number; }