mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
49 lines
682 B
TypeScript
49 lines
682 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Astral Radiance"
|
|
|
|
const card: Card = {
|
|
dexId: [193],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Yanma",
|
|
fr: "Yanma",
|
|
es: "Yanma",
|
|
it: "Yanma",
|
|
pt: "Yanma",
|
|
de: "Yanma"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
en: "Speed Dive",
|
|
fr: "Plongée Rapide",
|
|
es: "Picado Rápido",
|
|
it: "Immersione Rapida",
|
|
pt: "Mergulho Veloz",
|
|
de: "Tempohechtsprung"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 0,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |