1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

55 lines
1.3 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 "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "ヤクデ",
'zh-tw': "燒火蚣",
th: "ยาคุเดะ"
},
illustrator: "Yukiko Baba",
rarity: "Common",
category: "Pokemon",
dexId: [850],
hp: 80,
types: ["Fire"],
description: {
ja: "体に 溜めた 可燃ガスで 発熱。 とくに お腹の 黄色い 部分が 熱いのだ。",
'zh-tw': "靠儲存在體內的可燃氣體來發熱。熱度最高的是 腹部的黃色部分。",
th: "ปล่อยความร้อนจากแก๊สเผาไหม้ที่กักไว้ในร่าง โดยเฉพาะส่วนสีเหลืองตรงท้องนั้นร้อนมาก"
},
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
ja: "ヒートダイブ",
'zh-tw': "高溫奇襲",
th: "ฮีทไดฟ์"
},
damage: 30,
effect: {
ja: "このポケモンにも10ダメージ。",
'zh-tw': "這隻寶可夢也受到10點傷害。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card