1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00

41 lines
569 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Prismatic Evolutions"
const card: Card = {
set: Set,
name: {
en: "Pinsir",
fr: "Scarabrute",
es: "Pinsir",
pt: "Pinsir",
it: "Pinsir",
de: "Pinsir"
},
rarity: "Common",
category: "Pokemon",
hp: 120,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass", "Colorless"],
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
pt: "Talho",
it: "Lacerazione",
de: "Schlitzer"
},
damage: 60
}],
retreat: 2,
regulationMark: "H"
}
export default card