import { Card } from "../../../interfaces" import Set from "../SV8" const card: Card = { set: Set, name: { ja: "カラナクシ" }, illustrator: "Shinya Komatsu", rarity: "Common", category: "Pokemon", dexId: [422], hp: 70, types: ["Water"], description: { ja: "磯辺で 見かけることが 多い。 ある程度の 時間であれば 陸上でも 活動できる。" }, stage: "Basic", attacks: [{ cost: ["Colorless", "Colorless"], name: { ja: "うちみず" }, damage: 30 }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 2 } export default card