diff --git a/code/game/objects/items/weapons/cigs.dm b/code/game/objects/items/weapons/cigs.dm
index 30904c4aa71..c27ad41b66e 100644
--- a/code/game/objects/items/weapons/cigs.dm
+++ b/code/game/objects/items/weapons/cigs.dm
@@ -1,5 +1,3 @@
-//cleansed 9/15/2012 17:48
-
/*
CONTAINS:
CIGARETTES
@@ -13,6 +11,7 @@ LIGHTERS ARE IN LIGHTERS.DM
//////////////////
//FINE SMOKABLES//
//////////////////
+
/obj/item/clothing/mask/cigarette
name = "cigarette"
desc = "A roll of tobacco and nicotine."
@@ -57,7 +56,7 @@ LIGHTERS ARE IN LIGHTERS.DM
user.changeNext_move(CLICK_CD_MELEE)
user.do_attack_animation(M)
light("[user] coldly lights the [name] with the burning body of [M]. Clearly, [user.p_they()] offer[user.p_s()] the warmest of regards...")
- return 1
+ return TRUE
else
return ..()
@@ -71,52 +70,51 @@ LIGHTERS ARE IN LIGHTERS.DM
if(I.tool_use_check(user, 0)) //Don't need to flash eyes because you are a badass
light("[user] casually lights the [name] with [I], what a badass.")
-/obj/item/clothing/mask/cigarette/attackby(obj/item/W as obj, mob/user as mob, params)
+/obj/item/clothing/mask/cigarette/attackby(obj/item/I, mob/user, params)
..()
- if(istype(W, /obj/item/lighter/zippo))
- var/obj/item/lighter/zippo/Z = W
+ if(istype(I, /obj/item/lighter/zippo))
+ var/obj/item/lighter/zippo/Z = I
if(Z.lit)
- light("With a single flick of [user.p_their()] wrist, [user] smoothly lights [user.p_their()] [name] with [user.p_their()] [W]. Damn [user.p_theyre()] cool.")
+ light("With a single flick of [user.p_their()] wrist, [user] smoothly lights [user.p_their()] [name] with [user.p_their()] [Z]. Damn [user.p_theyre()] cool.")
- else if(istype(W, /obj/item/lighter))
- var/obj/item/lighter/L = W
+ else if(istype(I, /obj/item/lighter))
+ var/obj/item/lighter/L = I
if(L.lit)
- light("After some fiddling, [user] manages to light [user.p_their()] [name] with [W].")
+ light("After some fiddling, [user] manages to light [user.p_their()] [name] with [L].")
- else if(istype(W, /obj/item/match))
- var/obj/item/match/M = W
- if(M.lit == 1)
- light("[user] lights [user.p_their()] [name] with [user.p_their()] [W].")
+ else if(istype(I, /obj/item/match))
+ var/obj/item/match/M = I
+ if(M.lit)
+ light("[user] lights [user.p_their()] [name] with [user.p_their()] [M].")
- else if(istype(W, /obj/item/melee/energy/sword/saber))
- var/obj/item/melee/energy/sword/saber/S = W
+ else if(istype(I, /obj/item/melee/energy/sword/saber))
+ var/obj/item/melee/energy/sword/saber/S = I
if(S.active)
- light("[user] makes a violent slashing motion, barely missing [user.p_their()] nose as light flashes. [user.p_they(TRUE)] light[user.p_s()] [user.p_their()] [name] with [W] in the process.")
+ light("[user] makes a violent slashing motion, barely missing [user.p_their()] nose as light flashes. [user.p_they(TRUE)] light[user.p_s()] [user.p_their()] [name] with [S] in the process.")
- else if(istype(W, /obj/item/assembly/igniter))
- light("[user] fiddles with [W], and manages to light [user.p_their()] [name].")
+ else if(istype(I, /obj/item/assembly/igniter))
+ light("[user] fiddles with [I], and manages to light [user.p_their()] [name].")
- else if(istype(W, /obj/item/gun/magic/wand/fireball))
- var/obj/item/gun/magic/wand/fireball/F = W
+ else if(istype(I, /obj/item/gun/magic/wand/fireball))
+ var/obj/item/gun/magic/wand/fireball/F = I
if(F.charges)
if(prob(50) || user.mind.assigned_role == "Wizard")
- light("Holy shit, did [user] just manage to light [user.p_their()] [name] with [W], with only moderate eyebrow singing?")
+ light("Holy shit, did [user] just manage to light [user.p_their()] [name] with [F], with only moderate eyebrow singing?")
else
- to_chat(user, "Unsure which end of the wand is which, [user] fails to light [name] with [W].")
+ to_chat(user, "Unsure which end of the wand is which, [user] fails to light [name] with [F].")
explosion(user.loc, -1, 0, 2, 3, 0, flame_range = 2)
F.charges--
-
//can't think of any other way to update the overlays :<
user.update_inv_wear_mask()
user.update_inv_l_hand()
user.update_inv_r_hand()
- return
-/obj/item/clothing/mask/cigarette/afterattack(obj/item/reagent_containers/glass/glass, mob/user as mob, proximity)
+/obj/item/clothing/mask/cigarette/afterattack(obj/item/reagent_containers/glass/glass, mob/user, proximity)
..()
- if(!proximity) return
+ if(!proximity)
+ return
if(istype(glass)) //you can dip cigarettes into beakers
var/transfered = glass.reagents.trans_to(src, chem_volume)
if(transfered) //if reagents were transfered, show the message
@@ -129,8 +127,8 @@ LIGHTERS ARE IN LIGHTERS.DM
/obj/item/clothing/mask/cigarette/proc/light(flavor_text = null)
- if(!src.lit)
- src.lit = 1
+ if(!lit)
+ lit = TRUE
name = "lit [name]"
attack_verb = list("burnt", "singed")
hitsound = 'sound/items/welder.ogg'
@@ -174,10 +172,9 @@ LIGHTERS ARE IN LIGHTERS.DM
die()
return
smoke()
- return
-/obj/item/clothing/mask/cigarette/attack_self(mob/user as mob)
+/obj/item/clothing/mask/cigarette/attack_self(mob/user)
if(lit)
user.visible_message("[user] calmly drops and treads on the lit [src], putting it out instantly.")
die()
@@ -185,13 +182,13 @@ LIGHTERS ARE IN LIGHTERS.DM
/obj/item/clothing/mask/cigarette/proc/smoke()
var/turf/location = get_turf(src)
- var/is_being_smoked = 0
+ var/is_being_smoked = FALSE
// Check whether this is actually in a mouth, being smoked
if(iscarbon(loc))
var/mob/living/carbon/C = loc
if(src == C.wear_mask)
// There used to be a species check here, but synthetics can smoke now
- is_being_smoked = 1
+ is_being_smoked = TRUE
if(location)
location.hotspot_expose(700, 5)
if(reagents && reagents.total_volume) // check if it has any reagents at all
@@ -203,7 +200,6 @@ LIGHTERS ARE IN LIGHTERS.DM
to_chat(C, "Your [name] loses its flavor.")
else // else just remove some of the reagents
reagents.remove_any(REAGENTS_METABOLISM)
- return
/obj/item/clothing/mask/cigarette/proc/die()
var/turf/T = get_turf(src)
@@ -268,6 +264,7 @@ LIGHTERS ARE IN LIGHTERS.DM
////////////
// CIGARS //
////////////
+
/obj/item/clothing/mask/cigarette/cigar
name = "Premium Cigar"
desc = "A brown roll of tobacco and... well, you're not quite sure. This thing's huge!"
@@ -318,17 +315,18 @@ LIGHTERS ARE IN LIGHTERS.DM
icon_state = "cigarbutt"
-/obj/item/clothing/mask/cigarette/cigar/attackby(obj/item/W as obj, mob/user as mob, params)
- if(istype(W, /obj/item/reagent_containers))
+/obj/item/clothing/mask/cigarette/cigar/attackby(obj/item/I, mob/user, params)
+ if(istype(I, /obj/item/reagent_containers))
return
- if(istype(W, /obj/item/match))
+ if(istype(I, /obj/item/match))
..()
else
- to_chat(user, "\The [src] straight out REFUSES to be lit by such uncivilized means.")
+ to_chat(user, "[src] straight out REFUSES to be lit by such uncivilized means.")
/////////////////
//SMOKING PIPES//
/////////////////
+
/obj/item/clothing/mask/cigarette/pipe
name = "smoking pipe"
desc = "A pipe, for smoking. Probably made of meershaum or something."
@@ -338,14 +336,11 @@ LIGHTERS ARE IN LIGHTERS.DM
icon_off = "pipeoff"
smoketime = 500
chem_volume = 200
-
-/obj/item/clothing/mask/cigarette/pipe/New()
- ..()
- reagents.add_reagent("nicotine", chem_volume)
+ list_reagents = list("nicotine" = 200)
/obj/item/clothing/mask/cigarette/pipe/light(flavor_text = null)
- if(!src.lit)
- src.lit = 1
+ if(!lit)
+ lit = TRUE
damtype = "fire"
icon_state = icon_on
item_state = icon_on
@@ -362,19 +357,18 @@ LIGHTERS ARE IN LIGHTERS.DM
if(ismob(loc))
var/mob/living/M = loc
to_chat(M, "Your [name] goes out, and you empty the ash.")
- lit = 0
+ lit = FALSE
icon_state = icon_off
item_state = icon_off
M.update_inv_wear_mask(0)
STOP_PROCESSING(SSobj, src)
return
smoke()
- return
-/obj/item/clothing/mask/cigarette/pipe/attack_self(mob/user as mob) //Refills the pipe. Can be changed to an attackby later, if loose tobacco is added to vendors or something.
+/obj/item/clothing/mask/cigarette/pipe/attack_self(mob/user) //Refills the pipe. Can be changed to an attackby later, if loose tobacco is added to vendors or something.
if(lit)
user.visible_message("[user] puts out [src].")
- lit = 0
+ lit = FALSE
icon_state = icon_off
item_state = icon_off
STOP_PROCESSING(SSobj, src)
@@ -383,15 +377,14 @@ LIGHTERS ARE IN LIGHTERS.DM
to_chat(user, "You refill the pipe with tobacco.")
reagents.add_reagent("nicotine", chem_volume)
smoketime = initial(smoketime)
- return
-/obj/item/clothing/mask/cigarette/pipe/attackby(obj/item/W as obj, mob/user as mob, params)
- if(istype(W, /obj/item/reagent_containers))
+/obj/item/clothing/mask/cigarette/pipe/attackby(obj/item/I, mob/user, params)
+ if(istype(I, /obj/item/reagent_containers))
return
- if(istype(W, /obj/item/match))
+ if(istype(I, /obj/item/match))
..()
else
- to_chat(user, "\The [src] straight out REFUSES to be lit by such means.")
+ to_chat(user, "[src] straight out REFUSES to be lit by such means.")
/obj/item/clothing/mask/cigarette/pipe/cobpipe
name = "corn cob pipe"
@@ -406,6 +399,7 @@ LIGHTERS ARE IN LIGHTERS.DM
///////////
//ROLLING//
///////////
+
/obj/item/rollingpaper
name = "rolling paper"
desc = "A thin piece of paper used to make fine smokeables."
@@ -432,4 +426,4 @@ LIGHTERS ARE IN LIGHTERS.DM
else
to_chat(user, "You need to dry this first!")
else
- ..()
+ ..()
\ No newline at end of file