
// ******************************************************************************************
// AirAndLand - Base attack from two land and air
// Straightforward basic attack with 1 team, avoids everything on route
// ******************************************************************************************

STRATEGY

DESCRIPTION
name=GenAirAndLandT6
frequency=2
mintech=6
maxtech=6
house=all
losses=200
reactive=0
ENDDESCRIPTION

// The TEAMS:
TEAM
name LandTeam
teamtype fast
minunits 5
maxunits 10
ENDTEAM

TEAM
name AirTeam
teamtype AttackAircraft
minunits 2
maxunits 4
ENDTEAM

// The TARGET:
TARGET
name Enemy
targettype enemybase
ENDTARGET

STAGING
name stagFront
relative Enemy
stagingtype front
distance near
threat lowthreat
ENDSTAGING

STEP

SEND
who LandTeam
destination stagFront
route lowthreat
encounter attack
endstate attack
ENDSEND

ENDSTEP

STEP

SEND
who all
destination Enemy
route lowthreat
encounter attack
endstate attack
ENDSEND

ENDSTEP

STEP

SEND
who all
destination homebase
route lowthreat
encounter avoid
endstate guard
ENDSEND

ENDSTEP

// and thats your lot
ENDSTRATEGY

