1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-08 11:09:18 +00:00
Files
cards-database/data/Sword & Shield/Sword & Shield/121.ts

92 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Skorupi",
fr: "Rapion",
es: "Skorupi",
it: "Skorupi",
pt: "Skorupi",
de: "Pionskora"
},
illustrator: "sowsow",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 80,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Poison Sting",
fr: "Dard-Venin",
es: "Picotazo Veneno",
it: "Velenospina",
pt: "Ferrão Venenoso",
de: "Giftstachel"
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
},
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Slashing Claw",
fr: "Griffe Taillante",
es: "Garra Cuchillazo",
it: "Artigli Laceranti",
pt: "Garra Cortadora",
de: "Schlitzende Klaue"
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "It attacks using the claws on its tail. Once locked in its grip, its prey is unable to move as this Pokémons poison seeps in."
}
}
export default card