Advertisement
6jarjar6

"Tiger_II" Armored Aces

Jun 9th, 2014
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. public class Tiger_II : Tank
  2. {
  3.   public new const int Id = 10207;
  4.  
  5.   public Tiger_II()
  6.   {
  7.     this.name = "Tiger II Henschel";
  8.     this.prefabPath = "010207_Tiger_II_Henschel/Tiger_II_Henschel";
  9.     this.HP(760, 990);
  10.     this.Turret360Rotation(18, 15);
  11.     this.ShotsPerMinute(9f, 11f);
  12.     this.ShellDamageMin(150, 180);
  13.     this.ShellDamageMax(170, 250);
  14.     this.MaxSpeed(22, 30);
  15.     this.MaxReverseSpeed(11, 15);
  16.   }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement