Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion code/game/machinery/vending.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2768,7 +2768,8 @@ var/global/num_vending_terminals = 1
/obj/item/clothing/mask/gas/oni = 3,
/obj/item/clothing/head/helmet/samurai = 3,
/obj/item/clothing/suit/armor/samurai = 3,
/obj/item/toy/syndicateballoon/green = 1,
/obj/item/clothing/gloves/fyellow/insulted = 3,
/obj/item/toy/syndicateballoon/green = 1
)

pack = /obj/structure/vendomatpack/autodrobe
Expand Down
13 changes: 13 additions & 0 deletions code/modules/clothing/gloves/color.dm
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,19 @@
. = ..()
siemens_coefficient = pick(0,0.5,0.5,0.5,0.5,0.75,1.5)

if(Holiday == APRIL_FOOLS_DAY && permeability_coefficient != 0.051)
new /obj/item/clothing/gloves/fyellow/insulted(src)
qdel(src)

/obj/item/clothing/gloves/fyellow/insulted
name = "insulted gloves"
desc = "These gloves will mock the wearer when shocked."
permeability_coefficient = 0.051 //small meaningless change to make them different from the regular (i don't wanna make a useless var)

/obj/item/clothing/gloves/fyellow/insulted/New()
. = ..()
siemens_coefficient = pick(0.25,0.5,0.5,0.5,0.5,0.75,1.5)

/obj/item/clothing/gloves/black
desc = "These gloves are quite comfortable, and will keep you warm!"
name = "black gloves"
Expand Down
3 changes: 3 additions & 0 deletions code/modules/power/powernet.dm
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,9 @@ var/global/powernets_broke = 0
if(G.siemens_coefficient == 0) // to avoid spamming with insulated glvoes on
return 0

if(istype(G, /obj/item/clothing/gloves/fyellow/insulted))
G.say(pick("Hah, dumbass.", "Get fucked idiot.", "You moron, what did you expect?", "Next time try the OTHER yellow gloves, numbskull.", "Oof that's gotta sting."))

var/area/source_area

if(isarea(power_source))
Expand Down
Loading