1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 829d78fa6f
Added Celebrations Datas (#124)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:21:38 +02:00

81 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Celebrations'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
name: {
en: "Pikachu",
fr: "Pikachu",
es: "Pikachu",
it: "Pikachu",
pt: "Pikachu",
de: "Pikachu"
},
rarity: "Rare",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
stage: "Basic",
illustrator: "Mitsuhiro Arita",
attacks: [{
name: {
en: "Gnaw",
fr: "Ronge",
es: "Roer",
it: "Rosicchiamento",
pt: "Roída",
de: "Nagen"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
en: "Thunder Jolt",
fr: "Secousse Tonnerre",
es: "Sacudida Atronadora",
it: "Scoppiotuono",
pt: "Choque do Trovão",
de: "Donnerrüttler"
},
effect: {
en: "Flip a coin. If tails, this Pokémon also does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, ce Pokémon s'inflige aussi 10 dégâts.",
es: "Lanza 1 moneda. Si sale cruz, este Pokémon también se hace 10 puntos de daño a sí mismo.",
it: "Lancia una moneta. Se esce croce, questo Pokémon infligge anche 10 danni a se stesso.",
pt: "Jogue 1 moeda. Se sair coroa, este Pokémon também causará 10 pontos de dano a si mesmo.",
de: "Wirf 1 Münze. Bei Zahl fügt dieses Pokémon auch sich selbst 10 Schadenspunkte zu."
},
damage: 30,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
description: {
en: "It has small electric sacs on both its cheeks. If threatened, it looses electric charges from the sacs."
},
dexId: [25]
}
export default card