Skip to content

Commit d1c8e95

Browse files
zhexu14rp-
authored andcommittedFeb 20, 2025·
DCS 2.9.13.6818 export
1 parent 82a3490 commit d1c8e95

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed
 

‎dcs/ships.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -435,15 +435,15 @@ class Type_052C(unittype.ShipType):
435435
helicopter_num = 1
436436
parking = 1
437437
detection_range = 260000
438-
threat_range = 100000
439-
air_weapon_dist = 100000
438+
threat_range = 150000
439+
air_weapon_dist = 150000
440440

441441

442442
class Type_093(unittype.ShipType):
443443
id = "Type_093"
444444
name = "Type 093 Attack Submarine"
445-
detection_range = 40000
446-
threat_range = 40000
445+
detection_range = 42000
446+
threat_range = 42000
447447
air_weapon_dist = 0
448448

449449

‎dcs/vehicles.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -883,21 +883,21 @@ class Flak18(unittype.VehicleType):
883883

884884
class HQ_7_LN_SP(unittype.VehicleType):
885885
id = "HQ-7_LN_SP"
886-
name = "HQ-7 Self-Propelled LN"
887-
detection_range = 8000
888-
threat_range = 12000
889-
air_weapon_dist = 12000
886+
name = "HQ-7B SHORAD TELAR"
887+
detection_range = 20000
888+
threat_range = 15000
889+
air_weapon_dist = 15000
890890

891891
class HQ_7_LN_P(unittype.VehicleType):
892892
id = "HQ-7_LN_P"
893-
name = "HQ-7 LN (Player)"
894-
detection_range = 8000
895-
threat_range = 12000
896-
air_weapon_dist = 12000
893+
name = "HQ-7 SHORAD TELAR (Player)"
894+
detection_range = 20000
895+
threat_range = 15000
896+
air_weapon_dist = 15000
897897

898898
class HQ_7_STR_SP(unittype.VehicleType):
899899
id = "HQ-7_STR_SP"
900-
name = "HQ-7 Self-Propelled STR"
900+
name = "HQ-7B SHORAD SR"
901901
detection_range = 30000
902902
threat_range = 0
903903
air_weapon_dist = 0

‎dcs/weapons_data.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,6 @@ class Weapons:
492492
DIS_TYPE200_DUAL_L = {"clsid": "DIS_TYPE200_DUAL_L", "name": "TYPE-200A Dual", "weight": 400}
493493
DIS_TYPE200_DUAL_R = {"clsid": "DIS_TYPE200_DUAL_R", "name": "TYPE-200A Dual", "weight": 400}
494494
DIS_WMD7 = {"clsid": "DIS_WMD7", "name": "AVIC WMD7 FLIR/LDT POD", "weight": 295}
495-
DIS_YJ12 = {"clsid": "DIS_YJ12", "name": "YJ-12", "weight": 1750}
496495
DIS_YJ83K = {"clsid": "DIS_YJ83K", "name": "YJ83K", "weight": 715}
497496
DIS_YU_6 = {"clsid": "DIS_YU_6", "name": "YU-6", "weight": 1558}
498497
Dipole_Antanna__aesthetic_ = {"clsid": "{SA342_Dipole}", "name": "Dipole Antanna (aesthetic)", "weight": 5}
@@ -1330,6 +1329,7 @@ class Weapons:
13301329
XM158_M274 = {"clsid": "XM158_M274", "name": "XM158 - 7 x UnGd Rkts, 70 mm Hydra 70 M274 TP-SM", "weight": 90.5}
13311330
XM158_MK1 = {"clsid": "XM158_MK1", "name": "XM158 - 7 x UnGd Rkts, 70 mm Hydra 70 Mk 1 HE", "weight": 81.61}
13321331
XM158_MK5 = {"clsid": "XM158_MK5", "name": "XM158 - 7 x UnGd Rkts, 70 mm Hydra 70 Mk 5 HEAT", "weight": 82.1}
1332+
YJ_12 = {"clsid": "{YJ_12}", "name": "YJ-12", "weight": 1750}
13331333
YJ_83 = {"clsid": "{YJ_83}", "name": "YJ-83", "weight": 715}
13341334
YU_6 = {"clsid": "{Yu_6}", "name": "YU-6", "weight": 1558}
13351335
_100_gal__Drop_Tank = {"clsid": "{MOSQUITO_100GAL_SLIPPER_TANK}", "name": "100 gal. Drop Tank", "weight": 375.3}
@@ -2227,7 +2227,6 @@ class Weapons:
22272227
"DIS_TYPE200_DUAL_L": Weapons.DIS_TYPE200_DUAL_L,
22282228
"DIS_TYPE200_DUAL_R": Weapons.DIS_TYPE200_DUAL_R,
22292229
"DIS_WMD7": Weapons.DIS_WMD7,
2230-
"DIS_YJ12": Weapons.DIS_YJ12,
22312230
"DIS_YJ83K": Weapons.DIS_YJ83K,
22322231
"DIS_YU_6": Weapons.DIS_YU_6,
22332232
"{SA342_Dipole}": Weapons.Dipole_Antanna__aesthetic_,
@@ -3065,6 +3064,7 @@ class Weapons:
30653064
"XM158_M274": Weapons.XM158_M274,
30663065
"XM158_MK1": Weapons.XM158_MK1,
30673066
"XM158_MK5": Weapons.XM158_MK5,
3067+
"{YJ_12}": Weapons.YJ_12,
30683068
"{YJ_83}": Weapons.YJ_83,
30693069
"{Yu_6}": Weapons.YU_6,
30703070
"{MOSQUITO_100GAL_SLIPPER_TANK}": Weapons._100_gal__Drop_Tank,

0 commit comments

Comments
 (0)
Please sign in to comment.