mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
42 lines
590 B
TypeScript
42 lines
590 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV6s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Dragapult ex"
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
category: "Pokemon",
|
|
hp: 320,
|
|
types: ["Dragon"],
|
|
stage: "Stage2",
|
|
suffix: "EX",
|
|
|
|
attacks: [{
|
|
name: {
|
|
id: "Jet Head"
|
|
},
|
|
|
|
damage: 70,
|
|
cost: ["Colorless"]
|
|
}, {
|
|
name: {
|
|
id: "Phantom Dive"
|
|
},
|
|
|
|
effect: {
|
|
id: "Letakkan sejumlah 6 Token Kerusakan pada Pokémon Cadangan lawan sesukanya."
|
|
},
|
|
|
|
damage: 200,
|
|
cost: ["Fire", "Psychic"]
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |