mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-22 05:25:15 +01:00
Finishes id computer
adds designs for computer parts to rnd and cases to the autolathe.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
icon_state = "battery_normal"
|
||||
critical = 1
|
||||
malfunction_probability = 1
|
||||
origin_tech = list(TECH_POWER = 1, TECH_ENGINEERING = 1)
|
||||
origin_tech = list("powerstorage" = 1, "engineering" = 1)
|
||||
var/battery_rating = 750
|
||||
var/obj/item/weapon/stock_parts/cell/battery = null
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
name = "advanced battery"
|
||||
desc = "An advanced power cell, often used in most laptops. It is too large to be fitted into smaller devices. It's rating is 1100."
|
||||
icon_state = "battery_advanced"
|
||||
origin_tech = list(TECH_POWER = 2, TECH_ENGINEERING = 2)
|
||||
origin_tech = list("powerstorage" = 2, "engineering" = 2)
|
||||
hardware_size = 2
|
||||
battery_rating = 1100
|
||||
|
||||
@@ -22,15 +22,15 @@
|
||||
name = "super battery"
|
||||
desc = "A very advanced power cell, often used in high-end devices, or as uninterruptable power supply for important consoles or servers. It's rating is 1500."
|
||||
icon_state = "battery_super"
|
||||
origin_tech = list(TECH_POWER = 3, TECH_ENGINEERING = 3)
|
||||
hardware_size = 1 //temp for testmerge
|
||||
origin_tech = list("powerstorage" = 3, "engineering" = 3)
|
||||
hardware_size = 2
|
||||
battery_rating = 1500
|
||||
|
||||
/obj/item/weapon/computer_hardware/battery_module/ultra
|
||||
name = "ultra battery"
|
||||
desc = "A very advanced large power cell. It's often used as uninterruptable power supply for critical consoles or servers. It's rating is 2000."
|
||||
icon_state = "battery_ultra"
|
||||
origin_tech = list(TECH_POWER = 5, TECH_ENGINEERING = 4)
|
||||
origin_tech = list("powerstorage" = 5, "engineering" = 4)
|
||||
hardware_size = 3
|
||||
battery_rating = 2000
|
||||
|
||||
@@ -38,14 +38,14 @@
|
||||
name = "micro battery"
|
||||
desc = "A small power cell, commonly seen in most portable microcomputers. It's rating is 500."
|
||||
icon_state = "battery_micro"
|
||||
origin_tech = list(TECH_POWER = 2, TECH_ENGINEERING = 2)
|
||||
origin_tech = list("powerstorage" = 2, "engineering" = 2)
|
||||
battery_rating = 500
|
||||
|
||||
/obj/item/weapon/computer_hardware/battery_module/nano
|
||||
name = "nano battery"
|
||||
desc = "A tiny power cell, commonly seen in low-end portable microcomputers. It's rating is 300."
|
||||
icon_state = "battery_nano"
|
||||
origin_tech = list(TECH_POWER = 1, TECH_ENGINEERING = 1)
|
||||
origin_tech = list("powerstorage" = 1, "engineering" = 1)
|
||||
battery_rating = 300
|
||||
|
||||
// This is not intended to be obtainable in-game. Intended for adminbus and debugging purposes.
|
||||
|
||||
Reference in New Issue
Block a user