Skip to content

Commit

Permalink
Merge pull request #730 from CannibalHunter/gnome-outfit
Browse files Browse the repository at this point in the history
Adds a Gnome Outfit to the MonkeCoin shop!
  • Loading branch information
dwasint authored Dec 20, 2023
2 parents aac9bf5 + 68aed10 commit 481e0c8
Show file tree
Hide file tree
Showing 7 changed files with 86 additions and 0 deletions.
85 changes: 85 additions & 0 deletions monkestation/code/modules/clothing/costumes/gnome.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
//Gnome Clothing Requested by The Duke Of Ook
//clothing_objects
/obj/item/clothing/under/gnome_green
name = "green gnome uniform"
desc = "An authentic gnome uniform! This one is a peasant outfit."
icon = 'monkestation/icons/mob/clothing/costumes/gnome/gnome_item.dmi'
icon_state = "gnome_uniform_green"
worn_icon = 'monkestation/icons/mob/clothing/costumes/gnome/gnome_worn_32x32.dmi'
can_adjust = FALSE

/obj/item/clothing/under/gnome_blue
name = "blue gnome uniform"
desc = "An authentic gnome uniform! This one is a noble outfit."
icon = 'monkestation/icons/mob/clothing/costumes/gnome/gnome_item.dmi'
icon_state = "gnome_uniform_blue"
worn_icon = 'monkestation/icons/mob/clothing/costumes/gnome/gnome_worn_32x32.dmi'
can_adjust = FALSE

/obj/item/clothing/shoes/gnome_boots
name = "leather gnome boots"
desc = "This pair of boots seem to be made out of leather! It's handcrafted too!."
icon = 'monkestation/icons/mob/clothing/costumes/gnome/gnome_item.dmi'
icon_state = "gnome_boots"
worn_icon = 'monkestation/icons/mob/clothing/costumes/gnome/gnome_worn_32x64.dmi'

/obj/item/clothing/head/gnome_hat
name = "gnome hat"
desc = "A gnomes standard issue hat for all temperatures. It's made of a softly smooth red velvet."
icon = 'monkestation/icons/mob/clothing/costumes/gnome/gnome_item.dmi'
icon_state = "gnome_hat"
worn_icon = 'monkestation/icons/mob/clothing/costumes/gnome/gnome_worn_32x32.dmi'

/obj/item/clothing/head/gnome_hat_tall
name = "tall gnome hat"
desc = "A gnomes standard issue hat for all temperatures. It's made of a softly smooth red velvet. This one is QUITE tall."
icon = 'monkestation/icons/mob/clothing/costumes/gnome/gnome_item.dmi'
icon_state = "gnome_hat_tall"
worn_icon = 'monkestation/icons/mob/clothing/costumes/gnome/gnome_worn_32x32.dmi'

//loadout_item
/datum/loadout_item/under/jumpsuit/gnome_green
name = "Green Gnome Uniform"
item_path = /obj/item/clothing/under/gnome_green

/datum/loadout_item/under/jumpsuit/gnome_blue
name = "Blue Gnome Uniform"
item_path = /obj/item/clothing/under/gnome_blue

/datum/loadout_item/shoes/gnome_boots
name = "Leather Gnome Boots"
item_path = /obj/item/clothing/shoes/gnome_boots

/datum/loadout_item/head/gnome_hat
name = "Gnome Hat"
item_path = /obj/item/clothing/head/gnome_hat

/datum/loadout_item/head/gnome_hat_tall
name = "Tall Gnome Hat"
item_path = /obj/item/clothing/head/gnome_hat_tall

//store_item
/datum/store_item/under/jumpsuit/gnome_green
name = "Green Gnome Uniform"
item_path = /obj/item/clothing/under/gnome_green
item_cost = 600

/datum/store_item/under/jumpsuit/gnome_blue
name = "Blue Gnome Uniform"
item_path = /obj/item/clothing/under/gnome_blue
item_cost = 600

/datum/store_item/shoes/gnome_boots
name = "Leather Gnome Boots"
item_path = /obj/item/clothing/shoes/gnome_boots
item_cost = 600

/datum/store_item/head/gnome_hat
name = "Gnome Hat"
item_path = /obj/item/clothing/head/gnome_hat
item_cost = 600

/datum/store_item/head/gnome_hat_tall
name = "Tall Gnome Hat"
item_path = /obj/item/clothing/head/gnome_hat_tall
item_cost = 900
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -5997,6 +5997,7 @@
#include "monkestation\code\modules\client\preferences\species_features\secondary_mut_color.dm"
#include "monkestation\code\modules\client\preferences\species_features\simians.dm"
#include "monkestation\code\modules\clothing\accessories\accessories.dm"
#include "monkestation\code\modules\clothing\costumes\gnome.dm"
#include "monkestation\code\modules\clothing\gloves\gloves.dm"
#include "monkestation\code\modules\clothing\head\costume.dm"
#include "monkestation\code\modules\clothing\head\hat.dm"
Expand Down

0 comments on commit 481e0c8

Please sign in to comment.