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: "dp2-27", localId: 27, // Card informations name: { en: "Kricketune", }, hp: 80, type: [ Type.GRASS, ], dexId: 402, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp2/27/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp2/27/high", }, }, evolveFrom: { en: "Kricketot", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Sore Performance", }, text: { en: "The Defending Pokémon is now Asleep.", }, damage: 20 },{ cost: [ Type.GRASS, Type.GRASS ], name: { en: "Concerto", }, text: { en: "Does 40 damage plus 10 more damage for each Kricketot and each Kricketune you have in play.", }, damage: 40 }], weaknesses: [{ type: Type.FIRE, value: "+20" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Mysterious Treasures", code: "dp2" } } export default card