krupo.qsrc 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # krupo
  2. $loc_arg = $ARGS[0]
  3. $loc = 'krupo'
  4. $location_type = 'event'
  5. menu_off = 1
  6. frost = 0
  7. gs'stat'
  8. gs 'themes', 'indoors'
  9. '<center><b><font color = maroon>Sewing circle</font></b></center>'
  10. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/community/sew/sewing_lesson.jpg"></center>'
  11. if pcs_sewng < 40:
  12. gs 'exp_gain', 'sewng', rand(pcs_intel/20, pcs_intel/10)
  13. minut += 60
  14. 'You spend an hour learning different sewing techniques.'
  15. end
  16. if pcs_sewng >= 40:
  17. if tkanfirst = 0:
  18. minut += 60
  19. gs 'exp_gain', 'sewng', rand(pcs_intel/20, pcs_intel/10)
  20. 'She has some spare fabric for you as it''s the first time you need some, but she tells you to bring some next time.'
  21. msg 'The teacher tells you that you will need to bring in fabric for further studies, you can buy some in the hardware department at the supermarket.'
  22. tkanfirst = 1
  23. elseif tkan <= 0:
  24. msg 'The teacher reminds you, that in order to further improve your skills, you need to buy some fabric to work with.'
  25. 'You can''t do your lesson without fabric so there is nothing you can do here now.'
  26. else
  27. minut += 60
  28. tkan -= 1
  29. gs 'exp_gain', 'sewng', rand(pcs_intel/20, pcs_intel/10)
  30. 'For an hour you learn more advanced techniques and practice cutting and sewing the fabric you purchased.'
  31. if pcs_sewng >= 60 and poTalk = 0:
  32. poTalk = 1
  33. *nl
  34. 'With a satisfied smile your teacher tells you, "Well done, now you can alter clothes to fit your size perfectly! However, this does not mean that any further studies would be useless. With further lessons I feel that I can teach you how to embroider splendid tapestries, which would be highly sought after, although very laborious to make."'
  35. end
  36. if pcs_sewng >= 80 and poTalk = 1:
  37. *nl
  38. 'The teacher nods quietly and says, "You have mastered simple tapestries. It''s not without flaws, but good enough to be able to sell them and as your skills continue to grow, the quality will improve as well."'
  39. end
  40. end
  41. end
  42. *nl
  43. 'Your sewing skill is now <<pcs_sewng>>.'
  44. *nl
  45. if tkan >= 0:'Your cloth will suffice for <<tkan>> more lessons.'
  46. gs'stat'
  47. act 'Leave':gt'pav_commclubs'
  48. --- krupo ---------------------------------