Gravwell-Online/common/src/data/spaceships.ts
2022-07-20 21:24:09 -06:00

21 lines
No EOL
461 B
TypeScript

import { ISpaceship } from "../types/Spaceship";
/**
* The spaceships that are supported in the system, the "id" property **must**
* exist in the spaceship.svelte file as an icon. The first icon in this list
* will be used by the server to assign new players' ship icon.
*/
export const spaceships: ISpaceship[] = [
{
name: "Space Shuttle",
id: "space-shuttle"
},
{
name: "Rocket",
id: "rocket"
},
{
name: "Sailboat",
id: "sailboat"
},
];