Another new sprite

This commit is contained in:
Unknown
2019-05-27 12:01:00 -04:00
parent 63fff025bb
commit 7515df6187
3 changed files with 21 additions and 3 deletions

View File

@@ -31,8 +31,10 @@
battery_module = new/obj/item/weapon/computer_hardware/battery_module/advanced(src) battery_module = new/obj/item/weapon/computer_hardware/battery_module/advanced(src)
battery_module.charge_to_full() battery_module.charge_to_full()
/obj/item/modular_computer/laptop/preset/custom_loadout/elite //VOREStation Add /obj/item/modular_computer/laptop/preset/custom_loadout/elite
icon = 'icons/obj/modular_laptop_vr.dmi' icon_state_unpowered = "adv-laptop-open"
icon_state = "adv-laptop-open"
icon_state_closed = "adv-laptop-closed"
/obj/item/modular_computer/laptop/preset/custom_loadout/elite/install_default_hardware() /obj/item/modular_computer/laptop/preset/custom_loadout/elite/install_default_hardware()
..() ..()
@@ -44,3 +46,19 @@
card_slot = new/obj/item/weapon/computer_hardware/card_slot(src) card_slot = new/obj/item/weapon/computer_hardware/card_slot(src)
battery_module = new/obj/item/weapon/computer_hardware/battery_module/super(src) battery_module = new/obj/item/weapon/computer_hardware/battery_module/super(src)
battery_module.charge_to_full() battery_module.charge_to_full()
//VOREStation Add Start
/obj/item/modular_computer/laptop/preset/custom_loadout/rugged
icon = 'icons/obj/modular_laptop_vr.dmi'
/obj/item/modular_computer/laptop/preset/custom_loadout/rugged/install_default_hardware()
..()
processor_unit = new/obj/item/weapon/computer_hardware/processor_unit(src)
tesla_link = new/obj/item/weapon/computer_hardware/tesla_link(src)
hard_drive = new/obj/item/weapon/computer_hardware/hard_drive/super(src)
network_card = new/obj/item/weapon/computer_hardware/network_card/advanced(src)
nano_printer = new/obj/item/weapon/computer_hardware/nano_printer(src)
card_slot = new/obj/item/weapon/computer_hardware/card_slot(src)
battery_module = new/obj/item/weapon/computer_hardware/battery_module/super(src)
battery_module.charge_to_full()
//VOREStation Add End

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -52,7 +52,7 @@
/obj/item/weapon/storage/pill_bottle/antitox, /obj/item/weapon/storage/pill_bottle/antitox,
/obj/item/weapon/storage/firstaid/adv, /obj/item/weapon/storage/firstaid/adv,
/obj/item/weapon/storage/firstaid/regular, /obj/item/weapon/storage/firstaid/regular,
/obj/item/modular_computer/laptop/preset/custom_loadout/elite, /obj/item/modular_computer/laptop/preset/custom_loadout/rugged,
/obj/item/weapon/storage/box/survival/comp{ /obj/item/weapon/storage/box/survival/comp{
starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
}, },