import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex7-13", localId: 13, // Card informations name: { en: "Piloswine", }, hp: 100, type: [ Type.FIGHTING, ], dexId: 221, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/13/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/13/high", }, }, evolveFrom: { en: "Swinub", }, tags: [ Tag.STAGE1, ], illustrator: "Tomokazu Komiya", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Sheer Cold", }, text: { en: "Flip a coin. If heads, each Defending Pokémon can't attack during your opponent's next turn.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Tonnage", }, text: { en: "You may do 60 damage plus 40 more damage. If you do, Piloswine does 30 damage to itself.", }, damage: 60 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card