123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # swampspring
- $loc = 'swampspring'
- $loc_arg = ''
- $menu_loc = 'swamp_yard'
- $menu_arg = ''
- menu_off = 0
- $location_type = 'secluded'
- gs 'gadukino_event', 'sound'
- '<center><B>Spring</B></center>'
- if month >= 4 and month <= 10:
- '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/'+iif(DayStage < 4,'swampspring.jpg','swampspring_night.jpg')+'"></center>'
- else
- '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/'+iif(DayStage < 4,'swampspring_winter.jpg','swampspring_winter_night.jpg')+'"></center>'
- end
- *nl
- 'You come across a natural spring with pure natural water.'
- gs 'stat'
- act 'Go back to the hut':minut += 5 & gt 'swamp_yard', 'start'
- if pcs_hydra < 150:
- act 'Drink the water':
- *clr & cla
- minut += 5
- pcs_breath = 0
- '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/hands.jpg"></center>'
- 'You take a sip of the spring water.'
- if pcs_hydra >= 100: pcs_hydra += 25 else pcs_hydra += 50
- cumspclnt = 2
- gs 'cum_cleanup'
- gs 'stat'
- act 'Finish':gt 'swampspring'
- end
- end
- if bucket < 10:
- act 'Collect water in a bucket':
- *clr & cla
- '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/vedro.jpg"></center>'
- 'You fill the bucket with water.'
- minut += 10
- bucket += 10
- gs 'stat'
- act 'Finish':gt 'swampspring'
- end
- end
- --- swampspring ---------------------------------
|