summaryrefslogtreecommitdiff
path: root/game/entities/pill.js
diff options
context:
space:
mode:
Diffstat (limited to 'game/entities/pill.js')
-rw-r--r--game/entities/pill.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/game/entities/pill.js b/game/entities/pill.js
new file mode 100644
index 0000000..13054b0
--- /dev/null
+++ b/game/entities/pill.js
@@ -0,0 +1,18 @@
+'use strict';
+
+var Pill = function(game, x, y, frame) {
+ Phaser.Sprite.call(this, game, x, y, 'pill', frame);
+ this.scale = {x: 0.01, y: 0.01};
+ this.anchor = {x: 0.5, y: 0.5};
+
+ this.score = 1;
+};
+
+Pill.prototype = Object.create(Phaser.Sprite.prototype);
+Pill.prototype.constructor = Pill;
+
+Pill.prototype.getBounds = function() {
+ return new Phaser.Rectangle(this.x, this.y, 0.2, 0.2);
+};
+
+module.exports = Pill;