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:
61
data/Sword & Shield/Silver Tempest/202.ts
Normal file
61
data/Sword & Shield/Silver Tempest/202.ts
Normal 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
|
Reference in New Issue
Block a user