import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Tynamo" }, illustrator: "Asako Ito", category: "Pokemon", hp: 30, types: ["Lightning"], stage: "Basic", attacks: [{ cost: ["Lightning"], name: { en: "Tiny Charge" }, damage: "30" }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "While one alone doesn't have much power, a chain of many Tynamo can be as powerful as lightning.", } } export default card