mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
55 lines
1.0 KiB
TypeScript
55 lines
1.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Brilliant Stars"
|
|
|
|
const card: Card = {
|
|
dexId: [88],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Grimer",
|
|
fr: "Tadmorv",
|
|
es: "Grimer",
|
|
it: "Grimer",
|
|
pt: "Grimer",
|
|
de: "Sleima"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Darkness"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Darkness"],
|
|
|
|
name: {
|
|
en: "Poison Gas",
|
|
fr: "Gaz Toxik",
|
|
es: "Gas Venenoso",
|
|
it: "Velenogas",
|
|
pt: "Gás Venenoso",
|
|
de: "Giftwolke"
|
|
},
|
|
|
|
effect: {
|
|
en: "Your opponent's Active Pokémon is now Poisoned.",
|
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
|
|
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
|
|
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
|
|
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
|
|
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
|
|
}
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |