1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +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

49
data-asia/SV/SV6/081.ts Normal file
View File

@@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ドラパルトex",
'zh-tw': "多龍巴魯托ex"
},
category: "Pokemon",
rarity: "Double rare",
illustrator: "5ban Graphics",
hp: 320,
types: ["Dragon"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ジェットヘッド",
'zh-tw': "噴射頭擊"
},
damage: 70
}, {
cost: ["Fire", "Psychic"],
name: {
ja: "ファントムダイブ",
'zh-tw': "幻影奇襲"
},
damage: 200,
effect: {
ja: "ダメカン6個を、相手のベンチポケモンに好きなようにのせる。",
'zh-tw': "將6個傷害指示物以任意方式放置於對手的備戰寶可夢身上。"
}
}],
retreat: 1,
regulationMark: "H"
}
export default card