forked from RKALM/fightcodeRobot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreeper.js
More file actions
47 lines (31 loc) · 706 Bytes
/
Creeper.js
File metadata and controls
47 lines (31 loc) · 706 Bytes
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
//FightCode can only understand your robot
//if its class is called Robot
var cannonRotated = false;
var Robot = function(robot) {
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.turnRight(360);
};
Robot.prototype.onScannedRobot = function(ev) {
var robot;
robot = ev.robot;
robot.stop();
robot.fire();
robot.ahead(200);
robot.fire();
};
Robot.prototype.onRobotCollision = function(ev) {
var robot;
robot = ev.robot;
robot.stop();
robot.fire();
robot.back(20);
robot.ahead(5);
};
Robot.prototype.onHitByBullet = function(ev) {
var robot;
robot = ev.robot;
robot.disappear();
robot.ahead(50);
};