* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
30 lines
859 B
Plaintext
30 lines
859 B
Plaintext
/datum/round_event_control/wizard/race //Lizard Wizard? Lizard Wizard.
|
|
name = "Race Swap"
|
|
weight = 2
|
|
typepath = /datum/round_event/wizard/race
|
|
max_occurrences = 5
|
|
earliest_start = 0
|
|
|
|
/datum/round_event/wizard/race/start()
|
|
|
|
var/all_the_same = 0
|
|
var/all_species = list()
|
|
|
|
for(var/speciestype in subtypesof(/datum/species))
|
|
var/datum/species/S = new speciestype()
|
|
if(!S.dangerous_existence)
|
|
all_species += speciestype
|
|
|
|
var/datum/species/new_species = pick(all_species)
|
|
|
|
if(prob(50))
|
|
all_the_same = 1
|
|
|
|
for(var/mob/living/carbon/human/H in GLOB.mob_list) //yes, even the dead
|
|
H.set_species(new_species)
|
|
H.real_name = new_species.random_name(H.gender,1)
|
|
H.dna.unique_enzymes = H.dna.generate_unique_enzymes()
|
|
to_chat(H, "<span class='notice'>You feel somehow... different?</span>")
|
|
if(!all_the_same)
|
|
new_species = pick(all_species)
|