Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thgvr committed Oct 21, 2023
1 parent ebe9cb1 commit f19c555
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions code/modules/research/design_disks/_design_disk.dm
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,15 @@
illustration = "depleted"
update_icon()

/obj/item/disk/design_disk/basic
name = "design disk - low capacity"
desc = "A disk for storing device design data for construction in lathes. This one has a little bit of extra storage space."
color = "#2ab44f"
max_blueprints = 2
modifiable = TRUE

/obj/item/disk/design_disk/adv
name = "Advanced Component Design Disk"
name = "design disk - medium capacity"
desc = "A disk for storing device design data for construction in lathes. This one has a little bit of extra storage space."
color = "#bed876"
max_blueprints = 3
Expand All @@ -119,7 +126,7 @@
)

/obj/item/disk/design_disk/super
name = "Super Component Design Disk"
name = "design disk - high capacity"
desc = "A disk for storing device design data for construction in lathes. This one has more extra storage space."
color = "#c25454"
max_blueprints = 5
Expand All @@ -132,7 +139,7 @@
)

/obj/item/disk/design_disk/elite
name = "Elite Component Design Disk"
name = "design disk - super capacity"
color = "#333333"
desc = "A disk for storing device design data for construction in lathes. This one has absurd amounts of extra storage space."
max_blueprints = 10
Expand Down
2 changes: 1 addition & 1 deletion code/modules/research/designs/electronics_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
id = "design_disk"
build_type = PROTOLATHE | AUTOLATHE
materials = list(/datum/material/iron = 300, /datum/material/glass = 100)
build_path = /obj/item/disk/design_disk
build_path = /obj/item/disk/design_disk/basic
category = list("Electronics")

/datum/design/design_disk_adv
Expand Down

0 comments on commit f19c555

Please sign in to comment.