1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 05:09:53 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

32 lines
464 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Black & White'
const card: Card = {
name: {
en: "Fire Energy",
fr: "Énergie Feu",
es: "Energía Fuego",
it: "Energia Fuoco",
pt: "Energia de Fogo",
de: "Feuer-Energie"
},
illustrator: undefined,
rarity: "Common",
category: "Energy",
set: Set,
stage: "Basic",
energyType: "Normal",
effect: {
en: "",
fr: "",
es: "",
it: "",
pt: "",
de: ""
}
}
export default card