mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Added the rest of the SWSH variants Signed-off-by: Avior <florian.bouillon@delta-wings.net>
40 lines
2.0 KiB
TypeScript
40 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Capture Energy",
|
||
fr: "Énergie Capture",
|
||
es: "Energía Captura",
|
||
it: "Energia Cattura",
|
||
pt: "Energia de Captura",
|
||
de: "Fang-Energie"
|
||
},
|
||
|
||
illustrator: undefined,
|
||
rarity: "Uncommon",
|
||
category: "Energy",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "As long as this card is attached to a Pokémon, it provides Colorless Energy. \n\nWhen you attach this card from your hand to a Pokémon, search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.",
|
||
fr: "Tant que cette carte est attachée à un Pokémon, elle fournit une Énergie Colorless. \n\nLorsque vous attachez cette carte de votre main à un Pokémon, cherchez dans votre deck un Pokémon de base, puis placez-le sur votre Banc. Mélangez ensuite votre deck.",
|
||
es: "Mientras esta carta esté unida a 1 Pokémon, proporciona 1 Energía Colorless.\n\nCuando unes esta carta de tu mano a 1 Pokémon, busca en tu baraja 1 Pokémon Básico y ponlo en tu Banca. Después, baraja las cartas de tu baraja.",
|
||
it: "Fintanto che questa carta è assegnata a un Pokémon, fornisce Energia Colorless. \n\nQuando assegni questa carta dalla tua mano a un Pokémon, cerca nel tuo mazzo un Pokémon Base e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Enquanto esta carta estiver ligada a um Pokémon, ela fornecerá Energia Colorless.\n\nQuando você ligar esta carta da sua mão a 1 Pokémon, procure por 1 Pokémon Básico no seu baralho e coloque-o no seu Banco. Em seguida, embaralhe o seu baralho.",
|
||
de: "Solange diese Karte an ein Pokémon angelegt ist, liefert sie Colorless-Energie.\n\nWenn du diese Karte aus deiner Hand an ein Pokémon anlegst, durchsuche dein Deck nach 1 Basis-Pokémon und lege es auf deine Bank. Mische anschließend dein Deck."
|
||
},
|
||
|
||
energyType: "Special",
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|