import { Card } from "../../../interfaces" import Set from "../SC2D" const card: Card = { set: Set, name: { 'zh-tw': "路卡利歐V" }, illustrator: "AKIRA EGAWA", category: "Pokemon", hp: 210, types: ["Fighting"], stage: "Basic", suffix: "V", attacks: [{ name: { 'zh-tw': "波導彈" }, effect: { 'zh-tw': "對手的1隻備戰寶可夢也受到20點傷害。[在備戰區不計算弱點・抵抗力。]" }, damage: 40, cost: ["Fighting"] }, { name: { 'zh-tw': "擊潰粉碎" }, effect: { 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「擊潰粉碎」。" }, damage: 180, cost: ["Fighting", "Fighting", "Colorless"] }], weaknesses: [{ type: "Psychic", value: "×2" }], retreat: 2, regulationMark: "D" } export default card