1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

31 lines
899 B
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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Fire Crystal",
fr: "Cristal Feu",
es: "Cristal Fuego",
it: "Cristallo di Fuoco",
pt: "Cristal de Fogo",
de: "Feuerkristall"
},
illustrator: "Yoshinobu Saito",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
trainerType: "Item",
effect: {
en: "Put 3 Fire Energy cards from your discard pile into your hand.",
fr: "Ajoutez 3 cartes Énergie Fire de votre pile de défausse à votre main.",
es: "Pon 3 cartas de Energía Fire de tu pila de descartes en tu mano.",
it: "Prendi tre carte Energia Fire dalla tua pila degli scarti e aggiungile alle carte che hai in mano.",
pt: "Coloque 3 cartas de Energia Fire da sua pilha de descarte na sua mão.",
de: "Nimm 3 Fire-Energiekarten aus deinem Ablagestapel auf deine Hand."
}
}
export default card