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: "xy4-46", localId: 46, // Card informations name: { en: "Gligar", fr: "Scorplane", }, hp: 60, type: [ Type.FIGHTING, ], dexId: 207, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy4/46/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy4/46/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy4/46/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy4/46/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 39, name: "Sanosuke Sakuma" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Rock Cannon", fr: "Canon à Pierres", }, text: { en: "Flip a coin until you get tails. This attack does 20 damage times the number of heads.", fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.", }, damage: 20 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Phantom Forces", code: "xy4" } } export default card