import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "sm12-227", localId: 227, // Card informations name: { en: "Silvally-GX", fr: "Silvallié-GX", }, hp: 210, type: [ Type.COLORLESS, ], dexId: 773, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm12/227/low", fr: "https://assets.tcgdex.net/fr/sm/sm12/227/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm12/227/high", fr: "https://assets.tcgdex.net/fr/sm/sm12/227/high", }, }, evolveFrom: { en: "Type: Null", fr: "Type:0", }, tags: [ Tag.GX, ], illustrator: "Megumi Mizutani", abilities: [{ id: 1363, type: AbilityType.TALENT, name: { en: "Disk Reload", fr: "Rechargement du Disque", }, text: { en: "Once during your turn (before your attack), you may draw cards until you have 5 cards in your hand.", fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez piocher des cartes jusqu’à ce que vous ayez 5 cartes en main.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Brave Buddies", fr: "Copains Courageux", }, text: { en: "If you played a Supporter card from your hand during this turn, this attack does 70 more damage.", fr: "Si vous avez joué une carte Supporter de votre main pendant ce tour, cette attaque inflige 70 dégâts supplémentaires.", }, damage: 50 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Silver Knight-GX", fr: "Chevalier d’Argent-GX", }, text: { en: "If your opponent's Active Pokémon is an Ultra Beast, it is Knocked Out. (You can't use more than 1 GX attack in a game.)", fr: "Si le Pokémon Actif de votre adversaire est une Ultra-Chimère, il est mis K.O. (Vous ne pouvez utiliser qu’une attaque GX par partie.)", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.ULTRARARE, category: Category.POKEMON, set: { name: "Cosmic Eclipse", code: "sm12" } } export default card