1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 23:22:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

95 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "bw11-24",
localId: 24,
// Card informations
name: {
en: "Victini-EX",
},
hp: 110,
type: [
Type.FIRE,
],
dexId: 494,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw11/24/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw11/24/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 38,
name: "Eske Yoshinob"
},
attacks: [{
cost: [
Type.FIRE
],
name: {
en: "Turbo Energize",
},
text: {
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: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Intensifying Burn",
},
text: {
en: "If the Defending Pokémon is a Pokémon-EX, this attack does 50 more damage.",
},
damage: 50
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Legendary Treasures",
code: "bw11"
}
}
export default card