-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/PvE-CMSS13/PvE-CMSS13 int…
…o pr/180
- Loading branch information
Showing
53 changed files
with
519 additions
and
351 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/proc/CreateGeneralRecord() | ||
var/datum/data/record/G = new /datum/data/record() | ||
G.fields["name"] = "New Record" | ||
G.fields["id"] = text("[]", add_zero(num2hex(rand(1, 1.6777215E7)), 6)) | ||
G.fields["rank"] = "Unassigned" | ||
G.fields["real_rank"] = "Unassigned" | ||
G.fields["sex"] = "Male" | ||
G.fields["age"] = "Unknown" | ||
G.fields["skin_color"] = "Unknown" | ||
G.fields["p_stat"] = "Active" | ||
G.fields["m_stat"] = "Stable" | ||
G.fields["species"] = "Human" | ||
G.fields["origin"] = "Unknown" | ||
G.fields["faction"] = "Unknown" | ||
G.fields["mob_faction"] = "Unknown" | ||
G.fields["religion"] = "Unknown" | ||
GLOB.data_core.general += G | ||
return G | ||
|
||
/proc/CreateSecurityRecord(name as text, id as text) | ||
var/datum/data/record/R = new /datum/data/record() | ||
R.fields["name"] = name | ||
R.fields["id"] = id | ||
R.name = text("Security Record #[id]") | ||
R.fields["incidents"] = "None" | ||
GLOB.data_core.security += R | ||
return R | ||
|
||
/proc/create_medical_record(mob/living/carbon/human/H) | ||
var/datum/data/record/M = new /datum/data/record() | ||
M.fields["id"] = null | ||
M.fields["name"] = H.real_name | ||
M.fields["b_type"] = H.b_type | ||
M.fields["mi_dis"] = "None" | ||
M.fields["mi_dis_d"] = "No minor disabilities have been declared." | ||
M.fields["ma_dis"] = "None" | ||
M.fields["ma_dis_d"] = "No major disabilities have been diagnosed." | ||
M.fields["alg"] = "None" | ||
M.fields["alg_d"] = "No allergies have been detected in this patient." | ||
M.fields["cdi"] = "None" | ||
M.fields["cdi_d"] = "No diseases have been diagnosed at the moment." | ||
M.fields["last_scan_time"] = null | ||
M.fields["last_scan_result"] = "No scan data on record" | ||
M.fields["autodoc_data"] = list() | ||
M.fields["autodoc_manual"] = list() | ||
M.fields["ref"] = WEAKREF(H) | ||
GLOB.data_core.medical += M | ||
return M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.