mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 07:46:20 +00:00
Stabilised Slime Extracts will work from inside MODsuits Co-authored-by: Jacquerel <hnevard@gmail.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
17 lines
710 B
Plaintext
17 lines
710 B
Plaintext
//gold slime core spawning (used with var/gold_core_spawnable)
|
|
/// Mob cannot be spawned with a gold slime core
|
|
#define NO_SPAWN 0
|
|
/// Mob can spawned with a gold slime core with plasma reaction as a hostile creature
|
|
#define HOSTILE_SPAWN 1
|
|
/// Mob can be spawned with a gold slime core with blood reaction as a friendly creature
|
|
#define FRIENDLY_SPAWN 2
|
|
|
|
//slime core activation type
|
|
/// Jelly species slime ability that causes simple effects that require energized jelly
|
|
#define SLIME_ACTIVATE_MINOR 1
|
|
/// Jelly species slime ability that causes complex effects that require plasma jelly
|
|
#define SLIME_ACTIVATE_MAJOR 2
|
|
|
|
/// Determines how much light the jelly species emit
|
|
#define LUMINESCENT_DEFAULT_GLOW 2
|