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: "sm1-77", localId: 77, // Card informations name: { en: "Alolan Raticate", fr: "Rattatac d’Alola", }, hp: 120, type: [ Type.DARKNESS, ], dexId: 20, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm1/77/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm1/77/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm1/77/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm1/77/high.png", }, }, evolveFrom: { en: "Alolan Rattata", fr: "Rattata d’Alola", }, tags: [ Tag.STAGE1, ], illustrator: { id: 28, name: "match" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Evil Orders", fr: "Consignes Maléfiques", }, text: { en: "Search your deck for a number of cards up to the number of your Benched Pokémon and put them into your hand. Then, shuffle your deck.", fr: "Cherchez autant de cartes dans votre deck que le nombre de Pokémon sur votre Banc, puis placez-les dans votre main. Mélangez ensuite votre deck.", }, },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Endeavor", fr: "Effort", }, text: { en: "Flip 2 coins. This attack does 30 more damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 3, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Sun & Moon", code: "sm1" } } export default card