Stub out new map

This commit is contained in:
Chomp
2025-03-28 15:04:30 +00:00
parent 831d7e3334
commit afc6c695e9
9 changed files with 1413 additions and 3 deletions
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,5 @@
{
"staticWeapons": [],
"staticContainers": [],
"staticForced": []
}
@@ -0,0 +1,4 @@
{
"containersGroups": {},
"containers": {}
}
@@ -285,6 +285,13 @@ public record LocationBase
set;
}
[JsonPropertyName("EventTrapsData")]
public EventTrapsData? EventTrapsData
{
get;
set;
}
[JsonPropertyName("DisabledScavExits")]
public string? DisabledScavExits
{
@@ -572,6 +579,13 @@ public record LocationBase
set;
}
[JsonPropertyName("NoGroupSpawn")]
public bool? NoGroupSpawn
{
get;
set;
}
[JsonPropertyName("SpawnPointParams")]
public List<SpawnPointParam>? SpawnPointParams
{
@@ -681,6 +695,13 @@ public record LocationBase
set;
}
[JsonPropertyName("SpawnSafeDistanceMeters")]
public double? SpawnSafeDistanceMeters
{
get;
set;
}
[JsonPropertyName("exits")]
public List<Exit>? Exits
{
@@ -780,6 +801,33 @@ public record LocationBase
}
}
public record EventTrapsData
{
public double MaxBarbedWires
{
get;
set;
}
public double MaxTrapDoors
{
get;
set;
}
public double MinBarbedWires
{
get;
set;
}
public double MinTrapDoors
{
get;
set;
}
}
public record Transit
{
[JsonPropertyName("activateAfterSec")]
@@ -2020,7 +2068,7 @@ public record Khorovod
public record Halloween2024
{
[JsonPropertyName("CrowdAttackBlockRadius")]
public int? CrowdAttackBlockRadius
public double? CrowdAttackBlockRadius
{
get;
set;
@@ -2034,7 +2082,7 @@ public record Halloween2024
}
[JsonPropertyName("CrowdCooldownPerPlayerSec")]
public int? CrowdCooldownPerPlayerSec
public double? CrowdCooldownPerPlayerSec
{
get;
set;
@@ -2090,7 +2138,7 @@ public record Halloween2024
}
[JsonPropertyName("ZombieCallPeriodSec")]
public int? ZombieCallPeriodSec
public double? ZombieCallPeriodSec
{
get;
set;
@@ -13,5 +13,6 @@ public enum ELocationName
laboratory,
RezervBase,
TarkovStreets,
Labyrinth,
any
}
@@ -24,6 +24,7 @@ public record Locations
{ "shoreline", "Shoreline" },
{ "suburbs", "Suburbs" },
{ "tarkovstreets", "TarkovStreets" },
{ "labyrinth", "Labyrinth" },
{ "terminal", "Terminal" },
{ "town", "Town" },
{ "woods", "Woods" },
@@ -47,6 +48,7 @@ public record Locations
{ "Terminal", "Terminal" },
{ "Town", "Town" },
{ "Woods", "Woods" },
{ "Labyrinth", "Labyrinth" },
{ "Sandbox", "Sandbox" },
{ "SandboxHigh", "SandboxHigh" }
}.ToFrozenDictionary();
@@ -144,6 +146,13 @@ public record Locations
set;
}
[JsonPropertyName("labyrinth")]
public Eft.Common.Location? Labyrinth
{
get;
set;
}
[JsonPropertyName("terminal")]
public Eft.Common.Location? Terminal
{