1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Add Silver Tempest to the DB (#386)

This commit is contained in:
2022-11-11 19:59:43 +01:00
committed by GitHub
parent 0146baaf82
commit 5c6a4749f8
246 changed files with 14758 additions and 0 deletions

View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../Silver Tempest"
const card: Card = {
set: Set,
name: {
en: "Lugia VSTAR",
fr: "Lugia VSTAR",
es: "Lugia V-ASTRO",
it: "Lugia V ASTRO",
pt: "Lugia V-ASTRO",
de: "Lugia VSTAR"
},
rarity: "Secret Rare",
category: "Pokemon",
hp: 280,
types: ["Colorless"],
evolveFrom: {
en: "Lugia V",
fr: "Lugia-V",
es: "Lugia V",
it: "Lugia-V",
pt: "Lugia V",
de: "Lugia-V"
},
stage: "VSTAR",
suffix: "V",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
name: {
en: "Tempest Dive",
fr: "Plongée Tempétueuse",
es: "Zambullida Tempestad",
it: "Immersione Tempestosa",
pt: "Mergulho Tempestuoso",
de: "Sturmwindflug"
},
effect: {
en: "You may discard a Stadium in play.",
fr: "Vous pouvez défausser un Stade en jeu.",
es: "Puedes descartar un Estadio en juego.",
it: "Puoi scartare una carta Stadio in gioco.",
pt: "Você pode descartar 1 Estádio em jogo.",
de: "Du kannst 1 Stadionkarte im Spiel auf den Ablagestapel legen."
},
damage: 220
}],
retreat: 2,
regulationMark: "F"
}
export default card