Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Urban Shadows Fixes #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion functions/urban-shadows.js
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ function debts(userMessage, userId, channelId, userNickname, moves, userData){
OwedToThemPrintout = 'DEBTS I OWE:\n -- None --'
}

return `Enter __!debts?__ to learn about adding/removing debts.\n\n${OwedToMePrintout}\n\n${OwedToThemPrintout}`
return `Enter __!debts?__ to learn how to add or remove debts.\n\n${OwedToMePrintout}\n\n${OwedToThemPrintout}`
}

function owedToMe(userMessage, userId, channelId, userNickname, moves, userData){
Expand Down
38 changes: 28 additions & 10 deletions moves/urban-shadows.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ ADD SUFFIX ? TO ANY COMMAND FOR MOVE INFO:\n\n\
- BASIC MOVES LIST: !basic\n\
- OTHER MOVES LIST: !other\n\
- CUSTOM MOVES: !custom\n\
- DEBT LIST: !debts\n\
- ADD/REMOVE DEBT OWED TO YOU: !owedToMe\n\
- ADD/REMOVE DEBT YOU OWE: !owedToThem\n\
- SET APOCABOT PREFIX: !setprefix\n\
- SET APOCABOT GAME: !setgame',
method: function(){return this.text}
Expand All @@ -37,20 +34,41 @@ ADD SUFFIX ? TO ANY COMMAND FOR MOVE INFO:\n\n\
otherMoves: {
key: ['other', 'othermoves'],
text: 'OTHER MOVES:\n\n\
- HIT THE STREETS: !hit\n\
- PUT A FACE TO A NAME: !put\n\
- INVESTIGATE A PLACE OF POWER: !inv\n\
- DEBTS: !debts\n\
- FACTION MOVES LIST: !faction\n\
- CORRUPTION MOVES LIST: !corrupt\n\
- DO SOMEONE A FAVOR: !favor\n\
- CASH IN A DEBT: !cash\n\
- REFUSE TO HONOR A DEBT: !refuse\n\
- DROP SOMEONE\'S NAME: !drop\n\
- MARK CORRUPTION: !mark\n\
- CLEAR CORRUPTION: !clear\n\
- LEAD A GANG INTO BATTLE: !battle\n\
- SESSION INTRO: !intro\n\
- SESSION END: !end',
method: function(){return this.text}
},
faction: {
key: ['faction'],
text: 'The Faction stats (Mortality, Night, Power and Wild) describe your character\'s relationship\
to the various political groupings in the game.\n\
FACTION MOVES:\n\n\
- HIT THE STREETS: !hit\n\
- PUT A FACE TO A NAME: !put\n\
- INVESTIGATE A PLACE OF POWER: !inv\n\n\
Whenever you roll any of the above moves, trigger an intimacy move, cash in a Debt(!cash) or honor a Debt,\
mark that faction using !mark. (for example !mark night)\n\
If you want to clear a mark, use !clear (for example, !clear mort) \n\
Once you\'ve marked all four factions, clear all marks (!clear factions) and advance.\n\
When viewing your character sheet, marked faction stats are indicated with a bullet (•).',
method: function(){return this.text}
},
corruption: {
key: ['corruption'],
text: 'Marking corruption will check off a box in your corruption track; when you\'ve checked off all five\
boxes, you unlock a corruption advance and clear your corruption track to start anew.\n\
To mark corruption, use !mark corruption.\n\
To clear your corruption track, use !clear corruption.',
method: function(){return this.text}
},
customMenu: {
key: ['custom', 'custommoves'],
text: 'CUSTOM MOVE COMMANDS:\n\n\
Expand Down Expand Up @@ -467,8 +485,8 @@ __!clear factions__ or __!clear all__ will clear all factions.',
debts: {
key: ['debts'],
text: 'Displays the debts that are owed to you and the debts that you owe.\n\n\
To add or remove debts owed to you, enter __!owedtome?__.\n\
To add or remove debts you owe to others, enter __!owedtothem?__.',
To learn how to add or remove debts owed to you, enter __!owedtome?__.\n\
To learn how to add or remove debts you owe to others, enter __!owedtothem?__.',
method: functions.debts
},
owedToMe: {
Expand Down