1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

32 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"
}
export default card