25 lines
964 B
TypeScript
25 lines
964 B
TypeScript
import { Arena } from "../field/arena";
|
|
import { ArenaTag, loadArenaTag } from "../data/arena-tag";
|
|
import { Biome } from "#enums/biome";
|
|
import { Weather } from "../data/weather";
|
|
import { Terrain } from "#app/data/terrain";
|
|
|
|
export default class ArenaData {
|
|
public biome: Biome;
|
|
public weather: Weather | null;
|
|
public terrain: Terrain | null;
|
|
public tags: ArenaTag[];
|
|
|
|
constructor(source: Arena | any) {
|
|
const sourceArena = source instanceof Arena ? source as Arena : null;
|
|
this.biome = sourceArena ? sourceArena.biomeType : source.biome;
|
|
this.weather = sourceArena ? sourceArena.weather : source.weather ? new Weather(source.weather.weatherType, source.weather.turnsLeft) : null;
|
|
this.terrain = sourceArena ? sourceArena.terrain : source.terrain ? new Terrain(source.terrain.terrainType, source.terrain.turnsLeft) : null;
|
|
this.tags = [];
|
|
|
|
if (source.tags) {
|
|
this.tags = source.tags.map(t => loadArenaTag(t));
|
|
}
|
|
}
|
|
}
|