1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 16:01:59 +00:00
Files
cards-database/data/Scarlet & Violet/Scarlet & Violet/258.ts
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

23 lines
437 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
set: Set,
name: {
en: "Basic Fighting Energy",
fr: "Énergie Fighting de base",
es: "Energía Fighting Básica",
it: "Energia base Fighting",
pt: "Energia Fighting Básica",
de: "Basis-Fighting-Energie"
},
rarity: "Hyper rare",
category: "Energy",
energyType: "Normal",
types: ["Fighting"]
}
export default card