@bf6mods/sdk 1.0.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -14107,6 +14107,1538 @@ declare global {
14107
14107
  }
14108
14108
 
14109
14109
  }
14110
+ /**
14111
+ * Determines the Man-Down behavior when a soldier is downed.
14112
+ */
14113
+ declare enum ManDownExperienceType {
14114
+ Crawl = 0,
14115
+ Downed = 1,
14116
+ InstantDeath = 2
14117
+ }
14118
+ /**
14119
+ * Controls which type of AI to spawn. PvP AI will automatically spawn and can be replaced by human players. PvE AI is a fixed number that cannot be replaced, for Solo or Co-op experiences.
14120
+ */
14121
+ declare enum AiSpawnType {
14122
+ NoBots = 0,
14123
+ Backfill = 2,
14124
+ Static = 1
14125
+ }
14126
+ /**
14127
+ * Controls the rules for Squad Spawning, for squad members and squad leaders.
14128
+ */
14129
+ declare enum SquadSpawnType {
14130
+ All = 0,
14131
+ SquadmatesOnLeader_LeaderNone = 1,
14132
+ SquadmatesOnLeader_LeaderAll = 2,
14133
+ Disabled = 2
14134
+ }
14135
+ /**
14136
+ * Controls what type of scoreboard layout to use.
14137
+ */
14138
+ declare enum ScoreboardType {
14139
+ NotSet = 0,
14140
+ DefaultFAA = 1,
14141
+ Off = 2,
14142
+ CustomTwoTeams = 3,
14143
+ CustomFFA = 4
14144
+ }
14145
+ /**
14146
+ * Determines the behavior of the Ping command.
14147
+ */
14148
+ declare enum PingBehavior {
14149
+ PingTargets = 0,
14150
+ Disabled = 1
14151
+ }
14152
+ declare enum ModBuilderGameMode {
14153
+ Custom = 2
14154
+ }
14155
+ /**
14156
+ * Sets the faction for each team.
14157
+ */
14158
+ declare enum FactionID {
14159
+ Pax = -1865993703,
14160
+ MapDefault = 0,
14161
+ NATO = 607944106
14162
+ }
14163
+ /**
14164
+ * Represents a value that can either apply globally or per team.
14165
+ * - Global: a single scalar (e.g., `true`, `5`, `1.2`)
14166
+ * - Per team: an array of `[teamIndex, value]` tuples
14167
+ */
14168
+ type PerTeam<T> = T | [number, T][];
14169
+ /**
14170
+ * Describes all configurable mutators for the game.
14171
+ */
14172
+ type Mutators = {
14173
+ /**
14174
+ * Whether AI is allowed to go prone per team or globally.
14175
+ * If global: `true | false`
14176
+ * If per team: `[[teamIndex, isProneAllowed], ...]`
14177
+ */
14178
+ AI_ProneAllowed_PerTeam: PerTeam<boolean>;
14179
+ /**
14180
+ * Maximum number of players allowed per team or globally.
14181
+ * If global: `number`
14182
+ * If per team: `[[teamIndex, maxPlayers], ...]`
14183
+ */
14184
+ MaxPlayerCount_PerTeam: PerTeam<number>;
14185
+ /**
14186
+ * Maximum number of AI allowed per team or globally.
14187
+ * If global: `number`
14188
+ * If per team: `[[teamIndex, maxAI], ...]`
14189
+ */
14190
+ AiMaxCount_PerTeam: PerTeam<number>;
14191
+ /**
14192
+ * Determines the global AI spawn behavior.
14193
+ * Possible values depend on the internal AI spawn type enumeration.
14194
+ * If global: `SpawnType`
14195
+ * If per team: `[[teamIndex, SpawnType], ...]`
14196
+ */
14197
+ AiSpawnType: AiSpawnType;
14198
+ /**
14199
+ * Multiplies damage taken from falling. Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
14200
+ * If global: `number`
14201
+ * If per team: `[[teamIndex, multiplier], ...]`
14202
+ */
14203
+ FallDamageHeightMultiplier_PerTeam: PerTeam<number>;
14204
+ /**
14205
+ * Defines the "Man Down" experience type per team or globally.
14206
+ * If global: `ManDownExperienceType`
14207
+ * If per team: `[[teamIndex, ManDownExperienceType], ...]`
14208
+ */
14209
+ ManDownExperienceType_PerTeam: PerTeam<ManDownExperienceType>;
14210
+ /**
14211
+ * Whether sprint-strafing is allowed per team or globally.
14212
+ * If global: `true | false`
14213
+ * If per team: `[[teamIndex, isAllowed], ...]`
14214
+ */
14215
+ SprintStrafeAllowed_PerTeam: PerTeam<boolean>;
14216
+ /**
14217
+ * The total number of teams supported in this game mode.
14218
+ */
14219
+ MaxTeamCount: number;
14220
+ /**
14221
+ * Whether passengers are allowed in vehicles.
14222
+ */
14223
+ Vehicle_AllowPassengers: boolean;
14224
+ /**
14225
+ * Whether AI are allowed to occupy passenger seats in vehicles.
14226
+ */
14227
+ AI_Vehicle_AllowAiInPassengerSeats: boolean;
14228
+ /**
14229
+ * Whether friendly identification (friend/foe visibility)
14230
+ * is allowed per team or globally.
14231
+ * If global: `true | false`
14232
+ * If per team: `[[teamIndex, isAllowed], ...]`
14233
+ */
14234
+ FriendlyIdentificationAllowed_PerTeam: PerTeam<boolean>;
14235
+ /**
14236
+ * Whether squad revive is allowed per team or globally.
14237
+ * If global: `true | false`
14238
+ * If per team: `[[teamIndex, isAllowed], ...]`
14239
+ */
14240
+ SquadReviveAllowed_PerTeam: PerTeam<boolean>;
14241
+ /**
14242
+ * Whether aim assist snap zoom is enabled globally.
14243
+ */
14244
+ AimAssistSnapZoomEnabled: boolean;
14245
+ /**
14246
+ * Whether prone is allowed per team or globally.
14247
+ * If global: `true | false`
14248
+ * If per team: `[[teamIndex, isAllowed], ...]`
14249
+ */
14250
+ ProneAllowed_PerTeam: PerTeam<boolean>;
14251
+ /**
14252
+ * Whether vehicle health regeneration is allowed per team or globally.
14253
+ * If global: `true | false`
14254
+ * If per team: `[[teamIndex, isAllowed], ...]`
14255
+ */
14256
+ VehicleHealthRegenAllowed_PerTeam: PerTeam<boolean>;
14257
+ /**
14258
+ * Whether infinite weapon magazines are enabled per team or globally.
14259
+ * If global: `true | false`
14260
+ * If per team: `[[teamIndex, isEnabled], ...]`
14261
+ */
14262
+ InfiniteWeaponMagazines_PerTeam: PerTeam<boolean>;
14263
+ /**
14264
+ * Whether sprinting is allowed per team or globally.
14265
+ * If global: `true | false`
14266
+ * If per team: `[[teamIndex, isAllowed], ...]`
14267
+ */
14268
+ SprintAllowed_PerTeam: PerTeam<boolean>;
14269
+ /**
14270
+ * Whether soldier health regeneration is allowed per team or globally.
14271
+ * If global: `true | false`
14272
+ * If per team: `[[teamIndex, isAllowed], ...]`
14273
+ */
14274
+ SoldierHealthRegenAllowed_PerTeam: PerTeam<boolean>;
14275
+ /**
14276
+ * Whether stationary emplacements (e.g. turrets) are allowed globally.
14277
+ */
14278
+ StationaryEmplacementsAllowed: boolean;
14279
+ /**
14280
+ * Whether sliding is allowed per team or globally.
14281
+ * If global: `true | false`
14282
+ * If per team: `[[teamIndex, isAllowed], ...]`
14283
+ */
14284
+ SlideAllowed_PerTeam: PerTeam<boolean>;
14285
+ /**
14286
+ * Whether the compass is allowed per team or globally.
14287
+ * If global: `true | false`
14288
+ * If per team: `[[teamIndex, isAllowed], ...]`
14289
+ */
14290
+ CompassAllowed_PerTeam: PerTeam<boolean>;
14291
+ /**
14292
+ * Whether the minimap is allowed per team or globally.
14293
+ * If global: `true | false`
14294
+ * If per team: `[[teamIndex, isAllowed], ...]`
14295
+ */
14296
+ MinimapAllowed_PerTeam: PerTeam<boolean>;
14297
+ /**
14298
+ * Defines ping behavior per team or globally.
14299
+ * Likely corresponds to an internal ping mode enumeration.
14300
+ * If global: `PingBehavior`
14301
+ * If per team: `[[teamIndex, PingBehavior], ...]`
14302
+ */
14303
+ PingBehavior_PerTeam: PerTeam<PingBehavior>;
14304
+ /**
14305
+ * Whether the HUD (Heads-Up Display) is allowed per team or globally.
14306
+ * If global: `true | false`
14307
+ * If per team: `[[teamIndex, isAllowed], ...]`
14308
+ */
14309
+ HUDAllowed_PerTeam: PerTeam<boolean>;
14310
+ /**
14311
+ * Multiplies the soldier's maximum health.
14312
+ * Values lower than 1.0 reduce health, while values greater than 1.0 increase health.
14313
+ * If global: `number`
14314
+ * If per team: `[[teamIndex, multiplier], ...]`
14315
+ */
14316
+ SoldierMaxHealthMultiplier_PerTeam: PerTeam<number>;
14317
+ /**
14318
+ * Multiplies the soldier respawn delay time.
14319
+ * Values lower than 1.0 shorten respawn time, while values greater than 1.0 increase it.
14320
+ * If global: `number`
14321
+ * If per team: `[[teamIndex, multiplier], ...]`
14322
+ */
14323
+ SoldierRespawnDelayMultiplier_PerTeam: PerTeam<number>;
14324
+ /**
14325
+ * Multiplies the maximum vehicle health.
14326
+ * Values lower than 1.0 reduce health, while values greater than 1.0 increase health.
14327
+ * If global: `number`
14328
+ * If per team: `[[teamIndex, multiplier], ...]`
14329
+ */
14330
+ VehicleMaxHealthMultiplier_PerTeam: PerTeam<number>;
14331
+ /**
14332
+ * Multiplies the speed of all projectiles globally.
14333
+ * Values lower than 1.0 slow down projectiles, while values greater than 1.0 speed them up.
14334
+ */
14335
+ ProjectileSpeedMultiplier: number;
14336
+ /**
14337
+ * Multiplies bodyshot damage per team or globally.
14338
+ * Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
14339
+ * If global: `number`
14340
+ * If per team: `[[teamIndex, multiplier], ...]`
14341
+ */
14342
+ BodyshotMultiplier_PerTeam: PerTeam<number>;
14343
+ /**
14344
+ * Multiplies headshot damage per team or globally.
14345
+ * Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
14346
+ * If global: `number`
14347
+ * If per team: `[[teamIndex, multiplier], ...]`
14348
+ */
14349
+ HeadshotMultiplier_PerTeam: PerTeam<number>;
14350
+ /**
14351
+ * Multiplies damage dealt to vehicles per team or globally.
14352
+ * Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
14353
+ * If global: `number`
14354
+ * If per team: `[[teamIndex, multiplier], ...]`
14355
+ */
14356
+ VehicleDamageMultiplier_PerTeam: PerTeam<number>;
14357
+ /**
14358
+ * Multiplies the rate at which vehicles regenerate health per team or globally.
14359
+ * Values lower than 1.0 slow regeneration, while values greater than 1.0 speed it up.
14360
+ * If global: `number`
14361
+ * If per team: `[[teamIndex, multiplier], ...]`
14362
+ */
14363
+ VehicleRegenRateMultiplier_PerTeam: PerTeam<number>;
14364
+ /**
14365
+ * Multiplies the soldier health regeneration rate per team or globally.
14366
+ * Values lower than 1.0 slow regeneration, while values greater than 1.0 speed it up.
14367
+ * If global: `number`
14368
+ * If per team: `[[teamIndex, multiplier], ...]`
14369
+ */
14370
+ SoldierRegenRateMultiplier_PerTeam: PerTeam<number>;
14371
+ /**
14372
+ * Defines the scoreboard type globally.
14373
+ * Corresponds to an internal scoreboard display mode enumeration.
14374
+ */
14375
+ ScoreboardType: ScoreboardType;
14376
+ /**
14377
+ * Defines the "Man Down" experience type for AI per team or globally.
14378
+ * If global: `ManDownExperienceType`
14379
+ * If per team: `[[teamIndex, ManDownExperienceType], ...]`
14380
+ */
14381
+ AI_ManDownExperienceType_PerTeam: PerTeam<ManDownExperienceType>;
14382
+ /**
14383
+ * Multiplies AI soldier movement speed per team or globally.
14384
+ * Values lower than 1.0 reduce speed, while values greater than 1.0 increase speed.
14385
+ * If global: `number`
14386
+ * If per team: `[[teamIndex, multiplier], ...]`
14387
+ */
14388
+ AI_SoldierMovementSpeedMultiplier_PerTeam: PerTeam<number>;
14389
+ /**
14390
+ * Whether AI sprinting is allowed per team or globally.
14391
+ * If global: `true | false`
14392
+ * If per team: `[[teamIndex, isAllowed], ...]`
14393
+ */
14394
+ AI_SprintAllowed_PerTeam: PerTeam<boolean>;
14395
+ /**
14396
+ * Whether AI are allowed to exit vehicles per team or globally.
14397
+ * If global: `true | false`
14398
+ * If per team: `[[teamIndex, isAllowed], ...]`
14399
+ */
14400
+ AI_ExitVehiclesAllowed_PerTeam: PerTeam<boolean>;
14401
+ /**
14402
+ * Whether infinite weapon ammunition is enabled per team or globally.
14403
+ * If global: `true | false`
14404
+ * If per team: `[[teamIndex, isEnabled], ...]`
14405
+ */
14406
+ InfiniteWeaponAmmo_PerTeam: PerTeam<boolean>;
14407
+ /**
14408
+ * Whether AI soldier health regeneration is allowed per team or globally.
14409
+ * If global: `true | false`
14410
+ * If per team: `[[teamIndex, isAllowed], ...]`
14411
+ */
14412
+ AI_SoldierHealthRegenAllowed_PerTeam: PerTeam<boolean>;
14413
+ /**
14414
+ * Multiplies AI soldier maximum health per team or globally.
14415
+ * Values lower than 1.0 reduce health, while values greater than 1.0 increase health.
14416
+ * If global: `number`
14417
+ * If per team: `[[teamIndex, multiplier], ...]`
14418
+ */
14419
+ AI_SoldierMaxHealthMultiplier_PerTeam: PerTeam<number>;
14420
+ /**
14421
+ * Multiplies AI soldier health regeneration rate per team or globally.
14422
+ * Values lower than 1.0 slow regeneration, while values greater than 1.0 speed it up.
14423
+ * If global: `number`
14424
+ * If per team: `[[teamIndex, multiplier], ...]`
14425
+ */
14426
+ AI_SoldierRegenRateMultiplier_PerTeam: PerTeam<number>;
14427
+ /**
14428
+ * Multiplies AI damage dealt per team or globally.
14429
+ * Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
14430
+ * If global: `number`
14431
+ * If per team: `[[teamIndex, multiplier], ...]`
14432
+ */
14433
+ AI_DamageMultiplier_PerTeam: PerTeam<number>;
14434
+ /**
14435
+ * Whether aim assist slowdown is enabled globally.
14436
+ */
14437
+ AimAssistSlowdownEnabled: boolean;
14438
+ /**
14439
+ * Multiplies soldier movement speed per team or globally.
14440
+ * Values lower than 1.0 reduce speed, while values greater than 1.0 increase speed.
14441
+ * If global: `number`
14442
+ * If per team: `[[teamIndex, multiplier], ...]`
14443
+ */
14444
+ SoldierMovementSpeedMultiplier_PerTeam: PerTeam<number>;
14445
+ /**
14446
+ * Whether crosshairs (reticles) are allowed per team or globally.
14447
+ * If global: `true | false`
14448
+ * If per team: `[[teamIndex, isAllowed], ...]`
14449
+ */
14450
+ CrosshairsAllowed_PerTeam: PerTeam<boolean>;
14451
+ /**
14452
+ * Multiplies AI vehicle damage dealt per team or globally.
14453
+ * Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
14454
+ * If global: `number`
14455
+ * If per team: `[[teamIndex, multiplier], ...]`
14456
+ */
14457
+ AI_VehicleDamageMultiplier_PerTeam: PerTeam<number>;
14458
+ /**
14459
+ * Whether AI are allowed to spawn on foot per team or globally.
14460
+ * If global: `true | false`
14461
+ * If per team: `[[teamIndex, isAllowed], ...]`
14462
+ */
14463
+ AI_OnFootSpawnAllowed_PerTeam: PerTeam<boolean>;
14464
+ /**
14465
+ * Defines the AI squad spawn mode per team or globally.
14466
+ * Corresponds to an internal AI squad spawn behavior enumeration.
14467
+ * If global: `number`
14468
+ * If per team: `[[teamIndex, mode], ...]`
14469
+ */
14470
+ AI_SquadSpawnMode_PerTeam: SquadSpawnType;
14471
+ /**
14472
+ * Multiplies AI soldier respawn delay time per team or globally.
14473
+ * Values lower than 1.0 shorten respawn time, while values greater than 1.0 increase it.
14474
+ * If global: `number`
14475
+ * If per team: `[[teamIndex, multiplier], ...]`
14476
+ */
14477
+ AI_SoldierRespawnDelayMultiplier_PerTeam: PerTeam<number>;
14478
+ /**
14479
+ * Whether friendly fire damage reflection is enabled globally.
14480
+ */
14481
+ FriendlyFireDamageReflectionEnabled: boolean;
14482
+ /**
14483
+ * Defines the current mod builder game mode globally.
14484
+ * Corresponds to an internal game mode enumeration.
14485
+ */
14486
+ ModBuilder_GameMode: ModBuilderGameMode;
14487
+ /**
14488
+ * Multiplies the radius of the aim assist snap capsule globally.
14489
+ * Values lower than 1.0 reduce radius, while values greater than 1.0 increase radius.
14490
+ */
14491
+ AimAssistSnapCapsuleRadiusMultiplier: number;
14492
+ /**
14493
+ * Maximum number of team kills before friendly fire damage reflection activates.
14494
+ */
14495
+ FriendlyFireDamageReflectionMaxTeamKills: number;
14496
+ /**
14497
+ * Defines the total game time for the Portal experience in minutes.
14498
+ * Max of 60 minutes
14499
+ */
14500
+ fPortalExperienceGameTime: number;
14501
+ /**
14502
+ * Defines the maximum squad size per team or globally.
14503
+ * If global: `number`
14504
+ * If per team: `[[teamIndex, squadSize], ...]`
14505
+ */
14506
+ SquadSize_PerTeam: PerTeam<number>;
14507
+ /**
14508
+ * Whether third-person vehicle camera views are disabled globally.
14509
+ */
14510
+ DisableVehicle3p: boolean;
14511
+ /**
14512
+ * Controls whether reloading a magazine causes the soldier or vehicle to lose any remaining ammo within the currently loaded magazine.
14513
+ */
14514
+ ReloadWholeWeaponMagazines: boolean;
14515
+ /**
14516
+ * Controls the degree of feedback given to the player via audio or visual cues.
14517
+ */
14518
+ bPortalRestrictedGameFeedback: boolean;
14519
+ /**
14520
+ * Whether health bars are allowed per team or globally.
14521
+ * If global: `true | false`
14522
+ * If per team: `[[teamIndex, isAllowed], ...]`
14523
+ */
14524
+ HealthBarAllowed_PerTeam: PerTeam<boolean>;
14525
+ /**
14526
+ * Whether damage numbers (floating hit indicators) are hidden per team or globally.
14527
+ * If global: `true | false`
14528
+ * If per team: `[[teamIndex, isHidden], ...]`
14529
+ */
14530
+ HideDamageNumbers_PerTeam: PerTeam<boolean>;
14531
+ /**
14532
+ * Whether hit indicators are allowed per team or globally.
14533
+ * If global: `true | false`
14534
+ * If per team: `[[teamIndex, isAllowed], ...]`
14535
+ */
14536
+ HitIndicatorAllowed_PerTeam: PerTeam<boolean>;
14537
+ /**
14538
+ * Whether HUD inventory auto-hide is enabled per team or globally.
14539
+ * If global: `true | false`
14540
+ * If per team: `[[teamIndex, isEnabled], ...]`
14541
+ */
14542
+ HUDInventoryAutoHide_PerTeam: PerTeam<boolean>;
14543
+ /**
14544
+ * Whether reduced friendly world icons are used globally.
14545
+ */
14546
+ UseReducedFriendlyWorldIcon: boolean;
14547
+ /**
14548
+ * Whether capture point scaling is allowed globally.
14549
+ */
14550
+ CapturePointScaleAllowed: boolean;
14551
+ /**
14552
+ * Whether the kill feed (kill log) is allowed per team or globally.
14553
+ * If global: `true | false`
14554
+ * If per team: `[[teamIndex, isAllowed], ...]`
14555
+ */
14556
+ KillFeedAllowed_PerTeam: PerTeam<boolean>;
14557
+ /**
14558
+ * Whether the squad list UI element is allowed per team or globally.
14559
+ * If global: `true | false`
14560
+ * If per team: `[[teamIndex, isAllowed], ...]`
14561
+ */
14562
+ SquadListAllowed_PerTeam: PerTeam<boolean>;
14563
+ /**
14564
+ * Whether voice-over (VO) communication is restricted globally.
14565
+ */
14566
+ bRestrictCommunicationVO: boolean;
14567
+ /**
14568
+ * Whether UI-based communication (pings, menus, etc.) is restricted globally.
14569
+ */
14570
+ bRestrictCommunicationUI: boolean;
14571
+ /**
14572
+ * Whether player spotting is allowed globally.
14573
+ */
14574
+ SpottingAllowed: boolean;
14575
+ /**
14576
+ * Controls whether AI can navigate the map, turning it off will decrease loading times.
14577
+ */
14578
+ Portal_GenerateNavMesh: boolean;
14579
+ /**
14580
+ * Defines the game mode start timer for spawn balancing, in seconds.
14581
+ * Note: This is a best guess and is undocumneted currently, if you notice it is something else
14582
+ * please create an issue
14583
+ */
14584
+ SpawnBalancing_GamemodeStartTimer: number;
14585
+ /**
14586
+ * Defines the player count ratio used for spawn balancing calculations.
14587
+ * Typically a value between 0.0 and 1.0.
14588
+ * Note: This is a best guess and is undocumneted currently, if you notice it is something else
14589
+ * please create an issue
14590
+ */
14591
+ SpawnBalancing_GamemodePlayerCountRatio: number;
14592
+ /**
14593
+ * Defines the faction ID per team or globally.
14594
+ * If global: `FactionID`
14595
+ * If per team: `[[teamIndex, FactionID], ...]`
14596
+ */
14597
+ FactionID_PerTeam: PerTeam<FactionID>;
14598
+ /**
14599
+ * Whether class-locked weapon loadouts are enabled globally.
14600
+ */
14601
+ EnableClassLockedWeaponLoadouts: boolean;
14602
+ /**
14603
+ * Whether on-foot spawning is allowed per team or globally.
14604
+ * If global: `true | false`
14605
+ * If per team: `[[teamIndex, isAllowed], ...]`
14606
+ */
14607
+ OnFootSpawnAllowed_PerTeam: PerTeam<boolean>;
14608
+ /**
14609
+ * Whether exiting vehicles is allowed per team or globally.
14610
+ * If global: `true | false`
14611
+ * If per team: `[[teamIndex, isAllowed], ...]`
14612
+ */
14613
+ ExitVehiclesAllowed_PerTeam: PerTeam<boolean>;
14614
+ /**
14615
+ * Multiplies the vehicle spawn delay per team or globally.
14616
+ * Values lower than 1.0 shorten delay, while values greater than 1.0 increase it.
14617
+ * If global: `number`
14618
+ * If per team: `[[teamIndex, multiplier], ...]`
14619
+ */
14620
+ VehicleSpawnDelayMultiplier_PerTeam: PerTeam<number>;
14621
+ };
14622
+ /**
14623
+ * Describes all configurable asset restrictions for the game.
14624
+ * Each restriction can either apply globally (single value)
14625
+ * or per team (as an array of [teamIndex, value] pairs).
14626
+ */
14627
+ type AssetRestrictions = {
14628
+ /**
14629
+ * Whether the Assault class is allowed per team or globally.
14630
+ * If global: `true | false`
14631
+ * If per team: `[[teamIndex, isAllowed], ...]`
14632
+ */
14633
+ AssaultClass: PerTeam<boolean>;
14634
+ /**
14635
+ * Whether the Support class is allowed per team or globally.
14636
+ * If global: `true | false`
14637
+ * If per team: `[[teamIndex, isAllowed], ...]`
14638
+ */
14639
+ SupportClass: PerTeam<boolean>;
14640
+ /**
14641
+ * Whether the Recon class is allowed per team or globally.
14642
+ * If global: `true | false`
14643
+ * If per team: `[[teamIndex, isAllowed], ...]`
14644
+ */
14645
+ ReconClass: PerTeam<boolean>;
14646
+ /**
14647
+ * Whether the Engineer class is allowed per team or globally.
14648
+ * If global: `true | false`
14649
+ * If per team: `[[teamIndex, isAllowed], ...]`
14650
+ */
14651
+ EngineerClass: PerTeam<boolean>;
14652
+ /**
14653
+ * Whether the HK417A2 weapon (U_HK417A2) is allowed per team or globally.
14654
+ * If global: `true | false`
14655
+ * If per team: `[[teamIndex, isAllowed], ...]`
14656
+ */
14657
+ U_HK417A2: PerTeam<boolean>;
14658
+ /**
14659
+ * Whether the ARAD MR weapon (U_ARADMR) is allowed per team or globally.
14660
+ * If global: `true | false`
14661
+ * If per team: `[[teamIndex, isAllowed], ...]`
14662
+ */
14663
+ U_ARADMR: PerTeam<boolean>;
14664
+ /**
14665
+ * Whether the AK-205 weapon (U_AK205) is allowed per team or globally.
14666
+ * If global: `true | false`
14667
+ * If per team: `[[teamIndex, isAllowed], ...]`
14668
+ */
14669
+ U_AK205: PerTeam<boolean>;
14670
+ /**
14671
+ * Whether the M4A1 weapon (U_M4A1) is allowed per team or globally.
14672
+ * If global: `true | false`
14673
+ * If per team: `[[teamIndex, isAllowed], ...]`
14674
+ */
14675
+ U_M4A1: PerTeam<boolean>;
14676
+ /**
14677
+ * Whether the QBZ-192 weapon (U_QBZ192) is allowed per team or globally.
14678
+ * If global: `true | false`
14679
+ * If per team: `[[teamIndex, isAllowed], ...]`
14680
+ */
14681
+ U_QBZ192: PerTeam<boolean>;
14682
+ /**
14683
+ * Whether the XM7 weapon (U_XM7) is allowed per team or globally.
14684
+ * If global: `true | false`
14685
+ * If per team: `[[teamIndex, isAllowed], ...]`
14686
+ */
14687
+ U_XM7: PerTeam<boolean>;
14688
+ /**
14689
+ * Whether the SIG553R weapon (U_SIG553R) is allowed per team or globally.
14690
+ * If global: `true | false`
14691
+ * If per team: `[[teamIndex, isAllowed], ...]`
14692
+ */
14693
+ U_SIG553R: PerTeam<boolean>;
14694
+ /**
14695
+ * Whether the 590A1 shotgun (U_590A1) is allowed per team or globally.
14696
+ * If global: `true | false`
14697
+ * If per team: `[[teamIndex, isAllowed], ...]`
14698
+ */
14699
+ U_590A1: PerTeam<boolean>;
14700
+ /**
14701
+ * Whether the 185-KSK weapon (U_185KSK) is allowed per team or globally.
14702
+ * If global: `true | false`
14703
+ * If per team: `[[teamIndex, isAllowed], ...]`
14704
+ */
14705
+ U_185KSK: PerTeam<boolean>;
14706
+ /**
14707
+ * Whether the M1014 shotgun (U_M1014) is allowed per team or globally.
14708
+ * If global: `true | false`
14709
+ * If per team: `[[teamIndex, isAllowed], ...]`
14710
+ */
14711
+ U_M1014: PerTeam<boolean>;
14712
+ /**
14713
+ * Whether the stationary M2 machine gun emplacement (U_VEH_Stationary_M2MG) is allowed per team or globally.
14714
+ * If global: `true | false`
14715
+ * If per team: `[[teamIndex, isAllowed], ...]`
14716
+ */
14717
+ U_VEH_Stationary_M2MG: PerTeam<boolean>;
14718
+ /**
14719
+ * Whether the stationary GDF-009 emplacement (U_VEH_Stationary_GDF009) is allowed per team or globally.
14720
+ * If global: `true | false`
14721
+ * If per team: `[[teamIndex, isAllowed], ...]`
14722
+ */
14723
+ U_VEH_Stationary_GDF009: PerTeam<boolean>;
14724
+ /**
14725
+ * Whether the stationary BGM-71 TOW launcher (U_VEH_Stationary_BGM71TOW) is allowed per team or globally.
14726
+ * If global: `true | false`
14727
+ * If per team: `[[teamIndex, isAllowed], ...]`
14728
+ */
14729
+ U_VEH_Stationary_BGM71TOW: PerTeam<boolean>;
14730
+ /**
14731
+ * Whether the Stinger launcher (U_Stinger) is allowed per team or globally.
14732
+ * If global: `true | false`
14733
+ * If per team: `[[teamIndex, isAllowed], ...]`
14734
+ */
14735
+ U_Stinger: PerTeam<boolean>;
14736
+ /**
14737
+ * Whether the M320 Smoke launcher (U_M320Smoke) is allowed per team or globally.
14738
+ * If global: `true | false`
14739
+ * If per team: `[[teamIndex, isAllowed], ...]`
14740
+ */
14741
+ U_M320Smoke: PerTeam<boolean>;
14742
+ /**
14743
+ * Whether the M320 Thermobaric launcher (U_M320Thermobaric) is allowed per team or globally.
14744
+ * If global: `true | false`
14745
+ * If per team: `[[teamIndex, isAllowed], ...]`
14746
+ */
14747
+ U_M320Thermobaric: PerTeam<boolean>;
14748
+ /**
14749
+ * Whether the Drill GL launcher (U_DrillGL) is allowed per team or globally.
14750
+ * If global: `true | false`
14751
+ * If per team: `[[teamIndex, isAllowed], ...]`
14752
+ */
14753
+ U_DrillGL: PerTeam<boolean>;
14754
+ /**
14755
+ * Whether the M320 HE launcher (U_M320HE) is allowed per team or globally.
14756
+ * If global: `true | false`
14757
+ * If per team: `[[teamIndex, isAllowed], ...]`
14758
+ */
14759
+ U_M320HE: PerTeam<boolean>;
14760
+ /**
14761
+ * Whether the Airburst Incendiary weapon (U_AirburstIncendiary) is allowed per team or globally.
14762
+ * If global: `true | false`
14763
+ * If per team: `[[teamIndex, isAllowed], ...]`
14764
+ */
14765
+ U_AirburstIncendiary: PerTeam<boolean>;
14766
+ /**
14767
+ * Whether the M39 EMR weapon (U_M39EMR) is allowed per team or globally.
14768
+ * If global: `true | false`
14769
+ * If per team: `[[teamIndex, isAllowed], ...]`
14770
+ */
14771
+ U_M39EMR: PerTeam<boolean>;
14772
+ /**
14773
+ * Whether the SVDM sniper rifle (U_SVDM) is allowed per team or globally.
14774
+ * If global: `true | false`
14775
+ * If per team: `[[teamIndex, isAllowed], ...]`
14776
+ */
14777
+ U_SVDM: PerTeam<boolean>;
14778
+ /**
14779
+ * Whether the SVCh sniper rifle (U_SVCh) is allowed per team or globally.
14780
+ * If global: `true | false`
14781
+ * If per team: `[[teamIndex, isAllowed], ...]`
14782
+ */
14783
+ U_SVCh: PerTeam<boolean>;
14784
+ /**
14785
+ * Whether the 6P67 assault rifle (U_6P67) is allowed per team or globally.
14786
+ * If global: `true | false`
14787
+ * If per team: `[[teamIndex, isAllowed], ...]`
14788
+ */
14789
+ U_6P67: PerTeam<boolean>;
14790
+ /**
14791
+ * Whether the G36 assault rifle (U_G36) is allowed per team or globally.
14792
+ * If global: `true | false`
14793
+ * If per team: `[[teamIndex, isAllowed], ...]`
14794
+ */
14795
+ U_G36: PerTeam<boolean>;
14796
+ /**
14797
+ * Whether the HK433 assault rifle (U_HK433) is allowed per team or globally.
14798
+ * If global: `true | false`
14799
+ * If per team: `[[teamIndex, isAllowed], ...]`
14800
+ */
14801
+ U_HK433: PerTeam<boolean>;
14802
+ /**
14803
+ * Whether the G3A4 battle rifle (U_G3A4) is allowed per team or globally.
14804
+ * If global: `true | false`
14805
+ * If per team: `[[teamIndex, isAllowed], ...]`
14806
+ */
14807
+ U_G3A4: PerTeam<boolean>;
14808
+ /**
14809
+ * Whether the L85A3 assault rifle (U_L85A3) is allowed per team or globally.
14810
+ * If global: `true | false`
14811
+ * If per team: `[[teamIndex, isAllowed], ...]`
14812
+ */
14813
+ U_L85A3: PerTeam<boolean>;
14814
+ /**
14815
+ * Whether the ACE 32 assault rifle (U_ACE32) is allowed per team or globally.
14816
+ * If global: `true | false`
14817
+ * If per team: `[[teamIndex, isAllowed], ...]`
14818
+ */
14819
+ U_ACE32: PerTeam<boolean>;
14820
+ /**
14821
+ * Whether the SCAR-L assault rifle (U_SCARL) is allowed per team or globally.
14822
+ * If global: `true | false`
14823
+ * If per team: `[[teamIndex, isAllowed], ...]`
14824
+ */
14825
+ U_SCARL: PerTeam<boolean>;
14826
+ /**
14827
+ * Whether the Tavor 7 battle rifle (U_Tavor7) is allowed per team or globally.
14828
+ * If global: `true | false`
14829
+ * If per team: `[[teamIndex, isAllowed], ...]`
14830
+ */
14831
+ U_Tavor7: PerTeam<boolean>;
14832
+ /**
14833
+ * Whether the Ultimax light machine gun (U_Ultimax) is allowed per team or globally.
14834
+ * If global: `true | false`
14835
+ * If per team: `[[teamIndex, isAllowed], ...]`
14836
+ */
14837
+ U_Ultimax: PerTeam<boolean>;
14838
+ /**
14839
+ * Whether the Minimi light machine gun (U_Minimi) is allowed per team or globally.
14840
+ * If global: `true | false`
14841
+ * If per team: `[[teamIndex, isAllowed], ...]`
14842
+ */
14843
+ U_Minimi: PerTeam<boolean>;
14844
+ /**
14845
+ * Whether the M27 IAR weapon (U_M27IAR) is allowed per team or globally.
14846
+ * If global: `true | false`
14847
+ * If per team: `[[teamIndex, isAllowed], ...]`
14848
+ */
14849
+ U_M27IAR: PerTeam<boolean>;
14850
+ /**
14851
+ * Whether the M250 light machine gun (U_M250) is allowed per team or globally.
14852
+ * If global: `true | false`
14853
+ * If per team: `[[teamIndex, isAllowed], ...]`
14854
+ */
14855
+ U_M250: PerTeam<boolean>;
14856
+ /**
14857
+ * Whether the M240L machine gun (U_M240L) is allowed per team or globally.
14858
+ * If global: `true | false`
14859
+ * If per team: `[[teamIndex, isAllowed], ...]`
14860
+ */
14861
+ U_M240L: PerTeam<boolean>;
14862
+ /**
14863
+ * Whether the MG4K light machine gun (U_MG4K) is allowed per team or globally.
14864
+ * If global: `true | false`
14865
+ * If per team: `[[teamIndex, isAllowed], ...]`
14866
+ */
14867
+ U_MG4K: PerTeam<boolean>;
14868
+ /**
14869
+ * Whether the M60E6 light machine gun (U_M60E6) is allowed per team or globally.
14870
+ * If global: `true | false`
14871
+ * If per team: `[[teamIndex, isAllowed], ...]`
14872
+ */
14873
+ U_M60E6: PerTeam<boolean>;
14874
+ /**
14875
+ * Whether the RPKM light machine gun (U_RPKM) is allowed per team or globally.
14876
+ * If global: `true | false`
14877
+ * If per team: `[[teamIndex, isAllowed], ...]`
14878
+ */
14879
+ U_RPKM: PerTeam<boolean>;
14880
+ /**
14881
+ * Whether the M18 pistol (U_M18) is allowed per team or globally.
14882
+ * If global: `true | false`
14883
+ * If per team: `[[teamIndex, isAllowed], ...]`
14884
+ */
14885
+ U_M18: PerTeam<boolean>;
14886
+ /**
14887
+ * Whether the Five-Seven pistol (U_FiveSeven) is allowed per team or globally.
14888
+ * If global: `true | false`
14889
+ * If per team: `[[teamIndex, isAllowed], ...]`
14890
+ */
14891
+ U_FiveSeven: PerTeam<boolean>;
14892
+ /**
14893
+ * Whether the Raging Hunter revolver (U_RagingHunter) is allowed per team or globally.
14894
+ * If global: `true | false`
14895
+ * If per team: `[[teamIndex, isAllowed], ...]`
14896
+ */
14897
+ U_RagingHunter: PerTeam<boolean>;
14898
+ /**
14899
+ * Whether the M45A1 pistol (U_M45A1) is allowed per team or globally.
14900
+ * If global: `true | false`
14901
+ * If per team: `[[teamIndex, isAllowed], ...]`
14902
+ */
14903
+ U_M45A1: PerTeam<boolean>;
14904
+ /**
14905
+ * Whether the M2010 ESR sniper rifle (U_M2010ESR) is allowed per team or globally.
14906
+ * If global: `true | false`
14907
+ * If per team: `[[teamIndex, isAllowed], ...]`
14908
+ */
14909
+ U_M2010ESR: PerTeam<boolean>;
14910
+ /**
14911
+ * Whether the SV-98M sniper rifle (U_SV98M) is allowed per team or globally.
14912
+ * If global: `true | false`
14913
+ * If per team: `[[teamIndex, isAllowed], ...]`
14914
+ */
14915
+ U_SV98M: PerTeam<boolean>;
14916
+ /**
14917
+ * Whether the MRAD sniper rifle (U_MRAD) is allowed per team or globally.
14918
+ * If global: `true | false`
14919
+ * If per team: `[[teamIndex, isAllowed], ...]`
14920
+ */
14921
+ U_MRAD: PerTeam<boolean>;
14922
+ /**
14923
+ * Whether the P90 submachine gun (U_P90) is allowed per team or globally.
14924
+ * If global: `true | false`
14925
+ * If per team: `[[teamIndex, isAllowed], ...]`
14926
+ */
14927
+ U_P90: PerTeam<boolean>;
14928
+ /**
14929
+ * Whether the MPX submachine gun (U_MPX) is allowed per team or globally.
14930
+ * If global: `true | false`
14931
+ * If per team: `[[teamIndex, isAllowed], ...]`
14932
+ */
14933
+ U_MPX: PerTeam<boolean>;
14934
+ /**
14935
+ * Whether the UMP-40 submachine gun (U_UMP40) is allowed per team or globally.
14936
+ * If global: `true | false`
14937
+ * If per team: `[[teamIndex, isAllowed], ...]`
14938
+ */
14939
+ U_UMP40: PerTeam<boolean>;
14940
+ /**
14941
+ * Whether the Vector submachine gun (U_Vector) is allowed per team or globally.
14942
+ * If global: `true | false`
14943
+ * If per team: `[[teamIndex, isAllowed], ...]`
14944
+ */
14945
+ U_Vector: PerTeam<boolean>;
14946
+ /**
14947
+ * Whether the MP5 MLI submachine gun (U_MP5MLI) is allowed per team or globally.
14948
+ * If global: `true | false`
14949
+ * If per team: `[[teamIndex, isAllowed], ...]`
14950
+ */
14951
+ U_MP5MLI: PerTeam<boolean>;
14952
+ /**
14953
+ * Whether the APDW (Advanced Personal Defense Weapon) (U_APDW) is allowed per team or globally.
14954
+ * If global: `true | false`
14955
+ * If per team: `[[teamIndex, isAllowed], ...]`
14956
+ */
14957
+ U_APDW: PerTeam<boolean>;
14958
+ /**
14959
+ * Whether the MP7A2 submachine gun (U_MP7A2) is allowed per team or globally.
14960
+ * If global: `true | false`
14961
+ * If per team: `[[teamIndex, isAllowed], ...]`
14962
+ */
14963
+ U_MP7A2: PerTeam<boolean>;
14964
+ /**
14965
+ * Whether the APC10 submachine gun (U_APC10) is allowed per team or globally.
14966
+ * If global: `true | false`
14967
+ * If per team: `[[teamIndex, isAllowed], ...]`
14968
+ */
14969
+ U_APC10: PerTeam<boolean>;
14970
+ /**
14971
+ * Whether the Cheetah tank (U_VEH_Tank_Cheetah) is allowed per team or globally.
14972
+ * If global: `true | false`
14973
+ * If per team: `[[teamIndex, isAllowed], ...]`
14974
+ */
14975
+ U_VEH_Tank_Cheetah: PerTeam<boolean>;
14976
+ /**
14977
+ * Whether the Flyer 60 vehicle (U_OB_VEH_Car_Flyer60_Base) is allowed per team or globally.
14978
+ * If global: `true | false`
14979
+ * If per team: `[[teamIndex, isAllowed], ...]`
14980
+ */
14981
+ U_OB_VEH_Car_Flyer60_Base: PerTeam<boolean>;
14982
+ /**
14983
+ * Whether the CV90 tank (U_VEH_Tank_CV90) is allowed per team or globally.
14984
+ * If global: `true | false`
14985
+ * If per team: `[[teamIndex, isAllowed], ...]`
14986
+ */
14987
+ U_VEH_Tank_CV90: PerTeam<boolean>;
14988
+ /**
14989
+ * Whether the M1 Abrams tank (U_VEH_Tank_Abrams) is allowed per team or globally.
14990
+ * If global: `true | false`
14991
+ * If per team: `[[teamIndex, isAllowed], ...]`
14992
+ */
14993
+ U_VEH_Tank_Abrams: PerTeam<boolean>;
14994
+ /**
14995
+ * Whether the Gepard anti-air tank (U_VEH_Tank_Gepard) is allowed per team or globally.
14996
+ * If global: `true | false`
14997
+ * If per team: `[[teamIndex, isAllowed], ...]`
14998
+ */
14999
+ U_VEH_Tank_Gepard: PerTeam<boolean>;
15000
+ /**
15001
+ * Whether the Bradley infantry fighting vehicle (U_VEH_Tank_Bradley) is allowed per team or globally.
15002
+ * If global: `true | false`
15003
+ * If per team: `[[teamIndex, isAllowed], ...]`
15004
+ */
15005
+ U_VEH_Tank_Bradley: PerTeam<boolean>;
15006
+ /**
15007
+ * Whether the Leopard main battle tank (U_VEH_Tank_Leopard) is allowed per team or globally.
15008
+ * If global: `true | false`
15009
+ * If per team: `[[teamIndex, isAllowed], ...]`
15010
+ */
15011
+ U_VEH_Tank_Leopard: PerTeam<boolean>;
15012
+ /**
15013
+ * Whether ground transport vehicles (Portal_WebApp_GroundTransport) are allowed per team or globally.
15014
+ * If global: `true | false`
15015
+ * If per team: `[[teamIndex, isAllowed], ...]`
15016
+ */
15017
+ Portal_WebApp_GroundTransport: PerTeam<boolean>;
15018
+ /**
15019
+ * Whether the Eurocopter helicopter (U_VEH_Helicopter_Eurocopter) is allowed per team or globally.
15020
+ * If global: `true | false`
15021
+ * If per team: `[[teamIndex, isAllowed], ...]`
15022
+ */
15023
+ U_VEH_Helicopter_Eurocopter: PerTeam<boolean>;
15024
+ /**
15025
+ * Whether the SU-57 fighter jet (U_VEH_Airplane_SU57) is allowed per team or globally.
15026
+ * If global: `true | false`
15027
+ * If per team: `[[teamIndex, isAllowed], ...]`
15028
+ */
15029
+ U_VEH_Airplane_SU57: PerTeam<boolean>;
15030
+ /**
15031
+ * Whether the F-16 fighter jet (U_VEH_Airplane_F16) is allowed per team or globally.
15032
+ * If global: `true | false`
15033
+ * If per team: `[[teamIndex, isAllowed], ...]`
15034
+ */
15035
+ U_VEH_Airplane_F16: PerTeam<boolean>;
15036
+ /**
15037
+ * Whether the AH-64E Apache attack helicopter (U_VEH_Helicopter_AH64E) is allowed per team or globally.
15038
+ * If global: `true | false`
15039
+ * If per team: `[[teamIndex, isAllowed], ...]`
15040
+ */
15041
+ U_VEH_Helicopter_AH64E: PerTeam<boolean>;
15042
+ /**
15043
+ * Whether the UH-60 transport helicopter (U_VEH_Helicopter_UH60) is allowed per team or globally.
15044
+ * If global: `true | false`
15045
+ * If per team: `[[teamIndex, isAllowed], ...]`
15046
+ */
15047
+ U_VEH_Helicopter_UH60: PerTeam<boolean>;
15048
+ /**
15049
+ * Whether the F-22 Raptor fighter jet (U_VEH_Airplane_F22) is allowed per team or globally.
15050
+ * If global: `true | false`
15051
+ * If per team: `[[teamIndex, isAllowed], ...]`
15052
+ */
15053
+ U_VEH_Airplane_F22: PerTeam<boolean>;
15054
+ /**
15055
+ * Whether the JAS 39 Gripen fighter jet (U_VEH_Airplane_JAS39) is allowed per team or globally.
15056
+ * If global: `true | false`
15057
+ * If per team: `[[teamIndex, isAllowed], ...]`
15058
+ */
15059
+ U_VEH_Airplane_JAS39: PerTeam<boolean>;
15060
+ /**
15061
+ * Whether the repair tool (U_RepairTool) is allowed per team or globally.
15062
+ * If global: `true | false`
15063
+ * If per team: `[[teamIndex, isAllowed], ...]`
15064
+ */
15065
+ U_RepairTool: PerTeam<boolean>;
15066
+ /**
15067
+ * Whether the Adrenaline Shot gadget (U_AdrenalineShot) is allowed per team or globally.
15068
+ * If global: `true | false`
15069
+ * If per team: `[[teamIndex, isAllowed], ...]`
15070
+ */
15071
+ U_AdrenalineShot: PerTeam<boolean>;
15072
+ /**
15073
+ * Whether the Spawn Beacon gadget (U_SpawnBeacon) is allowed per team or globally.
15074
+ * If global: `true | false`
15075
+ * If per team: `[[teamIndex, isAllowed], ...]`
15076
+ */
15077
+ U_SpawnBeacon: PerTeam<boolean>;
15078
+ /**
15079
+ * Whether the T-UGS motion sensor (U_TUGS) is allowed per team or globally.
15080
+ * If global: `true | false`
15081
+ * If per team: `[[teamIndex, isAllowed], ...]`
15082
+ */
15083
+ U_TUGS: PerTeam<boolean>;
15084
+ /**
15085
+ * Whether the Deployable Cover gadget (U_DeployableCover) is allowed per team or globally.
15086
+ * If global: `true | false`
15087
+ * If per team: `[[teamIndex, isAllowed], ...]`
15088
+ */
15089
+ U_DeployableCover: PerTeam<boolean>;
15090
+ /**
15091
+ * Whether the EIDOS detection device (U_EIDOS) is allowed per team or globally.
15092
+ * If global: `true | false`
15093
+ * If per team: `[[teamIndex, isAllowed], ...]`
15094
+ */
15095
+ U_EIDOS: PerTeam<boolean>;
15096
+ /**
15097
+ * Whether the Deployable Mortar (U_DeployableMortar) is allowed per team or globally.
15098
+ * If global: `true | false`
15099
+ * If per team: `[[teamIndex, isAllowed], ...]`
15100
+ */
15101
+ U_DeployableMortar: PerTeam<boolean>;
15102
+ /**
15103
+ * Whether the Supply Crate gadget (U_Gadget_SupplyCrate) is allowed per team or globally.
15104
+ * If global: `true | false`
15105
+ * If per team: `[[teamIndex, isAllowed], ...]`
15106
+ */
15107
+ U_Gadget_SupplyCrate: PerTeam<boolean>;
15108
+ /**
15109
+ * Whether the Drone gadget (U_Drone) is allowed per team or globally.
15110
+ * If global: `true | false`
15111
+ * If per team: `[[teamIndex, isAllowed], ...]`
15112
+ */
15113
+ U_Drone: PerTeam<boolean>;
15114
+ /**
15115
+ * Whether the Sniper Decoy gadget (U_SniperDecoy) is allowed per team or globally.
15116
+ * If global: `true | false`
15117
+ * If per team: `[[teamIndex, isAllowed], ...]`
15118
+ */
15119
+ U_SniperDecoy: PerTeam<boolean>;
15120
+ /**
15121
+ * Whether the MP-APS active protection system (U_MPAPS) is allowed per team or globally.
15122
+ * If global: `true | false`
15123
+ * If per team: `[[teamIndex, isAllowed], ...]`
15124
+ */
15125
+ U_MPAPS: PerTeam<boolean>;
15126
+ /**
15127
+ * Whether the Deployable Ladder (U_Ladder) is allowed per team or globally.
15128
+ * If global: `true | false`
15129
+ * If per team: `[[teamIndex, isAllowed], ...]`
15130
+ */
15131
+ U_Ladder: PerTeam<boolean>;
15132
+ /**
15133
+ * Whether the EOD Bot gadget (U_EODBot) is allowed per team or globally.
15134
+ * If global: `true | false`
15135
+ * If per team: `[[teamIndex, isAllowed], ...]`
15136
+ */
15137
+ U_EODBot: PerTeam<boolean>;
15138
+ /**
15139
+ * Whether the Vehicle Supply Crate gadget (U_Gadget_VehicleSupplyCrate) is allowed per team or globally.
15140
+ * If global: `true | false`
15141
+ * If per team: `[[teamIndex, isAllowed], ...]`
15142
+ */
15143
+ U_Gadget_VehicleSupplyCrate: PerTeam<boolean>;
15144
+ /**
15145
+ * Whether the Anti-Tank Mine gadget (U_Gadget_ATMine) is allowed per team or globally.
15146
+ * If global: `true | false`
15147
+ * If per team: `[[teamIndex, isAllowed], ...]`
15148
+ */
15149
+ U_Gadget_ATMine: PerTeam<boolean>;
15150
+ /**
15151
+ * Whether the C4 explosive (U_C4) is allowed per team or globally.
15152
+ * If global: `true | false`
15153
+ * If per team: `[[teamIndex, isAllowed], ...]`
15154
+ */
15155
+ U_C4: PerTeam<boolean>;
15156
+ /**
15157
+ * Whether the PTKM-1R smart mine (U_PTKM1R) is allowed per team or globally.
15158
+ * If global: `true | false`
15159
+ * If per team: `[[teamIndex, isAllowed], ...]`
15160
+ */
15161
+ U_PTKM1R: PerTeam<boolean>;
15162
+ /**
15163
+ * Whether the M4 SLAM explosive (U_M4SLAM) is allowed per team or globally.
15164
+ * If global: `true | false`
15165
+ * If per team: `[[teamIndex, isAllowed], ...]`
15166
+ */
15167
+ U_M4SLAM: PerTeam<boolean>;
15168
+ /**
15169
+ * Whether the M18 Claymore (U_M18Claymore) is allowed per team or globally.
15170
+ * If global: `true | false`
15171
+ * If per team: `[[teamIndex, isAllowed], ...]`
15172
+ */
15173
+ U_M18Claymore: PerTeam<boolean>;
15174
+ /**
15175
+ * Whether the Javelin launcher (U_Javelin) is allowed per team or globally.
15176
+ * If global: `true | false`
15177
+ * If per team: `[[teamIndex, isAllowed], ...]`
15178
+ */
15179
+ U_Javelin: PerTeam<boolean>;
15180
+ /**
15181
+ * Whether the RPG-7 V2 launcher (U_RPG7V2) is allowed per team or globally.
15182
+ * If global: `true | false`
15183
+ * If per team: `[[teamIndex, isAllowed], ...]`
15184
+ */
15185
+ U_RPG7V2: PerTeam<boolean>;
15186
+ /**
15187
+ * Whether the AT4 launcher (U_AT4) is allowed per team or globally.
15188
+ * If global: `true | false`
15189
+ * If per team: `[[teamIndex, isAllowed], ...]`
15190
+ */
15191
+ U_AT4: PerTeam<boolean>;
15192
+ /**
15193
+ * Whether the MBT LAW (rocket) (U_MBTLAW) is allowed per team or globally.
15194
+ * If global: `true | false`
15195
+ * If per team: `[[teamIndex, isAllowed], ...]`
15196
+ */
15197
+ U_MBTLAW: PerTeam<boolean>;
15198
+ /**
15199
+ * Whether the Combat Knife melee weapon (U_Melee_CombatKnife) is allowed per team or globally.
15200
+ * If global: `true | false`
15201
+ * If per team: `[[teamIndex, isAllowed], ...]`
15202
+ */
15203
+ U_Melee_CombatKnife: PerTeam<boolean>;
15204
+ /**
15205
+ * Whether the Sledgehammer melee weapon (U_Melee_Sledgehammer) is allowed per team or globally.
15206
+ * If global: `true | false`
15207
+ * If per team: `[[teamIndex, isAllowed], ...]`
15208
+ */
15209
+ U_Melee_Sledgehammer: PerTeam<boolean>;
15210
+ /**
15211
+ * Whether the Geko Knife melee weapon (U_Melee_GekoKnife) is allowed per team or globally.
15212
+ * If global: `true | false`
15213
+ * If per team: `[[teamIndex, isAllowed], ...]`
15214
+ */
15215
+ U_Melee_GekoKnife: PerTeam<boolean>;
15216
+ /**
15217
+ * Whether the Tracer Dart gadget (U_TracerDart) is allowed per team or globally.
15218
+ * If global: `true | false`
15219
+ * If per team: `[[teamIndex, isAllowed], ...]`
15220
+ */
15221
+ U_TracerDart: PerTeam<boolean>;
15222
+ /**
15223
+ * Whether the M26 Mass (Dragonbreath) round (U_M26MassDragonbreath) is allowed per team or globally.
15224
+ * If global: `true | false`
15225
+ * If per team: `[[teamIndex, isAllowed], ...]`
15226
+ */
15227
+ U_M26MassDragonbreath: PerTeam<boolean>;
15228
+ /**
15229
+ * Whether the PLD device (U_PLD) is allowed per team or globally.
15230
+ * If global: `true | false`
15231
+ * If per team: `[[teamIndex, isAllowed], ...]`
15232
+ */
15233
+ U_PLD: PerTeam<boolean>;
15234
+ /**
15235
+ * Whether defibrillators equipped (U_Defibrillators_Equipped) are allowed per team or globally.
15236
+ * If global: `true | false`
15237
+ * If per team: `[[teamIndex, isAllowed], ...]`
15238
+ */
15239
+ U_Defibrillators_Equipped: PerTeam<boolean>;
15240
+ /**
15241
+ * Whether the Supply Pouch weapon/gadget (U_WEP_SupplyPouch) is allowed per team or globally.
15242
+ * If global: `true | false`
15243
+ * If per team: `[[teamIndex, isAllowed], ...]`
15244
+ */
15245
+ U_WEP_SupplyPouch: PerTeam<boolean>;
15246
+ /**
15247
+ * Whether incendiary grenades (U_Grenade_IncendiaryGrenade) are allowed per team or globally.
15248
+ * If global: `true | false`
15249
+ * If per team: `[[teamIndex, isAllowed], ...]`
15250
+ */
15251
+ U_Grenade_IncendiaryGrenade: PerTeam<boolean>;
15252
+ /**
15253
+ * Whether frag grenades (U_WEP_FragGrenade) are allowed per team or globally.
15254
+ * If global: `true | false`
15255
+ * If per team: `[[teamIndex, isAllowed], ...]`
15256
+ */
15257
+ U_WEP_FragGrenade: PerTeam<boolean>;
15258
+ /**
15259
+ * Whether the Proximity Sensor gadget (U_GAD_Proximity) is allowed per team or globally.
15260
+ * If global: `true | false`
15261
+ * If per team: `[[teamIndex, isAllowed], ...]`
15262
+ */
15263
+ U_GAD_Proximity: PerTeam<boolean>;
15264
+ /**
15265
+ * Whether the Anti-Tank Grenade (U_AntiTankGrenade) is allowed per team or globally.
15266
+ * If global: `true | false`
15267
+ * If per team: `[[teamIndex, isAllowed], ...]`
15268
+ */
15269
+ U_AntiTankGrenade: PerTeam<boolean>;
15270
+ /**
15271
+ * Whether the Throwing Knife (U_WEP_ThrowingKnife) is allowed per team or globally.
15272
+ * If global: `true | false`
15273
+ * If per team: `[[teamIndex, isAllowed], ...]`
15274
+ */
15275
+ U_WEP_ThrowingKnife: PerTeam<boolean>;
15276
+ /**
15277
+ * Whether Flashbang grenades (U_WEP_Flashbang) are allowed per team or globally.
15278
+ * If global: `true | false`
15279
+ * If per team: `[[teamIndex, isAllowed], ...]`
15280
+ */
15281
+ U_WEP_Flashbang: PerTeam<boolean>;
15282
+ /**
15283
+ * Whether Concussion grenades (U_WEP_ConcussionGrenade) are allowed per team or globally.
15284
+ * If global: `true | false`
15285
+ * If per team: `[[teamIndex, isAllowed], ...]`
15286
+ */
15287
+ U_WEP_ConcussionGrenade: PerTeam<boolean>;
15288
+ /**
15289
+ * Whether Mini V40 grenades (U_MiniV40) are allowed per team or globally.
15290
+ * If global: `true | false`
15291
+ * If per team: `[[teamIndex, isAllowed], ...]`
15292
+ */
15293
+ U_MiniV40: PerTeam<boolean>;
15294
+ /**
15295
+ * Whether the Portal carbine weapon category (Portal_WebApp_Carbine) is allowed per team or globally.
15296
+ * If global: `true | false`
15297
+ * If per team: `[[teamIndex, isAllowed], ...]`
15298
+ */
15299
+ Portal_WebApp_Carbine: PerTeam<boolean>;
15300
+ /**
15301
+ * Whether the Portal shotgun weapon category (Portal_WebApp_SG) is allowed per team or globally.
15302
+ * If global: `true | false`
15303
+ * If per team: `[[teamIndex, isAllowed], ...]`
15304
+ */
15305
+ Portal_WebApp_SG: PerTeam<boolean>;
15306
+ /**
15307
+ * Whether the Portal stationary weapon category (Portal_WebApp_Stationary) is allowed per team or globally.
15308
+ * If global: `true | false`
15309
+ * If per team: `[[teamIndex, isAllowed], ...]`
15310
+ */
15311
+ Portal_WebApp_Stationary: PerTeam<boolean>;
15312
+ /**
15313
+ * Whether the Portal grenade launcher weapon category (Portal_WebApp_GrenadeLauncher) is allowed per team or globally.
15314
+ * If global: `true | false`
15315
+ * If per team: `[[teamIndex, isAllowed], ...]`
15316
+ */
15317
+ Portal_WebApp_GrenadeLauncher: PerTeam<boolean>;
15318
+ /**
15319
+ * Whether the Portal designated marksman rifle (DMR) weapon category (Portal_WebApp_DMR) is allowed per team or globally.
15320
+ * If global: `true | false`
15321
+ * If per team: `[[teamIndex, isAllowed], ...]`
15322
+ */
15323
+ Portal_WebApp_DMR: PerTeam<boolean>;
15324
+ /**
15325
+ * Whether the Portal assault rifle weapon category (Portal_WebApp_AR) is allowed per team or globally.
15326
+ * If global: `true | false`
15327
+ * If per team: `[[teamIndex, isAllowed], ...]`
15328
+ */
15329
+ Portal_WebApp_AR: PerTeam<boolean>;
15330
+ /**
15331
+ * Whether the Portal machine gun weapon category (Portal_WebApp_MG) is allowed per team or globally.
15332
+ * If global: `true | false`
15333
+ * If per team: `[[teamIndex, isAllowed], ...]`
15334
+ */
15335
+ Portal_WebApp_MG: PerTeam<boolean>;
15336
+ /**
15337
+ * Whether the Portal pistol weapon category (Portal_WebApp_Pistol) is allowed per team or globally.
15338
+ * If global: `true | false`
15339
+ * If per team: `[[teamIndex, isAllowed], ...]`
15340
+ */
15341
+ Portal_WebApp_Pistol: PerTeam<boolean>;
15342
+ /**
15343
+ * Whether the Portal sniper rifle weapon category (Portal_WebApp_SR) is allowed per team or globally.
15344
+ * If global: `true | false`
15345
+ * If per team: `[[teamIndex, isAllowed], ...]`
15346
+ */
15347
+ Portal_WebApp_SR: PerTeam<boolean>;
15348
+ /**
15349
+ * Whether the Portal PDW (personal defense weapon) category (Portal_WebApp_PDW) is allowed per team or globally.
15350
+ * If global: `true | false`
15351
+ * If per team: `[[teamIndex, isAllowed], ...]`
15352
+ */
15353
+ Portal_WebApp_PDW: PerTeam<boolean>;
15354
+ /**
15355
+ * Whether the Portal ground combat vehicle category (Portal_WebApp_GroundCombat) is allowed per team or globally.
15356
+ * If global: `true | false`
15357
+ * If per team: `[[teamIndex, isAllowed], ...]`
15358
+ */
15359
+ Portal_WebApp_GroundCombat: PerTeam<boolean>;
15360
+ /**
15361
+ * Whether the Portal air combat vehicle category (Portal_WebApp_AirCombat) is allowed per team or globally.
15362
+ * If global: `true | false`
15363
+ * If per team: `[[teamIndex, isAllowed], ...]`
15364
+ */
15365
+ Portal_WebApp_AirCombat: PerTeam<boolean>;
15366
+ /**
15367
+ * Whether the Portal class gadget category (Portal_WebApp_ClassGadget) is allowed per team or globally.
15368
+ * If global: `true | false`
15369
+ * If per team: `[[teamIndex, isAllowed], ...]`
15370
+ */
15371
+ Portal_WebApp_ClassGadget: PerTeam<boolean>;
15372
+ /**
15373
+ * Whether the Portal deployable gadget category (Portal_WebApp_Deployable) is allowed per team or globally.
15374
+ * If global: `true | false`
15375
+ * If per team: `[[teamIndex, isAllowed], ...]`
15376
+ */
15377
+ Portal_WebApp_Deployable: PerTeam<boolean>;
15378
+ /**
15379
+ * Whether the Portal explosive gadget category (Portal_WebApp_Explosive) is allowed per team or globally.
15380
+ * If global: `true | false`
15381
+ * If per team: `[[teamIndex, isAllowed], ...]`
15382
+ */
15383
+ Portal_WebApp_Explosive: PerTeam<boolean>;
15384
+ /**
15385
+ * Whether the Portal launcher weapon category (Portal_WebApp_Launcher) is allowed per team or globally.
15386
+ * If global: `true | false`
15387
+ * If per team: `[[teamIndex, isAllowed], ...]`
15388
+ */
15389
+ Portal_WebApp_Launcher: PerTeam<boolean>;
15390
+ /**
15391
+ * Whether the Portal melee weapon category (Portal_WebApp_Melee) is allowed per team or globally.
15392
+ * If global: `true | false`
15393
+ * If per team: `[[teamIndex, isAllowed], ...]`
15394
+ */
15395
+ Portal_WebApp_Melee: PerTeam<boolean>;
15396
+ /**
15397
+ * Whether the Portal miscellaneous gadget category (Portal_WebApp_Gadget_Misc) is allowed per team or globally.
15398
+ * If global: `true | false`
15399
+ * If per team: `[[teamIndex, isAllowed], ...]`
15400
+ */
15401
+ Portal_WebApp_Gadget_Misc: PerTeam<boolean>;
15402
+ /**
15403
+ * Whether the Portal throwable category (Portal_WebApp_Throwable) is allowed per team or globally.
15404
+ * If global: `true | false`
15405
+ * If per team: `[[teamIndex, isAllowed], ...]`
15406
+ */
15407
+ Portal_WebApp_Throwable: PerTeam<boolean>;
15408
+ };
15409
+ declare enum AttachmentType {
15410
+ SpatialData = 1,
15411
+ TypeScript = 2,
15412
+ Strings = 4
15413
+ }
15414
+ /**
15415
+ * Represents a map resource within the game or editor.
15416
+ */
15417
+ type MapType = {
15418
+ /**
15419
+ * Unique identifier for the map.
15420
+ */
15421
+ id: string;
15422
+ /**
15423
+ * Spatial attachment data containing map metadata, versioning,
15424
+ * and processing information.
15425
+ */
15426
+ spatialAttachment: {
15427
+ /**
15428
+ * Unique identifier for the spatial attachment.
15429
+ */
15430
+ id: string;
15431
+ /**
15432
+ * Original filename of the attachment.
15433
+ */
15434
+ filename: string;
15435
+ /**
15436
+ * Additional metadata describing the attachment
15437
+ */
15438
+ metadata: string;
15439
+ /**
15440
+ * Version string representing the attachment's iteration or schema version.
15441
+ */
15442
+ version: string;
15443
+ /**
15444
+ * Whether the attachment is processable
15445
+ */
15446
+ isProcessable: boolean;
15447
+ /**
15448
+ * Numeric code describing the attachment's current processing status.
15449
+ */
15450
+ processingStatus: number;
15451
+ /**
15452
+ * Raw data associated with the attachment.
15453
+ * May include both original and compiled forms.
15454
+ */
15455
+ attachmentData: {
15456
+ /**
15457
+ * This is encoded in base64
15458
+ */
15459
+ original: string;
15460
+ /**
15461
+ * This is encoded in base64
15462
+ */
15463
+ compiled: string;
15464
+ };
15465
+ /**
15466
+ * Type of attachment
15467
+ */
15468
+ attachmentType: AttachmentType;
15469
+ /**
15470
+ * Any errors encountered during processing or validation.
15471
+ */
15472
+ errors: unknown[];
15473
+ };
15474
+ };
15475
+ /**
15476
+ * Represents the workspace structure for a mod or custom experience.
15477
+ */
15478
+ type Workspace = {
15479
+ mod: {
15480
+ /**
15481
+ * Describes block-based scripting data (e.g., visual logic definitions).
15482
+ */
15483
+ blocks: {
15484
+ /**
15485
+ * Version number of the block language schema (e.g., Blockly or internal DSL version).
15486
+ */
15487
+ languageVersion: number;
15488
+ /**
15489
+ * Array of block definitions representing visual scripting logic.
15490
+ */
15491
+ blocks: unknown[];
15492
+ };
15493
+ /**
15494
+ * List of variables defined within the workspace.
15495
+ */
15496
+ variables: {
15497
+ /**
15498
+ * Human-readable name of the variable.
15499
+ */
15500
+ name: string;
15501
+ /**
15502
+ * Unique identifier of the variable.
15503
+ */
15504
+ id: string;
15505
+ /**
15506
+ * Variable type or data category (e.g., "Global").
15507
+ */
15508
+ type: string;
15509
+ }[];
15510
+ };
15511
+ };
15512
+ /**
15513
+ * Describes the configuration of a single team in the game.
15514
+ * Each entry represents a team index and its composition limits.
15515
+ */
15516
+ type TeamComposition = [
15517
+ /**
15518
+ * The team index (e.g., 0–3 depending on the number of teams).
15519
+ */
15520
+ number,
15521
+ {
15522
+ /**
15523
+ * Maximum number of human players allowed on this team.
15524
+ */
15525
+ humanCapacity: number;
15526
+ /**
15527
+ * Maximum number of AI bots allowed on this team.
15528
+ */
15529
+ aiCapacity?: number;
15530
+ /**
15531
+ * Type of AI assigned to this team.
15532
+ * Unknown what any other value than 1 means. If you are aware, please create an issue
15533
+ */
15534
+ aiType: 0 | 1;
15535
+ }
15536
+ ];
15537
+ /**
15538
+ * Represents a collection of attachments associated with a map or project.
15539
+ * Each attachment can include original and compiled data, metadata,
15540
+ * and information about its processing status.
15541
+ */
15542
+ type Attachment = {
15543
+ /**
15544
+ * Unique identifier for this attachment.
15545
+ */
15546
+ id: string;
15547
+ /**
15548
+ * Version string or numeric revision of the attachment.
15549
+ */
15550
+ version: string;
15551
+ /**
15552
+ * Name of the file represented by this attachment.
15553
+ */
15554
+ filename: string;
15555
+ /**
15556
+ * Indicates whether this attachment can be processed (compiled or validated).
15557
+ */
15558
+ isProcessable: boolean;
15559
+ /**
15560
+ * Numeric code describing the current processing status of the attachment.
15561
+ */
15562
+ processingStatus: number;
15563
+ /**
15564
+ * Container for raw and compiled forms of the attachment data.
15565
+ */
15566
+ attachmentData: {
15567
+ /**
15568
+ * Base64-encoded JSON string containing the original (unprocessed) data.
15569
+ */
15570
+ original: string;
15571
+ /**
15572
+ * Base64-encoded JSON string containing the compiled or processed version.
15573
+ */
15574
+ compiled: string;
15575
+ };
15576
+ /**
15577
+ * Numeric or string identifier describing the type of attachment.
15578
+ * For example, `1` may represent a map attachment.
15579
+ */
15580
+ attachmentType: AttachmentType;
15581
+ /**
15582
+ * Arbitrary metadata string associated with this attachment.
15583
+ * May contain additional parameters (e.g., "mapIdx=5").
15584
+ */
15585
+ metadata?: string;
15586
+ /**
15587
+ * Any errors encountered while processing or validating this attachment.
15588
+ */
15589
+ errors: unknown[];
15590
+ };
15591
+ /**
15592
+ * Represents the configuration structure for a BF6 mod project.
15593
+ * This defines all high-level metadata, gameplay modifiers, asset restrictions,
15594
+ * and references to related attachments or workspace details.
15595
+ */
15596
+ type ConfigType = {
15597
+ /**
15598
+ * Optional set of mutator overrides or customizations.
15599
+ * Each key corresponds to a mutator category or setting that modifies gameplay rules.
15600
+ */
15601
+ mutators?: Partial<Mutators>;
15602
+ /**
15603
+ * Optional restrictions applied to in-game assets.
15604
+ * Used to limit or enable specific weapons, vehicles, or classes.
15605
+ */
15606
+ assetRestrictions?: Partial<AssetRestrictions>;
15607
+ /**
15608
+ * Display name of the mod project or configuration.
15609
+ */
15610
+ name: string;
15611
+ /**
15612
+ * Brief description of the mod, shown in the mod browser or editor.
15613
+ */
15614
+ description: string;
15615
+ /**
15616
+ * Optional list of maps included in this configuration’s rotation.
15617
+ * Each entry defines a playable map and its associated parameters.
15618
+ */
15619
+ mapRotation?: MapType[];
15620
+ /**
15621
+ * Optional workspace configuration defining project metadata,
15622
+ * environment paths, and editor state for the mod.
15623
+ */
15624
+ workspace?: Workspace;
15625
+ /**
15626
+ * Defines team composition for this configuration.
15627
+ * IMPORTANT! Note that each teamComposition MUST be 1 greater than the team ID.
15628
+ */
15629
+ teamComposition?: TeamComposition[];
15630
+ /**
15631
+ * Specifies the game mode type this configuration belongs to.
15632
+ * Usually "ModBuilderCustom" for user-created modes.
15633
+ */
15634
+ gameMode?: "ModBuilderCustom";
15635
+ /**
15636
+ * Array of attachment objects containing spatial or file data
15637
+ * such as blueprints, scene files, or custom resource definitions.
15638
+ */
15639
+ attachments?: Attachment[];
15640
+ };
15641
+
14110
15642
  declare function Concat(s1: string, s2: string): string;
14111
15643
  declare function And(...rest: boolean[]): boolean;
14112
15644
  type ConditionFunction = () => boolean;
@@ -14142,4 +15674,4 @@ declare function ShowNotificationMessage(msg: mod.Message, target?: mod.Player |
14142
15674
  declare function ClearAllCustomNotificationMessages(target: mod.Player): void;
14143
15675
  declare function ClearCustomNotificationMessage(custom: mod.CustomNotificationSlots, target?: mod.Player | mod.Team): void;
14144
15676
 
14145
- export { And, AndFn, ClearAllCustomNotificationMessages, ClearCustomNotificationMessage, Concat, ConditionState, ConvertArray, DisplayCustomNotificationMessage, Equals, FilteredArray, IfThenElse, IndexOfFirstTrue, IsTrueForAll, IsTrueForAny, ParseUI, ShowEventGameModeMessage, ShowHighlightedGameModeMessage, ShowNotificationMessage, SortedArray, WaitUntil, getCapturePointCondition, getGlobalCondition, getMCOMCondition, getPlayerCondition, getPlayerId, getPlayersInTeam, getTeamCondition, getTeamId, getVehicleCondition };
15677
+ export { AiSpawnType, And, AndFn, type AssetRestrictions, type Attachment, AttachmentType, ClearAllCustomNotificationMessages, ClearCustomNotificationMessage, Concat, ConditionState, type ConfigType, ConvertArray, DisplayCustomNotificationMessage, Equals, FactionID, FilteredArray, IfThenElse, IndexOfFirstTrue, IsTrueForAll, IsTrueForAny, ManDownExperienceType, type MapType, ModBuilderGameMode, type Mutators, ParseUI, type PerTeam, PingBehavior, ScoreboardType, ShowEventGameModeMessage, ShowHighlightedGameModeMessage, ShowNotificationMessage, SortedArray, SquadSpawnType, type TeamComposition, WaitUntil, type Workspace, getCapturePointCondition, getGlobalCondition, getMCOMCondition, getPlayerCondition, getPlayerId, getPlayersInTeam, getTeamCondition, getTeamId, getVehicleCondition };