forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added shadowlight and mod pack for new uplink items
- Loading branch information
Showing
7 changed files
with
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/obj/item/flashlight/shadowlight | ||
name = "flashlight" | ||
desc = "A hand-held emergency light." | ||
icon = 'modular_ss220/objects/icons/lighting.dmi' | ||
icon_state = "shadowlight" | ||
item_state = "shadowlight" | ||
brightness_on = 3 // A little better than the standard flashlight. | ||
light_power = -2 | ||
hitsound = 'sound/weapons/genhit1.ogg' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/datum/modpack/example | ||
/// A string name for the modpack. Used for looking up other modpacks in init. | ||
name = "Uplink items" | ||
/// A string desc for the modpack. Can be used for modpack verb list as description. | ||
desc = "Модуль предметов для аплинка" | ||
/// A string with authors of this modpack. | ||
author = "HardexZ/TheReal" | ||
|
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,12 @@ | ||
#include "_uplink_items.dm" | ||
|
||
#include "code/uplink_general.dm" | ||
// BEGIN_INTERNALS | ||
// END_INTERNALS | ||
// BEGIN_FILE_DIR | ||
#define FILE_DIR . | ||
// END_FILE_DIR | ||
// BEGIN_PREFERENCES | ||
// END_PREFERENCES | ||
// BEGIN_INCLUDE | ||
// END_INCLUDE |
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/device_tools/shadowlight | ||
name = "Shadowlight" | ||
desc = "A gadget disguised as a flashlight that literally creates darkness within a certain radius. \ | ||
Envelop yourself in darkness and hide from prying eyes. \ | ||
Does not work in bright light. " | ||
reference = "SHAD" | ||
item = /obj/item/flashlight/shadowlight | ||
cost = 20 |