1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

71 lines
1.1 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 '../Team Rocket Returns'
const card: Card = {
name: {
en: "Grimer",
de: "Sleima"
},
illustrator: "Aya Kusube",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
88,
],
hp: 50,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Taunt",
de: "Taunt"
},
effect: {
en: "Choose 1 of your opponent's Benched Pokémon and switch it with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch.",
de: "Choose 1 of your opponent's Benched Pokémon and switch it with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Spit Poison",
de: "Spit Poison"
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
de: "The Defending Pokémo is now Poisoned."
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card