1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

71 lines
953 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Spoink",
fr: "Spoink",
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
325,
],
hp: 50,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Psybeam",
fr: "Rafale psy",
},
effect: {
en: "The Defending Pokémon is now Confused.",
fr: "Le Pokémon Défenseur est maintenant Confus.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Bounce",
fr: "Faire des bonds",
},
effect: {
en: "You may switch Spoink with 1 of your Benched Pokémon.",
fr: "Vous pouvez échanger Spoink avec 1 des Pokémon de votre Banc.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "+10"
},
],
retreat: 1,
}
export default card