Skip to content
Merged

Misc #206

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
10 changes: 4 additions & 6 deletions dat-schema/3_27_Keepers_of_the_Flame.gql
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,13 @@ type BrequelPassiveSubTrees {
Id: string @unique
_: ClientStrings
_: ClientStrings
_: BaseItemTypes
Wombgift: BaseItemTypes
}

type BrequelGraftTypes {
BaseItemType: BaseItemTypes @unique
LeftArm: string
RightArm: string
type BrequelGrafts {
Id: string @unique
Arm: string
SkillGem: SkillGems
_: i32
SkillAnimation: string
Achievement: AchievementItems
}
21 changes: 18 additions & 3 deletions dat-schema/_Core.gql
Original file line number Diff line number Diff line change
Expand Up @@ -2444,8 +2444,7 @@ type ItemVisualIdentity {
_: bool
_: [rid]
_: string
"0: Standard, 1: Flask, 2: Divination Card, 3: Gem"
Composition: i32
Composition: ItemVisualCompositions
_: rid
_: rid
_: rid
Expand All @@ -2458,6 +2457,13 @@ type ItemVisualIdentity {
_: string
}

enum ItemVisualCompositions @indexing(first: 0) {
DEFAULT
FLASK
DIVCARD
GEM
}

type JobAssassinationSpawnerGroups {
_: rid
_: rid
Expand Down Expand Up @@ -2735,6 +2741,7 @@ type MapSeriesTiers {
SettlersTier: i32
SecretsTier: i32
KeepersTier: i32
MirageTier: i32
}

type MapStashSpecialTypeEntries {
Expand Down Expand Up @@ -5751,7 +5758,15 @@ type GemEffects {
GemTags: [GemTags]
Consumed_ModsKey: Mods
"Used by gem icon shader https://gist.github.com/zao/08878df57aba605e5fa1e6373f2dce02"
ItemColor: i32
ItemColor: GemStyles
}

enum GemStyles @indexing(first: 1) {
TRANSFIGURED_X
TRANSFIGURED_Y
TRARTHAN
EXCEPTIONAL
DEFAULT
}

# Added 3.20
Expand Down
9 changes: 7 additions & 2 deletions dat-schema/poe2/ItemVisualIdentity.gql
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ type ItemVisualIdentity {
_: string
_: string
_: string
"0: Standard, 1: Flask, 2: Divination Card, 3: Gem"
Composition: i32
Composition: ItemVisualCompositions
_: rid
_: rid
_: rid
Expand All @@ -88,4 +87,10 @@ type ItemVisualIdentity {
_: rid
_: rid
_: string
}

enum ItemVisualCompositions @indexing(first: 0) {
DEFAULT
FLASK
DIVCARD
}