File size: 381 Bytes
4ee4376
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import actors from './actors';

export default class trains extends actors {
  constructor (options) {
    super(options);

    this.type = 'train';
    this.heading = undefined;
    this.cars = 3;
  }

  spawn (cell) {
    this.cell = cell;
    this.tile = this.getTile(374);

    this.x = this.cell.x;
    this.y = this.cell.y;
    this.z = this.cell.z;

    this.create();
  }
}