mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 03:27:05 +01:00
Moved Vox DMI to a subfolder, added species-based random-naming, fixed preview.
Tested. Conflicts: code/game/gamemodes/vampire/vampire_powers.dm code/game/gamemodes/vox/heist/heist.dm code/modules/admin/verbs/one_click_antag.dm code/modules/events/heist.dm code/modules/mob/living/carbon/species.dm code/modules/mob/mob.dm code/modules/mob/new_player/new_player.dm code/modules/mob/new_player/preferences_setup.dm
This commit is contained in:
@@ -498,20 +498,13 @@ client/proc/one_click_antag()
|
||||
new_vox.h_style = "Short Vox Quills"
|
||||
new_vox.regenerate_icons()
|
||||
|
||||
var/sounds = rand(2,10)
|
||||
var/i = 0
|
||||
var/newname = ""
|
||||
|
||||
while(i<=sounds)
|
||||
i++
|
||||
newname += pick(list("ti","hi","ki","ya","ta","ha","ka","ya","chi","cha","kah"))
|
||||
|
||||
new_vox.real_name = capitalize(newname)
|
||||
new_vox.name = new_vox.real_name
|
||||
new_vox.age = rand(12,20)
|
||||
|
||||
new_vox.dna.ready_dna(new_vox) // Creates DNA.
|
||||
new_vox.dna.mutantrace = "vox"
|
||||
new_vox.set_species("Vox") // Actually makes the vox! How about that.
|
||||
new_vox.generate_name()
|
||||
new_vox.add_language("Vox-pidgin")
|
||||
new_vox.mind_initialize()
|
||||
new_vox.mind.assigned_role = "MODE"
|
||||
new_vox.mind.special_role = "Vox Raider"
|
||||
|
||||
Reference in New Issue
Block a user