import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "路卡利歐V" }, illustrator: "aky CG Works", category: "Pokemon", hp: 210, types: ["Fighting"], stage: "Basic", suffix: "V", attacks: [{ name: { 'zh-tw': "波導彈" }, damage: 120, cost: ["Fighting", "Fighting", "Colorless"] }], weaknesses: [{ type: "Psychic", value: "×2" }], retreat: 2, regulationMark: "E" } export default card