mirror of
https://github.com/KabKebab/GS13.git
synced 2026-02-09 23:27:37 +00:00
Some fixes + Neuters Growth Serum
This commit is contained in:
@@ -1929,38 +1929,13 @@
|
||||
if((ismonkey(M) || ishuman(M)) && current_cycle >= 10)
|
||||
M.gorillize()
|
||||
|
||||
/datum/reagent/growthserum
|
||||
/datum/reagent/growthserum //neutered to use as a chemical base for sizecode shit
|
||||
name = "Growth Serum"
|
||||
id = "growthserum"
|
||||
description = "A commercial chemical designed to help older men in the bedroom."//not really it just makes you a giant
|
||||
color = "#ff0000"//strong red. rgb 255, 0, 0
|
||||
var/current_size = 1
|
||||
taste_description = "bitterness" // apparently what viagra tastes like
|
||||
|
||||
/datum/reagent/growthserum/on_mob_life(mob/living/carbon/H)
|
||||
var/newsize = current_size
|
||||
switch(volume)
|
||||
if(0 to 19)
|
||||
newsize = 1.25
|
||||
if(20 to 49)
|
||||
newsize = 1.5
|
||||
if(50 to 99)
|
||||
newsize = 2
|
||||
if(100 to 199)
|
||||
newsize = 2.5
|
||||
if(200 to INFINITY)
|
||||
newsize = 3.5
|
||||
|
||||
H.resize = newsize/current_size
|
||||
current_size = newsize
|
||||
H.update_transform()
|
||||
..()
|
||||
|
||||
/datum/reagent/growthserum/on_mob_end_metabolize(mob/living/M)
|
||||
M.resize = 1/current_size
|
||||
M.update_transform()
|
||||
..()
|
||||
|
||||
/datum/reagent/plastic_polymers
|
||||
name = "plastic polymers"
|
||||
id = "plastic_polymers"
|
||||
@@ -2232,4 +2207,4 @@
|
||||
description = "A synthetic toxin." //NANOMACHINES SON.
|
||||
color = "#5EFF3B" //RGB: 94, 255, 59
|
||||
race = /datum/species/synthliz
|
||||
mutationtext = "<span class='danger'>The pain subsides. You feel... artificial.</span>"
|
||||
mutationtext = "<span class='danger'>The pain subsides. You feel... artificial.</span>"
|
||||
|
||||
Reference in New Issue
Block a user