Skip to content

Commit

Permalink
tweak: добавил пустые магазины на энфорсер, пофиксил цену улучшенного…
Browse files Browse the repository at this point in the history
… заряженого магазина (BlueMoon-Labs#1189)
  • Loading branch information
Darkest08 authored Aug 8, 2024
1 parent 9b927e2 commit 08ccc2d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,26 @@
name = "Extended Enforcer magazine"
id = "c45lethal"
build_type = AUTOLATHE | NO_PUBLIC_LATHE
materials = list(/datum/material/iron = 8000)
materials = list(/datum/material/iron = 17000)
build_path = /obj/item/ammo_box/magazine/e45/e45_extended
category = list("hacked", "Security")

/datum/design/e45/e45_extended_empty
name = "Empty Extended Enforcer magazine"
id = "c45_empy_extended"
build_type = AUTOLATHE | NO_PUBLIC_LATHE
materials = list(/datum/material/iron = 1200)
build_path = /obj/item/ammo_box/magazine/e45/e45_extended/empty
category = list("hacked", "Security")

/datum/design/e45/empty
name = "Empty Enforcer magazine"
id = "c45_empy"
build_type = AUTOLATHE | NO_PUBLIC_LATHE
materials = list(/datum/material/iron = 600)
build_path = /obj/item/ammo_box/magazine/e45/empty
category = list("hacked", "Security")

//BLUEMOON ADD END


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,18 @@
..()
icon_state = "enforcer-ext-[round(ammo_count())]"

/obj/item/ammo_box/magazine/e45/e45_extended/empty
name = "Extended Enforcer magazine"
desc = "An extended Mk. 58 magazine."
start_empty = 1

//BLUEMOON ADD END Добавление увеличенного магазина на инфорсер в билд.

/obj/item/ammo_box/magazine/e45/empty
name = "Enforcer magazine"
desc = "A Mk. 58 magazine."
start_empty = 1

/obj/item/ammo_box/magazine/e45/lethal
name = "Enforcer magazine (.45 Lethal)"
desc = "A Mk. 58 magazine. Loaded with lethal rounds."
Expand Down

0 comments on commit 08ccc2d

Please sign in to comment.