1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00

46 lines
586 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Stellar Crown"
const card: Card = {
set: Set,
name: {
en: "Varoom",
fr: "Vrombi",
es: "Varoom",
it: "Varoom",
pt: "Varoom",
de: "Knattox"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Metal"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Ram",
fr: "Collision",
es: "Apisonar",
it: "Carica",
pt: "Aríete",
de: "Ramme"
},
damage: 30
}],
retreat: 2,
regulationMark: "H",
variants: {
holo: false
}
}
export default card