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: "pl3-50", localId: 50, // Card informations name: { en: "Arcanine", fr: "Arcanin", }, hp: 80, type: [ Type.FIRE, ], dexId: 59, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl3/50/low.png", fr: "https://assets.tcgdex.net/fr/pl/pl3/50/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl3/50/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl3/50/high.png", }, }, evolveFrom: { en: "Growlithe", fr: "Caninos", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Overrun", fr: "Dépassement", }, text: { en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Inflige 10 dégâts à 1 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)", }, damage: 20 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Combustion", fr: "Fournaise", }, damage: 40 }], weaknesses: [{ type: Type.WATER, value: "+20" }], retreat: 3, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Supreme Victors", code: "pl3" } } export default card