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-RC12", localId: "RC12", // Card informations name: { en: "Stunfisk", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 618, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/RC12/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/RC12/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 48, name: "Akira Komayama" }, attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Attract", }, text: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", }, },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Mud-Slap", }, damage: 70 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card