mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
53 lines
786 B
TypeScript
53 lines
786 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../SWSH Black Star Promos'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Zacian LV.X"
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
stage: "LEVEL-UP",
|
|
|
|
abilities: [{
|
|
type: "Poke-BODY",
|
|
|
|
name: {
|
|
en: "Bladed Armament"
|
|
},
|
|
|
|
effect: {
|
|
en: "Damage from this Pokémon's attacks isn't affected by any effects on your opponent's Active Pokémon."
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: ["Metal", "Metal", "Colorless"],
|
|
|
|
name: {
|
|
en: "Brave Blade"
|
|
},
|
|
|
|
damage: 240,
|
|
|
|
effect: {
|
|
en: "During your next turn, this Pokémon can't attack."
|
|
}
|
|
}],
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
},
|
|
|
|
hp: 160,
|
|
types: ["Metal"]
|
|
}
|
|
|
|
export default card |