Skip to content
Merged
Show file tree
Hide file tree
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
36 changes: 31 additions & 5 deletions dat-schema/3_27_Keepers_of_the_Flame.gql
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,25 @@ type BreachElement {
DuplicateBoss: Stats
}

type BrequelPassiveSubTrees {
Id: string @unique
_: ClientStrings
_: ClientStrings
Wombgift: BaseItemTypes
type BrequelFruitRewardTypes {
Id: string @unique
Name: string
Description: string
_: string
_: string
_: [_]
_: [_]
AchievementItem: AchievementItems
AchievementItemHardmode: AchievementItems
}

type BrequelFruitTypes {
BaseItemType: BaseItemTypes @unique
Reward: BrequelFruitRewardTypes
_: i32
_: i32
_: rid
_: rid
}

type BrequelGrafts {
Expand All @@ -25,3 +39,15 @@ type BrequelGrafts {
_: i32
SkillAnimation: string
}

type BrequelPassiveSubTrees {
Id: string @unique
_: ClientStrings
_: ClientStrings
Wombgift: BaseItemTypes
}

type BrequelTreeSlots {
PassiveSkill: PassiveSkills @unique
BrequelSubTree: BrequelPassiveSubTrees
}
74 changes: 47 additions & 27 deletions dat-schema/_Core.gql
Original file line number Diff line number Diff line change
Expand Up @@ -470,12 +470,6 @@ type AtlasMods {
AtlasModTiers: i32
}

type AtlasFavouredMapSlots {
_: i32
_: i32
Requirement: string
}

enum AtlasModTiers @indexing(first: 0) { _ }

type AtlasNode {
Expand All @@ -497,13 +491,12 @@ type AtlasNode {
Tier: i32
HASH16: i16
IsUniqueMap: bool
Region: i32
_: i32
_: [_]
_: bool
Region: AtlasRegions
Node_DDSFile: string @file(ext: ".dds")
IsNormalMap: bool
RequiresSpecificItem: bool
WatchstoneSlot: rid
_: rid
VoidstoneSlot: AtlasVoidstoneSlots
MapDeviceLayout: MapDeviceLayouts
QuestStates: [i32]
_: bool
_: rid
Expand All @@ -524,13 +517,13 @@ type AtlasNodeDefinition {
Area1: WorldAreas
_: i32
_: i32
_: bool
_: bool
Image: string @file(ext: ".dds")
_: bool
_: bool
_: rid
_: rid
NotOnAtlas: bool
IsUniqueMap: bool
Node_DDSFile: string @file(ext: ".dds")
IsNormalMap: bool
RequiresSpecificItem: bool
VoidstoneSlot: AtlasVoidstoneSlots
MapDeviceLayout: MapDeviceLayouts
QuestStates: [i32]
_: bool
_: rid
Expand Down Expand Up @@ -2636,6 +2629,22 @@ type MapDeviceRecipes @tags(list: ["item:recipe"]) {
_: bool
}

type MapDeviceLayouts {
Id: string @unique
Slots: i32
_: [i32]
Receptacle_DDSFile: string @file(ext: ".dds")
_: [f32]
_: [f32]
MapKey: MapKeys
_: i32
_: string
_: bool
_: i32
_: i32
_: [i32]
}

type MapDevices {
Id: string
MiscObject: MiscObjects
Expand Down Expand Up @@ -2762,6 +2771,7 @@ type MapSeries {
Purple_DDSFile: string @file(ext: ".dds")
Memory_DDSFile: string @file(ext: ".dds")
UberMemory_DDSFile: string @file(ext: ".dds")
Mirage_DDSFile: string @file(ext: ".dds")
}

type MapSeriesTiers {
Expand Down Expand Up @@ -5685,15 +5695,15 @@ type CraftingBenchSpecificOptionId {

# Added 3.21
type CurrencyUseEffects {
_: rid @unique
CurrencyItem: BaseItemTypes @unique
_: i32
BK2File: string @file(ext: ".bk2")
SoundFile: string @file(ext: ".ogg")
_: bool
BK2File2: string @file(ext: ".bk2")
_: bool
_: rid
Stat: Stats
_: f32
SoundEffect: SoundEffects
}

# Added 3.17
Expand Down Expand Up @@ -5999,19 +6009,29 @@ type MapStashSubstashGroup {
Description: string
}

type MemoryLineModifiers {
MemoryLineType: MemoryLineType
_: i32
Stats: [Stats]
StatValues: [i32]
_: [_]
_: [_]
}

type MemoryLineType {
Id: string
Id: string @unique
MemoryLine: AtlasMemoryLine
HASH16: i16
_: bool
_: bool
Stats: [Stats]
StatsValues: [i32]
StatValues: [i32]
_: i32
Suffix: string
_: i32
_: i32
_: rid
FinalAtlasNode: AtlasNode
_: i32
Tier: i32
CurrencyItem: BaseItemTypes
}

type MtxTypes {
Expand Down
Loading