Added LHA to Caucasus campaigns.

This commit is contained in:
Khopa 2020-08-10 18:41:41 +02:00
parent 448057a0b9
commit bff33e6992

View File

@ -41,7 +41,9 @@ class CaucasusTheater(ConflictTheater):
self.nalchik = ControlPoint.from_airport(caucasus.Nalchik, LAND, SIZE_REGULAR, 1.1)
self.mineralnye = ControlPoint.from_airport(caucasus.Mineralnye_Vody, LAND, SIZE_BIG, 1.3)
self.mozdok = ControlPoint.from_airport(caucasus.Mozdok, LAND, SIZE_BIG, 1.1)
self.carrier_1 = ControlPoint.carrier("Carrier", mapping.Point(-305810.6875, 406399.1875), 1001)
self.lha = ControlPoint.lha("Tarawa", mapping.Point(-326050.6875, 519452.1875), 1002)
self.vaziani.frontline_offset = 0.5
self.vaziani.base.strength = 1
@ -67,9 +69,13 @@ class CaucasusTheater(ConflictTheater):
self.add_controlpoint(self.krasnodar, connected_to=[self.krymsk, self.maykop])
self.add_controlpoint(self.carrier_1)
self.add_controlpoint(self.lha)
self.carrier_1.captured = True
self.carrier_1.captured_invert = True
self.lha.captured = True
self.lha.captured_invert = True
self.batumi.captured = True
self.anapa.captured_invert = True
@ -103,6 +109,7 @@ class WesternGeorgia(ConflictTheater):
self.gudauta = ControlPoint.from_airport(caucasus.Gudauta, COAST_DR_E, SIZE_REGULAR, 1.2)
self.sochi = ControlPoint.from_airport(caucasus.Sochi_Adler, COAST_DR_E, SIZE_BIG, IMPORTANCE_HIGH)
self.carrier_1 = ControlPoint.carrier("Carrier", mapping.Point(-285810.6875, 496399.1875), 1001)
self.lha = ControlPoint.lha("Tarawa", mapping.Point(-326050.6875, 519452.1875), 1002)
self.add_controlpoint(self.kutaisi, connected_to=[self.senaki])
self.add_controlpoint(self.senaki, connected_to=[self.kobuleti, self.sukhumi, self.kutaisi])
@ -111,9 +118,12 @@ class WesternGeorgia(ConflictTheater):
self.add_controlpoint(self.gudauta, connected_to=[self.sochi, self.sukhumi])
self.add_controlpoint(self.sochi, connected_to=[self.gudauta])
self.add_controlpoint(self.carrier_1)
self.add_controlpoint(self.lha)
self.carrier_1.captured = True
self.carrier_1.captured_invert = True
self.lha.captured = True
self.lha.captured_invert = True
self.kobuleti.captured = True
self.sochi.captured_invert = True
@ -176,6 +186,7 @@ class NorthCaucasus(ConflictTheater):
self.mineralnye = ControlPoint.from_airport(caucasus.Mineralnye_Vody, LAND, SIZE_BIG, 1.3)
self.mozdok = ControlPoint.from_airport(caucasus.Mozdok, LAND, SIZE_BIG, 1.1)
self.carrier_1 = ControlPoint.carrier("Carrier", mapping.Point(-285810.6875, 496399.1875), 1001)
self.lha = ControlPoint.lha("Tarawa", mapping.Point(-326050.6875, 519452.1875), 1002)
self.vaziani.frontline_offset = 0.5
self.vaziani.base.strength = 1
@ -188,6 +199,7 @@ class NorthCaucasus(ConflictTheater):
self.add_controlpoint(self.mineralnye, connected_to=[self.nalchik, self.mozdok, self.maykop])
self.add_controlpoint(self.maykop, connected_to=[self.mineralnye])
self.add_controlpoint(self.carrier_1, connected_to=[])
self.add_controlpoint(self.lha, connected_to=[])
self.carrier_1.captured = True
self.vaziani.captured = True
@ -195,4 +207,6 @@ class NorthCaucasus(ConflictTheater):
self.carrier_1.captured_invert = True
self.maykop.captured_invert = True
self.lha.captured = True
self.lha.captured_invert = True
self.mineralnye.captured_invert = True