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: "hgss1-59", localId: 59, // Card informations name: { en: "Chikorita", fr: "Germignon", }, hp: 60, type: [ Type.GRASS, ], dexId: 152, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss1/59/low", fr: "https://assets.tcgdex.net/fr/hgss/hgss1/59/low", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss1/59/high", fr: "https://assets.tcgdex.net/fr/hgss/hgss1/59/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 19, name: "Shin Nagasawa" }, attacks: [{ cost: [ Type.GRASS ], name: { en: "Tackle", fr: "Charge", }, damage: 10 },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Razor Leaf", fr: "Tranch’herbe", }, damage: 20 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.WATER, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "HeartGold & SoulSilver", code: "hgss1" } } export default card