1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00

69 lines
859 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 '../Promos'
const card: Card = {
name: {
en: "Garchomp-EX",
},
illustrator: "Ryo Ueda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
445,
],
hp: 180,
types: [
"Dragon",
],
suffix: "EX",
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Shred",
},
effect: {
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon.",
},
damage: 30,
},
{
cost: [
"Water",
"Fightning",
"Fightning",
"Colorless",
],
name: {
en: "Hyper Beam",
},
effect: {
en: "Flip a coin. If heads, discard an Energy attached to your opponent's Active Pokémon.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
}
export default card