Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions code/game/objects/items/implants/implant_track.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
/obj/item/implant/tracking/c38
name = "TRAC implant"
desc = "A smaller tracking implant that supplies power for only a few minutes."
var/lifespan = 15 MINUTES //how long does the implant last?
allow_teleport = FALSE
var/lifespan = 5 MINUTES //how long does the implant last?

/obj/item/implant/tracking/c38/Initialize()
. = ..()
Expand Down
3 changes: 2 additions & 1 deletion code/modules/projectiles/boxes_magazines/ammo_boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@

/obj/item/ammo_box/c38/trac
name = "speed loader (.38 TRAC)"
desc = "Designed to quickly reload revolvers. TRAC bullets embed a tracking implant within the target's body."
desc = "A six-shot speed loader designed for .38 revolvers. \
These rounds deal lessened damage and stopping power, but inject a tracking implant upon burrowing into a target's body. Implant lifespan is five minutes."
ammo_type = /obj/item/ammo_casing/c38/trac

/obj/item/ammo_box/c38/hotshot
Expand Down
3 changes: 2 additions & 1 deletion code/modules/projectiles/projectile/bullets/revolver.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@

/obj/item/projectile/bullet/c38/trac
name = ".38 TRAC bullet"
damage = 10
damage = 8
stamina = 25

/obj/item/projectile/bullet/c38/trac/on_hit(atom/target, blocked = FALSE)
. = ..()
Expand Down