Skip to content

Commit

Permalink
Adds three new zippo lighters in the code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Watchson committed Jan 9, 2024
1 parent 7c9402f commit ac89d50
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 5 deletions.
25 changes: 25 additions & 0 deletions code/game/objects/items/tools/flame_tools.dm
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,22 @@ CIGARETTE PACKETS ARE IN FANCY.DM

log_admin("[user] has engraved \the [src] with engraving \"[str]\". (CKEY: ([user.ckey]))")

/obj/item/tool/lighter/zippo/black
name = "black Zippo lighter"
desc = "A fancy black Zippo lighter. Ignite in style."
icon_state = "blackzippo"
item_state = "blackzippo"
icon_on = "blackzippoon"
icon_off = "blackzippo"

/obj/item/tool/lighter/zippo/blue
name = "blue Zippo lighter"
desc = "A fancy blue Zippo lighter. Ignite in style."
icon_state = "bluezippo"
item_state = "bluezippo"
icon_on = "bluezippoon"
icon_off = "bluezippo"

/obj/item/tool/lighter/zippo/gold
name = "golden Zippo lighter"
desc = "A gold-anodized Zippo lighter. Ostentatious, but it certainly stands out."
Expand All @@ -730,6 +746,15 @@ CIGARETTE PACKETS ARE IN FANCY.DM
icon_off = "goldzippo"
black_market_value = 30

/obj/item/tool/lighter/zippo/executive
name = "Weyland-Yutani executive Zippo lighter"
desc = "A remarkable Zippo lighter embellished in the Company's black and gold shade."
icon_state = "execzippo"
item_state = "execzippo"
icon_on = "execzippoon"
icon_off = "execzippo"
black_market_value = 40

/obj/item/tool/lighter/random

/obj/item/tool/lighter/random/Initialize()
Expand Down
10 changes: 9 additions & 1 deletion code/modules/client/preferences_gear.dm
Original file line number Diff line number Diff line change
Expand Up @@ -863,6 +863,14 @@ GLOBAL_LIST_EMPTY(gear_datums_by_name)
display_name = "Lighter, zippo"
path = /obj/item/tool/lighter/zippo

/datum/gear/smoking/zippo/black
display_name = "Black lighter, zippo"
path = /obj/item/tool/lighter/zippo/black

/datum/gear/smoking/zippo/blue
display_name = "Blue lighter, zippo"
path = /obj/item/tool/lighter/zippo/blue

/datum/gear/smoking/electronic_cigarette
display_name = "Electronic cigarette"
path = /obj/item/clothing/mask/electronic_cigarette
Expand Down Expand Up @@ -891,7 +899,7 @@ GLOBAL_LIST_EMPTY(gear_datums_by_name)
/datum/gear/misc/facepaint_skull
display_name = "Facepaint, skull"
path = /obj/item/facepaint/skull
cost = 3
cost = 3

/datum/gear/misc/facepaint_body
display_name = "Fullbody paint"
Expand Down
5 changes: 1 addition & 4 deletions maps/map_files/New_Varadero/New_Varadero.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -6074,10 +6074,7 @@
pixel_x = -7;
pixel_y = 8
},
/obj/item/tool/lighter/zippo{
icon_off = "blackzippo";
icon_on = "blackzippoon";
icon_state = "blackzippo";
/obj/item/tool/lighter/zippo/black{
pixel_x = -5;
pixel_y = 7
},
Expand Down

0 comments on commit ac89d50

Please sign in to comment.