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: "pl3-9", localId: 9, // Card informations name: { en: "Regigigas FB", fr: "Regigigas ", }, hp: 100, type: [ Type.COLORLESS, ], dexId: 486, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl3/9/low.png", fr: "https://assets.tcgdex.net/fr/pl/pl3/9/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl3/9/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl3/9/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 19, name: "Shin Nagasawa" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Drain Punch", fr: "Vampipoing", }, text: { en: "Remove from Regigigas FB a number of damage counters equal to the amount of Energy attached to the Defending Pokémon.", fr: "Retirez à Regigigas autant de marqueurs de dégât qu'il y a d'Énergie(s) attachée(s) au Pokémon Défenseur.", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rainbow Lariat", fr: "Lasso arc-en-ciel", }, text: { en: "Does 20 damage times the number of different types of Pokémon SP you have in play.", fr: "Inflige 20 dégâts multipliés par le nombre de types de Pokémon SP différents que vous avez en jeu.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 4, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Supreme Victors", code: "pl3" } } export default card