Add Cowboy's E-7A Wedgetail AI Mod (#495)

This commit is contained in:
Drexyl
2025-03-27 06:40:07 +11:00
committed by GitHub
parent 631321950e
commit 889b7299d3
12 changed files with 58 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ from .a4ec import *
from .a7e import *
from .a6a import *
from .bandit_clouds import *
from .e7a import *
from .ea6b import *
from .f9f import *
from .f100 import *

View File

@@ -0,0 +1 @@
from .e7a import *

View File

@@ -0,0 +1,33 @@
from typing import Set
from dcs import task
from dcs.planes import PlaneType
from dcs.weapons_data import Weapons
from game.modsupport import planemod
from pydcs_extensions.weapon_injector import inject_weapons
@planemod
class CLP_E7A(PlaneType):
id = "CLP_E7A"
large_parking_slot = True
height = 12.5
width = 34
length = 35.5
fuel_max = 90700
max_speed = 1009.008
chaff = 120
flare = 60
charge_total = 240
chaff_charge_size = 1
flare_charge_size = 2
eplrs = True
radio_frequency = 243
livery_name = "CLP_E7A" # from type
pylons: Set[int] = set()
tasks = [task.AWACS]
task_default = task.AWACS