Merge pull request #1179 from lyricalpaws/lets-go-mining

Mining balance changes, some new icons, and good stuff.
This commit is contained in:
Dahlular
2021-05-23 00:32:26 -06:00
committed by GitHub
18 changed files with 1051 additions and 18 deletions
+8
View File
@@ -731,3 +731,11 @@
//
///from datum/action/cyborg_small_sprite and sends when a cyborg changes modules
#define COMSIG_CYBORG_MODULE_CHANGE "cyborg_module_change"
/* Attack signals. They should share the returned flags, to standardize the attack chain. */
/// tool_act -> pre_attack -> target.attackby (item.attack) -> afterattack
///Ends the attack chain. If sent early might cause posterior attacks not to happen.
#define COMPONENT_CANCEL_ATTACK_CHAIN (1<<0)
///Skips the specific attack step, continuing for the next one to happen.
#define COMPONENT_SKIP_ATTACK (1<<1)