1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
880 B
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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Kogas Trap",
fr: "Piège de Koga",
es: "Trampa de Koga",
it: "Trappola di Koga",
pt: "Armadilha do Koga",
de: "Kogas Falle"
},
illustrator: "TOKIYA",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus et Empoisonné.",
en: "Your opponents Active Pokémon is now Confused and Poisoned.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido y Envenenado.",
it: "Il Pokémon attivo del tuo avversario viene confuso e avvelenato.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso e Envenenado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt und vergiftet."
},
trainerType: "Supporter",
}
export default card