1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-15 21:19:55 +00:00

41 lines
540 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Brilliant Stars"
const card: Card = {
set: Set,
name: {
en: "Shinx",
fr: "Lixy",
es: "Shinx",
it: "Shinx",
pt: "Shinx",
de: "Sheinux"
},
rarity: "Common",
category: "Pokemon",
hp: 40,
types: ["Lightning"],
stage: "Basic",
attacks: [{
cost: ["Lightning"],
name: {
en: "Gnaw",
fr: "Ronge",
es: "Roer",
it: "Rosicchiamento",
pt: "Roída",
de: "Nagen"
},
damage: 10
}],
retreat: 0,
regulationMark: "F"
}
export default card