forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: SuhEugene <[email protected]>
- Loading branch information
1 parent
9b31542
commit a1cfefa
Showing
19 changed files
with
225 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
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
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
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
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
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
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,39 @@ | ||
// Unathi garnmaents | ||
|
||
/obj/item/clothing/head/cap/sec | ||
name = "big security cap" | ||
desc = "A security cap. This one pretty big." | ||
icon = 'mods/loadout_items/icons/obj_head.dmi' | ||
item_icons = list(slot_wear_suit_str = 'mods/loadout_items/icons/onmob_head.dmi') | ||
sprite_sheets = list( | ||
SPECIES_UNATHI = 'mods/loadout_items/icons/onmob_head.dmi' | ||
) | ||
icon_state = "unathi_seccap" | ||
item_state = "unathi_seccap" | ||
species_restricted = list(SPECIES_UNATHI) | ||
flags_inv = BLOCKHEADHAIR | ||
|
||
/obj/item/clothing/head/cap/desert | ||
name = "Suncap" | ||
desc = "A big suncap designed for use in the desert. Unathi use it to withstand scorhing heat rays when \"Burning Mother\" at it's zenith, something that their heads cannot handle. This one features foldable flaps to keep back of the neck protected. It's too big to fit anyone, but unathi." | ||
icon = 'mods/loadout_items/icons/obj_head.dmi' | ||
item_icons = list(slot_wear_suit_str = 'mods/loadout_items/icons/onmob_head.dmi') | ||
sprite_sheets = list( | ||
SPECIES_UNATHI = 'mods/loadout_items/icons/onmob_head.dmi' | ||
) | ||
icon_state = "unathi_suncap" | ||
item_state = "unathi_suncap" | ||
flags_inv = HIDEEARS|BLOCKHEADHAIR | ||
var/icon_state_up = "unathi_suncap_u" | ||
species_restricted = list(SPECIES_UNATHI) | ||
body_parts_covered = HEAD | ||
|
||
/obj/item/clothing/head/cap/desert/attack_self(mob/user as mob) | ||
if(icon_state == initial(icon_state)) | ||
icon_state = icon_state_up | ||
item_state = icon_state_up | ||
to_chat(user, "You raise the ear flaps on the Suncap.") | ||
else | ||
icon_state = initial(icon_state) | ||
item_state = initial(icon_state) | ||
to_chat(user, "You lower the ear flaps on the Suncap.") |
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
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
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
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
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.