mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-18 18:46:24 +01:00
resize limits and designer / dna update (#16807)
* resize limits and designer / dna update * . * genes to mobs * . * Update designer.dm * Update designer.dm * species cleanup
This commit is contained in:
@@ -938,7 +938,8 @@
|
||||
|
||||
/datum/reagent/drink/coffee/nukie/mega/shrink/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
..()
|
||||
M.resize((M.size_multiplier - 0.01), uncapped = M.has_large_resize_bounds(), aura_animation = FALSE)
|
||||
var/new_size = clamp((M.size_multiplier - 0.01), RESIZE_MINIMUM_DORMS, RESIZE_MAXIMUM_DORMS)
|
||||
M.resize(new_size, uncapped = M.has_large_resize_bounds(), aura_animation = FALSE)
|
||||
|
||||
/datum/reagent/drink/coffee/nukie/mega/grow //Basically macrocillin but for ingesting
|
||||
name = REAGENT_NUKIEMEGAGROWTH
|
||||
@@ -948,4 +949,5 @@
|
||||
|
||||
/datum/reagent/drink/coffee/nukie/mega/grow/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
..()
|
||||
M.resize((M.size_multiplier + 0.01), uncapped = M.has_large_resize_bounds(), aura_animation = FALSE)
|
||||
var/new_size = clamp((M.size_multiplier + 0.01), RESIZE_MINIMUM_DORMS, RESIZE_MAXIMUM_DORMS)
|
||||
M.resize(new_size, uncapped = M.has_large_resize_bounds(), aura_animation = FALSE)
|
||||
|
||||
@@ -13,7 +13,8 @@
|
||||
mrate_static = TRUE
|
||||
|
||||
/datum/reagent/macrocillin/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
M.resize(M.size_multiplier+0.01, uncapped = M.has_large_resize_bounds()) //Incrrease 1% per tick.
|
||||
var/new_size = clamp((M.size_multiplier + 0.01), RESIZE_MINIMUM_DORMS, RESIZE_MAXIMUM_DORMS)
|
||||
M.resize(new_size, uncapped = M.has_large_resize_bounds()) //Incrrease 1% per tick.
|
||||
return
|
||||
|
||||
/datum/reagent/microcillin
|
||||
@@ -26,7 +27,8 @@
|
||||
mrate_static = TRUE
|
||||
|
||||
/datum/reagent/microcillin/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
M.resize(M.size_multiplier-0.01, uncapped = M.has_large_resize_bounds()) //Decrease 1% per tick.
|
||||
var/new_size = clamp((M.size_multiplier - 0.01), RESIZE_MINIMUM_DORMS, RESIZE_MAXIMUM_DORMS)
|
||||
M.resize(new_size, uncapped = M.has_large_resize_bounds()) //Decrease 1% per tick.
|
||||
return
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user