Skip to content
Merged
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
16 changes: 8 additions & 8 deletions dat-schema/3_12_Heist.gql
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ type HeistConstants {
type HeistContracts {
BaseItemTypesKey: BaseItemTypes @unique
HeistAreasKey: HeistAreas
_: i32
AreaLevel: i32
}

type HeistDoodadNPCs {
Expand Down Expand Up @@ -239,7 +239,7 @@ type HeistNPCStats {
}

type HeistNPCs {
NPCsKey: NPCs
NPCsKey: NPCs @unique
MonsterVarietiesKey: MonsterVarieties
SkillLevel_HeistJobsKeys: [HeistJobs]
PortraitFile: string
Expand All @@ -263,13 +263,13 @@ type HeistNPCs {

type HeistObjectives {
BaseItemType: BaseItemTypes @unique
Scaling: f32
Name: string @localized
ValueMulti: f32 # Multiplier to the value in markers
Client: string @localized
}

type HeistObjectiveValueDescriptions {
Tier: i32
MarkersMultiply: f32
Tier: i32 @unique
ValueMultiLessThan: f32 # Value multiplier must not exceed this number for the description to apply
Description: string
}

Expand All @@ -284,13 +284,13 @@ type HeistPatrolPacks {
}

type HeistQuestContracts {
HeistContractsKey: HeistContracts
HeistContractsKey: HeistContracts @unique
HeistObjectivesKey: HeistObjectives
HeistNPCsKey: [HeistNPCs]
HeistJobsKey: HeistJobs
_: i32
_: i32
_: i32
JobLevel: i32
_: bool
HeistRoomsKey1: HeistRooms
WorldAreasKey: WorldAreas
Expand Down