|
@@ -27,36 +27,36 @@ if father_go=1 and hour>=20 and hour<21:
|
|
|
end
|
|
|
|
|
|
if YouCanGar > 0:
|
|
|
- 'You have stored <<GarTorgItem>> grams of drugs in the garage currently. Not wanting your stepfather to find it, you don''t think you can get away with storing more than 100 grams in various hiding places in the garage without him finding out. The garage is not very easily accessible; if you want to sell the drugs, you will have to bring it back home first.'
|
|
|
+ 'You have stored <<GarTorgItem>> trinkets in the garage currently. Your stepfather allowed you to store some things in his garage but doesn''t want you taking up all his space, he has allowed you to store up to 100 trinkets here. The garage is not very easily accessible; if you want to sell the trinkets at the station, you will have to bring them back home first.'
|
|
|
|
|
|
if tovarL >= 30:
|
|
|
- 'You already have too much stored at home and do not have any more hiding spots. You can''t bring home more, someone might find it.'
|
|
|
+ 'You already have too much stored at home and do not have any more space.'
|
|
|
elseif tovarL < 30:
|
|
|
perenGarTov = 30-tovarL
|
|
|
- 'You can bring <<perenGarTov>> grams home and hide it somewhere there.'
|
|
|
+ 'You can bring <<perenGarTov>> trinkets home and store them somewhere, until you have time to collect and sell them at the train station.'
|
|
|
|
|
|
if GarTorgItem > 0:
|
|
|
if GarTorgItem >= perenGarTov:
|
|
|
- act 'Move <<perenGarTov>> grams to your home':
|
|
|
+ act 'Move <<perenGarTov>> trinkets to your home':
|
|
|
cls
|
|
|
minut += 60
|
|
|
tovarL += perenGarTov
|
|
|
GarTorgItem -= perenGarTov
|
|
|
gs 'stat'
|
|
|
- 'You spend an hour gathering your drugs from various hiding spots, bringing it home and hiding it there.'
|
|
|
+ 'You spend an hour gathering your trinkets from various places, bringing them home and hiding them there.'
|
|
|
|
|
|
act 'Continue':gt $curloc
|
|
|
end
|
|
|
end
|
|
|
|
|
|
if GarTorgItem < perenGarTov:
|
|
|
- act 'Collect <<GarTorgItem>> grams to take with you':
|
|
|
+ act 'Collect <<GarTorgItem>> trinkets to take with you':
|
|
|
cls
|
|
|
minut += 30
|
|
|
tovarL += GarTorgItem
|
|
|
GarTorgItem = 0
|
|
|
gs 'stat'
|
|
|
- 'You spend half an hour gathering your drugs from various hiding spots.'
|
|
|
+ 'You spend half an hour gathering your trinkets from various places in the garage, putting them in a bag so you can go sell them at the station.'
|
|
|
|
|
|
act 'Continue':gt $curloc
|
|
|
end
|