-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTealTank.java
47 lines (45 loc) · 1.3 KB
/
TealTank.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import java.awt.Color;
public class TealTank extends Bot {
static final int speed = 60;
static final double rotationSpeed = WanshotModel.degreesToRadians(800);
static final int stun = -8;
static final int shellCap = 1;
static final int shellCooldown = -200;
static final int frm = -13;
static final double stopAndTurn = WanshotModel.degreesToRadians(35);
static final double uTurn = WanshotModel.degreesToRadians(160);
static final int updateTargetCount = -2;
static final int shellSensitivity = 800;
static final boolean abortNonmove = true;
static final double turretRotationSpeed = WanshotModel.degreesToRadians(1);
static final double turretArcSize = WanshotModel.degreesToRadians(1);
static final int shellType = Shell.MISSLE_SPEED;
static final int shellBounceAmount = 0;
static final Color color = Color.decode("#154734");
static final Color turretColor = Color.decode("#0E4732");
static final Color sideColor = Color.decode("#B0896B");
public TealTank(int x, int y) {
super(
x,
y,
speed,
rotationSpeed,
stun,
shellCap,
shellCooldown,
frm,
stopAndTurn,
uTurn,
updateTargetCount,
shellSensitivity,
abortNonmove,
turretRotationSpeed,
turretArcSize,
shellType,
shellBounceAmount,
color,
turretColor,
sideColor
);
}
}