mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Sword & Shield Fixes (#84)
* 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
This commit is contained in:
53
data/Sword & Shield/SWSH Black Star Promos/SWSH135.ts
Normal file
53
data/Sword & Shield/SWSH Black Star Promos/SWSH135.ts
Normal file
@ -0,0 +1,53 @@
|
||||
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
|
Reference in New Issue
Block a user