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: "ex5-79", localId: 79, // Card informations name: { en: "Totodile", }, hp: 50, type: [ Type.WATER, ], dexId: 158, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex5/79/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/79/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 78, name: "Shin-ichi Yoshikawa" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Flail", }, text: { en: "Does 10 damage for each damage counter on Totodile.", }, damage: 10 },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Bite", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card