1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

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