import { Card } from "../../../interfaces" import Set from "../SV8" const card: Card = { set: Set, name: { ja: "ヤルキモノ" }, illustrator: "Kurata So", rarity: "Common", category: "Pokemon", dexId: [288], hp: 90, types: ["Colorless"], description: { ja: "いつも 暴れているので すぐに お腹が 空いてしまうが 食事の ときも じっとして いられない。" }, stage: "Stage1", attacks: [{ cost: ["Colorless", "Colorless"], name: { ja: "スラッシュクロー" }, damage: 50 }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 2 } export default card