1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 16:49:53 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

69 lines
1.2 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 '../SM Black Star Promos'
const card: Card = {
dexId: [25],
set: Set,
name: {
en: "Detective Pikachu",
fr: "Détective Pikachu",
es: "Detective Pikachu",
it: "Detective Pikachu",
pt: "Detective Pikachu",
de: "Meisterdetektiv Pikachu"
},
rarity: "Rare",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
attacks: [{
name: {
en: "Coffee Break",
fr: "Pause Café",
es: "Hora del Café",
it: "Pausa Caffè",
pt: "Hora do Cafezinho",
de: "Kaffeepause"
},
effect: {
en: "Heal 30 damage from this Pokémon.",
fr: "Soignez 30 dégâts à ce Pokémon.",
es: "Cura 30 puntos de daño a este Pokémon.",
it: "Cura questo Pokémon da 30 danni.",
pt: "Cure 30 pontos de dano deste Pokémon.",
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
},
cost: ["Colorless"]
}, {
name: {
en: "Corkscrew Punch",
fr: "Poing Tire-Bouchon",
es: "Puño Tirabuzón",
it: "Pugno Rotante",
pt: "Soco Saca-rolha",
de: "Korkenzieherhieb"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
resistances: [{
type: "Metal",
value: "-20"
}],
retreat: 2
}
export default card