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

52 lines
905 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Gengar ex"
},
illustrator: "Nisota Niso",
category: "Pokemon",
hp: 310,
types: ["Darkness"],
stage: "Stage2",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
id: "Kutukan Merasuk"
},
effect: {
id: "Selama Pokémon ini ada di Arena, tiap kali lawan mengenakan Energi dari Kartu Pegangan pada Pokémon, letakkan 2 Token Kerusakan pada Pokémon tersebut untuk tiap lembar Energi."
}
}],
attacks: [{
name: {
id: "Trick Step"
},
effect: {
id: "Pemain dapat memilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu memindahkannya ke Pokémon Cadangan lawan."
},
damage: 160,
cost: ["Darkness", "Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card