Skip to content

Commit

Permalink
Prime Only modpack
Browse files Browse the repository at this point in the history
  • Loading branch information
AyIong committed Nov 8, 2023
1 parent b8dc086 commit fedd641
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 13 deletions.
1 change: 1 addition & 0 deletions modular_ss220/modular_ss220.dme
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
// 2. Так модпаки прайма будут включены в тестах и линтере.
#ifndef MODPACK_MAIN_ONLY
#include "security_redalert_accesses/_security_redalert_accesses.dme"
#include "prime_only/_prime.dme"
#endif

// --- UNUSED MODS --- //
Expand Down
6 changes: 0 additions & 6 deletions modular_ss220/objects/code/closets.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,3 @@
new /obj/item/gun/energy/laser/awaymission_aeg/rnd(src)
new /obj/item/storage/firstaid/regular(src)
new /obj/item/paper/pamphlet/gateway(src)

/obj/structure/closet/secure_closet/hos/populate_contents()
. = ..()
new /obj/item/clothing/gloves/combat(src)
for(var/i in 1 to 3)
new /obj/item/ammo_box/speed_loader_d44(src)
6 changes: 6 additions & 0 deletions modular_ss220/objects/code/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,9 @@
icon_state = "archives"
light_range = 1.5
light_color = LIGHT_COLOR_FIRE

// Display Cases
/obj/structure/displaycase/hos
alert = TRUE
start_showpiece_type = /obj/item/reagent_containers/food/snacks/donut/sprinkles
req_access = list(ACCESS_HOS)
7 changes: 0 additions & 7 deletions modular_ss220/objects/code/weapons.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
playsound(user, dry_fire_sound, 100, 1)

// Colt Anaconda .44

/obj/item/gun/projectile/revolver/reclinable/anaconda
name = "Анаконда"
desc = "Крупнокалиберный револьвер двадцатого века. Несмотря на то, что оружие хранилось в хороших условиях, старина даёт о себе знать."
Expand Down Expand Up @@ -89,13 +88,7 @@
icon = 'modular_ss220/objects/icons/ammo.dmi'
icon_state = "44_box"

/obj/structure/displaycase/hos
alert = TRUE
start_showpiece_type = /obj/item/gun/projectile/revolver/reclinable/anaconda
req_access = list(ACCESS_HOS)

// RSH-12 12.7

/obj/item/gun/projectile/revolver/reclinable/rsh12
name = "РШ-12"
desc = "Тяжёлый револьвер винтовочного калибра с откидным стволом. По слухам, всё ещё находится на вооружении у СССП."
Expand Down
13 changes: 13 additions & 0 deletions modular_ss220/prime_only/_prime.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/datum/modpack/prime_only
name = "Эксклюзивы прайма"
desc = "Всё что попросили стримеры эксклюзивно для прайма."
author = "Все кто сюда полез."

/datum/modpack/prime_only/pre_initialize()
. = ..()

/datum/modpack/prime_only/initialize()
. = ..()

/datum/modpack/prime_only/post_initialize()
. = ..()
3 changes: 3 additions & 0 deletions modular_ss220/prime_only/_prime.dme
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#include "_prime.dm"

#include "code/anakonda.dm"
8 changes: 8 additions & 0 deletions modular_ss220/prime_only/code/anakonda.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/obj/structure/displaycase/hos
start_showpiece_type = /obj/item/gun/projectile/revolver/reclinable/anaconda

/obj/structure/closet/secure_closet/hos/populate_contents()
. = ..()
new /obj/item/clothing/gloves/combat(src)
for(var/i in 1 to 3)
new /obj/item/ammo_box/speed_loader_d44(src)

0 comments on commit fedd641

Please sign in to comment.