- Send Invoice: Deal financial damage to target. Potency is halved if target is another company, or doubled if the target is an individual.
- DUTY ACTION: File Expense Report: Apply for damage taken in the prior 10 seconds to be healed. Grants
Pending Expense Report
. May not be used if no damage has been taken or the player hasPending Expense Report
. (This action is available to characters in the same party as the player.) - Accept Expense Report: Consumes a
Pending Expense Report
and heals the target for the amount of health requested. - Hire Clerk: Hires a clerk to automatically accept pending expense reports. Duration: 1 Quarter. Recast: 4 Quarters
- Quarter End: Ends the current quarter, you may not execute actions for 15 seconds. Reduces damage dealt to you by 50% for 15 seconds. Applies
Fiscal Year
. Each stack of Fiscal Year increases the chance to trigger an Audit by 10% when Quarter End is activated. - Audit (Trait): Removes all stacks of `Fiscal Ye
I hereby claim:
- I am duaiwe on github.
- I am duaiwe (https://keybase.io/duaiwe) on keybase.
- I have a public key ASDZddhAv67um0CqJRmzYqRJDxfajnwOPO2mCwHVUahohAo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
# https://gist.github.com/1361100 | |
ID3_TAGS = { | |
"TITLE" => "tt", | |
"ARTIST" => "ta", | |
"ALBUM" => "tl", | |
"DATE" => "ty", | |
"GENRE" => "tg", | |
"TRACKNUMBER" => "tn", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static function slug($s, $maxLength = null) { | |
// Make the string lower case | |
$s = strtolower($s); | |
// Turn forward slashes into spaces. | |
// NOTE: We turn them into spaces, so they're properly condensed down to | |
// a single dash later on. | |
$s = str_replace('/',' ',$s); | |
// Remove any non-alphanumeric, space, or hyphen characters |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Cast an object into a different class. | |
* | |
* Currently this only supports casting DOWN the inheritance chain, | |
* that is, an object may only be cast into a class if that class | |
* is a descendant of the object's current class. | |
* | |
* This is mostly to avoid potentially losing data by casting across | |
* incompatable classes. |