1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

39 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Toy Catcher",
fr: "Jouet Attrapeur",
es: "Capturador de Juguete",
it: "Acchiappa-Pokémon Giocattolo",
pt: "Toy Catcher",
de: "Spielzeugfänger"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Switch 1 of your opponents Benched Pokémon that has 50 HP or less remaining with your opponents Active Pokémon.",
fr: "Échangez lun des Pokémon de Banc de votre adversaire auquel il reste 50 PV ou moins contre son Pokémon Actif.",
es: "Cambia 1 de los Pokémon en Banca de tu rival al que le queden 50 PS o menos por el Pokémon Activo de tu rival.",
it: "Scambia uno dei Pokémon nella panchina del tuo avversario che ha 50 PS o meno rimanenti con il Pokémon attivo del tuo avversario.",
pt: "Switch 1 of your opponents Benched Pokémon that has 50 HP or less remaining with your opponents Active Pokémon.",
de: "Tausche 1 Pokémon auf der Bank deines Gegners, das 50 oder weniger verbleibende KP hat, gegen das Aktive Pokémon deines Gegners aus."
},
trainerType: "Item",
illustrator: "sadaji"
}
export default card