[MIRROR] Bunny suits (#9331)

Co-authored-by: Casey <a.roaming.shadow@gmail.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2024-10-27 10:24:53 -07:00
committed by GitHub
parent 38b0939ad4
commit 20afa499ec
9 changed files with 91 additions and 0 deletions

View File

@@ -569,3 +569,12 @@ Talon pin
)
gear_tweaks += new/datum/gear_tweak/path(wristband_lists)
gear_tweaks += gear_tweak_free_color_choice
/datum/gear/accessory/bunny_tail
display_name = "bunny tail, colorable"
path = /obj/item/clothing/accessory/bunny_tail
/datum/gear/accessory/bunny_tail/New()
..()
gear_tweaks += gear_tweak_free_color_choice

View File

@@ -244,6 +244,10 @@
display_name = "rabbit ears"
path = /obj/item/clothing/head/rabbitears
/datum/gear/head/rabbit/New()
..()
gear_tweaks += gear_tweak_free_color_choice
/datum/gear/head/beanie
display_name = "beanie"
path = /obj/item/clothing/head/beanie

View File

@@ -633,3 +633,22 @@
"black tabard-dress"=/obj/item/clothing/under/dress/tabard/black
)
gear_tweaks += list(new/datum/gear_tweak/path(tabarddress))
//bunny suits
/datum/gear/uniform/bunnysuit
display_name = "bunny suit selection, colorable"
path = /obj/item/clothing/under/bunnysuit
/datum/gear/uniform/bunnysuit/New()
..()
var/list/bunnysuit = list(
"bunnysuit"=/obj/item/clothing/under/bunnysuit,
"maid bunnysuit"=/obj/item/clothing/under/bunnysuit_maid,
"reverse bunnysuit"=/obj/item/clothing/under/reverse_bunnysuit,
"maid reverse bunnysuit"=/obj/item/clothing/under/reverse_bunnysuit_maid,
"reverse bunnysuit, no legs"=/obj/item/clothing/under/reverse_bunnytop,
"maid reverse bunnysuit, no legs"=/obj/item/clothing/under/reverse_bunnytop_maid
)
gear_tweaks += list(new/datum/gear_tweak/path(bunnysuit))
gear_tweaks += gear_tweak_free_color_choice