mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
24 lines
746 B
TypeScript
24 lines
746 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Emerald'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Rare Candy",
|
|
fr: "Super bonbon",
|
|
de: "Sonderbonbon"
|
|
},
|
|
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Item",
|
|
|
|
effect: {
|
|
fr: "Choisissez 1 de vos Pokémon de base en jeu. Si vous possédez dans votre main une carte Niveau 1 ou Niveau 2 qui évolue de ce Pokémon, placez cette carte sur le Pokémon de base. (Vous le faites ainsi évoluer).",
|
|
de: "Choose 1 of your Basic Pokémon in play. If you have a Stage 1 or Stage 2 card that evolves from that Pokémon in your hand, put that card on the Basic Pokémon. (This counts as evolving that Pokémon.)"
|
|
}
|
|
}
|
|
|
|
export default card
|