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: "pop9-1", localId: 1, // Card informations name: { en: "Garchomp", }, hp: 130, type: [ Type.COLORLESS, ], dexId: 445, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop9/1/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop9/1/high.png", }, }, evolveFrom: { en: "Gabite", }, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Dragon Rage", }, text: { en: "Flip 2 coins. If either of them is tails, this attack does nothing.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Jet Sword", }, text: { en: "Discard 2 Energy attached to Garchomp and this attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 100 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "POP Series 9", code: "pop9" } } export default card