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: "ex15-27", localId: 27, // Card informations name: { en: "Croconaw δ", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 159, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/27/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/27/high.png", }, }, evolveFrom: { en: "Totodile", }, tags: [ Tag.STAGE1, ], illustrator: { id: 45, name: "Yuka Morii" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Scary Face", }, text: { en: "Flip a coin. If heads, the Defending Pokémon can't attack or retreat during your opponent's next turn.", }, },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Slash", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card