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
56 lines
812 B
TypeScript
56 lines
812 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../SWSH Black Star Promos'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
illustrator: "5ban Graphics",
|
|
category: "Pokemon",
|
|
stage: "Basic",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
},
|
|
|
|
name: {
|
|
en: "Flareon V"
|
|
},
|
|
|
|
rarity: "None",
|
|
hp: 210,
|
|
types: ["Fire"],
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Flaming Breath"
|
|
},
|
|
|
|
damage: 20,
|
|
|
|
effect: {
|
|
en: "Search your deck for a Fire Energy card and attach it to this Pokémon. Then, shuffle your deck."
|
|
}
|
|
}, {
|
|
cost: ["Fire", "Fire", "Colorless"],
|
|
|
|
name: {
|
|
en: "Scorching Column"
|
|
},
|
|
|
|
damage: 120,
|
|
|
|
effect: {
|
|
en: "Your opponent's Active Pokémon is now Burned."
|
|
}
|
|
}],
|
|
|
|
regulationMark: "E",
|
|
suffix: "V"
|
|
}
|
|
|
|
export default card
|