The only functionally relevant change is that orbiter scenes are now saved via SkinFlavourItem (as of U39?). The rest is cleanup of the types because the ship customization stuff was duplicated all over the place. Reviewed-on: #2402 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
13 lines
388 B
TypeScript
13 lines
388 B
TypeScript
import { Types } from "mongoose";
|
|
import { IColor } from "@/src/types/inventoryTypes/commonInventoryTypes";
|
|
import { IShipAttachments } from "./personalRoomsTypes";
|
|
|
|
export interface IShipDatabase {
|
|
ItemType: string;
|
|
ShipOwnerId: Types.ObjectId;
|
|
ShipExteriorColors?: IColor;
|
|
AirSupportPower: string;
|
|
ShipAttachments?: IShipAttachments;
|
|
SkinFlavourItem?: string;
|
|
}
|