swampspring.qsrc 1.3 KB

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