1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] 7e3cf7aa08
editor: fix Paldea Evolved variants (#510)
Co-authored-by: Aviortheking <git@avior.me>
2024-07-03 16:28:15 +02:00

37 lines
1.3 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Clavel",
en: "Clavell",
es: "Clavel",
it: "Clavel",
pt: "Clavell",
de: "Clavel"
},
rarity: "Ultra Rare",
category: "Trainer",
effect: {
fr: "Cherchez dans votre deck jusqu'à 3 Pokémon de base ayant 120 PV ou moins, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
en: "Search your deck for up to 3 Basic Pokémon with 120 HP or less, reveal them, and put them into your hand. Then, shuffle your deck.",
es: "Busca en tu baraja hasta 3 Pokémon Básicos con 120 PS o menos, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a tre Pokémon Base con 120 PS o meno, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 3 Pokémon Básicos com 120 PS ou menos no seu baralho, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach bis zu 3 Basis-Pokémon mit 120 oder weniger KP, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
trainerType: "Supporter",
regulationMark: "G",
variants: {
normal: false,
reverse: false
}
}
export default card