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: "pl4-AR4", localId: "AR4", // Card informations name: { en: "Arceus", fr: "Arceus", }, hp: 90, type: [ Type.WATER, ], dexId: 493, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl4/AR4/low", fr: "https://assets.tcgdex.net/fr/pl/pl4/AR4/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl4/AR4/high", fr: "https://assets.tcgdex.net/fr/pl/pl4/AR4/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fastwave", fr: "Lame de fond", }, text: { en: "This attack's damage isn't affected by Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.", fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance, les Poké-Powers, les Poké-Bodies ou tout autre effet sur le Pokémon Défenseur.", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Arceus", code: "pl4" } } export default card