1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 22:29:51 +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

65
data/XY/Promos/XY189.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Victini",
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
494,
],
hp: 70,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Energy Assist",
},
effect: {
en: "Flip a coin. If heads, attach a basic Energy card from your discard pile to 1 of your Benched Pokémon.",
},
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Victory Ball",
},
effect: {
en: "Discard a Fire Energy attached to this Pokémon.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card