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

89 lines
1.2 KiB
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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Guzzlord-GX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
799,
],
hp: 210,
types: [
"Darkness",
],
suffix: "GX",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Eat Sloppily",
},
effect: {
en: "Discard the top 5 cards of your deck. If any of those cards are Energy cards, attach them to this Pokémon.",
},
},
{
cost: [
"Darkness",
"Darkness",
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Tyrannical Hole",
},
damage: 180,
},
{
cost: [
"Darkness",
"Darkness",
"Darkness",
"Darkness",
"Darkness",
],
name: {
en: "Glutton-GX",
},
effect: {
en: "If your opponent's Pokémon is Knocked Out by damage from this attack, take 2 more Prize cards. (You can't use more than 1 GX attack in a game.)",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
}
export default card