1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
TCGdex 🤖 860248e5d9
chore: fix infos for two cards (#732)
Co-authored-by: Avior <github@avior.me>
2025-05-07 19:44:06 +00:00

47 lines
646 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",
illustrator: "Uninori",
weaknesses: [{
type: "Fire",
value: "x2"
}]
}
export default card