Skip to content
Merged
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
8 changes: 6 additions & 2 deletions code/datums/supply_packs/explosives.dm
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,18 @@
group = "Explosives"

/datum/supply_packs/brute_rockets
name = "BRUTE rocket crate (x2)"
name = "BRUTE rocket crate (x6)"
contains = list(
/obj/item/ammo_magazine/rocket/brute,
/obj/item/ammo_magazine/rocket/brute,
/obj/item/ammo_magazine/rocket/brute,
/obj/item/ammo_magazine/rocket/brute,
/obj/item/ammo_magazine/rocket/brute,
/obj/item/ammo_magazine/rocket/brute,
)
cost = 30
containertype = /obj/structure/closet/crate/explosives
containername = "\improper plastic explosives crate (WARNING)"
containername = "\improper BRUTE rocket crate (WARNING)"
group = "Explosives"

/datum/supply_packs/explosives_incendiary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,9 @@
skill_locked = TRUE
var/f_aiming_time = 4 SECONDS
var/aiming = FALSE
/obj/item/weapon/gun/launcher/rocket/brute/set_gun_attachment_offsets()
attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 18,"rail_x" = 8, "rail_y" = 17, "under_x" = 19, "under_y" = 14, "stock_x" = 19, "stock_y" = 14)


/obj/item/weapon/gun/launcher/rocket/brute/set_bullet_traits()
LAZYADD(traits_to_give, list(
Expand Down
Loading