1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

Added Celebrations (#86)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-10-10 00:48:54 +02:00
committed by GitHub
parent 8eb96fd279
commit 146aad93fa
52 changed files with 2513 additions and 65 deletions

View File

@ -12,14 +12,62 @@ const card: Card = {
},
name: {
en: "Pikachu"
en: "Pikachu",
fr: "Pikachu",
es: "Pikachu",
it: "Pikachu",
pt: "Pikachu",
de: "Pikachu"
},
rarity: "Rare",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
stage: "Basic"
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 cest pile, ce Pokémon sinflige 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
}
export default card
export default card