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

53 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ドラパルトex",
'zh-tw': "多龍巴魯托ex",
th: "โดราพัลท์ex"
},
category: "Pokemon",
rarity: "Double rare",
illustrator: "5ban Graphics",
hp: 320,
types: ["Dragon"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ジェットヘッド",
'zh-tw': "噴射頭擊",
th: "เจ็ตเฮด"
},
damage: 70
}, {
cost: ["Fire", "Psychic"],
name: {
ja: "ファントムダイブ",
'zh-tw': "幻影奇襲",
th: "แฟนธอมไดฟ์"
},
damage: 200,
effect: {
ja: "ダメカン6個を、相手のベンチポケモンに好きなようにのせる。",
'zh-tw': "將6個傷害指示物以任意方式放置於對手的備戰寶可夢身上。",
th: "วางตัวนับแดเมจ 6 ตัว บนโปเกมอนบนเบนช์ฝ่ายตรงข้ามตามชอบ"
}
}],
retreat: 1,
regulationMark: "H"
}
export default card