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
57 lines
855 B
TypeScript
57 lines
855 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../SWSH Black Star Promos'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Dark Sylveon V"
|
|
},
|
|
|
|
illustrator: "Ryuta Fuse",
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Disarming Voice"
|
|
},
|
|
|
|
damage: 30,
|
|
|
|
effect: {
|
|
en: "Your opponent's Active Pokémon is now Confused."
|
|
}
|
|
}, {
|
|
cost: ["Psychic", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Tricky Ribbon"
|
|
},
|
|
|
|
damage: 100,
|
|
|
|
effect: {
|
|
en: "Choose a random card from your opponent's hand. Your opponent reveals that card and shuffles it into their deck."
|
|
}
|
|
}],
|
|
|
|
regulationMark: "E",
|
|
suffix: "V",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
},
|
|
|
|
hp: 180,
|
|
types: ["Psychic"]
|
|
}
|
|
|
|
export default card
|