mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
74 lines
959 B
TypeScript
74 lines
959 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Arceus'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Shinx",
|
|
de: "Sheinux"
|
|
},
|
|
illustrator: "sui",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
403,
|
|
],
|
|
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Gnaw",
|
|
de: "Nagen"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Swagger",
|
|
de: "Angeberei"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
|
|
de: "Wirf 1 Münze. Bei \"Kopf\" lege 1 Energiekarte, die am Verteidigenden Pokémon angelegt ist, auf den Ablagestapel deines Gegners."
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fighting",
|
|
value: "+10"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Metal",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|