1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

63
data-asia/SV/SV4K/011.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "ドンメル",
'zh-tw': "呆火駝",
th: "ดอนเมล"
},
illustrator: "Mina Nakai",
rarity: "Common",
category: "Pokemon",
dexId: [322],
hp: 80,
types: ["Fire"],
description: {
ja: "1200度の マグマが 体内で 燃えている。 寒くなると マグマが 固まるので 動きが 鈍くなる。",
'zh-tw': "體內燃燒著1200度的熔岩。一旦氣溫變低,熔岩就會凝固, 動作也會因此變得遲緩。",
th: "มีแม็กมา 1200 องศาเซลเซียสไหลอยู่ในร่างกาย พออากาศเย็นลงแม็กมาจะแข็งตัว ทำให้เคลื่อนไหวได้ช้าลง"
},
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
ja: "こがす",
'zh-tw': "灼熱",
th: "เผา"
},
effect: {
ja: "相手のバトルポケモンをやけどにする。",
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]"
}
}, {
cost: ["Fire", "Fire", "Colorless"],
name: {
ja: "ヒートブラスト",
'zh-tw': "高溫爆破",
th: "ฮีทบลาสต์"
},
damage: 60
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card