mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
61
data/Scarlet & Violet/Twilight Masquerade/124.ts
Normal file
61
data/Scarlet & Violet/Twilight Masquerade/124.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Varoom",
|
||||
fr: "Vrombi",
|
||||
es: "Varoom",
|
||||
it: "Varoom",
|
||||
pt: "Varoom",
|
||||
de: "Knattox"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Metal Coating",
|
||||
fr: "Revêtement Métal",
|
||||
es: "Recubrimiento Metálico",
|
||||
it: "Metalrivestimento",
|
||||
pt: "Camada Metálica",
|
||||
de: "Metallbeschichtung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Attach a Basic Metal Energy card from your discard pile to this Pokémon.",
|
||||
fr: "Attachez une carte Énergie Metal de base de votre pile de défausse à ce Pokémon.",
|
||||
es: "Une 1 carta de Energía Metal Básica de tu pila de descartes a este Pokémon.",
|
||||
it: "Assegna a questo Pokémon una carta Energia base Metal dalla tua pila degli scarti.",
|
||||
pt: "Ligue uma carta de Energia Metal Básica da sua pilha de descarte a este Pokémon.",
|
||||
de: "Lege 1 Basis-Metal-Energiekarte aus deinem Ablagestapel an dieses Pokémon an."
|
||||
}
|
||||
}, {
|
||||
cost: ["Metal", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Collision",
|
||||
es: "Apisonar",
|
||||
it: "Carica",
|
||||
pt: "Aríete",
|
||||
de: "Ramme"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user