Skip to content

Commit 5d0a9da

Browse files
authored
Misc (#206)
- Updated BrequelGraftTypes for 3.28 - Created various enums that weren't set up - Defined column in MapSeriesTiers (Mirage series)
1 parent d8292b9 commit 5d0a9da

3 files changed

Lines changed: 29 additions & 11 deletions

File tree

dat-schema/3_27_Keepers_of_the_Flame.gql

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,13 @@ type BrequelPassiveSubTrees {
1515
Id: string @unique
1616
_: ClientStrings
1717
_: ClientStrings
18-
_: BaseItemTypes
18+
Wombgift: BaseItemTypes
1919
}
2020

21-
type BrequelGraftTypes {
22-
BaseItemType: BaseItemTypes @unique
23-
LeftArm: string
24-
RightArm: string
21+
type BrequelGrafts {
22+
Id: string @unique
23+
Arm: string
2524
SkillGem: SkillGems
2625
_: i32
2726
SkillAnimation: string
28-
Achievement: AchievementItems
2927
}

dat-schema/_Core.gql

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2444,8 +2444,7 @@ type ItemVisualIdentity {
24442444
_: bool
24452445
_: [rid]
24462446
_: string
2447-
"0: Standard, 1: Flask, 2: Divination Card, 3: Gem"
2448-
Composition: i32
2447+
Composition: ItemVisualCompositions
24492448
_: rid
24502449
_: rid
24512450
_: rid
@@ -2458,6 +2457,13 @@ type ItemVisualIdentity {
24582457
_: string
24592458
}
24602459

2460+
enum ItemVisualCompositions @indexing(first: 0) {
2461+
DEFAULT
2462+
FLASK
2463+
DIVCARD
2464+
GEM
2465+
}
2466+
24612467
type JobAssassinationSpawnerGroups {
24622468
_: rid
24632469
_: rid
@@ -2735,6 +2741,7 @@ type MapSeriesTiers {
27352741
SettlersTier: i32
27362742
SecretsTier: i32
27372743
KeepersTier: i32
2744+
MirageTier: i32
27382745
}
27392746

27402747
type MapStashSpecialTypeEntries {
@@ -5751,7 +5758,15 @@ type GemEffects {
57515758
GemTags: [GemTags]
57525759
Consumed_ModsKey: Mods
57535760
"Used by gem icon shader https://gist.github.com/zao/08878df57aba605e5fa1e6373f2dce02"
5754-
ItemColor: i32
5761+
ItemColor: GemStyles
5762+
}
5763+
5764+
enum GemStyles @indexing(first: 1) {
5765+
TRANSFIGURED_X
5766+
TRANSFIGURED_Y
5767+
TRARTHAN
5768+
EXCEPTIONAL
5769+
DEFAULT
57555770
}
57565771

57575772
# Added 3.20

dat-schema/poe2/ItemVisualIdentity.gql

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ type ItemVisualIdentity {
6363
_: string
6464
_: string
6565
_: string
66-
"0: Standard, 1: Flask, 2: Divination Card, 3: Gem"
67-
Composition: i32
66+
Composition: ItemVisualCompositions
6867
_: rid
6968
_: rid
7069
_: rid
@@ -88,4 +87,10 @@ type ItemVisualIdentity {
8887
_: rid
8988
_: rid
9089
_: string
90+
}
91+
92+
enum ItemVisualCompositions @indexing(first: 0) {
93+
DEFAULT
94+
FLASK
95+
DIVCARD
9196
}

0 commit comments

Comments
 (0)