mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
58 lines
871 B
TypeScript
58 lines
871 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [640],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Virizion",
|
|
fr: "Viridium",
|
|
es: "Virizion",
|
|
it: "Virizion",
|
|
pt: "Virizion",
|
|
de: "Viridium"
|
|
},
|
|
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
illustrator: "Kagemaru Himeno",
|
|
|
|
description: {
|
|
en: "Legends say this Pokémon confounded opponents with its swift movements."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
en: "Bail Out"
|
|
},
|
|
|
|
effect: {
|
|
en: "Put up to 2 Pokémon from your discard pile into your hand."
|
|
}
|
|
}, {
|
|
cost: ["Grass", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Solar Beam"
|
|
},
|
|
|
|
damage: 90
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |