class Asteroid extends Body { constructor(data) { super(data) this.bodyType = 'asteroid'; } tick() { } }