21 lines
No EOL
461 B
TypeScript
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"
|
|
},
|
|
]; |