1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

33 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Darkness Ablaze'
const card: Card = {
name: {
en: "Old PC",
fr: "Vieux PC",
es: "Ordenador Antiguo",
it: "Vecchio PC",
pt: "Computador Antigo",
de: "Alter PC"
},
illustrator: "Studio Bora Inc.",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Flip 2 coins. If both are heads, put a card from your discard pile into your hand.",
fr: "Lancez 2 pièces. Si les deux sont face, ajoutez une carte de votre pile de défausse à votre main.",
es: "Lanza 2 monedas. Si ambas son cara, pon 1 carta de tu pila de descartes en tu mano.",
it: "Lancia due volte una moneta. Se esce entrambe le volte testa, prendi una carta dalla tua pila degli scarti e aggiungila a quelle che hai in mano.",
pt: "Jogue 2 moedas. Se ambas saírem cara, coloque 1 carta da sua pilha de descarte na sua mão.",
de: "Wirf 2 Münzen. Zeigen beide Kopf, nimm 1 Karte aus deinem Ablagestapel auf deine Hand."
},
trainerType: "Item",
regulationMark: "D"
}
export default card