import { Card } from "../../../interfaces" import Set from "../SV9" const card: Card = { set: Set, name: { ja: "ホップのウールー" }, illustrator: "MINAMINAMI Take", rarity: "None", category: "Pokemon", dexId: [831], hp: 70, types: ["Colorless"], description: { ja: "毛が 伸びすぎると 動けない。 ウールーの 体毛で 織られた 布は 驚くほど 丈夫。" }, stage: "Basic", attacks: [{ cost: ["Colorless", "Colorless", "Colorless"], name: { ja: "けとばす" }, damage: 50 }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 1 } export default card