Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 41 additions & 14 deletions dat-schema/_Core.gql
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ type AtlasFavouredMapSlots {
enum AtlasModTiers @indexing(first: 0) { _ }

type AtlasNode {
Id: string
Id: string @unique
Area1: WorldAreas
_: bool
FlavourText: FlavourText
Expand All @@ -494,14 +494,14 @@ type AtlasNode {
NotOnAtlas: bool
DivCards: [BaseItemTypes]
DivCardsHardmode: [BaseItemTypes]
_: i32
Tier: i32
HASH16: i16
_: bool
_: i32
IsUniqueMap: bool
Region: i32
_: i32
_: [_]
_: bool
_: bool
RequiresSpecificItem: bool
WatchstoneSlot: rid
_: rid
QuestStates: [i32]
Expand Down Expand Up @@ -536,7 +536,7 @@ type AtlasNodeDefinition {
_: rid
Area2: WorldAreas
_: bool
_: rid
Header: MapNodeHeader
}

type AtlasPositions {
Expand All @@ -546,6 +546,28 @@ type AtlasPositions {
Y: f32
}

type AtlasRegions {
Id: string @unique
MemoryVault: WorldAreas
_: [_]
_: [_]
}

type AtlasVoidstoneSlots {
Id: string @unique
SlotNumber: i32
Voidstone: BaseItemTypes
_: i32
_: string
QuestFlag: QuestFlags
_: rid
_: string
_: string
_: string
_: rid
_: rid
}

enum Attributes @indexing(first: 1) {
STRENGTH
DEXTERITY
Expand Down Expand Up @@ -2661,6 +2683,19 @@ type MapInhabitants {
MonsterPacksKeys: [MonsterPacks]
}

type MapKeys {
BaseItemType: BaseItemTypes @unique
MapTier: i32
KeyTier: i32
IsSpecial: bool
}

type MapNodeHeader {
Id: string @unique
_: string
_: [i32]
}

type MapPins {
Id: string @unique
"X starts at left side of image, can be negative"
Expand Down Expand Up @@ -2796,14 +2831,6 @@ type MapTiers {
Level2: i32
}

type MapKeys {
BaseItemType: BaseItemTypes @unique
MapTier: i32
KeyTier: i32
IsSpecial: bool
}


type Melee {
ActiveSkill: ActiveSkills
_: i32
Expand Down
Loading