mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 12:07:27 +01:00
Rename all non-snake_case types. (#27268)
* refactor: Rename all non-snake_case types (not procs or vars (yet)). * completely dynamic update script * might help to include the data * update aa's scuffed python * oh * set script PR number * run updatepaths again * Add other table updates with JSON columns * bump SQL version * just fucking end my life * move JSON data
This commit is contained in:
@@ -149,7 +149,7 @@
|
||||
//////////////////////////////
|
||||
// MARK: CMO HYPO
|
||||
//////////////////////////////
|
||||
/obj/item/reagent_containers/hypospray/CMO
|
||||
/obj/item/reagent_containers/hypospray/cmo
|
||||
name = "advanced hypospray"
|
||||
desc = "Nanotrasen's own, reverse-engineered and improved version of DeForest's hypospray."
|
||||
list_reagents = list("omnizine" = 30)
|
||||
@@ -157,11 +157,11 @@
|
||||
penetrate_thick = TRUE
|
||||
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF
|
||||
|
||||
/obj/item/reagent_containers/hypospray/CMO/Initialize(mapload)
|
||||
/obj/item/reagent_containers/hypospray/cmo/Initialize(mapload)
|
||||
. = ..()
|
||||
RegisterSignal(src, COMSIG_PARENT_QDELETING, PROC_REF(alert_admins_on_destroy))
|
||||
|
||||
/obj/item/reagent_containers/hypospray/CMO/examine_more(mob/user)
|
||||
/obj/item/reagent_containers/hypospray/cmo/examine_more(mob/user)
|
||||
. = ..()
|
||||
. += "The DeForest Medical Corporation's hypospray is a highly successful medical device currently under patent protection. Naturally, this has not stopped Nanotrasen from taking the design and tinkering with it."
|
||||
. += ""
|
||||
|
||||
@@ -190,22 +190,22 @@
|
||||
blood_type = pick("A+", "A-", "B+", "B-", "O+", "O-")
|
||||
return ..()
|
||||
|
||||
/obj/item/reagent_containers/iv_bag/blood/APlus
|
||||
/obj/item/reagent_containers/iv_bag/blood/a_plus
|
||||
blood_type = "A+"
|
||||
|
||||
/obj/item/reagent_containers/iv_bag/blood/AMinus
|
||||
/obj/item/reagent_containers/iv_bag/blood/a_minus
|
||||
blood_type = "A-"
|
||||
|
||||
/obj/item/reagent_containers/iv_bag/blood/BPlus
|
||||
/obj/item/reagent_containers/iv_bag/blood/b_plus
|
||||
blood_type = "B+"
|
||||
|
||||
/obj/item/reagent_containers/iv_bag/blood/BMinus
|
||||
/obj/item/reagent_containers/iv_bag/blood/b_minus
|
||||
blood_type = "B-"
|
||||
|
||||
/obj/item/reagent_containers/iv_bag/blood/OPlus
|
||||
/obj/item/reagent_containers/iv_bag/blood/o_plus
|
||||
blood_type = "O+"
|
||||
|
||||
/obj/item/reagent_containers/iv_bag/blood/OMinus
|
||||
/obj/item/reagent_containers/iv_bag/blood/o_minus
|
||||
blood_type = "O-"
|
||||
|
||||
/obj/item/reagent_containers/iv_bag/blood/vox
|
||||
|
||||
Reference in New Issue
Block a user