1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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
717 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Astral Radiance"
const card: Card = {
dexId: [123],
set: Set,
name: {
en: "Scyther",
fr: "Insécateur",
es: "Scyther",
it: "Scyther",
pt: "Scyther",
de: "Sichlor"
},
rarity: "Common",
category: "Pokemon",
hp: 90,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Blinding Scythe",
fr: "Pulvérisation Aveuglante",
es: "Guadaña Cegadora",
it: "Falceaccecante",
pt: "Foice Ofuscante",
de: "Blendende Sense"
},
damage: 20
}],
retreat: 1,
regulationMark: "F",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card