Skip to content

Commit

Permalink
v
Browse files Browse the repository at this point in the history
  • Loading branch information
Paxilmaniac committed Dec 18, 2024
1 parent ba588da commit 5f1b11b
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/loadout/categories/pocket.dm
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

return ..()

/* /datum/loadout_item/pocket_items/lipstick_black // DOPPLER EDIT REMOVAL
/datum/loadout_item/pocket_items/lipstick_black
name = "Lipstick (Black)"
item_path = /obj/item/lipstick/black
additional_displayed_text = list("Black")
Expand Down Expand Up @@ -78,7 +78,7 @@
/datum/loadout_item/pocket_items/lipstick_white
name = "Lipstick (White)"
item_path = /obj/item/lipstick/white
additional_displayed_text = list("White") */
additional_displayed_text = list("White")

/datum/loadout_item/pocket_items/plush
abstract_type = /datum/loadout_item/pocket_items/plush
Expand Down
32 changes: 32 additions & 0 deletions modular_doppler/loadout_categories/categories/pockets.dm
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,38 @@
if(!equipper.equip_to_slot_if_possible(wallet, slot = ITEM_SLOT_BACKPACK, initial = TRUE))
wallet.forceMove(equipper.drop_location())

/*
* LIPSTICK
*/

/datum/loadout_item/pocket_items/lipstick_green
name = "Green Lipstick"
item_path = /obj/item/lipstick/green

/datum/loadout_item/pocket_items/lipstick_white
name = "White Lipstick"
item_path = /obj/item/lipstick/white

/datum/loadout_item/pocket_items/lipstick_blue
name = "Blue Lipstick"
item_path = /obj/item/lipstick/blue

/datum/loadout_item/pocket_items/lipstick_black
name = "Black Lipstick"
item_path = /obj/item/lipstick/black

/datum/loadout_item/pocket_items/lipstick_jade
name = "Jade Lipstick"
item_path = /obj/item/lipstick/jade

/datum/loadout_item/pocket_items/lipstick_purple
name = "Purple Lipstick"
item_path = /obj/item/lipstick/purple

/datum/loadout_item/pocket_items/lipstick_red
name = "Red Lipstick"
item_path = /obj/item/lipstick

/*
* GUM
*/
Expand Down

0 comments on commit 5f1b11b

Please sign in to comment.