mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
54 lines
791 B
TypeScript
54 lines
791 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Vrombi",
|
|
en: "Varoom",
|
|
es: "Varoom",
|
|
it: "Varoom",
|
|
pt: "Varoom",
|
|
de: "Knattox"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Metal"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Metal"],
|
|
|
|
name: {
|
|
fr: "Pioche Tournante",
|
|
en: "Spinning Draw",
|
|
es: "Robo Giratorio",
|
|
it: "Pesca Rotante",
|
|
pt: "Compra Giratória",
|
|
de: "Drehender Zug"
|
|
},
|
|
|
|
effect: {
|
|
fr: "Piochez une carte.",
|
|
en: "Draw a card.",
|
|
es: "Roba 1 carta.",
|
|
it: "Pesca una carta.",
|
|
pt: "Compre uma carta.",
|
|
de: "Ziehe 1 Karte."
|
|
},
|
|
|
|
damage: 10
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |