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

Change FK88 ammo cost in factory and add granade launcher ammo #786

Merged
merged 3 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
12 changes: 12 additions & 0 deletions code/modules/reqs/supplypacks/vehicles.dm
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,18 @@
cost = 10
containertype = /obj/structure/closet/crate/ammo

/datum/supply_packs/vehicles/tank_glauncher
name = "Tank granade laucnher magazine"
contains = list(/obj/item/ammo_magazine/tank/tank_glauncher)
cost = 10
containertype = /obj/structure/closet/crate/ammo

/datum/supply_packs/vehicles/tank_slauncher
name = "Tank granade laucnher smoke magazine"
contains = list(/obj/item/ammo_magazine/tank/tank_slauncher)
cost = 10
containertype = /obj/structure/closet/crate/ammo

/datum/supply_packs/vehicles/motorbike
name = "All-Terrain Motorbike"
cost = 400
Expand Down
28 changes: 19 additions & 9 deletions code/modules/reqtorio/assembly_crafts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -308,25 +308,35 @@ WEAPONS

/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)
input = list(/obj/item/stack/sheet/jeweler_steel = 1, /obj/item/stack/gun_powder = 2)
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)
input = list(/obj/item/stack/sheet/jeweler_steel = 1, /obj/item/stack/gun_powder = 2)
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)
input = list(/obj/item/stack/sheet/jeweler_steel = 2, /obj/item/stack/gun_powder = 1)
output = list(/obj/item/ammo_magazine/tank/towlauncher = 1)

/datum/assembly_craft/weapons/gl_explosive_tank_ammo
name = "Tank grande launcher magazine"
MalorMorfin marked this conversation as resolved.
Show resolved Hide resolved
input = list(/obj/item/stack/sheet/jeweler_steel = 1, /obj/item/stack/gun_powder = 1)
output = list(/obj/item/ammo_magazine/tank/tank_glauncher = 1)

/datum/assembly_craft/weapons/gl_smoke_tank_ammo
name = "Tank grande launcher smoke magazine"
MalorMorfin marked this conversation as resolved.
Show resolved Hide resolved
input = list(/obj/item/stack/sheet/jeweler_steel = 1, /obj/item/stack/gun_powder = 1)
output = list(/obj/item/ammo_magazine/tank/tank_slauncher = 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)
name = "A 155mm HE shell for the FK-88 mounted flak gun."
input = list(/obj/item/stack/sheet/jeweler_steel = 5, /obj/item/stack/gun_powder = 6) // 35 + 48 points
output = list(/obj/item/ammo_magazine/heavy_isg/he = 1) // 83 points +-

/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)
name = "A 155mm APFDS shell for the FK-88 mounted flak gun"
input = list(/obj/item/stack/sheet/jeweler_steel = 5, /obj/item/stack/gun_powder = 7) // 35 + 56 points
output = list(/obj/item/ammo_magazine/heavy_isg/sabot = 1) // 91 points +-
Loading