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