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 111923 #581

Merged
merged 4 commits into from
Nov 20, 2023
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
7 changes: 7 additions & 0 deletions monkestation/code/modules/donator/code/datum/loadout.dm
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,10 @@
item_path = /obj/item/clothing/head/costume/space_marine
donator_only = TRUE
requires_purchase = FALSE

//rickdude
/datum/loadout_item/suit/aotcloak
name = "Survey Corps Cloak"
item_path = /obj/item/clothing/suit/hooded/aotcloak
donator_only = TRUE
requires_purchase = FALSE
38 changes: 38 additions & 0 deletions monkestation/code/modules/donator/code/item/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,41 @@
icon_state = "kriegmask"
inhand_icon_state = null
flags_inv = HIDEFACE

/obj/item/clothing/suit/hooded/aotcloak
name = "survey corps cloak"
desc = "A lightweight but durable cloak with an emblem emblazoned on the back."
icon = 'monkestation/code/modules/donator/icons/obj/clothing.dmi'
worn_icon = 'monkestation/code/modules/donator/icons/mob/clothing.dmi'
icon_state = "aotcloak"
body_parts_covered = CHEST|ARMS
cold_protection = CHEST|ARMS
allowed = list()
armor_type = /datum/armor/hooded_wintercoat
hoodtype = /obj/item/clothing/head/hooded/aotcloak
layer = NECK_LAYER

/obj/item/clothing/suit/hooded/aotcloak/Initialize(mapload)
. = ..()
allowed += list(
/obj/item/flashlight,
/obj/item/lighter,
/obj/item/modular_computer/pda,
/obj/item/radio,
/obj/item/storage/bag/books,
/obj/item/storage/fancy/cigarettes,
/obj/item/tank/internals/emergency_oxygen,
/obj/item/tank/internals/plasmaman,
/obj/item/toy,
)

/obj/item/clothing/head/hooded/aotcloak
name = "survey corps cloak hood"
desc = "A cozy winter hood attached to a heavy winter jacket."
icon = 'monkestation/code/modules/donator/icons/obj/clothing.dmi'
worn_icon = 'monkestation/code/modules/donator/icons/mob/clothing.dmi'
icon_state = "aotcloak_hood"
body_parts_covered = HEAD
cold_protection = HEAD
flags_inv = HIDEHAIR|HIDEEARS
armor_type = /datum/armor/hooded_winterhood
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.
1 change: 1 addition & 0 deletions strings/pill_names.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"Bloody",
"Blue",
"Bomb",
"Bobo",
"Bot",
"Bourbon",
"Borbop",
Expand Down
Loading