Skip to content

Commit

Permalink
the dumb alternative
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsar-Salat committed Oct 22, 2023
1 parent 0b185a1 commit dc5fa9c
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions code/modules/mob/living/simple_animal/bot/construction.dm
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,23 @@
if(W.tool_behaviour == TOOL_SCREWDRIVER)
to_chat(user, "<span class='notice'>You start attaching the gun to the frame...</span>")
if(W.use_tool(src, user, 40, volume=100))
var/mob/living/simple_animal/bot/secbot/ed209/B = new(drop_location())
B.name = created_name
to_chat(user, "<span class='notice'>You complete the ED-209.</span>")
qdel(src)
name = "armed [name]"
to_chat(user, "<span class='notice'>The gun is now securely fastened to the frame.</span>")
build_step++

if(9)
if(istype(W, /obj/item/stock_parts/cell/high))
if(!can_finish_build(W, user))
return
var/mob/living/simple_animal/bot/secbot/ed209/B = new(drop_location())
B.name = created_name
to_chat(user, "<span class='notice'>You complete the ED-209.</span>")
B.cell_type = W.type
qdel(W)
B.vest_type = vest_type
qdel(src)
else if(istype(W, /obj/item/stock_parts/cell)) // dont waste bluespace cells on this, goofus
to_chat(user, "<span class='notice'>Under Nanotrasen safety regulations, this Model bot only accepts standard issue high-capacity power cells.</span>")

//Floorbot assemblies
/obj/item/bot_assembly/floorbot
Expand Down

0 comments on commit dc5fa9c

Please sign in to comment.