mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
63
data/Scarlet & Violet/Stellar Crown/053.ts
Normal file
63
data/Scarlet & Violet/Stellar Crown/053.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Vikavolt",
|
||||
fr: "Lucanon",
|
||||
es: "Vikavolt",
|
||||
it: "Vikavolt",
|
||||
pt: "Vikavolt",
|
||||
de: "Donarion"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
en: "Volt Switch",
|
||||
fr: "Change-Éclair",
|
||||
es: "Voltiocambio",
|
||||
it: "Invertivolt",
|
||||
pt: "Troca Elétrica",
|
||||
de: "Voltwechsel"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Lightning Pokémon.",
|
||||
fr: "Échangez ce Pokémon contre l'un de vos Pokémon Lightning de Banc.",
|
||||
es: "Cambia este Pokémon por uno de tus Pokémon Lightning en Banca.",
|
||||
it: "Scambia questo Pokémon con un Pokémon Lightning della tua panchina.",
|
||||
pt: "Troque este Pokémon por 1 dos seus Pokémon Lightning no Banco.",
|
||||
de: "Tausche dieses Pokémon gegen 1 Lightning-Pokémon auf deiner Bank aus."
|
||||
},
|
||||
|
||||
damage: 90
|
||||
}, {
|
||||
cost: ["Lightning", "Lightning", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Sparking Strike",
|
||||
fr: "Frappe Étincelante",
|
||||
es: "Golpe Chispeante",
|
||||
it: "Colpo Scintilla",
|
||||
pt: "Golpe Cintilante",
|
||||
de: "Funkenschlag"
|
||||
},
|
||||
|
||||
damage: 240
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user