1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 14:59:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,66 @@
import { Card } from '../../../interfaces'
import Set from '../Legendary Treasures'
const card: Card = {
name: {
en: "Victini-EX",
},
illustrator: "Eske Yoshinob",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
494,
],
hp: 110,
types: [
"Fire",
],
suffix: "EX",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Turbo Energize",
},
effect: {
en: "Search your deck for 2 basic Energy cards and attach them to your Benched Pokémon in any way you like. Shuffle your deck afterward.",
},
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Intensifying Burn",
},
effect: {
en: "If the Defending Pokémon is a Pokémon-EX, this attack does 50 more damage.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card