11 lines
377 B
TypeScript
11 lines
377 B
TypeScript
import type Phaser from 'phaser'
|
|
import { EnemyBase, type PathPoint } from './EnemyBase'
|
|
import { getRandomQuote } from '../data/quotes'
|
|
|
|
export class FreshGraduate extends EnemyBase {
|
|
constructor(scene: Phaser.Scene, pathPoints: PathPoint[]) {
|
|
super(scene, pathPoints, 30, 120, 2, 10, 'enemy-fresh')
|
|
}
|
|
getQuote(): string { return getRandomQuote('FreshGraduate') }
|
|
}
|