mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
@@ -1,25 +1,26 @@
|
||||
from .SWPack import *
|
||||
from .a4ec import *
|
||||
from .a6a import *
|
||||
from .a7e import *
|
||||
from .f4b import *
|
||||
from .f15d import *
|
||||
from .f16i_idf import *
|
||||
from .fa18efg import *
|
||||
from .f84g import *
|
||||
from .f100 import *
|
||||
from .f104 import *
|
||||
from .f105 import *
|
||||
from .f15d import *
|
||||
from .f16i_idf import *
|
||||
from .f22a import *
|
||||
from .f4b import *
|
||||
from .f84g import *
|
||||
from .fa18efg import *
|
||||
from .frenchpack import *
|
||||
from .hercules import *
|
||||
from .highdigitsams import *
|
||||
from .jas39 import *
|
||||
from .ov10a import *
|
||||
from .spanishnavypack import *
|
||||
from .su30 import *
|
||||
from .su57 import *
|
||||
from .uh60l import *
|
||||
from .ov10a import *
|
||||
from .swedishmilitaryassetspack import *
|
||||
from .SWPack import *
|
||||
from .uh60l import *
|
||||
|
||||
|
||||
def load_mods() -> None:
|
||||
|
||||
1
pydcs_extensions/spanishnavypack/__init__.py
Normal file
1
pydcs_extensions/spanishnavypack/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from .spanishnavypack import *
|
||||
71
pydcs_extensions/spanishnavypack/spanishnavypack.py
Normal file
71
pydcs_extensions/spanishnavypack/spanishnavypack.py
Normal file
@@ -0,0 +1,71 @@
|
||||
from dcs.unittype import ShipType
|
||||
|
||||
from game.modsupport import shipmod
|
||||
|
||||
|
||||
@shipmod
|
||||
class L61(ShipType):
|
||||
id = "L61"
|
||||
name = "L61 Juan Carlos I"
|
||||
plane_num = 40
|
||||
helicopter_num = 36
|
||||
parking = 4
|
||||
detection_range = 300000
|
||||
threat_range = 150000
|
||||
air_weapon_dist = 150000
|
||||
|
||||
|
||||
@shipmod
|
||||
class F100(ShipType):
|
||||
id = "F100"
|
||||
name = "F100 Álvaro de Bazán"
|
||||
helicopter_num = 1
|
||||
parking = 1
|
||||
detection_range = 160000
|
||||
threat_range = 45000
|
||||
air_weapon_dist = 45000
|
||||
|
||||
|
||||
@shipmod
|
||||
class F105(ShipType):
|
||||
id = "F105"
|
||||
name = "F105 Cristobal Colon"
|
||||
helicopter_num = 1
|
||||
parking = 1
|
||||
detection_range = 160000
|
||||
threat_range = 45000
|
||||
air_weapon_dist = 45000
|
||||
|
||||
|
||||
@shipmod
|
||||
class L52(ShipType):
|
||||
id = "L52"
|
||||
name = "L52 Castilla"
|
||||
helicopter_num = 2
|
||||
parking = 2
|
||||
detection_range = 300000
|
||||
threat_range = 150000
|
||||
air_weapon_dist = 150000
|
||||
|
||||
|
||||
@shipmod
|
||||
class L02(ShipType):
|
||||
id = "L02"
|
||||
name = "L02 Canberra"
|
||||
plane_num = 40
|
||||
helicopter_num = 36
|
||||
parking = 4
|
||||
detection_range = 300000
|
||||
threat_range = 150000
|
||||
air_weapon_dist = 150000
|
||||
|
||||
|
||||
@shipmod
|
||||
class DDG39(ShipType):
|
||||
id = "DDG39"
|
||||
name = "HMAS HOBART DDG39"
|
||||
helicopter_num = 1
|
||||
parking = 1
|
||||
detection_range = 160000
|
||||
threat_range = 45000
|
||||
air_weapon_dist = 45000
|
||||
Reference in New Issue
Block a user