-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #730 from CannibalHunter/gnome-outfit
Adds a Gnome Outfit to the MonkeCoin shop!
- Loading branch information
Showing
7 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters