mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
509 B
TypeScript
23 lines
509 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Rocket'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Goop Gas Attack",
|
|
fr: "Attaque au gaz gluant",
|
|
de: "Uhu-Gasangriff"
|
|
},
|
|
|
|
illustrator: "Sumiyoshi Kizuki",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Tous les Pouvoirs Pokémon cessent de fonctionner jusqu'à la fin du prochain tour de votre adversaire.",
|
|
de: "All Pokémon Powers stop working until end of your opponent's next turn."
|
|
}
|
|
}
|
|
|
|
export default card
|