mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* too slow, mqiib * adds sprites, removes unused equipment * i love pushing untested changes!!! * balance * fix + repair qol * forgor to remove this line * Update declarations.dm
12 lines
427 B
Plaintext
12 lines
427 B
Plaintext
///Not actually hitscan but close as we get without actual hitscan.
|
|
#define MOVES_HITSCAN -1
|
|
///How many pixels to move the muzzle flash up so your character doesn't look like they're shitting out lasers.
|
|
#define MUZZLE_EFFECT_PIXEL_INCREMENT 17
|
|
///Will always ricochet off of coins.
|
|
#define ALWAYS_RICOSHOT 2
|
|
|
|
// Penetration flags
|
|
#define PENETRATE_OBJECTS (1<<0)
|
|
#define PENETRATE_WALLS (1<<1)
|
|
#define PENETRATE_MOBS (1<<2)
|