1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

69 lines
870 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 '../XY Black Star 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: [
"Fighting",
],
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",
"Fighting",
"Fighting",
"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