Adds hand sprites to many items in the engineering department

This commit is contained in:
Cerebulon
2017-03-29 04:09:33 +01:00
parent d2078e86d6
commit 55fd0a2041
12 changed files with 11 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
name = "inteliCard" name = "inteliCard"
icon = 'icons/obj/pda.dmi' icon = 'icons/obj/pda.dmi'
icon_state = "aicard" // aicard-full icon_state = "aicard" // aicard-full
item_state = "electronic" item_state = "aicard"
w_class = ITEMSIZE_SMALL w_class = ITEMSIZE_SMALL
slot_flags = SLOT_BELT slot_flags = SLOT_BELT
show_messages = 0 show_messages = 0

View File

@@ -4,9 +4,9 @@
name = "\improper T-ray scanner" name = "\improper T-ray scanner"
desc = "A terahertz-ray emitter and scanner used to detect underfloor objects such as cables and pipes." desc = "A terahertz-ray emitter and scanner used to detect underfloor objects such as cables and pipes."
icon_state = "t-ray0" icon_state = "t-ray0"
item_state = "t-ray"
slot_flags = SLOT_BELT slot_flags = SLOT_BELT
w_class = ITEMSIZE_SMALL w_class = ITEMSIZE_SMALL
item_state = "electronic"
matter = list(DEFAULT_WALL_MATERIAL = 150) matter = list(DEFAULT_WALL_MATERIAL = 150)
origin_tech = list(TECH_MAGNET = 1, TECH_ENGINEERING = 1) origin_tech = list(TECH_MAGNET = 1, TECH_ENGINEERING = 1)

View File

@@ -21,6 +21,7 @@
name = "robotic module reset board" name = "robotic module reset board"
desc = "Used to reset a cyborg's module. Destroys any other upgrades applied to the robot." desc = "Used to reset a cyborg's module. Destroys any other upgrades applied to the robot."
icon_state = "cyborg_upgrade1" icon_state = "cyborg_upgrade1"
item_state = "cyborg_upgrade"
require_module = 1 require_module = 1
/obj/item/borg/upgrade/reset/action(var/mob/living/silicon/robot/R) /obj/item/borg/upgrade/reset/action(var/mob/living/silicon/robot/R)
@@ -41,6 +42,7 @@
name = "robot reclassification board" name = "robot reclassification board"
desc = "Used to rename a cyborg." desc = "Used to rename a cyborg."
icon_state = "cyborg_upgrade1" icon_state = "cyborg_upgrade1"
item_state = "cyborg_upgrade"
var/heldname = "default name" var/heldname = "default name"
/obj/item/borg/upgrade/rename/attack_self(mob/user as mob) /obj/item/borg/upgrade/rename/attack_self(mob/user as mob)
@@ -59,6 +61,7 @@
name = "robot emergency restart module" name = "robot emergency restart module"
desc = "Used to force a restart of a disabled-but-repaired robot, bringing it back online." desc = "Used to force a restart of a disabled-but-repaired robot, bringing it back online."
icon_state = "cyborg_upgrade1" icon_state = "cyborg_upgrade1"
item_state = "cyborg_upgrade"
/obj/item/borg/upgrade/restart/action(var/mob/living/silicon/robot/R) /obj/item/borg/upgrade/restart/action(var/mob/living/silicon/robot/R)
@@ -82,6 +85,7 @@
name = "robotic VTEC Module" name = "robotic VTEC Module"
desc = "Used to kick in a robot's VTEC systems, increasing their speed." desc = "Used to kick in a robot's VTEC systems, increasing their speed."
icon_state = "cyborg_upgrade2" icon_state = "cyborg_upgrade2"
item_state = "cyborg_upgrade"
require_module = 1 require_module = 1
/obj/item/borg/upgrade/vtec/action(var/mob/living/silicon/robot/R) /obj/item/borg/upgrade/vtec/action(var/mob/living/silicon/robot/R)
@@ -98,6 +102,7 @@
name = "robotic Rapid Taser Cooling Module" name = "robotic Rapid Taser Cooling Module"
desc = "Used to cool a mounted taser, increasing the potential current in it and thus its recharge rate." desc = "Used to cool a mounted taser, increasing the potential current in it and thus its recharge rate."
icon_state = "cyborg_upgrade3" icon_state = "cyborg_upgrade3"
item_state = "cyborg_upgrade"
require_module = 1 require_module = 1
@@ -132,6 +137,7 @@
name = "mining robot jetpack" name = "mining robot jetpack"
desc = "A carbon dioxide jetpack suitable for low-gravity mining operations." desc = "A carbon dioxide jetpack suitable for low-gravity mining operations."
icon_state = "cyborg_upgrade3" icon_state = "cyborg_upgrade3"
item_state = "cyborg_upgrade"
require_module = 1 require_module = 1
/obj/item/borg/upgrade/jetpack/action(var/mob/living/silicon/robot/R) /obj/item/borg/upgrade/jetpack/action(var/mob/living/silicon/robot/R)
@@ -153,6 +159,7 @@
name = "illegal equipment module" name = "illegal equipment module"
desc = "Unlocks the hidden, deadlier functions of a robot" desc = "Unlocks the hidden, deadlier functions of a robot"
icon_state = "cyborg_upgrade3" icon_state = "cyborg_upgrade3"
item_state = "cyborg_upgrade"
require_module = 1 require_module = 1
/obj/item/borg/upgrade/syndicate/action(var/mob/living/silicon/robot/R) /obj/item/borg/upgrade/syndicate/action(var/mob/living/silicon/robot/R)

View File

@@ -8,7 +8,6 @@
name = "circuit board" name = "circuit board"
icon = 'icons/obj/module.dmi' icon = 'icons/obj/module.dmi'
icon_state = "id_mod" icon_state = "id_mod"
item_state = "electronic"
origin_tech = list(TECH_DATA = 2) origin_tech = list(TECH_DATA = 2)
density = 0 density = 0
anchored = 0 anchored = 0
@@ -47,7 +46,7 @@
var/comp_amt = req_components[comp_path] var/comp_amt = req_components[comp_path]
if(!comp_amt) if(!comp_amt)
continue continue
if(ispath(comp_path, /obj/item/stack)) if(ispath(comp_path, /obj/item/stack))
M.component_parts += new comp_path(contain_parts ? M : null, comp_amt) M.component_parts += new comp_path(contain_parts ? M : null, comp_amt)
else else

View File

@@ -7,7 +7,6 @@
name = "exosuit circuit board" name = "exosuit circuit board"
icon = 'icons/obj/module.dmi' icon = 'icons/obj/module.dmi'
icon_state = "std_mod" icon_state = "std_mod"
item_state = "electronic"
board_type = "other" board_type = "other"
/obj/item/weapon/circuitboard/mecha/ripley /obj/item/weapon/circuitboard/mecha/ripley

View File

@@ -11,6 +11,7 @@
used for power or data transmission." used for power or data transmission."
icon = 'icons/obj/electronic_assemblies.dmi' icon = 'icons/obj/electronic_assemblies.dmi'
icon_state = "wirer-wire" icon_state = "wirer-wire"
item_state = "wirer"
flags = CONDUCT flags = CONDUCT
w_class = 2 w_class = 2
var/datum/integrated_io/selected_io = null var/datum/integrated_io/selected_io = null

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 23 KiB