-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removes the Female Exclusive Power of Bikini Armor (#100)
* Update armor.dm Added males to the list of allowed sexes to wear bikini armor, and added the mob overlay sprites directory to each of the bikini armor pieces so they have their male counterparts to point to. * Create armor.dm Adds armor.dm file containing code for the egyptian robe under the name 'foreign dress' as well as code for barrel armor (only admin spawnable for now) * Create weaving.dm Adds weaving.dm for crafting the egyptian robes and headdresses * Create armor.dmi Placeholder armor.dmi that will hold the inventory icon for the barrel armor * Create armor.dmi Placeholder armor.dmi that will hold the onmob sprites for the new barrel armor, egyptian robe, and male bikini sprites. * Add files via upload Uploaded the barrel armor inventory icon .dmi and the onmob sprites .dmi * Update armor.dm Fixed Indentation error that I'm not even sure how it occurred when I copied and pasted the code. * Reuploading file Reuploading file because it didn't look like it took it the first time I tried to upload it for whatever reason. * I SAID UPLOAD
- Loading branch information
Showing
5 changed files
with
56 additions
and
6 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
26 changes: 26 additions & 0 deletions
26
modular_causticcove/code/modules/clothing/rogueclothes/armor.dm
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,26 @@ | ||
/obj/item/clothing/suit/roguetown/armor/egypt | ||
name = "foreign dress" | ||
desc = "Exotic foreign dress from a faraway land. Barely covers anything." | ||
body_parts_covered = CHEST|GROIN | ||
mob_overlay_icon = 'modular_causticcove/icons/roguetown/clothing/onmob/armor.dmi' | ||
icon_state = "egypt" | ||
item_state = "egypt" | ||
allowed_sex = list(MALE, FEMALE) | ||
allowed_race = CLOTHED_RACES_TYPES | ||
slot_flags = ITEM_SLOT_CLOAK|ITEM_SLOT_ARMOR|ITEM_SLOT_SHIRT | ||
sewrepair = TRUE | ||
|
||
/obj/item/clothing/suit/roguetown/armor/barrelarmor | ||
name = "barrel armor" | ||
desc = "It's a barrel. Being used as armor. I'm not sure what more needs to be said." | ||
icon = 'modular_causticcove/icons/roguetown/clothing/armor.dmi' | ||
mob_overlay_icon = 'modular_causticcove/icons/roguetown/clothing/onmob/armor.dmi' | ||
icon_state = "barrelarmor" | ||
item_state = "barrelarmor" | ||
allowed_sex = list(MALE, FEMALE) | ||
blocksound = SOFTHIT | ||
armor = list("blunt" = 50, "slash" = 70, "stab" = 30, "bullet" = 15, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) | ||
prevent_crits = list(BCLASS_CUT, BCLASS_STAB, BCLASS_BLUNT, BCLASS_CHOP) | ||
body_parts_covered = CHEST|GROIN|VITALS|LEGS|ARMS | ||
max_integrity = 300 | ||
slot_flags = ITEM_SLOT_CLOAK |
18 changes: 18 additions & 0 deletions
18
modular_causticcove/code/modules/roguetown/roguecrafting/weaving.dm
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,18 @@ | ||
/datum/crafting_recipe/roguetown/sewing/foreigndress | ||
name = "foreign dress" | ||
result = list(/obj/item/clothing/suit/roguetown/armor/egypt) | ||
reqs = list(/obj/item/natural/silk = 5) | ||
craftdiff = 3 | ||
sellprice = 35 | ||
|
||
/datum/crafting_recipe/roguetown/sewing/headdress | ||
name = "foreign headdress (blue)" | ||
result = list(/obj/item/clothing/head/roguetown/headdress) | ||
reqs = list(/obj/item/natural/silk = 2) | ||
craftdiff = 3 | ||
|
||
/datum/crafting_recipe/roguetown/sewing/headdressalt | ||
name = "foreign headdress (red)" | ||
result = list(/obj/item/clothing/head/roguetown/headdress/alt) | ||
reqs = list(/obj/item/natural/silk = 2) | ||
craftdiff = 3 |
Binary file not shown.
Binary file not shown.