import { Card } from "../../../interfaces" import Set from "../SVD" const card: Card = { set: Set, name: { 'zh-tw': "利歐路" }, illustrator: "chibi", category: "Pokemon", hp: 70, types: ["Fighting"], description: { 'zh-tw': "夥伴們之間會透過發出波導來與彼此溝通。 跑步可以跑上一整晚。" }, stage: "Basic", attacks: [{ name: { 'zh-tw': "出拳" }, damage: 10, cost: ["Fighting"] }, { name: { 'zh-tw': "突擊" }, effect: { 'zh-tw': "這隻寶可夢也受到20點傷害。" }, damage: 50, cost: ["Fighting", "Colorless"] }], weaknesses: [{ type: "Psychic", value: "×2" }], retreat: 1, regulationMark: "G" } export default card