mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
30 lines
443 B
TypeScript
30 lines
443 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Evolutions'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Water Energy",
|
|
fr: "Énergie Eau",
|
|
es: "Energía Agua",
|
|
it: "Energia Acqua",
|
|
pt: "Energia de Água",
|
|
de: "Wasser-Energie"
|
|
},
|
|
|
|
illustrator: undefined,
|
|
rarity: "Common",
|
|
category: "Energy",
|
|
set: Set,
|
|
stage: "Basic",
|
|
energyType: "Normal",
|
|
|
|
effect: {
|
|
es: "",
|
|
it: "",
|
|
pt: "",
|
|
de: ""
|
|
}
|
|
}
|
|
|
|
export default card
|