mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
15 lines
394 B
Python
15 lines
394 B
Python
from __future__ import annotations
|
|
|
|
from game.commander.tasks.frontlinestancetask import FrontLineStanceTask
|
|
from game.ground_forces.combat_stance import CombatStance
|
|
|
|
|
|
class RetreatStance(FrontLineStanceTask):
|
|
@property
|
|
def stance(self) -> CombatStance:
|
|
return CombatStance.RETREAT
|
|
|
|
@property
|
|
def have_sufficient_front_line_advantage(self) -> bool:
|
|
return True
|