name: Tanner description: A weathered craftsman with stained hands and a leather apron. protected: true unique: true idle_descriptions: - scrapes at a piece of hide - examines a stack of leathers - sharpens a tanning knife - wipes sweat from his brow talk: nodes: start: messages: - '"Bring me some cowhides and I''ll tan them for you. Leather is 10 credits, hard leather is 50."' options: - condition: all_of: - has_item: cowhide - min_credits: 10 goto: tan_leather text: '"Tan a cowhide into leather (10 credits)."' - condition: all_of: - has_item: cowhide - min_credits: 50 goto: tan_hard_leather text: '"Tan a cowhide into hard leather (50 credits)."' - text: '"Never mind."' tan_hard_leather: action: credits: -50 give_item: hard_leather take_item: cowhide messages: - The tanner takes your cowhide and subjects it to an intense curing process. "Here's your hard leather." options: - condition: has_item: cowhide goto: start text: '"Tan another."' - text: '"Thanks."' tan_leather: action: credits: -10 give_item: leather take_item: cowhide messages: - The tanner takes your cowhide and works it skillfully. "Here's your leather." options: - condition: has_item: cowhide goto: start text: '"Tan another."' - text: '"Thanks."'