import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Wartortle", }, illustrator: "Atsuko Nishida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 8, ], hp: 80, types: [ "Water", ], evolveFrom: { en: "Squirtle", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Tail Whip", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Bite", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card