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-51", localId: 51, // Card informations name: { en: "Wormadam Trash Cloak", }, hp: 90, type: [ Type.METAL, ], dexId: 413, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl4/51/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl4/51/high.png", }, }, evolveFrom: { en: "Burmy Trash Cloak", }, tags: [ Tag.STAGE1, ], illustrator: { id: 37, name: "Miki Tanaka" }, attacks: [{ cost: [ Type.METAL ], name: { en: "Cloak Shard", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. If you have Wormadam Plant Cloak in play, this attack does 40 damage to that Pokémon instead. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Serve Trash", }, text: { en: "You may search your opponent's discard pile for any 1 card, show it to your opponent, and put it on top of his or her deck.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "+20" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Arceus", code: "pl4" } } export default card