12345678910111213141516171819202122232425262728293031323334353637383940 |
- # city_experimental_trials_pharmacy
- if $ARGS[0] = 'counter':
- '<center><B><font color="maroon">Experimental Pharmacy</font></B></center>'
- if rand(0, 1) = 0:
- '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\pharmacist1.jpg"></center>'
- *nl
- 'You approach the pharmacy front desk. The older pharmacist behind the counter looks up at you and gives you a smile.'
- '"How can I help you?"'
- else
- '<center><img <<$set_imgh>> src="images\locations\city\residential\clinic\experiments\pharmacist2.jpg"></center>'
- *nl
- 'You approach the pharmacy front desk. The middle aged pharmacist behind the counter looks up at you and smiles.'
- '"How can I help you".'
- end
- *nl
- if experimentQW['times_participated_1'] = 0 and experimentQW['times_participated_2'] = 0 and experimentQW['times_participated_3'] = 0 and experimentQW['times_participated_4'] = 0 and experimentQW['times_participated_5'] = 0:
- '"If any of our experimental trials lead to a breakthrough, we will sell the medicine those trials produced here. Currently all of our trials are ongoing so there''s nothing in stock, do check back later. Sign up for a trial, if you want to help us develop medicine for the future."'
- else
- act 'Buy something': gt 'city_experimental_trials_pharmacy', 'cart'
- end
- act 'Go back to the front desk': gt 'city_experimental_trials', 'front_desk'
- end
- if $ARGS[0] = 'cart':
- *clr & cla
- $loc_s = 'city_experimental_trials_pharmacy'
- $args_s = 'cart'
- gs 'item_cart', 'shoppping_aisle', 'experimental_trials'
- gs 'themes', 'indoors'
- gs 'stat'
- act 'Exit shopping cart': gt 'city_experimental_trials_pharmacy', 'counter'
- end
- --- city_experimental_trials_pharmacy ---------------------------------
|