import { ObjType } from "../BattleConst"; import { MapData } from "./MapData"; import { ObjData } from "./ObjData"; export class StaticNailBlockData extends ObjData { init(map: MapData, type: ObjType, gridX: number, gridY: number): void { super.init(map, type, gridX, gridY); this.canSlide = false; this._imgName = 'UI_yxz_tsfk_dzgdk'; } clone(): StaticNailBlockData { return this.cloneValue(new StaticNailBlockData()) as StaticNailBlockData; } }