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: "hgss3-33", localId: 33, // Card informations name: { en: "Raichu", fr: "Raichu", }, hp: 80, type: [ Type.LIGHTNING, ], dexId: 26, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss3/33/low.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss3/33/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss3/33/high.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss3/33/high.png", }, }, evolveFrom: { en: "Pikachu", fr: "Pikachu", }, tags: [ Tag.STAGE1, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Pain-full Punch", fr: "Mise au poing", }, damage: 30 },{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Spark", fr: "Étincelle", }, text: { en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Inflige 20 dégâts à l'un des Pokémon se trouvant sur le Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "HS—Undaunted", code: "hgss3" } } export default card