forked from Monkestation/Monkestation2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rayne Corp Items (Monkestation#4460)
* scroink * hre we go * hjk * jkjk * lantern mostly done time to bugtest * ncie * ham * xsdfghb * orgniz
- Loading branch information
Showing
7 changed files
with
79 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
37 changes: 37 additions & 0 deletions
37
monkestation/code/game/objects/items/rayne_corp/rayne_lantern.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,37 @@ | ||
/obj/item/flashlight/lantern/rayne | ||
name = "lantern" | ||
icon_state = "lantern" | ||
inhand_icon_state = "lantern" | ||
lefthand_file = 'icons/mob/inhands/equipment/mining_lefthand.dmi' | ||
righthand_file = 'icons/mob/inhands/equipment/mining_righthand.dmi' | ||
desc = "A lantern that hangs off the shoulder providing some warmth and lighting with an incandescent heat lamp. \ | ||
This is an old piece of technology, usefull for exploring cold planetoids or the void of space. \ | ||
It is stamped with a Rayne Corp logo on the bottom." | ||
light_outer_range = 5// luminosity when on | ||
light_system = OVERLAY_LIGHT | ||
icon = 'monkestation/icons/obj/rayne_corp/rayne.dmi' | ||
icon_state = "rayne_lantern" | ||
inhand_icon_state = "lantern" // todo | ||
worn_icon = 'monkestation/icons/obj/rayne_corp/rayne.dmi' | ||
worn_icon_state = "rayne_lantern_worn" | ||
slot_flags = ITEM_SLOT_NECK | ||
|
||
/obj/item/flashlight/lantern/rayne/process(seconds_per_tick) | ||
|
||
var/mob/living/user = loc | ||
if(!istype(user)) | ||
return | ||
user.adjust_bodytemperature(2 * seconds_per_tick, max_temp = user.standard_body_temperature) | ||
|
||
/obj/item/flashlight/lantern/rayne/toggle_light() | ||
..() | ||
//icon_state = "rayne_lantern_[on ? "on" : "off"]" | ||
if(on) | ||
START_PROCESSING(SSobj, src) | ||
else | ||
STOP_PROCESSING(SSobj, src) | ||
var/mob/user = loc | ||
if(!istype(user)) | ||
return | ||
balloon_alert(user, "heater [on ? "on" : "off"]") | ||
return TRUE |
4 changes: 4 additions & 0 deletions
4
monkestation/code/game/objects/items/rayne_corp/rayne_mender.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,4 @@ | ||
/obj/item/storage/medkit/rayne | ||
name = "Rayne Corp Health Analyzer Kit" | ||
icon = 'icons/obj/device.dmi' | ||
item_flags = NOBLUDGEON |
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,7 @@ | ||
//TODO add organ harvesting suit module | ||
/datum/armament_entry/company_import/kemetek | ||
category = KEMETEK_NAME | ||
company_bitflag = CARGO_COMPANY_KEMETEK | ||
|
||
/datum/armament_entry/company_import/kemetek/checkback | ||
subcategory = "Check back soon! ™" |
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,25 @@ | ||
/datum/armament_entry/company_import/rayne | ||
category = RAYNE_CORP_NAME | ||
company_bitflag = CARGO_COMPANY_RAYNE | ||
|
||
/datum/armament_entry/company_import/rayne/clothing | ||
subcategory = "Clothing Supplies" | ||
|
||
/datum/armament_entry/company_import/rayne/clothing/lamp | ||
// name = "Wearable Rayne Corporation Chest Lamp" | ||
item_type = /obj/item/flashlight/lantern/rayne | ||
cost = PAYCHECK_COMMAND * 3 | ||
|
||
//Rayne Corp Medkit: A portable medkit that contains a cynical artificial intelligence that can diagnose and treat your injuries, but also insults you and makes sarcastic comments about your condition. | ||
//automender but it sucks and hates you | ||
|
||
//Rayne Corp Sticky Tiles: A synthetic tile that has a special adhesive property that can cushion any fall and prevent serious damage, | ||
//but also traps you in place until you can free yourself or get help. The Sticky Tile is ideal for people who are clumsy and prone to accidents. | ||
|
||
//Rayne Corp Teleporter: A device that can teleport you to any location, but also swaps your body parts with random objects or animals. The Teleporter is convenient and fast. It can let you travel anywhere, | ||
//in an instant. The Teleporter can also create amusing and weird situations, as you may end up with a different appearance, function, | ||
//or ability, after teleporting. However, the Teleporter can be very painful, and can damage your health, identity, or sanity, if used too often. | ||
//razor that shaves you so bald you flash people when examined | ||
//GIANT MOUSETRAP | ||
//Rayne Corp Homerun bat | ||
//Rayne corp auto injector (its just autop injects maints pills) |
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