Skip to content

Commit

Permalink
donator items for ignari (#2121)
Browse files Browse the repository at this point in the history
* a dollar is a dollar

* grammar check



---------

Co-authored-by: Hatterhat <[email protected]>
Co-authored-by: Hatterhat <[email protected]>
Co-authored-by: GoldenAlpharex <[email protected]>
  • Loading branch information
4 people authored Feb 26, 2024
1 parent 2cdd6a5 commit cf0a09d
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 0 deletions.
Binary file modified modular_nova/master_files/icons/donator/mob/clothing/feet.dmi
Binary file not shown.
Binary file modified modular_nova/master_files/icons/donator/mob/clothing/uniform.dmi
Binary file not shown.
Binary file modified modular_nova/master_files/icons/donator/obj/clothing/shoes.dmi
Binary file not shown.
Binary file modified modular_nova/master_files/icons/donator/obj/clothing/uniform.dmi
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1929,3 +1929,32 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/poster/contraband/korpstech, 32)
name = "implant case - 'Toaster'"
desc = "A glass case containing a toaster implant. Sweet."
imp_type = /obj/item/implant/toaster

// donator reward for ignari
/obj/item/clothing/under/rem
name = "\improper M.I.A. limiter"
desc = "Manufactured from durable synthetic threads, this outfit seems to be very poor at transmitting physical stimuli to the wearer. \
The material appears to be extremely compressive, possibly aiding in masking any features underneath."
icon = 'modular_nova/master_files/icons/donator/obj/clothing/uniform.dmi'
worn_icon = 'modular_nova/master_files/icons/donator/mob/clothing/uniform.dmi'
icon_state = "ignari_rem"
can_adjust = FALSE

/obj/item/clothing/shoes/rem_shoes
name = "\improper M.I.A. heels"
desc = "A pair of form fitting heels. They appear to bear no distinguishing identifiers."
icon = 'modular_nova/master_files/icons/donator/obj/clothing/shoes.dmi'
worn_icon = 'modular_nova/master_files/icons/donator/mob/clothing/feet.dmi'
icon_state = "rem_shoes"

/obj/item/clothing/shoes/rem_shoes/Initialize(mapload)
. = ..()
AddComponent(/datum/component/squeak, list('modular_nova/modules/modular_items/lewd_items/sounds/highheel1.ogg' = 1, 'modular_nova/modules/modular_items/lewd_items/sounds/highheel2.ogg' = 1), 70)

/obj/item/clothing/under/bwake
name = "\improper Compression bodysuit"
desc = "A bodysuit made of weaved bluespace threads and latex. The suit appears to be exceptionally insulating, and seals quite neatly around the wearer's body."
icon = 'modular_nova/master_files/icons/donator/obj/clothing/uniform.dmi'
worn_icon = 'modular_nova/master_files/icons/donator/mob/clothing/uniform.dmi'
icon_state = "bwake_uniform"
can_adjust = FALSE
Original file line number Diff line number Diff line change
Expand Up @@ -763,3 +763,18 @@
name = "Toaster Implant"
item_path = /obj/item/implanter/toaster
ckeywhitelist = list("jasohavents")

/datum/loadout_item/under/miscellaneous/rem
name = "M.I.A. Limiter"
item_path = /obj/item/clothing/under/rem
ckeywhitelist = list("ignari")

/datum/loadout_item/shoes/rem
name = "M.I.A. Heels"
item_path = /obj/item/clothing/shoes/rem_shoes
ckeywhitelist = list("ignari")

/datum/loadout_item/under/miscellaneous/bwake
name = "Compression Bodysuit"
item_path = /obj/item/clothing/under/bwake
ckeywhitelist = list("ignari")

0 comments on commit cf0a09d

Please sign in to comment.