123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- # gad_gpchores
- !! Modified date: June, 2024
- !! Version: .1 - initial initial release
- !! Author: Hooded Silence
- !!
- !! Task initiator for the grandparents chores whilst Sveta is staying with grandparents.
- if $ARGS[0] = 'init':
- if gp_chores['active'] > 1:
- gt 'gad_gpchores', 'active'
- end
- gs 'gp_chores', 'convo'
- end
- if $ARGS[0] = 'active':
- end
- !! Conversations
- if $ARGS[0] = 'convo':
- if gp_chores = 0:
- 'You approach your <relation> to ask if they have any jobs for you today.'
- if gp_chores['mood'] < 0:
- gp_chores['bonus'] = 0
- 'You are lazy {mc}, i am not sure if you can be trusted to do your share.'
- elseif gp_chores['mood'] < 10:
- 'Your <relation gives you a hard stare, you are nothing about a layabout. Get out of my sight!'
- elseif gp_chores['mood'] > 10:
- gp_chores['bonus'] = 10
- 'You have been so helpful {mc}, it is wonderful to have you with us. Here''s a something little extra for you. '
- elseif gp_chores['mood'] > 20:
- gp_chores['bonus'] = 20
- 'Your <relation> face lights up when they see you. You have been such a hardworking girl, you''re mother will be so proud of how diligant you become. Here have a little extra cash for your efforts.'
- !! potential for helping in village with high rep?
- end
- end
- if gp_chores['active'] = -1:
- gp_chores['failed'] += 1
- gp_chores['mood'] -= 1
- end
- if gp_chores['active'] = 5:
- gp_chores['completed'] += 1
- gp_chores['mood'] += 1
- end
- end
- --- gad_gpchores ---------------------------------
|