mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
58 lines
857 B
TypeScript
58 lines
857 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Shinx",
|
||
fr: "Lixy",
|
||
es: "Shinx",
|
||
it: "Shinx",
|
||
pt: "Shinx",
|
||
de: "Sheinux"
|
||
},
|
||
|
||
illustrator: "sowsow",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Lightning"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Rear Kick",
|
||
fr: "Ruade",
|
||
es: "Patada Trasera",
|
||
it: "Retrocalcio",
|
||
pt: "Chute Traseiro",
|
||
de: "Rückwärtskick"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Lightning"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded."
|
||
}
|
||
}
|
||
|
||
export default card |