-
Notifications
You must be signed in to change notification settings - Fork 59
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
First pass CyberRealm #2215
First pass CyberRealm #2215
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few quick comments, some of which need action and most of which don't
{ | ||
name: "CyberRealm Overclock Fights", | ||
ready: () => | ||
have($item`server room key`) && // TODO support day pass? Not require tanktop |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To support the day pass, easiest way would be to use canAdventure
, right?
ready: () => | ||
have($item`server room key`) && // TODO support day pass? Not require tanktop | ||
have($item`zero-trust tanktop`) && | ||
have($skill`Torso Awareness`) && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know some (unsupported) avatar paths have shirt access through another skill. Would it make more sense to use canEquip
? ("No" is a perfectly fine answer here, I'm just spintballing)
completed: () => get("_cyberFreeFights") >= 10, | ||
do: $location`Cyberzone 1`, // TODO Support other zones with better equipment and valuing hacker drops | ||
tentacle: false, | ||
choices: () => ({ 1545: 1 }), // Take damage, get 0's |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
choices: () => ({ 1545: 1 }), // Take damage, get 0's | |
choices: { 1545: 1 }, // Take damage, get 0's |
doesn't matter too much, but if nothing ever changes it's nicer to not make it a function imo
* First pass CyberRealm * Trash and stick are in mafia breakfast * nitpicks --------- Co-authored-by: horrible little slime <[email protected]>
Simplistic version just to use the free fights for now