1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00

48 lines
702 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Astral Radiance"
const card: Card = {
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