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: "dp1-92", localId: 92, // Card informations name: { en: "Onix", fr: "Onix", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 95, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp1/92/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp1/92/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp1/92/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp1/92/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Tunneling", fr: "Creuser un tunnel", }, text: { en: "Choose up to 2 of your opponent's Benched Pokémon. This attack does 10 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.) Onix can't attack during your next turn.", fr: "Choisissez jusqu'à 2 des Pokémon de Banc de votre adversaire. Cette attaque inflige 10 dégâts à chacun. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance au Pokémon de Banc). Onix ne peut pas attaquer lors de votre prochain tour.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Headbutt", fr: "Coup d'boule", }, damage: 20 }], weaknesses: [{ type: Type.GRASS, value: "+20" }], retreat: 3, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Diamond & Pearl", code: "dp1" } } export default card