Skip to content

DeepsightMomentDefinition

Chiri Vulpes edited this page Nov 4, 2023 · 5 revisions

latest git commit // live on deepsight.gg
A moment in time for Destiny 2 — either an expansion, a season, an additional DLC, or an event. All are guaranteed names, descriptions, and icons. These are mostly just definitions for iconWatermarks.

declare interface DeepsightMomentDefinition {
	hash: number;
	id: string;
	displayProperties: DeepsightDisplayPropertiesDefinition;
	iconWatermark?: string;
	iconWatermarkShelved?: string;
	/**
	 * For events, the event card hash. If there isn't an event card, `true`
	 */
	event?: true | number; // true if the event doesn't have an event card
	expansion?: true;
	season?: number;
	year?: number;
	seasonHash?: number;
	/**
	 * Items that should be associated with this moment, but aren't according to the Destiny manifest (by icon watermark).
	 * You should render these items with this moment's `iconWatermark`.
	 */
	itemHashes?: number[];
}

Types for Typescript developers

Interfaces
Interfaces for all the manifests listed below.

Enums
Exhaustive enums for all nameable definitions in the Destiny manifest.

Manifests

DeepsightPlugCategorisation
Consistent, complete categorisation of the game's plugs, broken into Categories and Types.

DeepsightSocketCategorisation
Consistent categorisation of items' sockets based on the plug categorisation.

DeepsightMomentDefinition
A moment in time for Destiny 2 — an expansion, a season, an additional DLC, or an event.

DeepsightDropTableDefinition
Drop tables by activity, down to the encounter, including challenge & drop rotations.

DeepsightTierTypeDefinition
A better version of the Bungie API's DestinyItemTierTypeDefinition.

DeepsightCollectionsDefinition
Weapons & armour from each "moment", deduped and sorted into their respective buckets.

DeepsightAdeptDefinition Adept weapons & links to their base versions.

DeepsightSocketExtendedDefinition Extended/missing information from the Bungie API manifest for item sockets.

DeepsightEmblemDefinition Emblem items & their display info & auto-generated background colours.

DeepsightStats Miscellaneous global data such as the current power floor.

DeepsightWallpaperDefinition
A list of wallpapers & screenshots for each moment.

DeepsightVendorDefinition
Details for vendors with rotating stock.

Clone this wiki locally