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: "sm4-84", localId: 84, // Card informations name: { en: "Regigigas", fr: "Regigigas", }, hp: 180, type: [ Type.COLORLESS, ], dexId: 486, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm4/84/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm4/84/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm4/84/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm4/84/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 10, name: "Kouki Saitou" }, abilities: [{ id: 710, type: AbilityType.TALENT, name: { en: "Seal of Antiquity", fr: "Sceau d’Antiquité", }, text: { en: "This Pokémon can't attack unless Regirock, Regice, and Registeel are on your Bench.", fr: "Ce Pokémon ne peut pas attaquer, à moins que Regirock, Regice et Registeel ne soient sur votre Banc.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Giant Stomp", fr: "Piétinement Gigantesque", }, text: { en: "Discard any Stadium card in play.", fr: "Défaussez toute carte Stade en jeu.", }, damage: 160 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 4, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Crimson Invasion", code: "sm4" } } export default card