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: "ru1-16", localId: 16, // Card informations name: { en: "Bibarel", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 400, image: { low: { en: "https://assets.tcgdex.net/en/pl/ru1/16/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/ru1/16/high.png", }, }, evolveFrom: { en: "Bidoof", }, tags: [ Tag.STAGE1, ], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rollout", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Pokémon Rumble", code: "ru1" } } export default card