mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
51 lines
859 B
TypeScript
51 lines
859 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Hydreigon ex"
|
||
},
|
||
|
||
illustrator: "AKIRA EGAWA",
|
||
category: "Pokemon",
|
||
hp: 330,
|
||
types: ["Darkness"],
|
||
stage: "Stage2",
|
||
suffix: "EX",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Crush Head"
|
||
},
|
||
|
||
effect: {
|
||
id: "Buang 3 kartu dari atas Deck lawan ke Trash."
|
||
},
|
||
|
||
damage: 200,
|
||
cost: ["Darkness", "Colorless"]
|
||
}, {
|
||
name: {
|
||
id: "Obsidian"
|
||
},
|
||
|
||
effect: {
|
||
id: "Serangan ini juga memberikan kerusakan masing-masing sejumlah 130 kepada 2 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
|
||
},
|
||
|
||
damage: 130,
|
||
cost: ["Psychic", "Darkness", "Metal", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |