mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Add default escort loadouts.
This commit is contained in:
parent
db6b660270
commit
9e96aee89f
10
game/db.py
10
game/db.py
@ -122,6 +122,7 @@ from dcs.task import (
|
|||||||
CAS,
|
CAS,
|
||||||
CargoTransportation,
|
CargoTransportation,
|
||||||
Embarking,
|
Embarking,
|
||||||
|
Escort,
|
||||||
GroundAttack,
|
GroundAttack,
|
||||||
Intercept,
|
Intercept,
|
||||||
MainTask,
|
MainTask,
|
||||||
@ -1082,7 +1083,8 @@ COMMON_OVERRIDE = {
|
|||||||
PinpointStrike: "STRIKE",
|
PinpointStrike: "STRIKE",
|
||||||
SEAD: "SEAD",
|
SEAD: "SEAD",
|
||||||
AntishipStrike: "ANTISHIP",
|
AntishipStrike: "ANTISHIP",
|
||||||
GroundAttack: "STRIKE"
|
GroundAttack: "STRIKE",
|
||||||
|
Escort: "CAP",
|
||||||
}
|
}
|
||||||
|
|
||||||
PLANE_PAYLOAD_OVERRIDES: Dict[Type[PlaneType], Dict[Type[Task], str]] = {
|
PLANE_PAYLOAD_OVERRIDES: Dict[Type[PlaneType], Dict[Type[Task], str]] = {
|
||||||
@ -1094,7 +1096,8 @@ PLANE_PAYLOAD_OVERRIDES: Dict[Type[PlaneType], Dict[Type[Task], str]] = {
|
|||||||
PinpointStrike: "STRIKE",
|
PinpointStrike: "STRIKE",
|
||||||
SEAD: "SEAD",
|
SEAD: "SEAD",
|
||||||
AntishipStrike: "ANTISHIP",
|
AntishipStrike: "ANTISHIP",
|
||||||
GroundAttack: "STRIKE"
|
GroundAttack: "STRIKE",
|
||||||
|
Escort: "CAP HEAVY",
|
||||||
},
|
},
|
||||||
F_A_18C: {
|
F_A_18C: {
|
||||||
CAP: "CAP HEAVY",
|
CAP: "CAP HEAVY",
|
||||||
@ -1103,7 +1106,8 @@ PLANE_PAYLOAD_OVERRIDES: Dict[Type[PlaneType], Dict[Type[Task], str]] = {
|
|||||||
PinpointStrike: "STRIKE",
|
PinpointStrike: "STRIKE",
|
||||||
SEAD: "SEAD",
|
SEAD: "SEAD",
|
||||||
AntishipStrike: "ANTISHIP",
|
AntishipStrike: "ANTISHIP",
|
||||||
GroundAttack: "STRIKE"
|
GroundAttack: "STRIKE",
|
||||||
|
Escort: "CAP HEAVY",
|
||||||
},
|
},
|
||||||
A_10A: COMMON_OVERRIDE,
|
A_10A: COMMON_OVERRIDE,
|
||||||
A_10C: COMMON_OVERRIDE,
|
A_10C: COMMON_OVERRIDE,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user