import { Card } from "../../../interfaces" import Set from "../SV5a" const card: Card = { set: Set, name: { ja: "キュウコン", 'zh-tw': "九尾", th: "คิวคอน" }, illustrator: "KEIICHIRO ITO", rarity: "Common", category: "Pokemon", dexId: [38], hp: 120, types: ["Fire"], description: { ja: "黄金に 輝く 体毛と 9本の 長い 尻尾を 持つ。 1000年は 生きると 言われる。", 'zh-tw': "擁有金光閃閃的體毛 以及9根長長的尾巴。 據說壽命長達1000年。", th: "มีขนที่เปล่งประกายสีทองและหางยาว 9 หาง ว่ากันว่ามีอายุถึง 1000 ปี" }, stage: "Stage1", attacks: [{ cost: ["Fire", "Fire"], name: { ja: "あやしいともしび", 'zh-tw': "奇異燈火", th: "แสงไฟประหลาด" }, damage: 90, effect: { ja: "相手のバトルポケモンをやけどとこんらんにする。", 'zh-tw': "將對手的戰鬥寶可夢【灼傷】與【混亂】。", th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]และ[สับสน]" } }], weaknesses: [{ type: "Water", value: "×2" }], retreat: 2, regulationMark: "H" } export default card