1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-07 10:39:18 +00:00
Files
cards-database/data/Scarlet & Violet/Scarlet & Violet/146.ts

48 lines
638 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
dexId: [335],
set: Set,
name: {
en: "Zangoose",
fr: "Mangriff",
es: "Zangoose",
it: "Zangoose",
pt: "Zangoose",
de: "Sengo"
},
rarity: "Common",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
it: "Lacerazione",
pt: "Talho",
de: "Schlitzer"
},
damage: 40
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
},
illustrator: "Yuya Oka"
}
export default card