import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Gyarados", }, illustrator: "hatachu", rarity: "Rare", category: "Pokemon", set: Set, evolveFrom: { en: "Magikarp", }, attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Wrack Down", }, damage: 90, }, { cost: [ "Water", "Water", "Colorless", "Colorless", "Colorless", ], name: { en: "Big Storm", }, effect: { en: "Discard any Stadium in play.", }, damage: 200, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 4, } export default card