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:
58
data/Sun & Moon/SM Black Star Promos/SM183.ts
Normal file
58
data/Sun & Moon/SM Black Star Promos/SM183.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM Black Star Promos'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pikachu",
|
||||
fr: "Pikachu",
|
||||
es: "Pikachu",
|
||||
it: "Pikachu",
|
||||
pt: "Pikachu",
|
||||
de: "Pikachu"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Thunder Jolt",
|
||||
fr: "Secousse Tonnerre",
|
||||
es: "Sacudida Atronadora",
|
||||
it: "Scoppiotuono",
|
||||
pt: "Choque do Trovão",
|
||||
de: "Donnerrüttler"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
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."
|
||||
},
|
||||
|
||||
cost: ["Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Metal",
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user