import java.awt.*;
import java.util.*;

public class TRUCK_ENEMY extends GENERIC_ENEMY{

  TRUCK_ENEMY(){
    super();
    LEN=3;
    cells = new GENERIC_CELL[3];
    Random r = new Random();
    x = 30 + 10*Math.abs(r.nextInt()%6);
    cells[0] = new GENERIC_CELL(x,30,Color.yellow);
    cells[1] = new GENERIC_CELL(x,20,Color.red);
    cells[2] = new GENERIC_CELL(x,10,Color.red);    
  }

}

