This repository has been archived on 2021-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
scriptcraft/src/main/js/modules/drone/firework.js

22 lines
455 B
JavaScript

'use strict';
/*global module, require*/
var fireworks = require('fireworks');
/*************************************************************************
### Drone.firework() method
Launches a firework at the drone's location.
#### Example
To launch a firework:
var drone = new Drone(self);
drone.firework();
***/
module.exports = function(Drone){
Drone.extend( function firework( ) {
fireworks.firework( this.getLocation() );
});
};