-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ports syndicate horses, and fixes space movement bug, adds syndicate …
…body armor, clarification (#3646) * speed changes * syndicatepony and space movement * few damn lines * I forgor to change branch * changed to work with borbop temp rework * monkestation edit * armor * clarified * better now? * To ride another day.. * stealthy_tools * dme
- Loading branch information
Showing
19 changed files
with
200 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"pony": [ | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "pony", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 1 ] | ||
}, | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "pony_hair", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 2 ] | ||
} | ||
], | ||
"pony_dead": [ | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "pony_dead", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 1 ] | ||
}, | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "pony_hair_dead", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 2 ] | ||
} | ||
] | ||
} |
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
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.
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
8 changes: 8 additions & 0 deletions
8
monkestation/code/modules/uplink/uplink_items/stealthy_tools.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,8 @@ | ||
/datum/uplink_item/stealthy_tools/chameleon | ||
name = "Chameleon Kit" | ||
desc = "A set of items that contain chameleon technology allowing you to disguise as pretty much anything on the station, and more! \ | ||
Due to budget cuts, the shoes don't provide protection against slipping and skillchips are sold separately. \ | ||
The chameleon technology can be locked and unlocked using a multitool, hiding it from others." | ||
item = /obj/item/storage/box/syndie_kit/chameleon | ||
cost = 2 | ||
purchasable_from = ~UPLINK_NUKE_OPS //clown ops are allowed to buy this kit, since it's basically a costume |
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 |
---|---|---|
@@ -1 +1,7 @@ | ||
// Never again. | ||
/datum/uplink_item/suits/syndie_armor | ||
name = "Syndicate Body armor" | ||
desc = "A highly compact set of body armor with two inner slots for small items.\ | ||
It comes with chameleon features." | ||
item = /obj/item/clothing/suit/chameleon/syndie_armor | ||
cost = 4 | ||
purchasable_from = ALL |
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