mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-20 03:26:37 +01:00
Some fixes.
- Fixes alien mobs being invisible. - Alters weight rate messages to be clearer.
This commit is contained in:
@@ -77,7 +77,7 @@
|
||||
else if(href_list["weight_gain"])
|
||||
var/weight_gain_rate = input(user, "Choose your character's rate of weight gain between 100% \
|
||||
(full realism body fat gain) and 0% (no body fat gain).\n\
|
||||
(Due to a small bug, if you want to disable weight gain, set this to 0.01 for now.)\
|
||||
(If you want to disable weight gain, set this to 0.01 to round it to 0%.)\
|
||||
([WEIGHT_CHANGE_MIN]-[WEIGHT_CHANGE_MAX])", "Character Preference") as num|null
|
||||
if(weight_gain_rate)
|
||||
pref.weight_gain = round(text2num(weight_gain_rate),1)
|
||||
@@ -86,7 +86,7 @@
|
||||
else if(href_list["weight_loss"])
|
||||
var/weight_loss_rate = input(user, "Choose your character's rate of weight loss between 100% \
|
||||
(full realism body fat loss) and 0% (no body fat loss).\n\
|
||||
(Due to a small bug, if you want to disable weight loss, set this to 0.01 for now.)\
|
||||
(If you want to disable weight loss, set this to 0.01 round it to 0%.)\
|
||||
([WEIGHT_CHANGE_MIN]-[WEIGHT_CHANGE_MAX])", "Character Preference") as num|null
|
||||
if(weight_loss_rate)
|
||||
pref.weight_loss = round(text2num(weight_loss_rate),1)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
desc = "Hiss!"
|
||||
icon_state = "xenohunter"
|
||||
icon_living = "xenohunter"
|
||||
icon_dead = "xenohunter-dead"
|
||||
icon_dead = "xenohunter_dead"
|
||||
icon_gib = "gibbed-a"
|
||||
response_help = "pokes"
|
||||
response_disarm = "shoves"
|
||||
@@ -39,7 +39,7 @@
|
||||
name = "alien drone"
|
||||
icon_state = "xenodrone"
|
||||
icon_living = "xenodrone"
|
||||
icon_dead = "xenodrone-dead"
|
||||
icon_dead = "xenodrone_dead"
|
||||
health = 60
|
||||
melee_damage_lower = 15
|
||||
melee_damage_upper = 15
|
||||
@@ -48,7 +48,7 @@
|
||||
name = "alien sentinel"
|
||||
icon_state = "xenosentinel"
|
||||
icon_living = "xenosentinel"
|
||||
icon_dead = "xenosentinel-dead"
|
||||
icon_dead = "xenosentinel_dead"
|
||||
health = 120
|
||||
melee_damage_lower = 30 // Buffed from 15 since vore doesn't work for ranged mobs.
|
||||
melee_damage_upper = 30
|
||||
@@ -61,7 +61,7 @@
|
||||
name = "alien queen"
|
||||
icon_state = "xenoqueen"
|
||||
icon_living = "xenoqueen"
|
||||
icon_dead = "xenoqueen-dead"
|
||||
icon_dead = "xenoqueen_dead"
|
||||
maxHealth = 250
|
||||
melee_damage_lower = 30 // Buffed from 15 since vore doesn't work for ranged mobs.
|
||||
melee_damage_upper = 30
|
||||
|
||||
Reference in New Issue
Block a user