mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 04:32:42 +00:00
Added in loyalty implant as a configuration...
Also reorganized a few configurations to be more intuitive and readable. Just spaces and moving around on the switch thingy. Signed-off-by: Decius <deciusreln97@gmail.com>
This commit is contained in:
@@ -112,6 +112,8 @@
|
|||||||
var/revival_cloning = 1
|
var/revival_cloning = 1
|
||||||
var/revival_brain_life = -1
|
var/revival_brain_life = -1
|
||||||
|
|
||||||
|
var/use_loyalty_implants = 0
|
||||||
|
|
||||||
//Used for modifying movement speed for mobs.
|
//Used for modifying movement speed for mobs.
|
||||||
//Unversal modifiers
|
//Unversal modifiers
|
||||||
var/run_speed = 0
|
var/run_speed = 0
|
||||||
@@ -521,10 +523,21 @@
|
|||||||
config.revival_cloning = value
|
config.revival_cloning = value
|
||||||
if("revival_brain_life")
|
if("revival_brain_life")
|
||||||
config.revival_brain_life = value
|
config.revival_brain_life = value
|
||||||
|
if("organ_health_multiplier")
|
||||||
|
config.organ_health_multiplier = value / 100
|
||||||
|
if("organ_regeneration_multiplier")
|
||||||
|
config.organ_regeneration_multiplier = value / 100
|
||||||
|
if("bones_can_break")
|
||||||
|
config.bones_can_break = value
|
||||||
|
if("limbs_can_break")
|
||||||
|
config.limbs_can_break = value
|
||||||
|
|
||||||
|
|
||||||
if("run_speed")
|
if("run_speed")
|
||||||
config.run_speed = value
|
config.run_speed = value
|
||||||
if("walk_speed")
|
if("walk_speed")
|
||||||
config.walk_speed = value
|
config.walk_speed = value
|
||||||
|
|
||||||
if("human_delay")
|
if("human_delay")
|
||||||
config.human_delay = value
|
config.human_delay = value
|
||||||
if("robot_delay")
|
if("robot_delay")
|
||||||
@@ -537,14 +550,11 @@
|
|||||||
config.slime_delay = value
|
config.slime_delay = value
|
||||||
if("animal_delay")
|
if("animal_delay")
|
||||||
config.animal_delay = value
|
config.animal_delay = value
|
||||||
if("organ_health_multiplier")
|
|
||||||
config.organ_health_multiplier = value / 100
|
|
||||||
if("organ_regeneration_multiplier")
|
if("use_loyalty_implants")
|
||||||
config.organ_regeneration_multiplier = value / 100
|
config.use_loyalty_implants = 1
|
||||||
if("bones_can_break")
|
|
||||||
config.bones_can_break = value
|
|
||||||
if("limbs_can_break")
|
|
||||||
config.limbs_can_break = value
|
|
||||||
else
|
else
|
||||||
log_misc("Unknown setting in configuration: '[name]'")
|
log_misc("Unknown setting in configuration: '[name]'")
|
||||||
|
|
||||||
|
|||||||
@@ -56,3 +56,11 @@ MONKEY_DELAY 0
|
|||||||
ALIEN_DELAY 0
|
ALIEN_DELAY 0
|
||||||
METROID_DELAY 0
|
METROID_DELAY 0
|
||||||
ANIMAL_DELAY 0
|
ANIMAL_DELAY 0
|
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous ###
|
||||||
|
|
||||||
|
## Config options which, of course, don't fit into previous categories.
|
||||||
|
|
||||||
|
## Remove the # in front of this config option to have loyalty implants spawn by default on your server.
|
||||||
|
#USE_LOYALTY_IMPLANTS
|
||||||
|
|||||||
Reference in New Issue
Block a user