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: "bw11-31", localId: 31, // Card informations name: { en: "Gyarados", }, hp: 130, type: [ Type.WATER, ], dexId: 130, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/31/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/31/high.png", }, }, evolveFrom: { en: "Magikarp", }, tags: [ Tag.STAGE1, ], illustrator: { id: 138, name: "hatachu" }, attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Howling Rampage", }, text: { en: "Does 20 damage times the number of Prize cards both players have taken.", }, damage: 20 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hydro Splash", }, damage: 120 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card