aotds-docks/src/lib/components/Output/Print/Weapons/stories.js

29 lines
442 B
JavaScript
Raw Normal View History

2022-03-01 17:42:33 +00:00
import Component from ".";
2020-07-29 21:08:52 +00:00
export default {
2022-03-01 17:42:33 +00:00
title: "printouts/weapons",
2020-07-29 21:08:52 +00:00
};
export const basic = () => ({
2022-03-01 17:42:33 +00:00
Component,
props: {
weapons: [
2020-07-29 21:08:52 +00:00
{
2022-03-01 17:42:33 +00:00
weapon_type: "submunition",
arcs: ["F"],
mass: 1,
cost: 3,
id: 1,
2020-07-29 21:08:52 +00:00
},
{
2022-03-01 17:42:33 +00:00
weapon_type: "beam",
weapon_class: "2",
arcs: ["A", "AS", "FS"],
mass: 2,
cost: 6,
id: 2,
},
],
},
});