-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCreeperx2.js
52 lines (37 loc) · 973 Bytes
/
Creeperx2.js
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
48
49
50
51
52
//FightCode can only understand your robot
//if its class is called Robot
var cannonRotated = false;
var Robot = function(robot) {
robot.clone();
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.turnRight(360);
};
Robot.prototype.onScannedRobot = function(ev) {
var robot = ev.robot;
var scanned = ev.scannedRobot;
if (scanned.id !== robot.parentId && scanned.parentId !== robot.id) {
robot = ev.robot;
robot.fire();
robot.ahead(200);
robot.fire();
}
};
//i need else statement for onRobotCollision.
Robot.prototype.onRobotCollision = function(ev) {
var robot = ev.robot;
var scanned = ev.scannedRobot;
if (scanned.id !== robot.parentId && scanned.parentId !== robot.id) {
robot.fire();
robot.back(20);
robot.ahead(5);
} else {
robot.turnRight(360);
}
};
Robot.prototype.onHitByBullet = function(ev) {
var robot = ev.robot;
robot.disappear();
robot.ahead(50);
};