1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 06:12:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

82 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Jangmo-o",
fr: "Bébécaille",
es: "Jangmo-o",
it: "Jangmo-o",
pt: "Jangmo-o",
de: "Miniras"
},
illustrator: "match",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
782,
],
hp: 60,
types: [
"Dragon",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Bulletproof",
fr: "Pare-Balles",
es: "Antibalas",
it: "Antiproiettile",
pt: "Blindado",
de: "Kugelsicher"
},
effect: {
en: "This Pokémon takes 10 less damage from attacks (after applying Weakness and Resistance).",
fr: "Ce Pokémon subit 10 dégâts de moins provenant des attaques(après application de la Faiblesse et de la Résistance).",
es: "Los ataques hacen 10 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
it: "Questo Pokémon subisce 10 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
pt: "Este Pokémon recebe 10 pontos de dano a menos de ataques (após a aplicação de Fraqueza e Resistência).",
de: "Diesem Pokémon werden durch Attacken 10 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Lightning",
],
name: {
en: "Dragon Claw",
fr: "Dracogriffe",
es: "Garra Dragón",
it: "Dragartigli",
pt: "Garra de Dragão",
de: "Drachenklaue"
},
damage: 30,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 2,
}
export default card