Skip to content

Instantly share code, notes, and snippets.

@vaal-
Created February 8, 2019 19:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vaal-/8176bf75b85fb7636e33568b1e376362 to your computer and use it in GitHub Desktop.
Save vaal-/8176bf75b85fb7636e33568b1e376362 to your computer and use it in GitHub Desktop.
def g_b_s2ak_20gk(sortie):
if sortie.coalition != 2:
return False
if sortie.aircraft.cls not in ['aircraft_medium', 'aircraft_heavy']:
return False
if sortie.gk_total < 20:
return False
if sortie.ak_total < 2:
return False
return True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment