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: "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.png", fr: "https://assets.tcgdex.net/fr/pl/pl4/AR4/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl4/AR4/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl4/AR4/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 10, name: "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