import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "base5-46", localId: 46, // Card informations name: { en: "Dark Wartortle", }, hp: 60, type: [ Type.WATER, ], dexId: 8, image: { low: { en: "https://assets.tcgdex.net/en/base/base5/46/low", }, high: { en: "https://assets.tcgdex.net/en/base/base5/46/high", }, }, evolveFrom: { en: "Squirtle", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.WATER ], name: { en: "Doubleslap", }, text: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", }, damage: 10 },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Mirror Shell", }, text: { en: "If an attack does damage to Dark Wartortle during your opponent's next turn (even if Dark Wartortle is Knocked Out), Dark Wartortle attacks the Defending Pokémon for an equal amount of damage.", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Rocket", code: "base5" } } export default card