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