import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Tyranitar", fr: "Tyranocif", }, illustrator: "Kouki Saitou", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 248, ], hp: 140, types: [ "Darkness", ], evolveFrom: { en: "Pupitar", fr: "Ymphect", }, stage: "Stage2", attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Tail Crush", fr: "Destruqueue", }, effect: { en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires.", }, damage: "40+", }, { cost: [ "Darkness", "Darkness", "Colorless", "Colorless", ], name: { en: "Hyper Beam", fr: "Ultralaser", }, effect: { en: "Discard an Energy card attached to the Defending Pokémon.", fr: "Défaussez une carte Énergie attachée au Pokémon Défenseur.", }, damage: 80, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 3, description: { en: "Extremely strong, it can change the landscape. It has an insolent nature that makes it not care about others." }, variants: { normal: true, reverse: false, holo: false, firstEdition: false } } export default card