1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

23 lines
761 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Neo Discovery'
const card: Card = {
name: {
en: "Hyper Devolution Spray",
fr: "Vaporisateur hyper rétrograde",
de: "Hyper-Rückentwicklungs-Spray"
},
illustrator: undefined,
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Choisissez 1 de vos Pokémon évolués. Prenez la carte Évolution de niveau le plus élevé de ce Pokémon et replacez-la dans votre main. (Vous ne pouvez pas faire évoluer un Pokémon pendant le tour où il est rétrogradé.)",
de: "Choose 1 of your evolved Pokémon. Take the highest Stage Evolution card from that Pokémon and put it into your hand. (You can't evolve a Pokémon the turn you devolve it.)"
}
}
export default card