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: "ex5-15", localId: 15, // Card informations name: { en: "Walrein", }, hp: 120, type: [ Type.WATER, ], dexId: 365, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex5/15/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/15/high", }, }, evolveFrom: { en: "Sealeo", }, tags: [ Tag.STAGE2, ], illustrator: "Atsuko Nishida", abilities: [{ id: 951, type: AbilityType.POKEPOWER, name: { en: "Crush Draw", }, text: { en: "Once during your turn (before your attack), you may reveal the top card of your deck. If that card is a basic Energy card, attach it to 1 of your Pokémon. If not, put the card back on your deck. This power can't be used if Walrein is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.WATER, Type.WATER, 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: 50 }], weaknesses: [{ type: Type.METAL, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card