swampspring 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # swampspring
  2. $location_type = 'secluded'
  3. $metka = ''
  4. $loc = 'swampspring'
  5. gs 'gadukino_event', 'sound'
  6. gs 'stat'
  7. '<center><B>Spring</B></center>'
  8. if month >= 4 and month <= 10:
  9. if hour >= 6 and hour < 22:
  10. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring.jpg"></center>'
  11. else
  12. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring_night.jpg"></center>'
  13. end
  14. else
  15. if hour >= 8 and hour < 18:
  16. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring_winter.jpg"></center>'
  17. else
  18. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/swampspring_winter_night.jpg"></center>'
  19. end
  20. end
  21. 'You''ve come across a natural spring with pure natural water.'
  22. act 'Drink the water':
  23. *clr & cla
  24. minut += 5
  25. if water >= 100:
  26. *clr & cla
  27. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hands.jpg"></center>'
  28. 'You''re not thirsty anymore.'
  29. else
  30. *clr & cla
  31. water += 80
  32. cumspclnt = 2 & gs 'cum_cleanup' & pcs_breath = 0
  33. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hands.jpg"></center>'
  34. 'You take a sip of the spring water.'
  35. end
  36. gs 'stat'
  37. act 'Finish':gt 'swampspring'
  38. end
  39. if bucket < 10:
  40. act 'Collect water in a bucket':
  41. *clr & cla
  42. minut += 10
  43. bucket += 10
  44. gs 'stat'
  45. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/vedro.jpg"></center>'
  46. 'You fill the bucket with water.'
  47. act 'Finish':gt 'swampspring'
  48. end
  49. end
  50. act 'Go':minut += 5 & gt 'swamp_yard'
  51. --- swampspring ---------------------------------