forked from Tobias00723/DCS-Scripting-Library-Updated
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.lua
More file actions
1071 lines (841 loc) · 37 KB
/
env.lua
File metadata and controls
1071 lines (841 loc) · 37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--[[
updated by Tobias00723
orignial author : unkown ;/
from the TGFB server
Discord : https://discord.gg/hEHd4A3czx
any questions? ^^
find me on the my discord server ^^
feel free to use these DCS prototypes
no mentions or anything needed :)
]]
---@meta
---env contains basic logging functions useful for debugging scripting commands. The input text is automatically added to dcs.log in your saved games folder, default location: C:\Users\<<userName>>\Saved Games\DCS\Logs.
---Lua syntax errors are automatically generated and placed in the dcs.log file.
---https://wiki.hoggitworld.com/view/DCS_singleton_env
env = {}
env.mission = {
--- Contains all coalition specific data including bullseye, nav_points, and all units.
coalition = {
--- blue
blue = {
--- Coalition's bullseye data (vec2)
---@type table
bullseye = {},
--- Coalition's navigation points
nav_points = {
[1] = {
--- Type of the navigation point
---@type string
type = "Default", -- Replace with actual type
--- Comment associated with the navigation point
---@type string
comment = "", -- Replace with actual comment
--- Callsign string for the navigation point
---@type string
callsignStr = "ADDER", -- Replace with actual callsign string
--- Unique identifier for the navigation point
---@type number
id = 165, -- Replace with actual ID
--- Properties of the navigation point
properties = {
--- Vertical navigation setting
---@type number
vnav = 1, -- Replace with actual vnav value
--- Scale setting
---@type number
scale = 0, -- Replace with actual scale value
--- Vertical angle setting
---@type number
vangle = 0, -- Replace with actual vertical angle
--- Angle setting
---@type number
angle = 0, -- Replace with actual angle
--- Steer setting
---@type number
steer = 2 -- Replace with actual steer value
}, -- end of ["properties"]
--- Y coordinate of the navigation point
---@type number
y = 565294.38378226, -- Replace with actual Y coordinate
--- X coordinate of the navigation point
---@type number
x = -258679.99585824, -- Replace with actual X coordinate
--- Numeric callsign for the navigation point
---@type number
callsign = 8 -- Replace with actual numeric callsign
}, -- end of [1]
[2] = {
--- Type of the navigation point
---@type string
type = "Default", -- Replace with actual type
--- Comment associated with the navigation point
---@type string
comment = "", -- Replace with actual comment
--- Callsign string for the navigation point
---@type string
callsignStr = "TankerWest", -- Replace with actual callsign string
--- Unique identifier for the navigation point
---@type number
id = 166, -- Replace with actual ID
--- Properties of the navigation point
---@type table
properties = {
--- Vertical navigation setting
---@type number
vnav = 1, -- Replace with actual vnav value
--- Scale setting
---@type number
scale = 0, -- Replace with actual scale value
--- Vertical angle setting
---@type number
vangle = 0, -- Replace with actual vertical angle
--- Angle setting
---@type number
angle = 0, -- Replace with actual angle
--- Steer setting
---@type number
steer = 0 -- Replace with actual steer value
}, -- end of ["properties"]
--- Y coordinate of the navigation point
---@type number
y = 582950.21212368, -- Replace with actual Y coordinate
--- X coordinate of the navigation point
---@type number
x = -235302.37129506, -- Replace with actual X coordinate
--- Numeric callsign for the navigation point
---@type number
callsign = 0 -- Replace with actual numeric callsign
} -- end of [2]
-- Add more navigation points as needed
}, -- end of ["nav_points"]
--- name of side
---@type string
name = "",
--- Coalition's units by country
country = {
[1] = {
--- ID of the country
---@type number
id = 0,
--- name of country
---@type string
name = "",
--- List of all planes in mission
plane = {
--- list of all plane groups
---@type table
group = {}
},
--- List of all helicopter in mission
---@type table
helicopter = {},
--- List of all ships in mission
---@type table
ship = {},
--- List of all vehicles in mission
---@type table
vehicle = {},
--- List of all static in mission
---@type table
static = {},
}
} -- Example placeholder for units
},
red = {
--- Coalition's bullseye data (vec2)
---@type table
bullseye = {},
--- Coalition's navigation points
nav_points = {
[1] = {
--- Type of the navigation point
---@type string
type = "Default", -- Replace with actual type
--- Comment associated with the navigation point
---@type string
comment = "", -- Replace with actual comment
--- Callsign string for the navigation point
---@type string
callsignStr = "ADDER", -- Replace with actual callsign string
--- Unique identifier for the navigation point
---@type number
id = 165, -- Replace with actual ID
--- Properties of the navigation point
properties = {
--- Vertical navigation setting
---@type number
vnav = 1, -- Replace with actual vnav value
--- Scale setting
---@type number
scale = 0, -- Replace with actual scale value
--- Vertical angle setting
---@type number
vangle = 0, -- Replace with actual vertical angle
--- Angle setting
---@type number
angle = 0, -- Replace with actual angle
--- Steer setting
---@type number
steer = 2 -- Replace with actual steer value
}, -- end of ["properties"]
--- Y coordinate of the navigation point
---@type number
y = 565294.38378226, -- Replace with actual Y coordinate
--- X coordinate of the navigation point
---@type number
x = -258679.99585824, -- Replace with actual X coordinate
--- Numeric callsign for the navigation point
---@type number
callsign = 8 -- Replace with actual numeric callsign
}, -- end of [1]
[2] = {
--- Type of the navigation point
---@type string
type = "Default", -- Replace with actual type
--- Comment associated with the navigation point
---@type string
comment = "", -- Replace with actual comment
--- Callsign string for the navigation point
---@type string
callsignStr = "TankerWest", -- Replace with actual callsign string
--- Unique identifier for the navigation point
---@type number
id = 166, -- Replace with actual ID
--- Properties of the navigation point
---@type table
properties = {
--- Vertical navigation setting
---@type number
vnav = 1, -- Replace with actual vnav value
--- Scale setting
---@type number
scale = 0, -- Replace with actual scale value
--- Vertical angle setting
---@type number
vangle = 0, -- Replace with actual vertical angle
--- Angle setting
---@type number
angle = 0, -- Replace with actual angle
--- Steer setting
---@type number
steer = 0 -- Replace with actual steer value
}, -- end of ["properties"]
--- Y coordinate of the navigation point
---@type number
y = 582950.21212368, -- Replace with actual Y coordinate
--- X coordinate of the navigation point
---@type number
x = -235302.37129506, -- Replace with actual X coordinate
--- Numeric callsign for the navigation point
---@type number
callsign = 0 -- Replace with actual numeric callsign
} -- end of [2]
-- Add more navigation points as needed
}, -- end of ["nav_points"]
--- name of side
---@type string
name = "",
--- Coalition's units by country
country = {
[1] = {
--- ID of the country
---@type number
id = 0,
--- name of country
---@type string
name = "",
--- List of all planes in mission
plane = {
--- list of all plane groups
---@type table
group = {}
},
--- List of all helicopter in mission
---@type table
helicopter = {},
--- List of all ships in mission
---@type table
ship = {},
--- List of all vehicles in mission
---@type table
vehicle = {},
--- List of all static in mission
---@type table
static = {},
}
} -- Example placeholder for units
},
neutrals = {
--- Coalition's bullseye data (vec2)
---@type table
bullseye = {},
--- Coalition's navigation points
nav_points = {
[1] = {
--- Type of the navigation point
---@type string
type = "Default", -- Replace with actual type
--- Comment associated with the navigation point
---@type string
comment = "", -- Replace with actual comment
--- Callsign string for the navigation point
---@type string
callsignStr = "ADDER", -- Replace with actual callsign string
--- Unique identifier for the navigation point
---@type number
id = 165, -- Replace with actual ID
--- Properties of the navigation point
properties = {
--- Vertical navigation setting
---@type number
vnav = 1, -- Replace with actual vnav value
--- Scale setting
---@type number
scale = 0, -- Replace with actual scale value
--- Vertical angle setting
---@type number
vangle = 0, -- Replace with actual vertical angle
--- Angle setting
---@type number
angle = 0, -- Replace with actual angle
--- Steer setting
---@type number
steer = 2 -- Replace with actual steer value
}, -- end of ["properties"]
--- Y coordinate of the navigation point
---@type number
y = 565294.38378226, -- Replace with actual Y coordinate
--- X coordinate of the navigation point
---@type number
x = -258679.99585824, -- Replace with actual X coordinate
--- Numeric callsign for the navigation point
---@type number
callsign = 8 -- Replace with actual numeric callsign
}, -- end of [1]
[2] = {
--- Type of the navigation point
---@type string
type = "Default", -- Replace with actual type
--- Comment associated with the navigation point
---@type string
comment = "", -- Replace with actual comment
--- Callsign string for the navigation point
---@type string
callsignStr = "TankerWest", -- Replace with actual callsign string
--- Unique identifier for the navigation point
---@type number
id = 166, -- Replace with actual ID
--- Properties of the navigation point
---@type table
properties = {
--- Vertical navigation setting
---@type number
vnav = 1, -- Replace with actual vnav value
--- Scale setting
---@type number
scale = 0, -- Replace with actual scale value
--- Vertical angle setting
---@type number
vangle = 0, -- Replace with actual vertical angle
--- Angle setting
---@type number
angle = 0, -- Replace with actual angle
--- Steer setting
---@type number
steer = 0 -- Replace with actual steer value
}, -- end of ["properties"]
--- Y coordinate of the navigation point
---@type number
y = 582950.21212368, -- Replace with actual Y coordinate
--- X coordinate of the navigation point
---@type number
x = -235302.37129506, -- Replace with actual X coordinate
--- Numeric callsign for the navigation point
---@type number
callsign = 0 -- Replace with actual numeric callsign
} -- end of [2]
-- Add more navigation points as needed
}, -- end of ["nav_points"]
--- name of side
---@type string
name = "",
--- Coalition's units by country
country = {
[1] = {
--- ID of the country
---@type number
id = 0,
--- name of country
---@type string
name = "",
--- List of all planes in mission
plane = {
--- list of all plane groups
---@type table
group = {}
},
--- List of all helicopter in mission
---@type table
helicopter = {},
--- List of all ships in mission
---@type table
ship = {},
--- List of all vehicles in mission
---@type table
vehicle = {},
--- List of all static in mission
---@type table
static = {},
}
} -- Example placeholder for units
},
}, -- end of ["coalition"]
--- Contains a list of country ids that belong to a given coalition.
---@type table
coalitions = {
--- Country IDs for the blue coalition
---@type table
blue = {}, -- Example placeholder for blue coalition country IDs
--- Country IDs for the red coalition
---@type table
red = {}, -- Example placeholder for red coalition country IDs
--- Country IDs for the neutral coalition
---@type table
neutrals = {} -- Example placeholder for neutral coalition country IDs
}, -- end of ["coalitions"]
--- Value used by the editor to know what index the dictkey and reskeys are on.
---@type number
currentKey = 0,
--- The date the mission takes place at
---@type table
date = {
--- Year of the mission
---@type number
Year = 2024,
--- Month of the mission
---@type number
Month = 6,
--- Day of the mission
---@type number
Day = 13
}, -- end of ["date"]
--- Mission briefing defined under the "Situation" page on the briefing panel.
---@type string
descriptionText = "",
--- Blue coalition task defined on the briefing panel.
---@type string
descriptionBlueTask = "",
--- Neutral coalition task defined on the briefing panel.
---@type string
descriptionNeutralsTask = "",
--- Red coalition task defined on the briefing panel.
---@type string
descriptionRedTask = "",
--- Table containing information on any drawing placed in the editor.
---@type table
drawings = {}, -- Example placeholder for drawing information
--- Lists failure parameters for whichever aircraft is set to player.
---@type table
failures = {}, -- Example placeholder for failures data
--- Options that are forced by the mission and their corresponding settings.
---@type table
forcedOptions = {}, -- Example placeholder for forced options
--- Data on the number of Combined Arms slots and their respective coalitions.
groundControl = {
--- Passwords for different roles
passwords = {
--- Password for artillery commander role
---@type table
artillery_commander = {
-- Add artillery commander passwords here
}, -- end of ["artillery_commander"]
--- Password for instructor role
---@type table
instructor = {
-- Add instructor passwords here
}, -- end of ["instructor"]
--- Password for observer role
---@type table
observer = {
-- Add observer passwords here
}, -- end of ["observer"]
--- Password for forward observer role
---@type table
forward_observer = {
-- Add forward observer passwords here
}, -- end of ["forward_observer"]
}, -- end of ["passwords"]
--- Roles and their coalition-specific data
roles = {
--- Artillery commander role
artillery_commander = {
--- Number of slots for neutral coalition
---@type number
neutrals = 0, -- Replace with actual value
--- Number of slots for blue coalition
---@type number
blue = 0, -- Replace with actual value
--- Number of slots for red coalition
---@type number
red = 0, -- Replace with actual value
}, -- end of ["artillery_commander"]
--- Instructor role
instructor = {
--- Number of slots for neutral coalition
---@type number
neutrals = 0, -- Replace with actual value
--- Number of slots for blue coalition
---@type number
blue = 0, -- Replace with actual value
--- Number of slots for red coalition
---@type number
red = 0, -- Replace with actual value
}, -- end of ["instructor"]
--- Observer role
observer = {
--- Number of slots for neutral coalition
---@type number
neutrals = 0, -- Replace with actual value
--- Number of slots for blue coalition
---@type number
blue = 0, -- Replace with actual value
--- Number of slots for red coalition
---@type number
red = 0, -- Replace with actual value
}, -- end of ["observer"]
--- Forward observer role
forward_observer = {
--- Number of slots for neutral coalition
---@type number
neutrals = 0, -- Replace with actual value
--- Number of slots for blue coalition
---@type number
blue = 0, -- Replace with actual value
--- Number of slots for red coalition
---@type number
red = 0, -- Replace with actual value
}, -- end of ["forward_observer"]
}, -- end of ["roles"]
--- Indicator whether pilot can control vehicles
---@type boolean
isPilotControlVehicles = false, -- Replace with actual value
}, -- end of ["groundControl"]
--- Last position of the map view the user was looking at when the mission was saved.
map = {
--- Map view X coordinate
---@type number
centerX = 0,
--- Map view Y coordinate
---@type number
centerY = 0,
--- Map view zoom level
---@type number
zoom = 1
}, -- end of ["map"]
--- Internal value used to keep track of what the next unit and group id to use is.
---@type number
maxDictId = 0,
--- Neutral coalition briefing images.
---@type table
pictureFileNameN = {}, -- Example placeholder for neutral briefing images
--- Blue coalition briefing images.
---@type table
pictureFileNameB = {}, -- Example placeholder for blue briefing images
--- Red coalition briefing images.
---@type table
pictureFileNameR = {}, -- Example placeholder for red briefing images
--- Table of mod names whose units are present within the mission.
---@type table
requiredModules = {}, -- Example placeholder for required modules
--- Conditions and actions defined by mission goals to decide if a mission is "won".
result = {
--- Mission conditions
---@type table
conditions = {}, -- Example placeholder for mission conditions
--- Mission actions
---@type table
actions = {} -- Example placeholder for mission actions
}, -- end of ["result"]
--- Time in seconds since midnight for the date set when the mission starts.
---@type number
start_time = 0,
--- Name of the mission as defined in the briefing panel.
---@type string
sortie = "",
--- Name of the map the mission takes place on.
---@type string
theatre = "",
--- Table of trigger zones indexed numerically.
triggers = {
--- Zones defined within the triggers
zones = {
[44] = {
--- Radius of the trigger zone
---@type number
radius = 3000, -- Replace with actual radius
--- Unique identifier for the trigger zone
---@type number
zoneId = 347, -- Replace with actual zone ID
--- Color of the trigger zone in RGBA format
color = {
--- Red component (0-1)
---@type number
[1] = 1, -- Replace with actual red component
--- Green component (0-1)
---@type number
[2] = 1, -- Replace with actual green component
--- Blue component (0-1)
---@type number
[3] = 1, -- Replace with actual blue component
--- Alpha component (0-1, transparency)
---@type number
[4] = 0.15 -- Replace with actual alpha component
}, -- end of ["color"]
--- Properties of the trigger zone
properties = {
[1] = {
--- Key for the property
---@type string
key = "lat", -- Replace with actual key
--- Value for the property
---@type string
value = "B" -- Replace with actual value
}, -- end of [1]
[2] = {
--- Key for the property
---@type string
key = "str", -- Replace with actual key
--- Value for the property
---@type string
value = "East Esmaeil Abad" -- Replace with actual value
}, -- end of [2]
[3] = {
--- Key for the property
---@type string
key = "type", -- Replace with actual key
--- Value for the property
---@type string
value = "obj" -- Replace with actual value
} -- end of [3]
-- Add more properties as needed
}, -- end of ["properties"]
--- Visibility of the trigger zone
---@type boolean
hidden = false, -- Replace with actual visibility
--- Y coordinate of the trigger zone center
---@type number
y = -282851.07616364, -- Replace with actual Y coordinate
--- X coordinate of the trigger zone center
---@type number
x = 381072.16872345, -- Replace with actual X coordinate
--- Name of the trigger zone
---@type string
name = "OBJB20", -- Replace with actual name
--- Type of the trigger zone
---@type number
type = 2, -- Replace with actual type
--- Vertices of the polygon defining the trigger zone
---@type table
verticies = {
[1] = {
--- Y coordinate of the vertex
---@type number
y = -298019.23760703, -- Replace with actual Y coordinate
--- X coordinate of the vertex
---@type number
x = 376996.1784471 -- Replace with actual X coordinate
}, -- end of [1]
[2] = {
--- Y coordinate of the vertex
---@type number
y = -276624.3163146, -- Replace with actual Y coordinate
--- X coordinate of the vertex
---@type number
x = 367168.69201007 -- Replace with actual X coordinate
}, -- end of [2]
[3] = {
--- Y coordinate of the vertex
---@type number
y = -269277.86743708, -- Replace with actual Y coordinate
--- X coordinate of the vertex
---@type number
x = 384020.41465456 -- Replace with actual X coordinate
}, -- end of [3]
[4] = {
--- Y coordinate of the vertex
---@type number
y = -287482.88329585, -- Replace with actual Y coordinate
--- X coordinate of the vertex
---@type number
x = 396103.38978206 -- Replace with actual X coordinate
} -- end of [4]
-- Add more vertices as needed
} -- end of ["verticies"]
} -- end of [44]
-- Add more zones as needed
} -- end of ["zones"]
}, -- end of ["triggers"]
--- Table containing every single ME trigger.
---@type table
trig = {
}, -- end of ["trig"]
--- Another table containing data on triggers.
---@type table
trigRules = {
}, -- end of ["trigRules"]
--- Value used by the mission editor to know roughly which iteration of the editor the mission was saved in.
---@type number
version = 0,
--- Table with weather data.
---@type table
weather = {
--- Wind data
---@type table
wind = {
--- Wind speed
---@type number
speed = 0,
--- Wind direction
---@type number
direction = 0
}, -- end of ["wind"]
--- Temperature data
---@type number
temperature = 15
-- Add more weather attributes as needed
} -- end of ["weather"]
} -- end of ["missionData"]
env = {
warehouses = {
-- [airbaseId] = warehouseTable for additional airbases can be added similarly
airports = {
[1] = {
gasoline = {
---@type number
InitFuel = 100,
},
---@type boolean
unlimitedMunitions = true,
methanol_mixture = {
---@type number
InitFuel = 100,
},
---@type number
OperatingLevel_Air = 10,
diesel = {
---@type number
InitFuel = 100,
},
---@type number
speed = 16.666666,
---@type number
size = 100,
---@type number
periodicity = 30,
suppliers = {
---@type table
[1] = {
---@type number
Id = 23,
---@type string
type = "airports",
},
},
---@type string
coalition = "blue",
jet_fuel = {
---@type number
InitFuel = 100,
},
---@type number
OperatingLevel_Eqp = 10,
---@type boolean
unlimitedFuel = true,
---@type table
aircrafts = {},
---@type table
weapons = {},
---@type number
OperatingLevel_Fuel = 10,
---@type boolean
unlimitedAircrafts = true,
},
},
warehouses = {
gasoline = {
---@type number
InitFuel = 100,
},
---@type boolean
unlimitedMunitions = true,
methanol_mixture = {
---@type number
InitFuel = 100,
},
---@type number
OperatingLevel_Air = 10,
diesel = {
---@type number
InitFuel = 100,
},
---@type number
speed = 16.666666,
---@type number
size = 100,
---@type number
periodicity = 30,