import { Card } from "../../../interfaces" import Set from "../S-P" const card: Card = { set: Set, name: { 'zh-tw': "利歐路" }, illustrator: "Taira Akitsu", category: "Pokemon", hp: 60, types: ["Fighting"], description: { 'zh-tw': "精力充沛,可以奔跑一整夜。由於牠十分活潑,帶牠散步的人非常辛苦。" }, stage: "Basic", attacks: [{ name: { 'zh-tw': "踢倒" }, damage: 50, cost: ["Fighting", "Fighting"] }], weaknesses: [{ type: "Psychic", value: "×2" }], retreat: 1, regulationMark: "F" } export default card