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: "sm35-41", localId: 41, // Card informations name: { en: "Latios", fr: "Latios", }, hp: 110, type: [ Type.PSYCHIC, ], dexId: 381, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm35/41/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm35/41/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm35/41/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm35/41/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Break Through", fr: "Percée", }, text: { en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 30 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 30 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Lagoon Flight", fr: "Survol du Lagon", }, damage: 70 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Shining Legends", code: "sm35" } } export default card