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: "dpp-DP18", localId: "DP18", // Card informations name: { en: "Palkia", }, hp: 120, type: [ Type.WATER, ], dexId: 484, image: { low: { en: "https://assets.tcgdex.net/en/dp/dpp/DP18/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dpp/DP18/high.png", }, }, evolveFrom: {}, tags: [ Tag.LEVELUP, ], illustrator: { id: 1, name: "Ryo Ueda" }, abilities: [{ id: 818, type: AbilityType.POKEPOWER, name: { en: "Restructure", }, text: { en: "Once during your turn (before your attack), you may have your opponent switch 1 of your Active Pokémon with 1 of your Benched Pokémon. Then, you switch 1 of the Defending Pokémon with 1 of your opponent's Benched Pokémon. This power can't be used if Palkia is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.WATER, Type.WATER, Type.WATER ], name: { en: "Hydro Reflect", }, text: { en: "You may move all Energy cards attached to Palkia to your Benched Pokémon in any way you like. (Ignore this effect if you don't have any Benched Pokémon.)", }, damage: 60 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "DP Black Star Promos", code: "dpp" } } export default card