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 111223 #547

Merged
merged 1 commit into from
Nov 13, 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
12 changes: 12 additions & 0 deletions monkestation/code/modules/donator/code/datum/loadout.dm
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@
item_path = /obj/item/effect_granter/donator/spycrab
requires_purchase = FALSE

/datum/loadout_item/mask/krieg
name = "Krieg's Mask"
item_path = /obj/item/clothing/mask/krieg
donator_only = TRUE
requires_purchase = FALSE

/datum/loadout_item/under/miscellaneous/krieg
name = "Krieg's attire"
item_path = /obj/item/clothing/under/costume/krieg
donator_only = TRUE
requires_purchase = FALSE

//spinnermaster

/datum/loadout_item/pocket_items/donator/void_mothroach
Expand Down
19 changes: 19 additions & 0 deletions monkestation/code/modules/donator/code/item/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,22 @@
w_class = WEIGHT_CLASS_NORMAL
armor_type = /datum/armor/mask_gas
flags_cover = MASKCOVERSEYES | MASKCOVERSMOUTH | PEPPERPROOF

/obj/item/clothing/under/costume/krieg
name = "\improper Krieg's Attire"
desc = "The garb of a malicious psycho from the Pandora sector."
icon = 'monkestation/code/modules/donator/icons/obj/clothing.dmi'
worn_icon = 'monkestation/code/modules/donator/icons/mob/clothing.dmi'
icon_state = "kriegunder"
worn_icon_state = "kriegunder"
inhand_icon_state = null
body_parts_covered = LEGS|ARMS

/obj/item/clothing/mask/krieg
name = "\improper Krieg's Mask"
desc = "The mask of a malicious psycho from the Pandora sector."
icon = 'monkestation/code/modules/donator/icons/obj/clothing.dmi'
worn_icon = 'monkestation/code/modules/donator/icons/mob/clothing.dmi'
icon_state = "kriegmask"
inhand_icon_state = null
flags_inv = HIDEFACE
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