mirror of
https://github.com/Yawn-Wider/YWPolarisVore.git
synced 2026-08-25 14:07:18 +01:00
Device and weapon
This commit is contained in:
@@ -54,23 +54,23 @@
|
||||
M.Confuse(drug_strength * 14)
|
||||
|
||||
|
||||
/obj/item/weapon/reagent_containers/pill/benzilate
|
||||
/obj/item/reagent_containers/pill/benzilate
|
||||
name = "Benzilate pill"
|
||||
desc = "You probably shouldn't swallow this."
|
||||
icon_state = "pill2"
|
||||
|
||||
/obj/item/weapon/reagent_containers/pill/benzilate/Initialize()
|
||||
/obj/item/reagent_containers/pill/benzilate/Initialize()
|
||||
. = ..()
|
||||
reagents.add_reagent("benzilate", 50)
|
||||
color = reagents.get_color()
|
||||
|
||||
|
||||
/obj/item/weapon/reagent_containers/pill/phenethylamine
|
||||
/obj/item/reagent_containers/pill/phenethylamine
|
||||
name = "Phenethylamine pill"
|
||||
desc = "Smells like... lilacs?"
|
||||
icon_state = "pill5"
|
||||
|
||||
/obj/item/weapon/reagent_containers/pill/phenethylamine/Initialize()
|
||||
/obj/item/reagent_containers/pill/phenethylamine/Initialize()
|
||||
. = ..()
|
||||
reagents.add_reagent("phenethylamine", 50)
|
||||
color = reagents.get_color()
|
||||
@@ -78,30 +78,30 @@
|
||||
|
||||
// PILLS THAT WE PROBABLY SHOULDN'T HAVE AAAAAAAAAA. The below is only so they can be included through mapping or "spawn " command. -Carl
|
||||
|
||||
/obj/item/weapon/storage/pill_bottle/benzilate
|
||||
/obj/item/storage/pill_bottle/benzilate
|
||||
name = "bottle of Benzilate pills"
|
||||
desc = "This just hurts to look at with how many words of caution are scrawled on the lable. Better eat all of 'em!"
|
||||
|
||||
/obj/item/weapon/storage/pill_bottle/benzilate/New()
|
||||
/obj/item/storage/pill_bottle/benzilate/New()
|
||||
..()
|
||||
new /obj/item/weapon/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/reagent_containers/pill/benzilate( src )
|
||||
new /obj/item/reagent_containers/pill/benzilate( src )
|
||||
|
||||
/obj/item/weapon/storage/pill_bottle/phenethylamine
|
||||
/obj/item/storage/pill_bottle/phenethylamine
|
||||
name = "bottle of Phenethylamine pills"
|
||||
desc = "Looks like someone drew a happy face on the label, replacing whatever was previously present."
|
||||
|
||||
/obj/item/weapon/storage/pill_bottle/phenethylamine/New()
|
||||
/obj/item/storage/pill_bottle/phenethylamine/New()
|
||||
..()
|
||||
new /obj/item/weapon/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/weapon/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/reagent_containers/pill/phenethylamine( src )
|
||||
new /obj/item/reagent_containers/pill/phenethylamine( src )
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
/obj/item/weapon/reagent_containers/food/drinks/bluespace_coffee
|
||||
/obj/item/reagent_containers/food/drinks/bluespace_coffee
|
||||
name = "bluespace coffee"
|
||||
desc = "Dreamt up in a strange feverish dream, this coffee cup seems to have been heavily modified with a variety of unlikely parts and wires, and never seems to run out of coffee. Truly the differance between madmen and genius is success."
|
||||
icon = 'icons/obj/coffee.dmi'
|
||||
icon_state = "bluespace_coffee"
|
||||
center_of_mass = list("x"=15, "y"=10)
|
||||
volume = 50
|
||||
/obj/item/weapon/reagent_containers/food/drinks/bluespace_coffee/Initialize()
|
||||
/obj/item/reagent_containers/food/drinks/bluespace_coffee/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("coffee", 50)
|
||||
|
||||
//Infinite Coffee
|
||||
/obj/item/weapon/reagent_containers/food/drinks/bluespace_coffee/attack(mob/M as mob, mob/user as mob, def_zone)
|
||||
/obj/item/reagent_containers/food/drinks/bluespace_coffee/attack(mob/M as mob, mob/user as mob, def_zone)
|
||||
..()
|
||||
src.reagents.add_reagent("coffee", 50)
|
||||
src.reagents.add_reagent("coffee", 50)
|
||||
|
||||
Reference in New Issue
Block a user