mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 08:39:54 +00:00
76 lines
1.2 KiB
TypeScript
76 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SM Black Star Promos'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Pikipek",
|
||
fr: "Picassaut",
|
||
es: "Pikipek",
|
||
it: "Pikipek",
|
||
pt: "Pikipek",
|
||
de: "Peppeck"
|
||
},
|
||
|
||
illustrator: "match",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
731,
|
||
],
|
||
|
||
hp: 60,
|
||
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Nosedive",
|
||
fr: "Descente en Piqué",
|
||
es: "Ataque en Picado",
|
||
it: "Rapidiscesa",
|
||
pt: "Mergulhar de Bico",
|
||
de: "Sturzflugangriff"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon does 20 damage to itself.",
|
||
fr: "Ce Pokémon s’inflige 20 dégâts.",
|
||
es: "Este Pokémon se hace 20 puntos de daño a sí mismo.",
|
||
it: "Questo Pokémon infligge 20 danni a se stesso.",
|
||
pt: "Este Pokémon causa 20 pontos de dano a si mesmo.",
|
||
de: "Dieses Pokémon fügt sich selbst 20 Schadenspunkte zu."
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 1
|
||
}
|
||
|
||
export default card
|