1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s

This commit is contained in:
2023-11-12 14:56:22 +01:00
committed by GitHub
parent e0e3a1a4fd
commit 3c93a3534c
988 changed files with 56362 additions and 22 deletions

View File

@ -0,0 +1,32 @@
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