mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 00:29:55 +00:00
* feat: ADd set datas Signed-off-by: Avior <git@avior.me> * feat: Add cards Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
63 lines
1.8 KiB
TypeScript
63 lines
1.8 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVP Black Star Promos"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lucario ex",
|
|
fr: "Lucario-ex",
|
|
es: "Lucario ex",
|
|
it: "Lucario-ex",
|
|
pt: "Lucario ex",
|
|
de: "Lucario-ex"
|
|
},
|
|
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
hp: 260,
|
|
types: ["Fighting"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Low Sweep",
|
|
fr: "Balayette",
|
|
es: "Puntapié",
|
|
it: "Calciobasso",
|
|
pt: "Movimento Baixo",
|
|
de: "Fußtritt"
|
|
},
|
|
|
|
damage: 60
|
|
}, {
|
|
cost: ["Fighting", "Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Aura Sphere",
|
|
fr: "Aurasphère",
|
|
es: "Esfera Aural",
|
|
it: "Forzasfera",
|
|
pt: "Aura Esférica",
|
|
de: "Aurasphäre"
|
|
},
|
|
|
|
effect: {
|
|
en: "This attack also does 50 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
|
fr: "Cette attaque inflige aussi 50 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
|
es: "Este ataque también hace 50 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
|
it: "Questo attacco infligge anche 50 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
|
pt: "Este ataque também causa 50 pontos de dano a 1 dos Pokémon no Banco do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)",
|
|
de: "Diese Attacke fügt auch 1 Pokémon auf der Bank deines Gegners 50 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
|
},
|
|
|
|
damage: 160
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |