1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

92 lines
1.6 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Grimer",
fr: "Tadmorv",
es: "Grimer",
it: "Grimer",
pt: "Grimer",
de: "Sleima"
},
illustrator: "Ryota Murayama",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 80,
types: [
"Darkness",
],
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Stomp Off",
fr: "Tohu-Bohu",
es: "Pisotear",
it: "Pestatura",
pt: "Sair Irritado",
de: "Davonstapfen"
},
effect: {
en: "Discard the top card of your opponents deck.",
fr: "Défaussez la carte du dessus du deck de votre adversaire.",
es: "Descarta la primera carta de la baraja de tu rival.",
it: "Scarta la prima carta del mazzo del tuo avversario.",
pt: "Descarte a carta de cima do baralho do seu oponente.",
de: "Lege die oberste Karte des Decks deines Gegners auf seinen Ablagestapel."
},
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Sludge Whirlpool",
fr: "Tourbillon de Boue",
es: "Torbellino de Residuos",
it: "Fangovortice",
pt: "Redemoinho de Lodo",
de: "Schlammstrudel"
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "The wastewater coming from factories is clean these days, so Grimer have nothing to eat. Theyre said to be on the verge of extinction."
}
}
export default card