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: "pl4-14", localId: 14, // Card informations name: { en: "Bronzong", }, hp: 90, type: [ Type.METAL, ], dexId: 437, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl4/14/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl4/14/high.png", }, }, evolveFrom: { en: "Bronzor", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.METAL, Type.COLORLESS ], name: { en: "Oracle Arrow", }, text: { en: "Choose 1 of your opponent's Pokémon that has any damage counters on it. This attack does 40 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Antigravity", }, text: { en: "The Retreat Cost for Bronzong is 0 until the end of your next turn.", }, damage: 60 }], weaknesses: [{ type: Type.FIRE, value: "+20" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Arceus", code: "pl4" } } export default card