Skip to content

Commit

Permalink
add: new firstaid for paramed (ss220-space#5418)
Browse files Browse the repository at this point in the history
  • Loading branch information
endipe authored Jul 19, 2024
1 parent c4f73ac commit 2746e2a
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/game/jobs/job/medical.dm
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@
mask = /obj/item/clothing/mask/cigarette
l_ear = /obj/item/radio/headset/headset_med
id = /obj/item/card/id/medical
l_hand = /obj/item/storage/firstaid/paramed
l_pocket = /obj/item/flashlight/pen
pda = /obj/item/pda/medical
backpack_contents = list(
Expand Down
19 changes: 19 additions & 0 deletions code/game/objects/items/weapons/storage/firstaid.dm
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,25 @@
/obj/item/storage/firstaid/adv/empty/populate_contents()
return

/obj/item/storage/firstaid/paramed
name = "paramed first-aid kit"
desc = "A medical kit that contains several medical patches and injectors for the treatment of various diseases."
icon_state = "firstaid_paramed"
item_state = "firstaid_paramed"
med_bot_skin = "paramed"

/obj/item/storage/firstaid/paramed/populate_contents()
new /obj/item/reagent_containers/hypospray/autoinjector(src)
new /obj/item/reagent_containers/hypospray/autoinjector/salbutamol(src)
new /obj/item/reagent_containers/hypospray/autoinjector/charcoal(src)
new /obj/item/reagent_containers/food/pill/patch/styptic(src)
new /obj/item/reagent_containers/food/pill/patch/silver_sulf(src)
new /obj/item/stack/medical/bruise_pack(src)
new /obj/item/stack/medical/ointment(src)

/obj/item/storage/firstaid/paramed/empty/populate_contents()
return

/obj/item/storage/firstaid/machine
name = "machine repair kit"
desc = "A kit that contains supplies to repair IPCs on the go."
Expand Down
5 changes: 5 additions & 0 deletions code/modules/mob/living/simple_animal/bot/medbot.dm
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@
/mob/living/simple_animal/bot/medbot/machine
skin = "machine"

/mob/living/simple_animal/bot/medbot/paramed
skin = "paramed"

/mob/living/simple_animal/bot/medbot/mysterious
name = "\improper Mysterious Medibot"
desc = "International Medibot of mystery."
Expand Down Expand Up @@ -582,6 +585,8 @@
new /obj/item/storage/firstaid/aquatic_kit(Tsec)
if("machine")
new /obj/item/storage/firstaid/machine/empty(Tsec)
if("paramed")
new /obj/item/storage/firstaid/paramed/empty(Tsec)
else
new /obj/item/storage/firstaid(Tsec)

Expand Down
Binary file modified icons/mob/inhands/items_lefthand.dmi
Binary file not shown.
Binary file modified icons/mob/inhands/items_righthand.dmi
Binary file not shown.
Binary file modified icons/obj/aibots.dmi
Binary file not shown.
Binary file modified icons/obj/storage.dmi
Binary file not shown.

0 comments on commit 2746e2a

Please sign in to comment.