mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
92 lines
1.6 KiB
TypeScript
92 lines
1.6 KiB
TypeScript
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 opponent's 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. They're said to be on the verge of extinction."
|
||
}
|
||
}
|
||
|
||
export default card
|