From c508e9ef283a4069ea1af923ca1a241d2c954a1e Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Sun, 21 Sep 2014 10:31:48 +0200 Subject: Renamed prefab folder --- game/entities/poisonPill.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 game/entities/poisonPill.js (limited to 'game/entities/poisonPill.js') diff --git a/game/entities/poisonPill.js b/game/entities/poisonPill.js new file mode 100644 index 0000000..408f77f --- /dev/null +++ b/game/entities/poisonPill.js @@ -0,0 +1,18 @@ +'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}; + + this.score = 1; +}; + +PoisonPill.prototype = Object.create(Phaser.Sprite.prototype); +PoisonPill.prototype.constructor = PoisonPill; + +PoisonPill.prototype.getBounds = function() { + return new Phaser.Rectangle(this.x, this.y, 0.2, 0.2); +}; + +module.exports = PoisonPill; -- cgit v1.2.3