Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Donator Items [Mr_Sandman02] #2296

Merged
merged 1 commit into from
Jun 16, 2024
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
8 changes: 7 additions & 1 deletion monkestation/code/modules/donator/code/datum/loadout.dm
Original file line number Diff line number Diff line change
Expand Up @@ -463,10 +463,16 @@
donator_only = TRUE
requires_purchase = FALSE


//ThePooba
/datum/loadout_item/mask/poob_mask
name = "Yellow gas mask"
item_path = /obj/item/clothing/mask/breath/poob_mask
donator_only = TRUE
requires_purchase = FALSE

//Mr_Sandman02
/datum/loadout_item/suit/menacing_jacket
name = "Menacing Jacket"
item_path = /obj/item/clothing/suit/toggle/menacing_jacket
donator_only = TRUE
requires_purchase = FALSE
10 changes: 10 additions & 0 deletions monkestation/code/modules/donator/code/item/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -416,3 +416,13 @@
icon_state = "poob_mask"
inhand_icon_state = null
flags_inv = HIDEFACE

/obj/item/clothing/suit/toggle/menacing_jacket
icon = 'monkestation/code/modules/donator/icons/obj/clothing.dmi'
worn_icon = 'monkestation/code/modules/donator/icons/mob/clothing.dmi'
icon_state = "menacing_jacket"
name = "menacing jacket"
desc = "There can only be one dragon."
body_parts_covered = CHEST|GROIN|ARMS
cold_protection = CHEST|GROIN|ARMS
min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT
Binary file modified monkestation/code/modules/donator/icons/mob/clothing.dmi
Binary file not shown.
Binary file modified monkestation/code/modules/donator/icons/obj/clothing.dmi
Binary file not shown.
Loading