mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
38 lines
1.5 KiB
TypeScript
38 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Silver Tempest"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Furisode Girl",
|
|
fr: "Fille en Kimono",
|
|
es: "Jovencita con Kimono",
|
|
it: "Ragazza in kimono",
|
|
pt: "Garota Furisode",
|
|
de: "Kimono-Trägerin"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck. You may switch that Pokémon with your Active Pokémon.",
|
|
fr: "Cherchez dans votre deck un Pokémon de base, puis placez-le sur votre Banc. Mélangez ensuite votre deck. Vous pouvez échanger ce Pokémon-là contre votre Pokémon Actif.",
|
|
es: "Busca en tu baraja 1 Pokémon Básico y ponlo en tu Banca. Después, baraja las cartas de tu baraja. Puedes cambiar ese Pokémon por tu Pokémon Activo.",
|
|
it: "Cerca nel tuo mazzo un Pokémon Base e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo. Puoi scambiare quel Pokémon con il tuo Pokémon attivo.",
|
|
pt: "Procure por 1 Pokémon Básico no seu baralho e coloque-o no seu Banco. Em seguida, embaralhe o seu baralho. Você pode trocar aquele Pokémon pelo seu Pokémon Ativo.",
|
|
de: "Durchsuche dein Deck nach 1 Basis-Pokémon und lege es auf deine Bank. Mische anschließend dein Deck. Du kannst jenes Pokémon gegen dein Aktives Pokémon austauschen."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |