1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

Added Sun & Moon for other languages

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-06-30 14:12:31 +02:00
parent 369f8dadf7
commit dc0dcff103
2732 changed files with 54455 additions and 6885 deletions

View File

@ -0,0 +1,68 @@
import { Card } from '../../../interfaces'
import Set from '../SM Black Star Promos'
const card: Card = {
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