mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
59 lines
765 B
TypeScript
59 lines
765 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../151"
|
|
|
|
const card: Card = {
|
|
dexId: [48],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Mimitoss",
|
|
en: "Venonat",
|
|
es: "Venonat",
|
|
it: "Venonat",
|
|
pt: "Venonat",
|
|
de: "Bluzuk"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
fr: "Ronge",
|
|
en: "Gnaw",
|
|
es: "Roer",
|
|
it: "Rosicchiamento",
|
|
pt: "Roída",
|
|
de: "Nagen"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Grass", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Rayon",
|
|
en: "Beam",
|
|
es: "Transmisión",
|
|
it: "Raggio",
|
|
pt: "Feixe",
|
|
de: "Strahl"
|
|
},
|
|
|
|
damage: 40
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |