Also buffs vore laws chance for lost voreborgs

This commit is contained in:
Heroman
2020-01-13 17:55:00 +10:00
parent 737d37321b
commit f032c80486
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
remains_active = TRUE
/obj/structure/ghost_pod/manual/lost_drone/dogborg/create_occupant(var/mob/M)
var/response = alert(M, "What type of lost drone are you? Do note, that dogborgs may have experienced different type of corruption ((Potential for having vore-related laws))", "Drone Type", "Regular", "Dogborg")
var/response = alert(M, "What type of lost drone are you? Do note, that dogborgs may have experienced different type of corruption ((High potential for having vore-related laws))", "Drone Type", "Regular", "Dogborg")
if(!(response == "Dogborg")) // No response somehow or Regular
return ..()
else

View File

@@ -32,7 +32,7 @@
..()
laws = give_random_lawset_vore()
/mob/living/silicon/proc/give_random_lawset_vore() // Should be filled out with more vorish possibilities later
/mob/living/silicon/proc/give_random_lawset_vore()
// Decide what kind of laws we want to draw from.
var/law_class = pick(
prob(25);"good",
@@ -41,7 +41,7 @@
prob(15);"corrupted",
prob(10);"bad")
var/vore_law = prob(50) // 1/2 chance of having vore-related laws
var/vore_law = prob(80) // 4/5 chance of having vore-related laws
if(vore_law)
switch(law_class)