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-77", localId: 77, // Card informations name: { en: "Tangela", }, hp: 60, type: [ Type.GRASS, ], dexId: 114, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl4/77/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl4/77/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Collect", }, text: { en: "Draw a card.", }, },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Stun Spore", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "+10" }], resistances: [{ type: Type.WATER, value: "-20" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Arceus", code: "pl4" } } export default card