1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

68 lines
858 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Shinx",
},
illustrator: "sui",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
403,
],
types: [
"Lightning",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Star Barrier",
},
effect: {
en: "As long as Shinx has any Energy attached to it, Shinx has no Weakness.",
},
},
],
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Payback",
},
effect: {
en: "If your opponent has only 1 Prize card left, this attack does 10 damage plus 30 more damage.",
},
damage: "10+",
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card