import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex4-22", localId: 22, // Card informations name: { en: "Team Magma's Rhydon", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 112, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex4/22/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex4/22/high.png", }, }, evolveFrom: {}, tags: [ Tag.STAGE1, ], illustrator: { id: 157, name: "T. Honda" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Second Strike", }, text: { en: "If the Defending Pokémon already has at least 2 damage counters on it, this attack does 20 damage plus 20 more damage.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Land Crush", }, text: { en: "Flip a coin. If tails, discard an Energy card attached to Team Magma's Rhydon.", }, damage: 60 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Team Magma vs Team Aqua", code: "ex4" } } export default card