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: "pl3-31", localId: 31, // Card informations name: { en: "Lucario C", fr: "Lucario ", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 448, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl3/31/low.png", fr: "https://assets.tcgdex.net/fr/pl/pl3/31/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl3/31/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl3/31/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 27, name: "kawayoo" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Metal Claw", fr: "Griffe acier", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mid-air Strike", fr: "Coup en l'air", }, text: { en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires.", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Supreme Victors", code: "pl3" } } export default card