mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
63
data/Scarlet & Violet/Stellar Crown/047.ts
Normal file
63
data/Scarlet & Violet/Stellar Crown/047.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Electivire",
|
||||
fr: "Élekable",
|
||||
es: "Electivire",
|
||||
it: "Electivire",
|
||||
pt: "Electivire",
|
||||
de: "Elevoltek"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
en: "Electroslug",
|
||||
fr: "Électro Frappe",
|
||||
es: "Electropuñetazo",
|
||||
it: "Elettropugno",
|
||||
pt: "Soco Elétrico",
|
||||
de: "Elektroschuss"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Lightning", "Lightning"],
|
||||
|
||||
name: {
|
||||
en: "Unleash Lightning",
|
||||
fr: "Déchaînement d'Éclairs",
|
||||
es: "Relámpago Desatado",
|
||||
it: "Scatenafulmini",
|
||||
pt: "Lançamento de Raios",
|
||||
de: "Blitzentladung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, your Pokémon can't attack. (This includes new Pokémon that come into play.)",
|
||||
fr: "Pendant votre prochain tour, vos Pokémon ne peuvent pas attaquer. (Cela comprend les nouveaux Pokémon qui sont mis en jeu.)",
|
||||
es: "Durante tu próximo turno, tus Pokémon no pueden atacar. (Esto incluye los nuevos Pokémon que entren en juego).",
|
||||
it: "Durante il tuo prossimo turno, i tuoi Pokémon non possono attaccare. Questo include i nuovi Pokémon entrati in gioco.",
|
||||
pt: "Durante o seu próximo turno, seus Pokémon não poderão atacar. (Isto inclui novos Pokémon que entrarem em jogo.)",
|
||||
de: "Während deines nächsten Zuges können deine Pokémon nicht angreifen. (Dies schließt neue Pokémon ein, die ins Spiel gebracht werden.)"
|
||||
},
|
||||
|
||||
damage: 220
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user