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: "dp6-4", localId: 4, // Card informations name: { en: "Giratina", fr: "Giratina", }, hp: 100, type: [ Type.PSYCHIC, ], dexId: 487, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp6/4/low", fr: "https://assets.tcgdex.net/fr/dp/dp6/4/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp6/4/high", fr: "https://assets.tcgdex.net/fr/dp/dp6/4/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kazuaki Aihara", attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Shadow Force", fr: "Revenant", }, text: { en: "Choose 1 of your opponent's Benched Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Flip a coin. If heads, prevent all effects of an attack, including damage, done to Giratina during your opponent's next turn.", fr: "Choisissez 1 des Pokémon de Banc de votre adversaire. Cette attaque lui inflige 20 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.) Lancez une pièce. Si c'est face, prévenez tous les effets d'une attaque, dégâts inclus, infligés à Giratina lors du prochain tour de votre adversaire.", }, },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Brutal Edge", fr: "Tranche brutale", }, text: { en: "Does 50 damage plus 10 more damage for each damage counter on the Defending Pokémon.", fr: "Inflige 50 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur le Pokémon Défenseur.", }, damage: 50 }], weaknesses: [{ type: Type.DARKNESS, value: "×2" }], resistances: [{ type: Type.COLORLESS, value: "-20" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Legends Awakened", code: "dp6" } } export default card