mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 22:02:15 +00:00
78 lines
946 B
TypeScript
78 lines
946 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Crimson Invasion'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Jangmo-o",
|
||
fr: "Bébécaille",
|
||
es: "Jangmo-o",
|
||
it: "Jangmo-o",
|
||
pt: "Jangmo-o",
|
||
de: "Miniras"
|
||
},
|
||
illustrator: "Atsuko Nishida",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
782,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Dragon",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Headbutt",
|
||
fr: "Coup d’Boule",
|
||
es: "Golpe Cabeza",
|
||
it: "Bottintesta",
|
||
pt: "Cabeçada",
|
||
de: "Kopfnuss"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Gentle Slap",
|
||
fr: "Gifle Douce",
|
||
es: "Bofetada Gentil",
|
||
it: "Schiaffetto",
|
||
pt: "Tapinha",
|
||
de: "Sanfter Hieb"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fairy",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|