Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Завод теперь может производить снаряды для ФК88 и танковые снаряды для главного орудия #733

Merged
merged 2 commits into from
Dec 6, 2024
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
25 changes: 25 additions & 0 deletions code/modules/reqtorio/assembly_crafts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -305,3 +305,28 @@ WEAPONS
name = "MLRS High Explosive rocket"
input = list(/obj/item/stack/sheet/plasteel = 3, /obj/item/stack/gun_powder = 3) // 24 + 24 points
output = list(/obj/item/storage/box/mlrs_rockets = 1) // 33 points from old factory

/datum/assembly_craft/weapons/ltb_shells
name = "LTB tank shell"
input = list(/obj/item/stack/sheet/jeweler_steel = 1, /obj/item/stack/gun_powder = 5)
output = list(/obj/item/ammo_magazine/tank/ltb_cannon = 1)

/datum/assembly_craft/weapons/ltb_cannon_apfds
name = "LTB tank APFDS shell"
input = list(/obj/item/stack/sheet/jeweler_steel = 2, /obj/item/stack/gun_powder = 3)
output = list(/obj/item/ammo_magazine/tank/ltb_cannon/apfds = 1)

/datum/assembly_craft/weapons/ltb_cannon_TOW
name = "TOW Launcher Magazine"
input = list(/obj/item/stack/sheet/jeweler_steel = 3, /obj/item/stack/gun_powder = 6)
output = list(/obj/item/ammo_magazine/tank/towlauncher = 1)

/datum/assembly_craft/weapons/heavy_isg_he
name = "A 15cm HE shell for the FK-88 mounted flak gun."
input = list(/obj/item/stack/sheet/jeweler_steel = 25, /obj/item/stack/gun_powder = 30)
output = list(/obj/item/ammo_magazine/heavy_isg/he = 1)

/datum/assembly_craft/weapons/heavy_isg_sabot
name = "A 15cm APFDS shell for the FK-88 mounted flak gun"
input = list(/obj/item/stack/sheet/jeweler_steel = 30, /obj/item/stack/gun_powder = 25)
output = list(/obj/item/ammo_magazine/heavy_isg/sabot = 1)
20 changes: 10 additions & 10 deletions code/modules/vehicles/armored/ammo_magazine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@
icon_state = "ltb_apfds"
default_ammo = /datum/ammo/bullet/tank_apfds

/obj/item/ammo_magazine/tank/towlauncher
name = "TOW Launcher Magazine"
desc = "A primary armament rocket magazine"
caliber = CALIBER_68MM
icon_state = "quad_rocket"
icon = 'icons/obj/items/ammo/rocket.dmi'
w_class = WEIGHT_CLASS_GIGANTIC
default_ammo = /datum/ammo/rocket/ap //Fun fact, AP rockets seem to be a straight downgrade from normal rockets. Maybe I'm missing something...
max_rounds = 5

/obj/item/ammo_magazine/tank/ltaap_chaingun
name = "\improper LTA-AP chaingun Magazine"
desc = "A primary armament chaingun magazine."
Expand All @@ -42,16 +52,6 @@
default_ammo = /datum/ammo/flamethrower/tank_flamer
max_rounds = 120

/obj/item/ammo_magazine/tank/towlauncher
name = "TOW Launcher Magazine"
desc = "A secondary armament rocket magazine"
caliber = CALIBER_68MM
icon_state = "quad_rocket"
icon = 'icons/obj/items/ammo/rocket.dmi'
w_class = WEIGHT_CLASS_GIGANTIC
default_ammo = /datum/ammo/rocket/ap //Fun fact, AP rockets seem to be a straight downgrade from normal rockets. Maybe I'm missing something...
max_rounds = 5

/obj/item/ammo_magazine/tank/secondary_cupola
name = "M56 Cupola Magazine"
desc = "A secondary armament MG magazine"
Expand Down
Loading