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-76", localId: 76, // Card informations name: { en: "Reuniclus", }, hp: 90, type: [ Type.PSYCHIC, ], dexId: 579, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/76/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/76/high.png", }, }, evolveFrom: { en: "Duosion", }, tags: [ Tag.STAGE2, ], illustrator: { id: 25, name: "Kyoko Umemoto" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Future Sight", }, text: { en: "Look at the top 5 cards of your deck and put them back on top of your deck in any order.", }, },{ cost: [ Type.PSYCHIC ], name: { en: "Net Force", }, text: { en: "Does 40 damage times the number of Reuniclus you have in play.", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card