1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 10:19:18 +00:00
Files
cards-database/data/Sword & Shield/Sword & Shield/215.ts
Florian Bouillon 9138eedb16 Add swsh variants (#42)
* 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>
2021-08-02 12:34:21 +00:00

40 lines
1.7 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Ordinary Rod",
fr: "Canne Ordinaire",
es: "Caña Normal",
it: "Amo Normale",
pt: "Vara de Pescar Comum",
de: "Gewöhnliche Angel"
},
illustrator: "5ban Graphics",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
en: "Choose 1 or both:\n\n• Shuffle up to 2 Pokémon from your discard pile into your deck.\n\n• Shuffle up to 2 basic Energy cards from your discard pile into your deck.",
fr: "Choisissez lune de ces options ou les deux :\n\n• Mélangez avec votre deck jusquà 2 Pokémon de votre pile de défausse.\n\n• Mélangez avec votre deck jusquà 2 cartes Énergie de base de votre pile de défausse.",
es: "Elige 1 o ambas opciones:\n\n• Pon hasta 2 Pokémon de tu pila de descartes en tu baraja y baraja todas las cartas.\n• Pon hasta 2 cartas de Energía Básica de tu pila de descartes en tu baraja y barájalas todas.",
it: "Scegli uno o entrambi gli effetti:\n\n• Rimischia fino a due Pokémon dalla tua pila degli scarti nel tuo mazzo.\n\n• Rimischia fino a due carte Energia base dalla tua pila degli scarti nel tuo mazzo.",
pt: "Escolha 1 ou ambas:\n\n• Embaralhe até 2 Pokémon da sua pilha de descarte no seu baralho.\n\n• Embaralhe até 2 cartas de Energia básica da sua pilha de descarte no seu baralho.",
de: "Wähle 1 oder beide aus:\n\n• Mische bis zu 2 Pokémon aus deinem Ablagestapel in dein Deck.\n\n• Mische bis zu 2 Basis-Energiekarten aus deinem Ablagestapel in dein Deck."
},
trainerType: "Item",
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card