Swap elite and hybrid laptop sprites

This commit is contained in:
Aronai Sieyes
2020-02-29 12:07:11 -05:00
parent ca1d2d9c16
commit 243e7353c5
2 changed files with 11 additions and 11 deletions

View File

@@ -20,13 +20,21 @@
battery_module = new/obj/item/weapon/computer_hardware/battery_module/super(src)
battery_module.charge_to_full()
//Fancy Schmancy - this is defined in normal file, just swapping the icon
/obj/item/modular_computer/laptop/preset/custom_loadout/elite
name = "elite laptop computer"
desc = "Fancy shcmancy laptop."
icon_state_unpowered = "elite-open"
icon_state = "elite-open"
icon_state_closed = "elite-closed"
//Alien/Human hybrid tech
/obj/item/modular_computer/laptop/preset/custom_loadout/hybrid
name = "hybrid laptop computer"
desc = "Weird glowy alien/human crossover tech."
icon_state_unpowered = "xenoware-open"
icon_state = "xenoware-open"
icon_state_closed = "xenoware-closed"
icon_state_unpowered = "hybrid-open"
icon_state = "hybrid-open"
icon_state_closed = "hybrid-closed"
/obj/item/modular_computer/laptop/preset/custom_loadout/hybrid/install_default_hardware()
..()
@@ -38,11 +46,3 @@
card_slot = new/obj/item/weapon/computer_hardware/card_slot(src)
battery_module = new/obj/item/weapon/computer_hardware/battery_module/lambda(src)
battery_module.charge_to_full()
//Fancy Schmancy - this is defined in normal file, just swapping the icon
/obj/item/modular_computer/laptop/preset/custom_loadout/elite
name = "elite laptop computer"
desc = "Gold trim on a laptop? Why not."
icon_state_unpowered = "super-open"
icon_state = "super-open"
icon_state_closed = "super-closed"