Skip to content

Commit 975490f

Browse files
authored
Merge pull request #84 from the-hideout/add-task-message-id
add start, success, and fail message ids to task
2 parents 924fb09 + d4a304e commit 975490f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

schema.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,11 @@ type ItemPropertiesArmorAttachment {
300300
material: ArmorMaterial
301301
}
302302
303+
type ItemPropertiesBackpack {
304+
capacity: Int
305+
pouches: [ItemStorageGrid]
306+
}
307+
303308
type ItemPropertiesChestRig {
304309
class: Int
305310
durability: Int
@@ -313,12 +318,28 @@ type ItemPropertiesChestRig {
313318
pouches: [ItemStorageGrid]
314319
}
315320
321+
type ItemPropertiesContainer {
322+
capacity: Int
323+
#grids: [ItemStorageGrid]
324+
}
325+
316326
type ItemPropertiesFoodDrink {
317327
energy: Int
318328
hydration: Int
319329
units: Int
320330
}
321331
332+
type ItemPropertiesGlasses {
333+
class: Int
334+
durability: Int
335+
repairCost: Int
336+
blindnessProtection: Float
337+
#speedPenalty: Float
338+
#turnPenalty: Float
339+
#ergoPenalty: Int
340+
material: ArmorMaterial
341+
}
342+
322343
type ItemPropertiesGrenade {
323344
type: String
324345
fuse: Float
@@ -440,8 +461,11 @@ union ItemProperties =
440461
ItemPropertiesAmmo |
441462
ItemPropertiesArmor |
442463
ItemPropertiesArmorAttachment |
464+
ItemPropertiesBackpack |
443465
ItemPropertiesChestRig |
466+
ItemPropertiesContainer |
444467
ItemPropertiesFoodDrink |
468+
ItemPropertiesGlasses |
445469
ItemPropertiesGrenade |
446470
ItemPropertiesHelmet |
447471
ItemPropertiesKey |
@@ -484,6 +508,7 @@ type Map {
484508
raidDuration: Int
485509
players: String
486510
bosses: [BossSpawn]!
511+
nameId: String
487512
#svg: MapSvg
488513
}
489514
@@ -619,6 +644,9 @@ type Task {
619644
finishRewards: TaskRewards
620645
factionName: String
621646
neededKeys: [TaskKey]
647+
startMessageId: String
648+
successMessageId: String
649+
failMessageId: String
622650
}
623651
624652
type TaskKey {

0 commit comments

Comments
 (0)