aotds-docks/src/lib/components/Output/Print/Hull/index.svelte

20 lines
404 B
Svelte
Raw Normal View History

2020-07-29 23:17:25 +00:00
<div>
<Armour armour={structure.armour} />
<Integrity
{isMovable}
hull={structure?.hull}
2020-07-29 23:17:25 +00:00
rating={structure.hull.rating}
advanced={structure.hull.advanced}
{ship_mass}
/>
</div>
<script>
2022-03-01 17:42:33 +00:00
import Integrity from "./Integrity/index.svelte";
2022-03-26 18:24:57 +00:00
import Armour from "./Armor.svelte";
2020-07-29 23:17:25 +00:00
export let structure = {};
export let ship_mass = 0;
export let isMovable = false;
2020-07-29 23:17:25 +00:00
</script>