mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-13 02:22:51 +00:00
17 lines
352 B
Plaintext
17 lines
352 B
Plaintext
var/church_name = null
|
|
/proc/church_name()
|
|
if (church_name)
|
|
return church_name
|
|
|
|
var/name = ""
|
|
|
|
name += pick("Holy", "United", "First", "Second", "Last")
|
|
|
|
if (prob(20))
|
|
name += " Space"
|
|
|
|
name += " " + pick("Church", "Cathedral", "Body", "Worshippers", "Movement", "Witnesses")
|
|
name += " of [religion_name()]"
|
|
|
|
return name
|