diff --git a/dist/img/celestials/green_0.svg b/dist/img/celestials/green_0.svg new file mode 100644 index 0000000..f0357e2 --- /dev/null +++ b/dist/img/celestials/green_0.svg @@ -0,0 +1,107 @@ + + + + diff --git a/dist/img/favicon.ico b/dist/img/favicon.ico new file mode 100644 index 0000000..e000276 Binary files /dev/null and b/dist/img/favicon.ico differ diff --git a/dist/img/favicon_0.png b/dist/img/favicon_0.png new file mode 100644 index 0000000..4019bd3 Binary files /dev/null and b/dist/img/favicon_0.png differ diff --git a/dist/index.html b/dist/index.html index 8ad5c42..f835d3a 100644 --- a/dist/index.html +++ b/dist/index.html @@ -4,6 +4,7 @@
+ diff --git a/js/world/spawn.mjs b/js/world/spawn.mjs index c3a8e34..ee33e79 100644 --- a/js/world/spawn.mjs +++ b/js/world/spawn.mjs @@ -1,5 +1,6 @@ import Ship from './ship.mjs'; import Module from './module.mjs'; +import Celestial from './ship.mjs'; import {modules} from '../data.mjs'; import * as world from './index.mjs'; @@ -11,3 +12,8 @@ export function player() { world.ships.add(ship); world.setPlayerShip(ship); } + +// Make module length = 1, define all other length off that. +export function celestial() { + let celestial = new Celestial(0, 50, 45) +}