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: "ex6-30", localId: 30, // Card informations name: { en: "Tangela", }, hp: 60, type: [ Type.GRASS, ], dexId: 114, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/30/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/30/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 45, name: "Yuka Morii" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Vine Tease", }, text: { en: "Look at your Prize cards without showing your opponent. Choose 1 of the Prize cards and switch it with the top card of your deck without looking at the top card of your deck. If you have no cards in your deck, this attack does nothing.", }, },{ name: { en: "Wiggle", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused. If tails, the Defending Pokémon is now Poisoned.", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.WATER, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card