1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

55
data-asia/SV/SV5K/010.ts Normal file
View File

@ -0,0 +1,55 @@
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