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-50", localId: 50, // Card informations name: { en: "Thundurus", }, hp: 110, type: [ Type.LIGHTNING, ], dexId: 642, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/50/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/50/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 22, name: "Yukiko Baba" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Charge", }, text: { en: "Search your deck for a Lightning Energy card and attach it to this Pokémon. Shuffle your deck afterward.", }, },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Disaster Volt", }, text: { en: "Discard an Energy attached to this Pokémon.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card