diff --git a/src/components/Output/Print/Hull/Armour/index.svelte b/src/components/Output/Print/Hull/Armour/index.svelte new file mode 100644 index 0000000..f0be2fa --- /dev/null +++ b/src/components/Output/Print/Hull/Armour/index.svelte @@ -0,0 +1,34 @@ +
+ {#each armour as layer (layer)} +
+ {#each _.range(layer.rating) as i (i) } +
+
+ {/each} +
+ {/each} + +
+ + + + diff --git a/src/components/Output/Print/index.svelte b/src/components/Output/Print/index.svelte index 676a5a0..bd864fe 100644 --- a/src/components/Output/Print/index.svelte +++ b/src/components/Output/Print/index.svelte @@ -1,5 +1,7 @@
+ + import Identification from './Identification'; import Integrity from './Hull/Integrity'; + import Armour from './Hull/Armour'; export let ship;