Example #1
0
 public FighterRobot(int x, int y, Map m) : base(x, y, m, 0.22f) // Speedfactor changed there
 {
     _Hp = 50;
     DistanceFromPlayer = 3;
     Arme    = new ShotgunAI(this);
     Couleur = Color.Red;
 }
Example #2
0
 public OPFighterRobot(int x, int y, Map m) : base(x, y, m, 0.45f) // Speedfactor changed there
 {
     _Hp  = 80;
     Arme = new ShotgunAI(this);
     DistanceFromPlayer = 3;
     Couleur            = Color.Orange;
 }