mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 20:43:10 +01:00
New Map Mining (#1935)
* Alpha Commit * Alpha Commit * Seconds * Some Commit * Final Commit * Fixing minedrone synth ID * Dance Fever * Fixing Travis part 1 * Satisfying the demands * Stuff * Sub-final commit * Sculpting update * more sculpting. pr is 99% sculpting, in fact * kkk * brightness_off * swjaugyuwvhuw
This commit is contained in:
@@ -84,18 +84,44 @@
|
||||
else
|
||||
user << "<span class='notice'>It is spent.</span>"
|
||||
|
||||
/obj/item/weapon/reagent_containers/hypospray/autoinjector/stimpack
|
||||
name = "stimpack"
|
||||
desc = "A simple chemical cocktail of hyperzine and tramadol designed to boost efficiency by 6,000% (estimated). Hoo-rah!"
|
||||
volume = 20
|
||||
amount_per_transfer_from_this = 20
|
||||
|
||||
/obj/item/weapon/reagent_containers/hypospray/autoinjector/stimpack/New()
|
||||
..()
|
||||
reagents.add_reagent("hyperzine", 12)
|
||||
reagents.add_reagent("tramadol", 8)
|
||||
update_icon()
|
||||
|
||||
/obj/item/weapon/reagent_containers/hypospray/autoinjector/survival
|
||||
name = "survival autoinjector"
|
||||
desc = "A special cocktail designed to keep you alive in the field should disaster seek to prevail."
|
||||
volume = 35
|
||||
amount_per_transfer_from_this = 35
|
||||
|
||||
/obj/item/weapon/reagent_containers/hypospray/autoinjector/survival/New()
|
||||
..()
|
||||
reagents.add_reagent("tricordrazine", 15)
|
||||
reagents.add_reagent("inaprovaline", 10)
|
||||
reagents.add_reagent("oxycodone", 5)
|
||||
reagents.add_reagent("methylphenidate", 5)
|
||||
update_icon()
|
||||
|
||||
/obj/item/weapon/reagent_containers/hypospray/combat
|
||||
name = "combat hypospray"
|
||||
desc = "A hypospray loaded with combat stimulants."
|
||||
item_state = "combat_hypo"
|
||||
icon_state = "combat_hypo"
|
||||
volume = 20
|
||||
|
||||
/obj/item/weapon/reagent_containers/hypospray/combat/New()
|
||||
|
||||
/obj/item/weapon/reagent_containers/hypospray/combat/New()
|
||||
..()
|
||||
reagents.add_reagent("oxycodone", 5)
|
||||
reagents.add_reagent("synaptizine", 5)
|
||||
reagents.add_reagent("hyperzine", 5)
|
||||
reagents.add_reagent("arithrazine", 5)
|
||||
|
||||
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user