1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 18:29:19 +00:00
Files
cards-database/data/Scarlet & Violet/Scarlet & Violet/146.ts
TCGdex [Bot] 0475848425 editor: fix Scarlet & Violet variants (#508)
Co-authored-by: Avior <git@avior.me>
2024-07-03 15:53:00 +02:00

46 lines
611 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
}
}
export default card