Skip to content

Commit d9625e2

Browse files
committed
decrease cat health
1 parent 0996159 commit d9625e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

engine/src/main/battlecode/common/UnitType.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package battlecode.common;
22

33
public enum UnitType {
4-
// health, size, speed, visionRadius, actionCooldown
4+
// health, size, visionConeRadiusSquared, visionConeAngle, actionCooldown, movementCooldown, bytecodeLimit
55
BABY_RAT(100, 1, 20, 90, 10, 10, 17500),
66
RAT_KING(500, 3, 25, 360, 10, 40, 20000),
7-
CAT(10_000, 2, 17, 180, 30, 20, 17500);
7+
CAT(4000, 2, 17, 180, 30, 20, 17500);
88

99
// amount of health robot initially starts with
1010
public final int health;

0 commit comments

Comments
 (0)