lib/api/triggers/BlackholeStrength.js

  1. const Entity = require('../Entity');
  2. class BlackholeStrength extends Entity {
  3. /**
  4. * Creates an instance of {@link BlackholeStrength}, which is implemented by the underlying C# class `BlackholeStrengthTrigger` in Celeste.
  5. * @constructor
  6. * @extends Trigger
  7. * @param {Object} [data={}] - An object containing the attributes of the {@link BlackholeStrength} to be created
  8. */
  9. constructor(data = {}) {
  10. return new Entity('blackholeStrength', Object.assign({
  11. // fill in default property key/values specific to this Trigger
  12. }, data));
  13. }
  14. }
  15. module.exports = BlackholeStrength;