// ******************************************************************************************
// AnyLargeAttack - uses any units to attack any target - large
// Straightforward basic attack with 1 team, avoids everything on route
// ******************************************************************************************

STRATEGY

DESCRIPTION
name=AnyLargeAttackT8
frequency=1
mintech=7
maxtech=8
house=all
losses=100
reactive=0
ENDDESCRIPTION

// The TEAMS:
TEAM
name anyTeam1
teamtype all
minunits 4
maxunits 8
ENDTEAM

TEAM
name anyTeam2
teamtype all
minunits 4
maxunits 8
ENDTEAM

// The TARGET:
TARGET
name enemy
targettype any
ENDTARGET

STAGING
name stagFront
relative enemy
stagingtype front
distance medium
threat lowthreat
ENDSTAGING

STEP

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

ENDSTEP

STEP

SEND
who all
destination enemy
route quickest
encounter attack
endstate attack
ENDSEND

ENDSTEP

STEP

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

ENDSTEP

// and thats your lot
ENDSTRATEGY

