1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

75 lines
1.5 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Secret Wonders'
const card: Card = {
name: {
en: "Spinda",
fr: "Spinda",
de: "Pandir"
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
327,
],
hp: 70,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Dish Out",
fr: "Distribution",
de: "Austeilen"
},
effect: {
en: "Draw a card from the top and the bottom of your deck.",
fr: "Piochez une carte du dessus et du dessous de votre deck.",
de: "Ziehe die oberste und unterste Karte deines Decks."
},
},
{
cost: [
"Colorless",
],
name: {
en: "Synchro Punch",
fr: "Synchro-poing",
de: "Drehhieb"
},
effect: {
en: "If any basic Energy card attached to Spinda is the same type as any Energy attached to the Defending Pokémon, this attack does 10 damage plus 30 more damage.",
fr: "Si une carte Énergie attachée à Spinda est du même type qu'une carte Énergie attachée au Pokémon Défenseur, cette attaque inflige 10 dégâts plus 30 dégâts supplémentaires.",
de: "Wenn an Pandir mindestens 1 Basis-Energiekarte desselben Typs wie eine an das Verteidigende Pokémon angelegte Energiekarte angelegt ist, fügt dieser Angriff 10 Schadenspunkte plus 30 weitere Schadenspunkte zu."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
retreat: 1,
}
export default card