1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

55 lines
1.4 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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