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: "bw6-67", localId: 67, // Card informations name: { en: "Gigalith", fr: "Gigalithe", }, hp: 140, type: [ Type.FIGHTING, ], dexId: 526, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/67/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/67/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/67/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/67/high.png", }, }, evolveFrom: { en: "Boldore", fr: "Géolithe", }, tags: [ Tag.STAGE2, ], illustrator: { id: 1, name: "Ryo Ueda" }, attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Revenge Cannon", fr: "Canon Talion", }, text: { en: "Does 10 more damage for each damage counter on each of your Benched Pokémon.", fr: "Inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur chacun de vos Pokémon de Banc.", }, damage: 10 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Reckless Charge", fr: "Attaque Imprudente", }, text: { en: "This Pokémon does 40 damage to itself.", fr: "Ce Pokémon s'inflige 40 dégâts.", }, damage: 120 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 4, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card