import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Gyarados δ", }, illustrator: "Hajime Kusajima", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 130, ], hp: 90, types: [ "Lightning", "Metal", ], evolveFrom: { en: "Magikarp", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Delta Reactor", }, effect: { en: "As long as any Stadium card with Holon in its name is in play, each of your Pokémon that has δ on its card does 10 more damage to the Defending Pokémon (before applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Metal", "Colorless", ], name: { en: "Hyper Beam", }, effect: { en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.", }, damage: 20, }, { cost: [ "Lightning", "Metal", "Colorless", "Colorless", "Colorless", ], name: { en: "Heavy Impact", }, damage: 80, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card