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

36 lines
1.3 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Drone Livreur",
en: "Delivery Drone",
es: "Dron de Reparto",
it: "Drone da Consegna",
pt: "Drone de Entrega",
de: "Lieferdrohne"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
fr: "Lancez 2 pièces. Si vous obtenez 2 côtés face, cherchez dans votre deck une carte et ajoutez-la à votre main. Mélangez ensuite votre deck.",
en: "Flip 2 coins. If both of them are heads, search your deck for a card and put it into your hand. Then, shuffle your deck.",
es: "Lanza 2 monedas. Si sale cara en ambas, busca en tu baraja 1 carta y ponla en tu mano. Después, baraja las cartas de tu baraja.",
it: "Lancia due volte una moneta. Se esce entrambe le volte testa, cerca nel tuo mazzo una carta e aggiungila a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Jogue 2 moedas. Se as duas saírem cara, procure por uma carta no seu baralho e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
de: "Wirf 2 Münzen. Zeigen beide Münzen Kopf, durchsuche dein Deck nach 1 Karte und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
trainerType: "Item",
regulationMark: "G",
variants: {
holo: false
}
}
export default card