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: "pop9-4", localId: 4, // Card informations name: { en: "Regigigas", }, hp: 100, type: [ Type.COLORLESS, ], dexId: 486, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop9/4/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop9/4/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 44, name: "Kent Kanetsuna" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Body Slam", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Double Stomp", }, text: { en: "Flip 2 coins. This attack does 50 damage plus 20 more damage for each heads.", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "POP Series 9", code: "pop9" } } export default card