summaryrefslogtreecommitdiff
path: root/game/entities/poisonPill.js
diff options
context:
space:
mode:
Diffstat (limited to 'game/entities/poisonPill.js')
-rw-r--r--game/entities/poisonPill.js14
1 files changed, 4 insertions, 10 deletions
diff --git a/game/entities/poisonPill.js b/game/entities/poisonPill.js
index 408f77f..08b2952 100644
--- a/game/entities/poisonPill.js
+++ b/game/entities/poisonPill.js
@@ -1,18 +1,12 @@
'use strict';
-var PoisonPill = function(game, x, y, frame) {
- Phaser.Sprite.call(this, game, x, y, 'poison-pill', frame);
- this.scale = {x: 0.01, y: 0.01};
- this.anchor = {x: 0.5, y: 0.5};
+var EntityBase = require('../entities/entityBase');
- this.score = 1;
+var PoisonPill = function(game, x, y) {
+ EntityBase.call(this, game, x, y, 'poison-pill');
};
-PoisonPill.prototype = Object.create(Phaser.Sprite.prototype);
+PoisonPill.prototype = Object.create(EntityBase.prototype);
PoisonPill.prototype.constructor = PoisonPill;
-PoisonPill.prototype.getBounds = function() {
- return new Phaser.Rectangle(this.x, this.y, 0.2, 0.2);
-};
-
module.exports = PoisonPill;