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: "bw9-100", localId: 100, // Card informations name: { en: "Frozen City", fr: "Ville Gelée", }, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw9/100/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/100/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/100/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/100/high.png", }, }, evolveFrom: {}, tags: [ Tag.STADIUM, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ name: {}, text: { fr: "Chaque fois qu'un joueur attache une Énergie de sa main à 1 de ses Pokémon (excepté les Pokémon de la Team Plasma), placez 2 marqueurs de dégâts sur le Pokémon auquel l'Énergie a été attachée.", }, }], rarity: Rarity.Uncommon, category: Category.TRAINER, set: { name: "Plasma Freeze", code: "bw9" } } export default card