0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00

Updated JSON data

This commit is contained in:
Dev 2024-06-03 15:59:38 +01:00
parent f672ad27bf
commit 2f21178dc9
4 changed files with 479550 additions and 479481 deletions

View File

@ -23420,6 +23420,14 @@
} }
}, },
"DiscardLimitsEnabled": true, "DiscardLimitsEnabled": true,
"EnvironmentSettings": {
"EnvironmentUIData": {
"TheUnheardEditionEnvironmentUiType": [
"unheard_edition",
"eod_tue_edition"
]
}
},
"EventSettings": { "EventSettings": {
"EventActive": false, "EventActive": false,
"EventTime": 390, "EventTime": 390,
@ -27132,71 +27140,85 @@
"maxActiveOfferCount": [ "maxActiveOfferCount": [
{ {
"count": 1, "count": 1,
"countForSpecialEditions": 1,
"from": -10000, "from": -10000,
"to": -10 "to": -10
}, },
{ {
"count": 3, "count": 2,
"countForSpecialEditions": 3,
"from": -10, "from": -10,
"to": -2 "to": -2
}, },
{ {
"count": 4, "count": 3,
"countForSpecialEditions": 4,
"from": -2, "from": -2,
"to": 0.2 "to": 0.2
}, },
{ {
"count": 5, "count": 4,
"countForSpecialEditions": 5,
"from": 0.2, "from": 0.2,
"to": 7 "to": 7
}, },
{ {
"count": 6, "count": 5,
"countForSpecialEditions": 6,
"from": 7, "from": 7,
"to": 30 "to": 30
}, },
{ {
"count": 7, "count": 6,
"countForSpecialEditions": 7,
"from": 30, "from": 30,
"to": 60 "to": 60
}, },
{ {
"count": 8, "count": 7,
"countForSpecialEditions": 8,
"from": 60, "from": 60,
"to": 100 "to": 100
}, },
{ {
"count": 8, "count": 7,
"countForSpecialEditions": 8,
"from": 100, "from": 100,
"to": 150 "to": 150
}, },
{ {
"count": 9, "count": 8,
"countForSpecialEditions": 9,
"from": 150, "from": 150,
"to": 200 "to": 200
}, },
{ {
"count": 10, "count": 9,
"countForSpecialEditions": 10,
"from": 200, "from": 200,
"to": 250 "to": 250
}, },
{ {
"count": 11, "count": 10,
"countForSpecialEditions": 11,
"from": 250, "from": 250,
"to": 500 "to": 500
}, },
{ {
"count": 12, "count": 11,
"countForSpecialEditions": 12,
"from": 500, "from": 500,
"to": 750 "to": 750
}, },
{ {
"count": 13, "count": 12,
"countForSpecialEditions": 13,
"from": 750, "from": 750,
"to": 1000 "to": 1000
}, },
{ {
"count": 16, "count": 15,
"countForSpecialEditions": 16,
"from": 1000, "from": 1000,
"to": 10000 "to": 10000
} }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -81,6 +81,7 @@ export interface IConfig
SkillPointsBeforeFatigue: number SkillPointsBeforeFatigue: number
SkillFatigueReset: number SkillFatigueReset: number
DiscardLimitsEnabled: boolean DiscardLimitsEnabled: boolean
EnvironmentSettings: IEnvironmentSetting2
EventSettings: IEventSettings EventSettings: IEventSettings
FavoriteItemsSettings: IFavoriteItemsSettings FavoriteItemsSettings: IFavoriteItemsSettings
VaultingSettings: IVaultingSettings VaultingSettings: IVaultingSettings
@ -108,6 +109,16 @@ export interface IConfig
RepairSettings: IRepairSettings RepairSettings: IRepairSettings
} }
export interface IEnvironmentSetting2
{
EnvironmentUIData: IEnvironmentUIData
}
export interface IEnvironmentUIData
{
TheUnheardEditionEnvironmentUiType: string[]
}
export interface IBodyPartColliderSettings export interface IBodyPartColliderSettings
{ {
BackHead: IBodyPartColliderPart BackHead: IBodyPartColliderPart
@ -969,6 +980,7 @@ export interface IMaxActiveOfferCount
from: number from: number
to: number to: number
count: number count: number
countForSpecialEditions: number
} }
export interface IMaxSumForRarity export interface IMaxSumForRarity