1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

83 lines
1.3 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 '../Undaunted'
const card: Card = {
name: {
en: "Grimer",
fr: "Tadmorv",
de: "Sleima"
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
88,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Sticky Liquid",
fr: "Liquide gluant",
de: "Klebrige Flüssigkeit"
},
effect: {
en: "During your opponents next turn, the Defending Pokémons Retreat Cost is Colorless more.",
fr: "Pendant le prochain tour de votre adversaire, le Coût de retraite du Pokémon Défenseur est augmenté de Colorless.",
de: "Die Rückzugskosten für das Verteidigende Pokémon betragen im nächsten Zug deines Gegners mehr."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Sludge Toss",
fr: "Décision vaseuse",
de: "Schleimwurf"
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
description: {
en: "Wherever Grimer has passed, so many germs are left behind that no plants will ever grow again."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card