1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

40 lines
1.1 KiB
TypeScript

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",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card