mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 16:05:07 +00:00
18 lines
649 B
Plaintext
18 lines
649 B
Plaintext
//Martial arts defines
|
|
|
|
#define MARTIALART_BOXING "boxing"
|
|
#define MARTIALART_CQC "CQC"
|
|
#define MARTIALART_EVIL_BOXING "evil boxing"
|
|
#define MARTIALART_HUNTER_BOXING "hunter boxing"
|
|
#define MARTIALART_KAZA_RUK "Kaza Ruk"
|
|
#define MARTIALART_MUSHPUNCH "mushroom punch"
|
|
#define MARTIALART_PLASMAFIST "plasma fist"
|
|
#define MARTIALART_PSYCHOBRAWL "psychotic brawling"
|
|
#define MARTIALART_SLEEPINGCARP "sleeping carp"
|
|
#define MARTIALART_WRESTLING "wrestling"
|
|
#define MARTIALART_JUNGLEARTS "jungle arts"
|
|
#define MARTIALART_SPIDERSBITE "spider's bite"
|
|
|
|
/// The number of hits required to crit a target
|
|
#define HITS_TO_CRIT(damage) round(100 / (damage), 0.1)
|