Skip to content
Open
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
6 changes: 6 additions & 0 deletions dat-schema/3_27_Keepers_of_the_Flame.gql
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,9 @@ type BrequelGraftTypes {
SkillAnimation: string
Achievement: AchievementItems
}

type BrequelGraftGrantedSkillLevels {
ItemLevel: i32
SkillLevel: i32
RequiredLevel: i32
}
2 changes: 1 addition & 1 deletion dat-schema/poe2/Essences.gql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
type Essences {
BaseItemType: BaseItemTypes @unique
HASH32: u32
_: [i32]
_: [i32] @interval
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this align with how PoB treats interval data type?
Originally @interval was added for Min Max columns, while this is a single column with <= 2 element array.

_: [Mods]
_: [i32]
MonsterMod: Mods
Expand Down
6 changes: 6 additions & 0 deletions dat-schema/poe2/PassiveJewelRadii.gql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
type PassiveJewelRadii {
ID: string
RingOuterRadius: i32
RingInnerRadius: i32
Radius: i32
}