1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

84 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Ultra Prism'
const card: Card = {
name: {
en: "Skorupi",
fr: "Rapion",
es: "Skorupi",
it: "Skorupi",
pt: "Skorupi",
de: "Pionskora"
},
illustrator: "Misa Tsutsui",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
451,
],
hp: 80,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Hone Claws",
fr: "Aiguisage",
es: "Afilagarras",
it: "Unghiaguzze",
pt: "Garras Afiadas",
de: "Klauenwetzer"
},
effect: {
en: "During your next turn, this Pokémons Pierce attacks base damage is 90.",
fr: "Pendant votre prochain tour, les dégâts de base de lattaque Transpercement de ce Pokémon sont de 90.",
es: "Durante tu próximo turno, el daño básico del ataque Perforar de este Pokémon es de 90.",
it: "Durante il tuo prossimo turno, i danni base dellattacco Perforare di questo Pokémon sono 90.",
pt: "Durante a sua próxima vez de jogar, o dano base do ataque Perfurar deste Pokémon será 90.",
de: "Während deines nächsten Zuges beträgt der Grundschaden der Attacke Durchbohren dieses Pokémon 90 Schadenspunkte."
},
},
{
cost: [
"Psychic",
"Psychic",
],
name: {
en: "Pierce",
fr: "Transpercement",
es: "Perforar",
it: "Perforare",
pt: "Perfurar",
de: "Durchbohren"
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card