diff --git a/code/modules/power/smes_construction.dm b/code/modules/power/smes_construction.dm index 47ff9c47e1f..e8c4b48fd97 100644 --- a/code/modules/power/smes_construction.dm +++ b/code/modules/power/smes_construction.dm @@ -10,7 +10,7 @@ name = "superconductive magnetic coil" desc = "Standard superconductive magnetic coil with balanced capacity and I/O rating." icon = 'icons/obj/stock_parts.dmi' - icon_state = "smes_coil" // Just few icons patched together. If someone wants to make better icon, feel free to do so! + icon_state = "smes_coil" w_class = ITEMSIZE_LARGE // It's LARGE (backpack size) var/ChargeCapacity = 5000000 var/IOCapacity = 250000 @@ -28,6 +28,7 @@ /obj/item/smes_coil/weak name = "basic superconductive magnetic coil" desc = "Cheaper model of the standard superconductive magnetic coil. Its capacity and I/O rating are considerably lower." + icon_state = "smes_coil_weak" ChargeCapacity = 1000000 IOCapacity = 150000 @@ -35,6 +36,7 @@ /obj/item/smes_coil/super_capacity name = "superconductive capacitance coil" desc = "Specialised version of the standard superconductive magnetic coil. It has significantly stronger containment field, allowing for immense power storage. However its I/O rating is much lower." + icon_state = "smes_coil_capacitance" ChargeCapacity = 50000000 IOCapacity = 50000 @@ -42,6 +44,7 @@ /obj/item/smes_coil/super_io name = "superconductive transmission coil" desc = "Specialised version of the standard superconductive magnetic coil. While it's almost useless for power storage it can rapidly transfer power, making it useful in systems that require large throughput." + icon_state = "smes_coil_transmission" ChargeCapacity = 500000 IOCapacity = 1000000 diff --git a/html/changelogs/stock_parts_sprites.yml b/html/changelogs/stock_parts_sprites.yml new file mode 100644 index 00000000000..8c8dd1bcd30 --- /dev/null +++ b/html/changelogs/stock_parts_sprites.yml @@ -0,0 +1,6 @@ +author: SleepyGemmy + +delete-after: True + +changes: + - imageadd: "Adds unique SMES coil sprites." \ No newline at end of file diff --git a/icons/obj/stock_parts.dmi b/icons/obj/stock_parts.dmi index ea55229af27..8fe1cad3e01 100644 Binary files a/icons/obj/stock_parts.dmi and b/icons/obj/stock_parts.dmi differ