diff --git a/dat-schema/_Core.gql b/dat-schema/_Core.gql index cf45773..4324d96 100644 --- a/dat-schema/_Core.gql +++ b/dat-schema/_Core.gql @@ -2317,11 +2317,11 @@ type ItemisedVisualEffect { } type ItemNoteCode { - BaseItem: BaseItemTypes + CurrencyItem: CurrencyItems Code: string - Order1: i32 - Show: bool - Order2: i32 + # One of these bools was previously called "Show", but unclear which one it is now + _: bool + _: bool } enum ItemSetNames @indexing(first: 0) { _ } diff --git a/dat-schema/poe2/ItemNoteCode.gql b/dat-schema/poe2/ItemNoteCode.gql new file mode 100644 index 0000000..620dc66 --- /dev/null +++ b/dat-schema/poe2/ItemNoteCode.gql @@ -0,0 +1,4 @@ +type ItemNoteCode { + CurrencyItem: CurrencyItems + Code: string +} diff --git a/dat-schema/poe2/NPCMaster.gql b/dat-schema/poe2/NPCMaster.gql new file mode 100644 index 0000000..067fe72 --- /dev/null +++ b/dat-schema/poe2/NPCMaster.gql @@ -0,0 +1,19 @@ +type NPCMaster { + Id: string + _: bool + _: bool + Signature_ModsKey: Mods + _: bool + SpawnWeight_TagsKeys: [Tags] + SpawnWeight_Values: [i32] + _: rid + _: i32 + AreaDescription: string + _: rid + _: i32 + _: Stats + HasAreaMissions: bool + _: [rid] + _: [rid] + _: rid +} diff --git a/dat-schema/poe2/SanctumSelectionDisplaysOverride.gql b/dat-schema/poe2/SanctumSelectionDisplaysOverride.gql new file mode 100644 index 0000000..455781b --- /dev/null +++ b/dat-schema/poe2/SanctumSelectionDisplaysOverride.gql @@ -0,0 +1,7 @@ +type SanctumSelectionDisplayOverride { + Id: string + Reward: string + Icon: string + Downside: string + Item: BaseItemTypes +}